Files
Shrlalgo.RvKits/WPFluent/Controls/GridView/GridViewHeaderRowIndicator.xaml

18 lines
641 B
Plaintext
Raw Normal View History

2025-07-11 09:20:23 +08:00
<ResourceDictionary
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-07-11 09:20:23 +08:00
<ControlTemplate TargetType="Separator" x:Key="GridViewHeaderRowIndicatorTemplate">
<Border>
<Rectangle
2025-07-11 09:20:23 +08:00
Fill="{DynamicResource SystemFillColorAttentionBrush}"
Height="18"
HorizontalAlignment="Left"
2025-07-11 09:20:23 +08:00
Margin="0"
RadiusX="2"
2025-07-11 09:20:23 +08:00
RadiusY="2"
VerticalAlignment="Center"
Width="3" />
</Border>
</ControlTemplate>
</ResourceDictionary>