I have some items in a CheckedListBox, I want to disable the CheckBox of first item in it. i.e. I want to disable the first item in the C
CheckedListBox
CheckBox
C
To disable any particular item use following:
checkedListBox1.SetItemCheckState(0, CheckState.Indeterminate);
SetItemCheckState takes index of item and CheckState Enum Indeterminate is used to show shaded appearance
SetItemCheckState
CheckState