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

RibbonGalleryBarItem Class

A bar item that displays a gallery.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v24.2.dll

NuGet Package: DevExpress.Wpf.Ribbon

#Declaration

public class RibbonGalleryBarItem :
    BarItem,
    ILinksHolder,
    IMultipleElementRegistratorSupport,
    IBarNameScopeSupport,
    IInputElement,
    ILogicalChildrenContainer

#Remarks

Use RibbonGalleryBarItem objects to add galleries to the RibbonControl.

BarItemTypes-RibbonGalleryBarItem

To specify a gallery for the RibbonGalleryBarItem, use the RibbonGalleryBarItem.Gallery property. A gallery consists of gallery groups (GalleryItemGroup), each of which can display any number of gallery items (GalleryItem).

Optionally, you can implement an extended version of the created gallery that will be displayed as a popup window when the RibbonGalleryBarItem‘s Dropdown button is clicked. A dropdown gallery can be specified via the RibbonGalleryBarItem.DropDownGallery property.

By default, captions (GalleryItemGroup.Caption) of gallery groups are not visible for in-ribbon galleries. By default, the captions are visible for dropdown galleries.

Note

RibbonGalleryBarItem items are only supported within a RibbonPageGroup.

The following example shows how to create an in-Ribbon gallery:

View Example

RibbonControl_Ex_CustomCategory

The following code snippets (auto-collected from DevExpress Examples) contain references to the RibbonGalleryBarItem class.

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