Articles in this section
Category / Section

How to show or hide the launcher button in the ToolStripEx?

1 min read

Show or hide the launcher button

ToolStripEx control displays a launcher button at the top right corner of the control, by default. The launcher visibility can be customized by using the "ShowLauncher" property in the ToolStripEx. The ToolStripEx also contains a "LauncherClick" event.

C#

//Shows the launcher in the ToolStripEx
this.toolStripEx1.ShowLauncher = true;
//Hides the launcher in the ToolStripEx
this.toolStripEx1.ShowLauncher = false;

VB

'Shows the launcher in the ToolStripEx
Me.toolStripEx1.ShowLauncher = True
'Hides the launcher in the ToolStripEx
Me.toolStripEx1.ShowLauncher = False

The value of the "ShowLauncher" property is set to true, by default.

Launcher is displayed in ToolStripEx

Figure 1: Launcher is displayed in ToolStripEx

Launcher is hidden in ToolStripEx

Figure 2: Launcher is hidden in ToolStripEx

Samples:

C#: ToolStripEx_ShowLauncher_C#

VB: ToolStripEx_ShowLauncher_VB

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied