3074/App.xaml

22 lines
970 B
Plaintext
Raw Permalink Normal View History

2024-04-05 21:41:56 +02:00
<Application x:Class="tsf_3074.App"
2024-04-05 18:12:07 +02:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2024-04-05 21:41:56 +02:00
xmlns:local="clr-namespace:tsf_3074"
2024-04-05 18:12:07 +02:00
Startup="App_OnStartup"
DispatcherUnhandledException="App_OnDispatcherUnhandledException">
<Application.Resources>
2024-04-05 18:41:29 +02:00
<ResourceDictionary>
<Style TargetType="TextBlock">
<Style.Triggers>
<Trigger Property="TextBlock.Text" Value="On">
<Setter Property="Foreground" Value="LawnGreen"></Setter>
</Trigger>
<Trigger Property="TextBlock.Text" Value="Off">
<Setter Property="Foreground" Value="Red"></Setter>
</Trigger>
</Style.Triggers>
</Style>
</ResourceDictionary>
2024-04-05 18:12:07 +02:00
</Application.Resources>
</Application>