2025-07-11 09:20:23 +08:00
|
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
|
<Style TargetType="{x:Type StatusBar}">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Background" Value="{DynamicResource BackgroundContainerBrush}"/>
|
|
|
|
|
<Setter Property="Foreground" Value="{DynamicResource TextPrimaryBrush}"/>
|
2025-07-11 09:20:23 +08:00
|
|
|
<Setter Property="FontSize" Value="14"/>
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type StatusBar}">
|
|
|
|
|
<Border Background="{TemplateBinding Background}"
|
|
|
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
|
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
|
|
|
Padding="{TemplateBinding Padding}"
|
|
|
|
|
SnapsToDevicePixels="true">
|
|
|
|
|
<ItemsPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
</ResourceDictionary>
|