Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
Winforms? Webforms? MVC? WPF? Why do you need it to "stay open"? – Oded Feb 13 '11 at 9:01
winform. i need it for something... – aharon Feb 13 '11 at 9:02
for something. That does tell me so much. I am asking because depending on the reason, a different, better solution might be found. – Oded Feb 13 '11 at 9:05
ok, i edited my question. – aharon Feb 13 '11 at 9:06
What you really need is a ListView, with its CheckBoxes property set to "True". – Cody Gray Feb 13 '11 at 9:57

3 Answers

up vote 3 down vote accepted

Use a ListBox instead of a ComboBox. What you want to do (keep a ComboBox open even after the user has selected a choice) would be unusual and unexpected behavior.

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/

share|improve this answer
i edited my question. – aharon Feb 13 '11 at 9:10

Use ListBox instead, since ComboBox does that behavior by its core design.

ListBox gives a similar effect (hence it is still open) and enabling for multi-selection.

share|improve this answer
1  
No it doesn't. A drop-down combobox does that by its core design, but that's not a necessary feature of all comboboxes. There are three different styles available: simple, drop-down, and drop-down list. You can see more information and screen shots here. – Cody Gray Feb 13 '11 at 9:52
@Code Gray Ok, but there is no one of the styles lefts the menu open. – LordCover Feb 13 '11 at 9:58
1  
Really? Take another look at the "simple" style. It's a textbox sitting on top of a listbox, the first "usercontrol" found in the wild. (And hence the name "combobox", a "combo" of two other boxes.) – Cody Gray Feb 13 '11 at 10:01

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.