|
ToolStripEx control has a launcher which is visible by default in the top right corner of the control. The launcher visibility can be changed by using the ShowLauncher property.The ToolStripEx also contains an LauncherClick event. Please refer the below code snippet which illustrates this: C# this.toolStripEx1.ShowLauncher = false;
VB Me.toolStripEx1.ShowLauncher = False Sample: http://websamples.syncfusion.com/samples/KB/Tools.Windows/TToolStripEX/main.htm |