khchen / wNim

Nim's Windows GUI Framework
MIT License
326 stars 17 forks source link

Disable/Enable Controls #101

Closed super-tomcat closed 3 years ago

super-tomcat commented 3 years ago

Not sure if ive missed this setting somewhere, but is there any way to disable/enable a control?

bunkford commented 3 years ago

You can use from wWindow:

myControl.disable()
myControl.enable()
super-tomcat commented 3 years ago

You can use from wWindow:

myControl.disable()
myControl.enable()

Lovely Jubbly

thanks