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

Popular posts from this blog

haskell - Using filter on an item in a list? -

c# - When does PreApplicationStartMethod actually get triggered to run? -

c# - Binding attached property to IEnumerable -