I have a combobox on a winform with dropdownstyle set to DropDownList.
When the user clicks anywhere on the combobox, its dropdownlist opens up. If I use any other dropdownstyle (DropDown or Simple) this is not the case, the combobox will only open up when the user clicks on the arrow on the right.
What I need is a combobox that has dropdownstyle set to DropDownList but still only opens its dropdown list when clicking on the arrow on the right, not when clicking anywhere else on the combobox, just like it does when dropdownstyle is DropDown or Simple.
In case you wondering why I want this, I have DrawMode set to OwnerDrawFixed and in the DrawItem I draw the combobox so it looks normal, not the ugly 3d that this dropdownstyle forces upon me. So I actually have a readonly combobox but without the ugly 3d look.
If requested I can post the code from the DrawItem, but this code does not has any influence on this behaviour because without the drawitem code the combobox reacts exactly the same.
I hope this question is clear enough.