I have a combobox with AutoCompleteMode = SuggestAppend and AutoCompleteSource=ListItems.
In SuggestAppend, when the user input characters, the listbox control is being filtered automatically.
I would like to get the number of items in the listbox during user input. At the beginning the listbox is fully populated.
I tried the following but it always returns the number of items in the combo and not the number of filtered items in the listbox
int count = ItemsComboBox.Items.Count.ToString();