Files
huadongmocaceshiyi/Themes/Generic.xaml

31 lines
1.5 KiB
Plaintext
Raw Normal View History

2026-03-23 17:31:25 +08:00
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:PLCDataMonitor">
2026-03-24 19:34:22 +08:00
<Style TargetType="local:AlarmScrollingText">
2026-03-23 17:31:25 +08:00
<Setter Property="Template">
<Setter.Value>
2026-03-24 19:34:22 +08:00
<ControlTemplate TargetType="local:AlarmScrollingText">
<Border x:Name="PART_ClipBorder"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
CornerRadius="4"
ClipToBounds="True"
Padding="5,5">
<ScrollViewer HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden">
<TextBlock x:Name="PART_TextBlock"
2026-03-23 17:31:25 +08:00
Text="{TemplateBinding Text}"
2026-03-24 19:34:22 +08:00
FontSize="14"
2026-03-23 17:31:25 +08:00
FontWeight="Bold"
Foreground="Red"
2026-03-24 19:34:22 +08:00
TextWrapping="NoWrap"
VerticalAlignment="Center"/>
</ScrollViewer>
2026-03-23 17:31:25 +08:00
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
2026-03-24 19:34:22 +08:00
2026-03-23 17:31:25 +08:00
</ResourceDictionary>