pla-01/Life/App.xaml
2019-10-28 16:12:04 +01:00

19 lines
840 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 0 0"/>
</Style>
<Style x:Key="Value" TargetType="TextBlock">
<Setter Property="FontSize" Value="24" />
<Setter Property="FontWeight" Value="Black"/>
<Setter Property="Margin" Value="18 0 0 0"></Setter>
</Style>
</Application.Resources>
</Application>