windowsforms-devexpress-dot-xtratoolbox-dot-toolboxoptionsview-88472578.md
Gets or sets whether the button that invokes a popup menu providing access to the ToolboxControl groups is displayed.
Namespace : DevExpress.XtraToolbox
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DefaultValue(true)]
public bool ShowMenuButton { get; set; }
<DefaultValue(True)>
Public Property ShowMenuButton As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the ToolboxControl displays the menu button; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to ShowMenuButton |
|---|---|
| ToolboxControl |
.OptionsView .ShowMenuButton
|
The ShowMenuButton property specifies whether the ToolboxControl displays the menu button. This menu provides access to the ToolboxControl groups. If the menu button is displayed, you can use ToolboxOptionsView.MenuButtonCaption and ToolboxOptionsView.MenuButtonImageOptions properties to customize the button caption and icon. The ToolboxControl.InitializeMenu event fires before the menu is shown and allows you to customize the menu content.
The figure below shows the ToolboxControl displaying the menu button and the invoked menu.
See Also