Open In App

How to set the Height of the Drop-Down List in the ComboBox in C#?

In Windows Forms, ComboBox provides two different features in a single control, it means ComboBox works as both TextBox and ListBox. In ComboBox, only one item is displayed at a time and the rest of the items are present in the drop-down menu. You are allowed to set the height in pixels of the drop-down list in your ComboBox by using the DropDownHeight Property. You can set this property using two different methods:

1. Design-Time: It is the easiest method to set the DropDownHeight property of the ComboBox control using the following steps:



2. Run-Time: It is a little bit trickier than the above method. In this method, you can set the height of the drop-down list in the ComboBox programmatically with the help of given syntax:



public int DropDownHeight { get; set; }

Here, the value of this property is of System.Int32 type. It will throw an ArgumentException if the value of this property is less than one. Following steps are used to set the DropDownHeight Property of the ComboBox elements:


Article Tags :
C#