blob: 0bf1f9ffc49cac3f17ba6ba93006c22331df8cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Tango.FSE.Upgrade.Themes">
<Style TargetType="TextBlock" x:Key="FSE_HandlerStatusTextBlock">
<Setter Property="Foreground" Value="{StaticResource FSE_PrimaryForegroundBrush}"></Setter>
<Style.Triggers>
<DataTrigger Binding="{Binding Handler.Status}" Value="Failed">
<Setter Property="Foreground" Value="{StaticResource FSE_ErrorBrush}"></Setter>
</DataTrigger>
<DataTrigger Binding="{Binding Handler.Status}" Value="Completed">
<Setter Property="Foreground" Value="{StaticResource FSE_SuccessBrush}"></Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</ResourceDictionary>
|