Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BaseGallery.FilterMenuPopup Event

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

Namespace: DevExpress.XtraBars.Ribbon.Gallery

Assembly: DevExpress.XtraBars.v24.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