Reputation: 49
In my Custom control, i have issue with drop down menu height. If Combo box items are more, I want scroll mouse many times because of small height of Drop down menu. I want to increase the height of Drop down menu.
FYI - I have generate Custom Control using Generic.xaml file and behavior's of the control are defined in TextBox.cs file (inherited from the Text Box Class).
Thank You..!!
Upvotes: 0
Views: 170
Reputation: 4820
You can use the MaxDropDownHeight Property of your ComboBox to set the desired maximum height you want for it, when unfolded that is.
Upvotes: 0