Hi,
How can i add a tooltip to a ribbontool?
Regards,
Michael
Hi Michael,
You can set your tooltip on any tool like this:
<ig:ButtonTool Caption="Button With Tip">
<ig:ButtonTool.Style>
<Style TargetType="ig:ButtonToolControl">
<Setter Property="ToolTipService.ToolTip" Value="This is my tooltip." />
</Style>
</ig:ButtonTool.Style>
</ig:ButtonTool>
<ig:ButtonTool Caption="Button"/>
wpf had the nice XamRibbonScreenTip, is it going to be availalbe in silverlight?
<r:ButtonTool Caption="Screen Tip"> <r:ButtonTool.ToolTip> <r:XamRibbonScreenTip Header="My Screen Tip" Content="This is a Screen Tip" FooterSeparatorVisibility="Hidden" /> </r:ButtonTool.ToolTip></r:ButtonTool>
Hi!
is there any way to set the ToolTips by code, insted of Xaml?
Thanx Dawud.