2025-07-11 09:20:23 +08:00
|
|
|
<ResourceDictionary
|
2025-02-10 20:53:40 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2025-07-11 09:20:23 +08:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
2025-02-10 20:53:40 +08:00
|
|
|
|
2025-07-11 09:20:23 +08:00
|
|
|
<ControlTemplate TargetType="Separator" x:Key="GridViewHeaderRowIndicatorTemplate">
|
2025-02-10 20:53:40 +08:00
|
|
|
<Border>
|
|
|
|
|
<Rectangle
|
2025-07-11 09:20:23 +08:00
|
|
|
Fill="{DynamicResource SystemFillColorAttentionBrush}"
|
2025-02-10 20:53:40 +08:00
|
|
|
Height="18"
|
|
|
|
|
HorizontalAlignment="Left"
|
2025-07-11 09:20:23 +08:00
|
|
|
Margin="0"
|
2025-02-10 20:53:40 +08:00
|
|
|
RadiusX="2"
|
2025-07-11 09:20:23 +08:00
|
|
|
RadiusY="2"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Width="3" />
|
2025-02-10 20:53:40 +08:00
|
|
|
</Border>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</ResourceDictionary>
|