Files
huadongmocaceshiyi/Themes/Generic.xaml
2026-03-23 17:31:25 +08:00

31 lines
1.5 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:PLCDataMonitor">
<Style TargetType="{x:Type local:AlarmScrollingText}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:AlarmScrollingText}">
<Border Name="PART_ClipBorder"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
ClipToBounds="True"
Height="40">
<TextBlock Name="PART_TextBlock"
Text="{TemplateBinding Text}"
FontSize="18"
FontWeight="Bold"
Foreground="Red"
VerticalAlignment="Center"
RenderTransformOrigin="0,0.5">
<TextBlock.RenderTransform>
<TranslateTransform X="0"/>
</TextBlock.RenderTransform>
</TextBlock>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>