RibbonButtonBase.ToolTipTitle Property
In This Article
Gets or sets the ribbon button’s tooltip title text. This is a dependency property.
Namespace: DevExpress.WinUI.Ribbon
Assembly: DevExpress.WinUI.Ribbon.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
#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>
See Also