I was wondering how you make a CheckBox unselectable in c#? I thought it would be something like SetSelectable (false) or something but I can\'t seem to see th
CheckBox
You can set the Enabled property to false:
Enabled
false
checkBox1.Enabled = false;