How to group buttons in a ToolStripEx control?
Group buttons
The buttons in a ToolStripEx control can be grouped using the GroupedButtons property. Please refer the below code snippet which illustrates this:
C#
this.toolStripEx1.GroupedButtons = true;
VB
Me.toolStripEx1.GroupedButtons = True