I've got an implicite style that overrides all tooltips in my application like this:
unfortunately it's not replacing the tooltip on a textbox, which on closer examination seems to be an ActivePro textbox. I've not been able to figure out how to specify a style that will override the tooltips on this textbox, or an ActivePro button.
Can anyone help? I'm sure its just a case of knowing what the TargetType needs to be but I've not been able to get it working.
Thanks,
Stephen
<Style x:Key="{x:Type ToolTip}" TargetType="{x:Type ToolTip}">
<Style.Setters>
<Setter Property="ContentTemplateSelector" Value="{StaticResource ToolTipTemplateSelector}">
</Setter>
</Style.Setters>
</Style>
Can anyone help? I'm sure its just a case of knowing what the TargetType needs to be but I've not been able to get it working.
Thanks,
Stephen