vote up 0 vote down star

How to set the default style for a type in code-behind e.g. for

<ScaleTransform x:Key="scaler" ScaleX="1.25" ScaleY="1.25" />
<Style TargetType="{x:Type ToolTip}">
  <Setter Property="LayoutTransform" Value="{DynamicResource scaler}"/>
</Style>

I need to set the style for the tooltip in code-behind instead of in xaml.

flag

64% accept rate

1 Answer

vote up 0 vote down check
   Style style = new Style {TargetType = typeof (ToolTip)};

    Setter setter = new Setter();
    setter.Property = FrameworkElement.LayoutTransformProperty;
    setter.Value = FindResource("scaler");

    style.Setters.Add(setter);

    Resources.Add(typeof(ToolTip), style);
link|flag
I wouldn't mind if you vote my answer to be helpful ;). – Claudiu Sep 4 at 14:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.