Notifications
Clear all

[Closed] How to set dotnet combobox dropdown amount?

I made dotnet comboxbox with 20+ items.
By default, it only shows 10nish of them with scrollbar.

I want to show all item at once.

4 Replies

dnCB.ItemHeight = 20

Tried… not working…

Try:

<control>.DropDownHeight
<control>.DropDownHeight = (<control>.Items.Count+1) * <control>.ItemHeight

still not working…