How do I make a combobox stay open after an item is selected in C#?
I want to do this because it is actually a comboBox with a checklist so I can select several items.
|
Use a Update: I think this sample will let you do what you want (which is to have a multi-select list that only takes up the form real estate of one control): http://www.codeguru.com/csharp/csharp/cs_controls/treeview/article.php/c15373/ |
||||
|
|
|
Use ListBox instead, since
|
|||||||||||
|
|
If you still want to allow the user to write an option of his own you can still use a DropBox, just set the DropDownStyle property to simple. You'll get something similar with a ListBox but with an TextBox on the top where the user can write somwthing. |
|||
|
|
ListView, with itsCheckBoxesproperty set to "True". – Cody Gray Feb 13 '11 at 9:57