Created
June 28, 2017 08:36
-
-
Save Krumelur/fc02b88668dd1a13a90af78a710034f3 to your computer and use it in GitHub Desktop.
Style setters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Style x:Key="infoLabelStyle" TargetType="Label"> | |
<Setter Property="TextColor" Value="Green" /> | |
</Style> | |
<Style x:Key="testStyle" TargetType="Label"> | |
<Setter Property="TextColor" Value="Red" /> | |
</Style> | |
<Label x:Name="totalOutput" Text="0.00" Style="{StaticResource infoLabelStyle}" Grid.Row="2" Grid.Column="1"> | |
<Label.Triggers> | |
<DataTrigger TargetType="Label" | |
Binding="{Binding Source={x:Reference sw}, Path=IsToggled}" Value="true"> | |
<Setter Property="Style" Value="{StaticResource testStyle}" /> | |
</DataTrigger> | |
</Label.Triggers> | |
</Label> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment