Click here to Skip to main content
Click here to Skip to main content

CheckBox ComboBox Extending the ComboBox Class and Its Items

By , 29 Apr 2008
 
Screenshot - CheckBoxComboBox.jpg

Introduction

I needed a way to minimise the space required by a Filter control, yet maximise the filter capabilities provided to the user. One way to accomplish this was to replace a Grouped Box of CheckBox controls with a CheckBoxComboBox control. There are several CheckBoxComboBox controls on the web, but all of the ones I found and tested had something missing.

Some controls simulated a check box by only painting it in the Popup, which means the Checkbox did not behave like a Checkbox should and it caused the Popup to close before the user could make more selections. Other controls did not specialise a normal ComboBox, so you lost the existing functionality of a ComboBox control and its Items, for example, you could not bind the control to a custom DataSource anymore.

This CheckBoxComboBox combines the standard .NET ComboBox with real CheckBoxes and accomplishes this task by creating a wrapper for the ComboBox.Items (it does not use a CheckBoxListBox either). Another point worth mentioning here, is that it also uses the neat PopUp solution provided by Lukasz Swiatkowski which you can find here. This solved some custom PopUp problems like focus removed from the owner form, resize capabilities, positioning, etc. Really worth looking at.

Background

The CheckBoxComboBox provides a CheckBoxItems property which contains the CheckBoxes shown in the list, as well as a link to the ComboBox Item object it links to. In addition, it has a CheckBoxCheckedChanged event which bubbles the CheckedChanged events of the CheckBox items back to the ComboBox.

Using the Code

Using the code is simple, you can populate the ComboBox like you would do normally, by either populating the Items manually or linking to a DataSource.

However, make sure you think about the following, especially if you are going to be binding to the control. You might currently have a list of objects which you want to list in the CheckBoxComboBox popup for the user to make a selection. That selection requires a bool property which when binded will be set back to the binded object. Does that object really care whether it is selected somewhere? What would happen if you not only wanted to select the object, but also wanted to add additional display information, such as how many of those objects are available? All this extra information can clutter your object unnecessarily. So, I included an additional class which you can use to solve this for you. It basically takes your list of objects, and adds a Selection and Count property for you to manipulate without adding those properties to your existing object where it is actually not relevant. You can then easily extend on these properties or change their behavior without affecting your current class. (It's separate and clean.) The code below demonstrates its use with a custom List<T> and a DataTable, but the only requirement is an IEnumerable type.

#region POPULATE THE "MANUAL" COMBO BOX

cmbManual.Items.Add("Item 1");
cmbManual.Items.Add("Item 2");
cmbManual.Items.Add("Item 3");
cmbManual.Items.Add("Item 4");
cmbManual.Items.Add("Item 5");
cmbManual.Items.Add("Item 6");
cmbManual.Items.Add("Item 7");
cmbManual.Items.Add("Item 8");

#endregion

The code sample above is straightforward, eight string objects are added to the ComboBox as you would do normally.

#region POPULATED USING A CUSTOM "IList" DATASOURCE

_StatusList = new StatusList();

_StatusList.Add(new Status(1, "New"));
_StatusList.Add(new Status(2, "Loaded"));
_StatusList.Add(new Status(3, "Inserted"));
_StatusList.Add(new Status(4, "Updated"));
_StatusList.Add(new Status(5, "Deleted"));

cmbIListDataSource.DataSource = 
    new ListSelectionWrapper<status />(_StatusList);
cmbIListDataSource.ValueMember = "Selected";
cmbIListDataSource.DisplayMemberSingleItem = "Name";
cmbIListDataSource.DisplayMember = "NameConcatenated";

#endregion

In this extract, a List<Status> object is binded to the list. Note that it is not binded directly, I used the ListSelectionWrapper<T> to handle the selection for me, because I did not want to modify my existing "re-usable" Status class.

#region POPULATED USING A DATATABLE

DataTable DT = new DataTable("TEST TABLE FOR DEMO PURPOSES");
DT.Columns.AddRange(
new DataColumn[]
    {
        new DataColumn("Id", typeof(int)),
        new DataColumn("SomePropertyOrColumnName", typeof(string)),
        new DataColumn("Description", typeof(string)),
    });
DT.Rows.Add(1, "AAAA", "AAAAA");
DT.Rows.Add(2, "BBBB", "BBBBB");
DT.Rows.Add(3, "CCCC", "CCCCC");
DT.Rows.Add(3, "DDDD", "DDDDD");

cmbDataTableDataSource.DataSource =
    new ListSelectionWrapper<DataRow>(
    DT.Rows,
    // "SomePropertyOrColumnName" will populate the Name 
    // on ObjectSelectionWrapper.
    "SomePropertyOrColumnName" 
    );
cmbDataTableDataSource.DisplayMemberSingleItem = "Name";
cmbDataTableDataSource.DisplayMember = "NameConcatenated";
cmbDataTableDataSource.ValueMember = "Selected";

#endregion

In the third example, I also use the ListSelectionWrapper<T>, because my table does not have a Selection column. Note however, that I don't wrap the DataTable, I wrap the Rows instead, which is IEnumerable. When initialising the wrapper, I specify "SomePropertyOrColumnName", because the wrapper uses ToString() on the objects, which normally on a DataRow will result in "System.Data.DataRow" instead of the real text you would want to display. You can use this Property specifier to indicate a PropertyDescriptor or normal property on objects other than a DataRow if you did not want them to use ToString() either. This can be useful.

If you want to know which items are selected, you have two options:

  1. Use the CheckBoxItems property on the ComboBox which is a list of items wrapping each item in the ComboBox.Items list. The CheckBoxComboBoxItem class is a standard CheckBox, and therefore the bool value you are looking for is contained in Checked.
  2. Or if you stored a reference to the ListSelectionWrapper<T>, you could use that to access the Selected property of the binded list.
if (ComboBox.CheckBoxItems[5].Checked)
    DoSomething();

OR

if (StatusSelections.FindObjectWithItem(UpdatedStatus).Selected)
    DoSomething();

If a CheckBoxComboBox does not make sense or seem necessary to you, consider the following filter as a real-world example.

The ComboBox shown here, replaces a Group Box shown below it.

Screenshot - CheckBoxComboBox_2_small.jpg

There is no space for this control:

Screenshot - CheckBoxComboBox_3.jpg

Points of Interest

I was originally a religious Delphi developer, so working with this control has taught me a lot about C# and .NET. The ComboBox has always been, and still is a difficult control to customise, and doing so can prove to take up more hours of your time than you anticipated.

The following list of sources may help your attempts, and also contains links to other CheckBox ComboBox controls:

  1. Simple Pop-up Control
  2. Custom ComboBoxes with Advanced Drop-down Features
  3. An OwnerDraw ComboBox with CheckBoxes in the Drop-Down

History

2007-11-06

  • Changed the pop-up frames and duration to zero to fix the black flicker. I couldn't figure a way to resolve it while keeping the fade effect.
  • Solved a problem where the selected state of the Checkbox has not yet been assigned back to the binded property before the CheckBoxCheckedChanged event is raised. I now assign this value back myself if the ComboBox uses a DataSource.
  • Added a class to wrap existing lists so I don't need to add unnecessary Selected properties in a class where it is not needed. This List wrapper does support IBindingList sources, so if you implement that interface in your list, this wrapper will keep itself in sync with your list automatically. But, it is not a requirement at all.
  • The Selection wrappers also help working with counts.
  • Changed the CheckBoxItems to synchronise when the property is accessed, so that Checked values can be initialised before the popup is shown.

2007-11-22

  • Added a sub property on the ComboBox called CheckBoxProperties which allows you to change the appearance of the Checkboxes, e.g. Flat, Text Alignment, etc.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Martin Lottering
Software Developer
South Africa South Africa
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionStatusList Not Found [modified]memberMember 904274818hrs 43mins ago 
BugDoesn't work correctlymemberMember 1000753323 Apr '13 - 3:36 
GeneralRe: Doesn't work correctlymemberByerRA13 May '13 - 12:26 
QuestionHow to change the default height of the drop down checkbox list ?I need show more options defaultly.professionalxuite love8 Apr '13 - 16:47 
QuestionYou are a genius!memberMember 99721527 Apr '13 - 23:21 
GeneralMy vote of 5memberZephyk20 Mar '13 - 1:35 
QuestionHow Can I Include this control in the DGV? I tried My Own. But failed!memberManikandan Murugeshan29 Nov '12 - 21:05 
GeneralMy vote of 5mvpKanasz Robert27 Sep '12 - 10:50 
QuestionError when viewing Form in design modemembermurb6 Jul '12 - 19:09 
GeneralMy vote of 5mvpOriginalGriff8 Jun '12 - 1:13 
QuestionCreating a DataGridView Column of CheckBoxComboBox CellsmemberMember 898602518 May '12 - 5:27 
QuestionFails to display all the selected itemsmembershreyassv14 May '12 - 3:02 
QuestionNice OnememberAnil B. Patil4 May '12 - 2:23 
QuestionCheckedComboboxEdit in devexpress winformsmemberSuribabuk25 Apr '12 - 21:01 
I have 3 CheckedComboboxEdits and i want to relate one by one
for example the checked box contains country,city,restaurents
then first the country selected on that selection city and restaurents changed country wise
for example india will be selected then the cities are hyd,chennai,banglore will be displayed remaining cities in other countries are not displayed in that list how to do this thing
QuestionMDIFormsManger is What controlsmemberMember 31716328 Apr '12 - 18:30 
BugBroken with .NET 4.5memberfrostfiretulsa1 Apr '12 - 3:17 
QuestionKeyboard selection of checkboxmemberRamanathan Govindasamy16 Dec '11 - 3:10 
QuestionMy Vote Of 5memberTony Mamacos2 Nov '11 - 4:15 
AnswerRe: My Vote Of 5memberPaul Vassu24 Apr '12 - 1:56 
GeneralRe: My Vote Of 5memberTony Mamacos24 Apr '12 - 2:43 
Questionhow to set "select all" ?memberahmadamiri30 Sep '11 - 4:07 
AnswerRe: how to set "select all" ?memberMoonlight4415 Dec '11 - 22:58 
GeneralRe: how to set "select all" ?professionalxuite love8 Apr '13 - 15:19 
Questioncheckbox combobox rebinding issuememberdenfer0623 Sep '11 - 2:33 
QuestionClick event of checkbox is not working well.memberviralsarvaiya30 Aug '11 - 22:26 
AnswerRe: Click event of checkbox is not working well.memberFreudDu3113 Feb '13 - 3:54 
GeneralRe: Click event of checkbox is not working well.professionalxuite love8 Apr '13 - 15:17 
QuestionI'll try using CheckedListBoxmemberBoyet A. Nazon10 Aug '11 - 8:06 
QuestionNo ValueMember?memberdyocom25 Jul '11 - 10:10 
AnswerRe: No ValueMember?memberMaggieMaggie4 Dec '12 - 23:49 
GeneralMy vote of 5memberRedband20 Jul '11 - 2:34 
GeneralNavigating the dropdownmemberUlf@DSB7 May '11 - 3:29 
GeneralRe: Navigating the dropdownmembercybergroove4 Oct '11 - 15:40 
GeneralRe: Navigating the dropdownmemberDogSpots9 Nov '11 - 12:54 
GeneralRe: Navigating the dropdownmembercybergroove10 Nov '11 - 2:38 
GeneralRe: Navigating the dropdownmemberRamanathan Govindasamy16 Dec '11 - 3:50 
GeneralRe: Navigating the dropdownmemberRamanathan Govindasamy19 Dec '11 - 16:45 
GeneralRe: Navigating the dropdownmemberMember 59713218 Sep '12 - 1:34 
QuestionCan this be added in DataGridView Cell?memberThe Innovator1 Mar '11 - 6:49 
AnswerRe: Can this be added in DataGridView Cell?membersandi_12525 Apr '11 - 21:59 
QuestionFails when added to my project...memberImdabaum19 Jan '11 - 5:13 
AnswerRe: Fails when added to my project...memberDasiths24 May '11 - 16:12 
AnswerRe: Fails when added to my project...memberRedband20 Jul '11 - 2:31 
GeneralGet data from Combo [modified]memberdb_developer6 Jan '11 - 9:33 
GeneralRe: Get data from CombomemberRaymond De Castro3 Jul '11 - 2:55 
GeneralMy vote of 5memberdb_developer6 Jan '11 - 9:19 
GeneralGreater font size causes a layout bug [modified]memberflabegalini21 Dec '10 - 0:29 
GeneralWhen click on this control, the other textboxes on the Form are in read only status.memberpcphuc12 Sep '10 - 20:41 
NewsRe: When click on this control, the other textboxes on the Form are in read only status.membernarenderkumar42026 Mar '12 - 1:07 
GeneralDownload is not workingmembersparky277813 Aug '10 - 5:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 29 Apr 2008
Article Copyright 2007 by Martin Lottering
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid