windowsforms-devexpress-dot-xtrabars-dot-ribbon-dot-gallery-dot-basegallery-c6947501.md
Fires when an end-user invokes the Group Filter menu.
Namespace : DevExpress.XtraBars.Ribbon.Gallery
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Layout")]
public event GalleryFilterMenuEventHandler FilterMenuPopup
<DXCategory("Layout")>
Public Event FilterMenuPopup As GalleryFilterMenuEventHandler
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. |
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