How to: Add and Remove Items from a Windows Forms ComboBox, ListBox, or CheckedListBox Control
Items can be added to a Windows Forms combo box, list box, or checked list box in a variety of ways, because these controls can be bound to a variety of data sources. However, this topic demonstrates the simplest method and requires no data binding. The items displayed are usually strings; however, any object can be used. The text that is displayed in the control is the value returned by the object'sToString method.
To add items
-
Add the string or object to the list by using the Add method of the ObjectCollection class. The collection is referenced using theItems property:
- or -
-
Insert the string or object at the desired point in the list with theInsert method:
- or -
-
Assign an entire array to theItems collection:
To remove an item
-
Call theRemove orRemoveAt method to delete items.
Remove has one argument that specifies the item to remove.RemoveAt removes the item with the specified index number.