C00225155-02/C00225155/MegaRobo.C00225155/MegaRobo.C00225155App/res/TextBlockStyle.xaml

46 lines
2.0 KiB
Plaintext
Raw Normal View History

2026-04-13 09:12:49 +00:00
<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>