Skip to main content

RibbonGalleryBarItem Class

A bar item that displays a gallery.

Namespace: DevExpress.Xpf.Ribbon

Assembly: DevExpress.Xpf.Ribbon.v23.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