Base Style


<ResourceDictionary xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation&#8221;
xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml”&gt;

<Style x:Key=”BaseStyle”>
<Setter Property=”Control.Margin” Value=”3″ />
<Setter Property=”Control.Background” Value=”{x:Null}” />
<Setter Property=”Control.BorderBrush” Value=”{x:Null}” />
<Setter Property=”TextElement.FontFamily” Value=”{StaticResource fontPrimary}” />
<Setter Property=”Control.VerticalAlignment” Value=”Center” />
</Style>

<Style x:Key=”BaseTextBlock” TargetType=”{x:Type TextBlock}” BasedOn=”{StaticResource BaseStyle}”>
<Setter Property=”HorizontalAlignment” Value=”Left” />
</Style>
</ResourceDictionary>