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

RibbonButtonBase.ToolTipTitle Property

Gets or sets the ribbon button’s tooltip title text. This is a dependency property.

Namespace: DevExpress.WinUI.Ribbon

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

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "OnToolTipChanged")]
public string ToolTipTitle { get; set; }

Property Value

Type Description
String

The ribbon button’s tooltip title text.

Remarks

The ToolTipTitle and the ToolTipDescription are not displayed when the tooltip is specified with the ToolTip property.

Use the ToolTipTitle property to specify the tooltip’s first line of text:

<Window ... 
    xmlns:dxr="using:DevExpress.WinUI.Ribbon">
    <Grid>
        <dxr:RibbonControl>
            <dxr:RibbonControl.Tabs>
              <dxr:RibbonTab Caption="Home" >
                  <dxr:RibbonGroup Caption="Clipboard">
                      <dxr:RibbonButton Content="Copy" ToolTipTitle="Copy"
                                        ToolTipDescription="Copy the selection and put it on the Clipboard." >
                      </dxr:RibbonButton>
                      <!-- ... -->
                  </dxr:RibbonGroup>
              </dxr:RibbonTab>
            </dxr:RibbonControl.Tabs>
        </dxr:RibbonControl>
        <!-- ... -->
    </Grid>
</Window>

WinUI RibbonControl - Tooltip Description

See Also