Open In App

How to set the Size of 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 size to your ComboBox by using Size Property. You can set this property using two different methods:

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



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



public System.Drawing.Size Size { get; set; }

Here, the Size indicates the height and width of the ComboBox in pixels. Following steps are used to set the size of the ComboBox:


Article Tags :
C#