We have a ComboBox (Dropdown style) with AutoCompleteMode = SuggestAppend and AutoCompleteSource = ListItems.
Whenever we open the dropdown list and then start writing in the text field part of the combobox, the sugest box covers the list of all dropdown values but the dropdown value list still remains with focus and we can’t select any items in the sugest box.
This is a very annoying behavior, and i hope it’s not its default behavior. Someone else have had the same problem and found out how to prevent it?
You are you using AutoCompleteMode property. Your problem is that the suggest box covers the list dropdown list. Here is an alternative way of autocomplete.
The same thing can be applied to DropDownLost. Now you select the appropriate value from the ContextMenuStrip and give it to Your ComboBox (or DropDownList).
To do that add the following code to ItemClicked event of the ContextMenuStrip.