Category / Section
How to set tristate for checkbox in the ToolStripEx?
Set tristate for checkbox
To set the checkBox tristate use the ToolStripCheckBox.ThreeState property. Refer to the below given code snippet and attached sample.
C#
this.toolStripCheckBox1.ThreeState = true;
VB
Me.toolStripCheckBox1.ThreeState = True