Is it possible to define the ScreenTipHelpUri in XAML? I have tried the following.
<Style TargetType="{x:Type ribbon:Button}" x:Key="BookmarkRibbonButtonStyle">
...
<Setter Property="ScreenTipHeader" Value="bla" />
<Setter Property="ScreenTipDescription" Value="bla" />
<Setter Property="ScreenTipHelpUri" Value="http://somewhere.com/help" />
...
</Style>
I get a design-time XAML error that says "The method or operation is not implemented" for the Value of the ScreenTipHelpUri. When I look through the sample application I only see three places that the ScreenTipHelpUri property is used and its all in code not XAML.
Thanks