vote up 1 vote down star

Hi all,

In .NET framework, is it possible to set some of the items in the CheckedListBox as "uncheckable" ? I don't want to allow user to check the same items again and add them to a another existing list.

I hope I am clear. Thanks in advance.

flag

50% accept rate

3 Answers

vote up 4 vote down check

I would set those items as "Indeterminate" in code, and then overwrite the "NewValue" property from the ItemCheck event when the user attempts to check/uncheck them:

public Form1()
{
    InitializeComponent();
    checkedListBox1.Items.Add("Can't check me", CheckState.Indeterminate);
}

private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
{
    if (e.CurrentValue == CheckState.Indeterminate)
    {
        e.NewValue = CheckState.Indeterminate;
    }
}

The "Can't check me" item in the CheckedListBox can't be modified, because every time the user tries to check/uncheck it, the event handler changes it back. You don't even see the UI update accordingly.

link|flag
vote up 0 vote down

CheckedListBox... oh man how much do I hate this control. I'd advise you to rethink which control you are using. This thing should almost not be a Control. I wish they'd not included it in the final build of .net. It's just missing some basic things that other controls have.

link|flag
I do agree somewhat. A ListView with checkboxes is a more "standard" control to use for this sort of scenario IMHO. – Matt Hamilton Dec 30 '08 at 22:23
Thanks to all. I guess I will use ListView with checkboxes. :) – fantoman Dec 30 '08 at 22:27
vote up 0 vote down

Matt's code is good.

Yet, why have an item in the checkedlistbox and not let it be selected?
I mean why have that item in the list.

link|flag
Actuall what I am thinking is something like this: We have two lists. User can select and add things from list one to list two. BUT, I don't want to let the user add the same item to the second list for a second time. In other words, list 2 should consist of uniq elements of list1. – fantoman Dec 30 '08 at 22:42

Your Answer

Get an OpenID
or

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