Category / Section
How to change the font style in dropdown of WinForms ComboBox AutoComplete?
1 min read
Change the font style
It is possible to change the font displayed in the dropdown of ComboBoxAutoComplete using following code snippet.
C#
this.comboBoxAutoComplete1.AutoCompleteControl.AutoCompletePopup.Font = new Font("Verdana", 7);
VB
Me.comboBoxAutoComplete1.AutoCompleteControl.AutoCompletePopup.Font = new Font("Verdana", 7)