Reputation: 9044
I have a trivial problem with C# combobox in Windows Forms. I have created a Combobox and I don't want users enter value in it, users should only select values available in it. What should I do?
Upvotes: 0
Views: 209
Reputation: 1052
change the dropdown style property of the combobox to DropDownList
Upvotes: 4