How to group buttons in a ToolStripEx control?
(Views :1094)

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;
C#
Me.toolStripEx1.GroupedButtons = True

Sample:

http://websamples.syncfusion.com/samples/KB/Tools.Windows/TGroup/main.htm
::adCenter::