Winforms combobox loses autocomplete value on lostfocus
问题 I am having issues with the Winforms combo box losing the value found during an autocompletion when the user tabs to the next control. Here is a code sample (as an Nunit Test that will pop up a form): [Test] [STAThread] public void Testing_AsDropDownList() { var comboBox = new ComboBox(); comboBox.DropDownStyle = ComboBoxStyle.DropDownList; comboBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems; comboBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode