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

RibbonPageGroup.SuperTip Property

Gets or sets a SuperTip associated with the ribbon page group. This is a dependency property.

Namespace: DevExpress.Xpf.Ribbon

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

Declaration

public SuperTip SuperTip { get; set; }

Property Value

Type Description
SuperTip

A SuperTip object.

Remarks

A SuperTip is an extended version of a tooltip, capable of displaying multiple tooltip items. SuperTips are represented by SuperTip class objects.

A SuperTip object assigned to the SuperTip property is displayed when the mouse cursor hovers over the RibbonPageGroup’s Caption Button. The button’s visibility is controlled by the RibbonPageGroup.ShowCaptionButton property.

The following code creates a SuperTip consisting of three items:

<dxr:RibbonPageGroup.SuperTip>
    <dx:SuperTip>
        <dx:SuperTipHeaderItem Content="Edit Popup Menu"/>
        <dx:SuperTipItem Content="Show the Edit popup menu" Glyph="\Images\Bars.png">
            <dx:SuperTipItem.LayoutStyle>
                <Style TargetType="{x:Type dx:Items2Panel}">
                    <Setter Property="Alignment" Value="Bottom"/>
                    <Setter Property="VerticalIndent" Value="10"/>
                </Style>
            </dx:SuperTipItem.LayoutStyle>
        </dx:SuperTipItem>

        <dx:SuperTipItemSeparator/>
        <dx:SuperTipItem Content="Use this menu to access various edit settings."/>
    </dx:SuperTip>
</dxr:RibbonPageGroup.SuperTip>
See Also