pla-01/Life/App.xaml
2019-10-28 17:04:42 +01:00

18 lines
775 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>
</Application.Resources>
</Application>