tags:

views:

428

answers:

3

Is there a combobox dropdown style control in Winforms that doesn't let the user to type anything but only pick from the existing list of items?

+9  A: 

ComboBoxStyle.DropDownList

Pavel Minaev
Thanks everyone, I marked the first answerer as an answer but voted all.
Joan Venge
+2  A: 

Yes. Change the DropDownStyle on the Combobox to DropDownList

David Stratton
+3  A: 

Set the comboboxstyle to DropDownList.

Mark Rushakoff