46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style TargetType="{x:Type TextBlock}" x:Key="txtBlockBaseStyle">
|
|
<Setter Property="Height" Value="20"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="Margin" Value="10,0,3,0"/>
|
|
<Setter Property="FontSize" Value="16"/>
|
|
<!--<Setter Property="Background">
|
|
<Setter.Value>
|
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
|
<GradientStop Color="White" Offset="0"/>
|
|
<GradientStop Color="#FFE4E4E4" Offset="1"/>
|
|
</LinearGradientBrush>
|
|
</Setter.Value>
|
|
</Setter>-->
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type TextBlock}" x:Key="txtBlockStyle">
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="Width" Value="90"/>
|
|
<Setter Property="Height" Value="25"/>
|
|
<Setter Property="Margin" Value="1,0,3,0"/>
|
|
<Setter Property="FontSize" Value="16"/>
|
|
<Setter Property="Background" Value="#FFEEF3F6"/>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type TextBlock}" x:Key="txtBlocStyle1">
|
|
<Setter Property="FontSize" Value="15"/>
|
|
<Setter Property="Foreground" Value="Black"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="Margin" Value="10,0,3,0"/>
|
|
<!--<Setter Property="Background">
|
|
<Setter.Value>
|
|
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
|
|
<GradientStop Color="White" Offset="0"/>
|
|
<GradientStop Color="#FFE4E4E4" Offset="1"/>
|
|
</LinearGradientBrush>
|
|
</Setter.Value>
|
|
</Setter>-->
|
|
</Style>
|
|
|
|
</ResourceDictionary> |