Hello,
How can i get the number of items listed in a combobox?
You should reference Count of the Items property.
Count
Items
myComboBox.Items.Count
Try
var count = comboBox.Items.Count;