Open In App

How to Add Items in 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 a list or collection of elements in your ComboBox by using Items Property. You can set this property using two different methods:

1. Design-Time: It is the easiest method to add the items in 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 add the list of elements in the ComboBox programmatically with the help of given syntax:



public System.Windows.Forms.ComboBox.ObjectCollection Items { get; }

Here, the ComboBox.ObjectCollection indicates the elements present in the ComboBox. Following steps are used to add the elements in the ComboBox:


Article Tags :
C#