C# ComboBox to activate dropdown list when clicking on dropdown text

Viewed 11260

I've got a Windows Forms application written in Visual Studio 2015. Its a simple form with a couple of dropdown menus (combo boxes) and I'm wanting the dropdown list to pull down when the user clicks anywhere in the combobox frame, not only when they click on the arrow right hand side.

enter image description here

The combobox in my code is as follows:

private System.Windows.Forms.ComboBox cbxMake;
2 Answers
Related