I’m writing an app to replace some paper-based testing forms. These forms have checkboxes that the tester marks with either a check or an X depending on the test result. How would I go about getting this visual feel from a winforms checkbox?
I’m writing an app to replace some paper-based testing forms. These forms have checkboxes
Share
Enable the
ThreeStateproperty.If for the “Indeterminate” state, you would rather have an “X”, you can paint this yourself (using the control’s paint event). One example:
You can of course draw some lines or something more graphical. Cheers!