c# - How to make a checkbox unselectable? -
i wondering how make checkbox unselectable in c#? thought setselectable(false) or cant seem see method.
i found canselect seems read property.
thanks
you can set enabled
property false
. ie. checkbox1.enabled = false;
edit: slow :p
Comments
Post a Comment