This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/UICore/Style/CadetBlue/TextBlockStyle.xaml

35 lines
1.3 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="TextBlock">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<!--<Setter Property="TextAlignment" Value="Center"/>-->
<!--<Setter Property="FontFamily" Value="Arial" />-->
</Style>
<Style
x:Key="MainTextBlock"
BasedOn="{StaticResource {x:Type TextBlock}}"
TargetType="TextBlock">
<Setter Property="FontSize" Value="12" />
<Setter Property="Foreground" Value="#373737" />
<Setter Property="FontFamily" Value="Arial,SimSun" />
</Style>
<Style
x:Key="MessTextBlock"
BasedOn="{StaticResource {x:Type TextBlock}}"
TargetType="TextBlock">
<Setter Property="FontSize" Value="15" />
<Setter Property="Foreground" Value="Black" />
<Setter Property="FontFamily" Value="Arial,SimSun" />
</Style>
<Style
x:Key="MainBigTextBlock"
BasedOn="{StaticResource {x:Type TextBlock}}"
TargetType="TextBlock">
<Setter Property="FontSize" Value="25" />
<Setter Property="HorizontalAlignment" Value="Left" />
</Style>
</ResourceDictionary>