sony
sony

Reputation: 1503

Combobox dropdown not same size?

enter image description here

In my WPF application, I have a host window which dynamically holds usercontrols at runtime for doing the flip, fade etc. My user controls are forms with the controls like textbox, combobox etc. The dropdown's text size is not proportional to the size of the combobox. Is there any way to sort this out?

Upvotes: 0

Views: 396

Answers (2)

Rachel
Rachel

Reputation: 132548

It looks like the FontSize of your ComboBox is different from the FontSize of your ComboBoxItems.

Try making both the same FontSize and see if that fixes the issue

Upvotes: 1

Eirik
Eirik

Reputation: 4205

How do you increase the size of the combobox? have you tried increasing the FontSize?

<ComboBox FontSize="16" />

Upvotes: 1

Related Questions