pla-01/Life/App.xaml
2019-10-28 18:54:41 +01:00

21 lines
910 B
XML

<Application x:Class="Life.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Life"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style x:Key="Header" TargetType="TextBlock">
<Setter Property="FontSize" Value="16" />
<Setter Property="FontWeight" Value="Medium"/>
<Setter Property="Margin" Value="0 0 18 0"/>
</Style>
<Style x:Key="Value" TargetType="TextBlock">
<Setter Property="FontSize" Value="24" />
<Setter Property="FontWeight" Value="Black"/>
</Style>
<Style x:Key="Setting" TargetType="Panel">
<Setter Property="Margin" Value="0 0 0 8"></Setter>
</Style>
</Application.Resources>
</Application>