Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/combobox-control-overview-windows-forms.md
Andy De George c0ba284473 Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
2020-09-01 16:26:21 -07:00

3.6 KiB

title, ms.date, f1_keywords, helpviewer_keywords, ms.assetid
title ms.date f1_keywords helpviewer_keywords ms.assetid
ComboBox Control Overview 03/30/2017
ComboBox
drop-down lists [Windows Forms], Windows Forms
ComboBox control [Windows Forms], about ComboBox control
drop-down lists [Windows Forms], ComboBox control
combo boxes [Windows Forms], about combo boxes
a58b393f-a614-45d1-8961-857a024b5acd

ComboBox Control Overview (Windows Forms)

The Windows Forms xref:System.Windows.Forms.ComboBox control is used to display data in a drop-down combo box. By default, the xref:System.Windows.Forms.ComboBox control appears in two parts: the top part is a text box that allows the user to type a list item. The second part is a list box that displays a list of items from which the user can select one. For more information on other styles of combo box, see When to Use a Windows Forms ComboBox Instead of a ListBox.

The xref:System.Windows.Forms.ComboBox.SelectedIndex%2A property returns an integer value that corresponds to the selected list item. You can programmatically change the selected item by changing the xref:System.Windows.Forms.ComboBox.SelectedIndex%2A value in code; the corresponding item in the list will appear in the text box portion of the combo box. If no item is selected, the xref:System.Windows.Forms.ComboBox.SelectedIndex%2A value is -1. If the first item in the list is selected, then the xref:System.Windows.Forms.ComboBox.SelectedIndex%2A value is 0. The xref:System.Windows.Forms.ComboBox.SelectedItem%2A property is similar to xref:System.Windows.Forms.ComboBox.SelectedIndex%2A , but returns the item itself, usually a string value. The xref:System.Windows.Forms.ComboBox.ObjectCollection.Count%2A property reflects the number of items in the list, and the value of the xref:System.Windows.Forms.ComboBox.ObjectCollection.Count%2A property is always one more than the largest possible xref:System.Windows.Forms.ComboBox.SelectedIndex%2A value because xref:System.Windows.Forms.ComboBox.SelectedIndex%2A is zero-based.

To add or delete items in a xref:System.Windows.Forms.ComboBox control, use the xref:System.Windows.Forms.ComboBox.ObjectCollection.Add%2A, xref:System.Windows.Forms.ComboBox.ObjectCollection.Insert%2A, xref:System.Windows.Forms.ComboBox.ObjectCollection.Clear%2A or xref:System.Windows.Forms.ComboBox.ObjectCollection.Remove%2A method. Alternatively, you can add items to the list by using the xref:System.Windows.Forms.ComboBox.Items%2A property in the designer.

See also