I'm having a ComboBox in which I added items in order provide the user autocomplete for the text he's typing. I am looking for a property of ComboBoxes that could identify if the text was an item of the ComboBox or not. (I would like not to loop each time through its items).
I would like do use ComboBox.Text if the item does not exist and ComboBox.SelectedItem if it does.
Thanks.