In .net 3.5 windows forms I have a listview with "CheckBoxes" = true. Is it possible to dim out or disable some items to prevent the user from checking the box?
|
|
|
You can use the ListBoxItem.ForeColor and UseItemStyleForSubItems properties to make the item look dimmed. Use SystemColors.GrayText to pick the theme color for disabled items. Avoid disabling selection, it prevents the user from using the keyboard. Only disable the checkbox checking. For example:
|
|||
|
|
You have to roll your own for this. Handle the
You can make a particular item appear unselectable by graying it out, changing the font color etc. |
|||
|
|
|
I took Hans Passant recommendation - good visual approach which in my case denotes un-actionable items. Here's a sample:
|
|||
|
|
|
You should set the AutoCheck property of the checkbox false.
Actually this is usable only for the checkbox control. |
||||
|
|
