Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WinForms ListBox with readonly/disabled items

Is there a way to make some of the items in a ListBox readonly/disabled so they can't be selected? Or are there any similar controls to ListBox to provide this functionality?

like image 360
dstr Avatar asked Mar 13 '10 11:03

dstr


3 Answers

ListBox doesn't have support for that. You can bolt something on, you could deselect a selected item. Here's a silly example that prevents even-numbered items from being selected:

private void listBox1_SelectedIndexChanged(object sender, EventArgs e) {
  for (int ix = listBox1.SelectedIndices.Count - 1; ix >= 0; ix--) {
    if (listBox1.SelectedIndices[ix] % 2 != 0) 
      listBox1.SelectedIndices.Remove(listBox1.SelectedIndices[ix]);
  }
}

But the flicker is quite noticeable and it messes up keyboard navigation. You can get better results by using CheckedListBox, you can prevent the user from checking the box for an item:

private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e) {
  if (e.Index % 2 != 0) e.NewValue = CheckState.Unchecked;
}

But now you cannot override drawing to make it look obvious to the user that the item isn't selectable. No great solutions here, it is far simpler to just not display items in the box that shouldn't be selectable.

like image 119
Hans Passant Avatar answered Oct 12 '22 14:10

Hans Passant


@Hans solution causing that the item id selected for a short time and then selection disappearing. I don't like that - this can be confusing for the enduser.

I prefer to hide some edit option buttons for the item that should be disabled:

        if (lbSystemUsers.Items.Count > 0 && lbSystemUsers.SelectedIndices.Count > 0)
            if (((RemoteSystemUserListEntity)lbSystemUsers.SelectedItem).Value == appLogin)
            {
                bSystemUsersDelete.Visible = false;
                bSystemUsersEdit.Visible = false;                    
            }
            else
            {
                bSystemUsersDelete.Visible = true;
                bSystemUsersEdit.Visible = true;
            }

Here is the list that lists the users and disallow to edit user that is actually logged in to the edit panel.

like image 31
Sebastian Xawery Wiśniowiecki Avatar answered Oct 12 '22 15:10

Sebastian Xawery Wiśniowiecki


ListBox doesn't have a ReadOnly (or similar) property, but you can make a custom ListBox control. Here's a solution that worked pretty well for me:

https://ajeethtechnotes.blogspot.com/2009/02/readonly-listbox.html

public class ReadOnlyListBox : ListBox 
{ 
    private bool _readOnly = false; 
    public bool ReadOnly 
    { 
        get { return _readOnly; } 
        set { _readOnly = value; } 
    } 

    protected override void DefWndProc(ref Message m) 
    { 
        // If ReadOnly is set to true, then block any messages 
        // to the selection area from the mouse or keyboard. 
        // Let all other messages pass through to the 
        // Windows default implementation of DefWndProc.
        if (!_readOnly || ((m.Msg <= 0x0200 || m.Msg >= 0x020E) 
            && (m.Msg <= 0x0100 || m.Msg >= 0x0109) 
            && m.Msg != 0x2111 
            && m.Msg != 0x87)) 
        {
            base.DefWndProc(ref m); 
        } 
    } 
} 
like image 28
Jim Fell Avatar answered Oct 12 '22 14:10

Jim Fell