#141 – Dependency Property Value Sources: #7 – Style Setters
November 30, 2010 1 Comment
The seventh source in the list of sources for the base value of a dependency property is a style setter. A property obtains its value from a style setter when a style is applied to the parent element and the property’s value is set using a Setter in that style.
In the example below, a button has the style redBlueTextButton applied to it. This style sets the Foreground property to red using a Setter. It also sets the property to blue when you hover the mouse over the control. The source of the Foreground property is style (style setter) to start with and then becomes style trigger when you move the mouse over the control.
<Window.Resources> <Style x:Key="redBlueTextButton" TargetType="{x:Type Button}"> <Setter Property="Foreground" Value="Red"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Foreground" Value="Blue"/> </Trigger> </Style.Triggers> </Style> </Window.Resources> <StackPanel Orientation="Vertical"> <Button Content="Run" Height="23" Width="75" Style="{StaticResource redBlueTextButton}"/> <Button Content="Skip" Height="23" Width="75"/> </StackPanel>