Home › Forums › WinForms controls › Other WinForms controls › combobox tool – selected item by default
How can I set the default selected item?
For example I would like to make the 1st item as default.
Imported from legacy forums. Posted by PETE (had 2352 views)
You would need to do this : comboBoxTool1.SelectedItem = comboBoxTool1.Items[0]; This will select the first item like you need.
Imported from legacy forums. Posted by Matt (had 3029 views)