I have a Combobox control on my form (WinForms, .NET 3.5), and its DropDownStyle property is set to Simple. Let's say it is populated with the letters of the alphabet, as string objects ("a", "b", "c", and so on).
As I type a letter in the combobox' input field, the correct item will be displayed just underneath.
This is the behaviour I want. But I would also like to have the first matching item selected.
Is there a property of the Combobox control that would achieve that? Or do I need to handle that programatically?