21 lines
910 B
XML
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>
|