Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Combobox with checkbox in winforms

I am trying to look for a simple way to design a winform with a combobox that has checkbox values in it to select multiple values. But there are no free samples I could find.

If anybody has a good link for a sample which does not require a license. Please let me know.

I am not looking for controls like telerik and infragistics.

like image 407
user175084 Avatar asked Dec 24 '11 02:12

user175084


2 Answers

Maybe this example can help you.

CheckBox ComboBox Extending the ComboBox Class and Its Items

like image 164
Tomislav Markovski Avatar answered Oct 18 '22 23:10

Tomislav Markovski


It sounds like what you really want is a checked listbox control or maybe even just a listbox. These controls do multi-select in a way that is more standard for Windows.

If you really need a combo box with checkboxes in it, here's an article on code project I used once.

like image 2
rmc00 Avatar answered Oct 18 '22 23:10

rmc00