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"/>
Thanx Dawud.
Hi Everybody?
Is there a way to use a binding in the property value instead of a hard-coded value? Everytime I try to use a Binding i get an exception that the property is read-only. But why does it work with the hard-coded value?
Thank you
cheers, hp