Skip to main content
A newer version of this page is available. .

OfficeNavigationBar.MenuManager Property

Gets or sets an object that controls the look and feel of the control’s popup menus.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(null)]
public IDXMenuManager MenuManager { get; set; }

Property Value

Type Default Description
DevExpress.Utils.Menu.IDXMenuManager *null*

An object that controls the look and feel of the control’s popup menus.

Remarks

The MenuManager property allows you to specify an IDXMenuManager object to control the look and feel of the control’s popup menus. If the property is set to null, the control’s popup menus will be painted by the control itself. Otherwise, the IDXMenuManager object will be responsible for painting the menus.

Currently, the IDXMenuManager interface is implemented by the BarManager component.

If the MenuManager property is set to an instance of the BarManager component, you can provide different look and feel styles (Skin, Flat, Style3D, OfficeXP, Office2003, etc.) for popup menus. In this case, look and feel settings are controlled by the BarAndDockingController.LookAndFeel and BarAndDockingController.PaintStyleName properties of the BarAndDockingController used by the BarManager.

See Also