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

FilterControl.MenuManager Property

Gets or sets the menu manager which controls the look and feel of the context menus.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.2.dll

Declaration

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

Property Value

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

An object which implements the DevExpress.Utils.Menu.IDXMenuManager interface.

Remarks

Objects that implement the DevExpress.Utils.Menu.IDXMenuManager interface allow you to control the look and feel of context menus. If the MenuManager property is set to null (Nothing in Visual Basic), the Filter Control’s context menus will be painted by the filter control itself.

Currently, the IDXMenuManager interface is implemented by the BarManager control which is a part of the DevExpress Ribbon, Menu and Docking Library.

If the MenuManager property is set to an instance of the BarManager component, you can provide different look and feel styles (Flat, Style3D, OfficeXP, Office2003, Skin) for context menus. Look and feel settings are controlled in this instance by the BarAndDockingController which is associated with the bar manager.

The following code snippets (auto-collected from DevExpress Examples) contain references 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.

See Also