dashboard-devexpress-dot-dashboardwin-dot-dashboarddesigner-f5947bfd.md
Gets or sets the menu manager that controls the look and feel of the DashboardDesigner menus.
Namespace : DevExpress.DashboardWin
Assembly : DevExpress.Dashboard.v25.2.Win.dll
NuGet Package : DevExpress.Win.Dashboard
[DefaultValue(null)]
public IDXMenuManager MenuManager { get; set; }
<DefaultValue(Nothing)>
Public Property MenuManager As IDXMenuManager
| Type | Default | Description |
|---|---|---|
| DevExpress.Utils.Menu.IDXMenuManager | null |
An object which implements the DevExpress.Utils.Menu.IDXMenuManager interface.
|
The IDXMenuManager interface is implemented by the BarManager component or the RibbonControl control, which is a part of the XtraBars suite. The XtraBars suite is a separate library which provides components for implementing menus, toolbars and the docking functionality. To learn more, see the Ribbon, Bars and Menu.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MenuManager property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
this.designer = designer;
RibbonControl ribbon = (RibbonControl)designer.MenuManager;
RibbonPage page = ribbon.GetDashboardRibbonPage(DashboardBarItemCategory.ChartTools, DashboardRibbonPage.Design);
Me.designer = designer
Dim ribbon As RibbonControl = CType(designer.MenuManager, RibbonControl)
Dim page As RibbonPage = ribbon.GetDashboardRibbonPage(DashboardBarItemCategory.ChartTools, DashboardRibbonPage.Design)
See Also