11 lines
580 B
XML
11 lines
580 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:ClientApp">
|
|
|
|
<Style TargetType="{x:Type TextBlock}" x:Key="HeaderText">
|
|
<Setter Property="Foreground" Value="{StaticResource ForegroundMainBrush}"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="Margin" Value="0 4"/>
|
|
</Style>
|
|
</ResourceDictionary> |