Skip to main content

BaseGallery.FilterMenuPopup Event

Fires when an end-user invokes the Group Filter menu.

Namespace: DevExpress.XtraBars.Ribbon.Gallery

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Layout")]
public event GalleryFilterMenuEventHandler FilterMenuPopup

Event Data

The FilterMenuPopup event's data class is GalleryFilterMenuEventArgs. The following properties provide information specific to this event:

Property Description
FilterMenu Gets the displayed menu.
Gallery Gets the current gallery.

Remarks

The FilterMenuPopup event is raised each time an end-user invokes a gallery’s Group Filter menu. Group filtering is supported by galleries derived from the StandaloneGallery class. These are dropdown galleries (InDropDownGallery) and galleries embedded into GalleryControls (GalleryControlGallery). See the StandaloneGallery.AllowFilter topic to learn more.

The event’s parameters enable you to identify the context menu and customize its contents (for instance, add new menu items or remove existing ones).

See Also