Skip to main content
A newer version of this page is available.

RibbonToolbarGroup Class

Namespace: DevExpress.WinUI.Ribbon

Assembly: DevExpress.WinUI.Ribbon.v21.1.dll

Declaration

[ContentProperty(Name = "Items")]
public class RibbonToolbarGroup :
    RibbonGroupBase

Remarks

RibbonToolbarControl - Tabs and Groups

A RibbonToolbarGroup item can contain the following elements:

The following code sample displays File, Clipboard, Font, and Alignment RibbonToolbarControl groups:

<Ribbon:RibbonToolbarControl>
    <Ribbon:RibbonToolbarTab Caption="Home" >
        <Ribbon:RibbonToolbarGroup Caption="File">
            <Ribbon:RibbonToolbarButton Content="Open"/>
            <!-- ... -->
        </Ribbon:RibbonToolbarGroup>
        <Ribbon:RibbonToolbarGroup Caption="Clipboard">
            <!-- ... -->
        </Ribbon:RibbonToolbarGroup>
        <Ribbon:RibbonToolbarGroup Caption="Font">
            <!-- ... -->
        </Ribbon:RibbonToolbarGroup>
        <Ribbon:RibbonToolbarGroup Caption="Alignment">
            <!-- ... -->
        </Ribbon:RibbonToolbarGroup>
    </Ribbon:RibbonToolbarTab>
    <!-- ... -->
</Ribbon:RibbonToolbarControl>

Inheritance

Show 11 items
Object
DependencyObject
UIElement
FrameworkElement
Panel
DevExpress.WinUI.Controls.Core.Internal.SourceItemsPanelBase
DevExpress.WinUI.Controls.Core.Internal.ItemsPanelBase<DevExpress.WinUI.Ribbon.IRibbonItemBase>
DevExpress.WinUI.Ribbon.Internal.IndependentGroupPanelBase
DevExpress.WinUI.Ribbon.Internal.RibbonGroupPanelBase
DevExpress.WinUI.Ribbon.RibbonGroupBase
RibbonToolbarGroup
See Also