Ali Behzadian Nejad
Ali Behzadian Nejad

Reputation: 9044

C# combobox without autocomplete

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

Answers (3)

Nps
Nps

Reputation: 1658

Change dropdownstyle property to dropdownlist.

Upvotes: 0

Rohit Vats
Rohit Vats

Reputation: 81253

Set DropDownStyle to "DropDownList"

Upvotes: 1

Mutu Yolbulan
Mutu Yolbulan

Reputation: 1052

change the dropdown style property of the combobox to DropDownList

Upvotes: 4

Related Questions