Home › Forums › WinForms controls › Other WinForms controls › SmartToolBar event
I am using the Smarttoolbar Itemclick event. How do I find what checktool button was pressed and set its checked property to true?
Imported from legacy forums. Posted by troy@querytool.com (had 2418 views)
You can directly access the CheckTool’s “Checked” property.
checkTool1.Checked = true;
Imported from legacy forums. Posted by CharlesB (had 3459 views)