I am using a ribbon control as follows:
The ScreenTip shows up fine, however it is displayed too far down on the screen. I would like to move it up vertically. I have tried applying a TranslateTransform to the LayoutTrasnform property of the implicit style for ScreenTip:
I have also tried to set the VerticalOffset. Both techniques do not work. I cannot use the ToolTip property on the ribbon:Button due to other constraints of the application.
Any help would be greatly appreciated!
<ribbon:Group Label="View">
<ribbon:Button ImageSourceLarge="images/zoomIn32.png" Label="Zoom In" Click="zoomIn_Click" ScreenTipHeader="Zoom In"/>
</ribbon:Group>
<Style TargetType="{x:Type ribbon:ScreenTip}">
<Setter Property="LayoutTransform">
<Setter.Value>
<TranslateTransform Y="-100"/>
</Setter.Value>
</Setter>
</Style>
Any help would be greatly appreciated!