2025-07-31 20:12:24 +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 ToggleButton}" x:Key="ExpanderDownHeaderStyle">
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
|
|
|
|
<Grid Background="Transparent">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid Margin="{TemplateBinding Padding}" SnapsToDevicePixels="False">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="20" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Path
|
|
|
|
|
Data="M 1,1.5 L 4.5,5 L 8,1.5"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Height="14"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
SnapsToDevicePixels="false"
|
|
|
|
|
Stretch="Uniform"
|
2025-08-12 23:08:54 +08:00
|
|
|
Stroke="{DynamicResource ControlStrongBackgroundBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
StrokeThickness="2"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Width="14"
|
|
|
|
|
x:Name="arrow" />
|
|
|
|
|
<ContentPresenter
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Margin="4,0,0,0"
|
|
|
|
|
RecognizesAccessKey="True"
|
|
|
|
|
SnapsToDevicePixels="True"
|
|
|
|
|
VerticalAlignment="Center" />
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
<Border
|
2025-08-20 12:10:35 +08:00
|
|
|
Background="{DynamicResource BorderNormalBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
Grid.Row="1"
|
|
|
|
|
Height="1"
|
|
|
|
|
SnapsToDevicePixels="False"
|
|
|
|
|
Visibility="Collapsed"
|
|
|
|
|
x:Name="separate" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsChecked" Value="true">
|
|
|
|
|
<Setter Property="Data" TargetName="arrow" Value="M 1,4.5 L 4.5,1 L 8,4.5" />
|
|
|
|
|
<Setter Property="Visibility" TargetName="separate" Value="Visible" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryFocusedBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsPressed" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryNormalBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource TextDisabledBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
<!-- 向上扩展 -->
|
|
|
|
|
<Style TargetType="{x:Type ToggleButton}" x:Key="ExpanderUpHeaderStyle">
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
|
|
|
|
<Grid Background="Transparent">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
Margin="{TemplateBinding Padding}"
|
|
|
|
|
SnapsToDevicePixels="False">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="20" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Path
|
|
|
|
|
Data="M 1,4.5 L 4.5,1 L 8,4.5"
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Height="14"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
SnapsToDevicePixels="false"
|
|
|
|
|
Stretch="Uniform"
|
2025-08-12 23:08:54 +08:00
|
|
|
Stroke="{DynamicResource ControlStrongBackgroundBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
StrokeThickness="2"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Width="14"
|
|
|
|
|
x:Name="arrow" />
|
|
|
|
|
<ContentPresenter
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
|
Margin="4,0,0,0"
|
|
|
|
|
RecognizesAccessKey="True"
|
|
|
|
|
SnapsToDevicePixels="True"
|
|
|
|
|
VerticalAlignment="Center" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<Border
|
2025-08-20 12:10:35 +08:00
|
|
|
Background="{DynamicResource BorderNormalBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
Grid.Row="0"
|
|
|
|
|
Height="1"
|
|
|
|
|
SnapsToDevicePixels="False"
|
|
|
|
|
Visibility="Collapsed"
|
|
|
|
|
x:Name="separate" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsChecked" Value="true">
|
|
|
|
|
<Setter Property="Data" TargetName="arrow" Value="M 1,1.5 L 4.5,5 L 8,1.5" />
|
|
|
|
|
<Setter Property="Visibility" TargetName="separate" Value="Visible" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryFocusedBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsPressed" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryNormalBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource TextDisabledBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
<!-- 向左扩展 -->
|
|
|
|
|
<Style TargetType="{x:Type ToggleButton}" x:Key="ExpanderLeftHeaderStyle">
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
|
|
|
|
<Grid Background="Transparent">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid
|
|
|
|
|
Grid.Column="1"
|
|
|
|
|
Margin="{TemplateBinding Padding}"
|
|
|
|
|
SnapsToDevicePixels="False">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="20" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Path
|
|
|
|
|
Data="M 4.5,1 L 1,4.5 L 4.5,8"
|
|
|
|
|
Height="14"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
SnapsToDevicePixels="false"
|
|
|
|
|
Stretch="Uniform"
|
2025-08-12 23:08:54 +08:00
|
|
|
Stroke="{DynamicResource ControlStrongBackgroundBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
StrokeThickness="2"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
x:Name="arrow" />
|
|
|
|
|
<ContentPresenter
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Margin="0,4,0,0"
|
|
|
|
|
RecognizesAccessKey="True"
|
|
|
|
|
SnapsToDevicePixels="True"
|
|
|
|
|
VerticalAlignment="Top">
|
|
|
|
|
<ContentPresenter.LayoutTransform>
|
|
|
|
|
<RotateTransform Angle="90" />
|
|
|
|
|
</ContentPresenter.LayoutTransform>
|
|
|
|
|
</ContentPresenter>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Border
|
2025-08-20 12:10:35 +08:00
|
|
|
Background="{DynamicResource BorderNormalBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
Grid.Column="0"
|
|
|
|
|
SnapsToDevicePixels="False"
|
|
|
|
|
Visibility="Collapsed"
|
|
|
|
|
Width="1"
|
|
|
|
|
x:Name="separate" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsChecked" Value="true">
|
|
|
|
|
<Setter Property="Data" TargetName="arrow" Value="M 1,1 L 4.5,4.5 L 1,8" />
|
|
|
|
|
<Setter Property="Visibility" TargetName="separate" Value="Visible" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryFocusedBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsPressed" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryNormalBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource TextDisabledBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
<!-- 向右扩展 -->
|
|
|
|
|
<Style TargetType="{x:Type ToggleButton}" x:Key="ExpanderRightHeaderStyle">
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type ToggleButton}">
|
|
|
|
|
<Grid Background="Transparent">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid
|
|
|
|
|
Grid.Column="0"
|
|
|
|
|
Margin="{TemplateBinding Padding}"
|
|
|
|
|
SnapsToDevicePixels="False">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="20" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Path
|
|
|
|
|
Data="M 1,1 L 4.5,4.5 L 1,8"
|
|
|
|
|
Height="14"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
SnapsToDevicePixels="false"
|
|
|
|
|
Stretch="Uniform"
|
2025-08-12 23:08:54 +08:00
|
|
|
Stroke="{DynamicResource ControlStrongBackgroundBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
StrokeThickness="2"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Width="14"
|
|
|
|
|
x:Name="arrow" />
|
|
|
|
|
<ContentPresenter
|
|
|
|
|
Grid.Row="1"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Margin="0,4,0,0"
|
|
|
|
|
RecognizesAccessKey="True"
|
|
|
|
|
SnapsToDevicePixels="True"
|
|
|
|
|
VerticalAlignment="Top">
|
|
|
|
|
<ContentPresenter.LayoutTransform>
|
|
|
|
|
<RotateTransform Angle="-90" />
|
|
|
|
|
</ContentPresenter.LayoutTransform>
|
|
|
|
|
</ContentPresenter>
|
|
|
|
|
</Grid>
|
|
|
|
|
<Border
|
2025-08-20 12:10:35 +08:00
|
|
|
Background="{DynamicResource BorderNormalBrush}"
|
2025-07-31 20:12:24 +08:00
|
|
|
Grid.Column="1"
|
|
|
|
|
SnapsToDevicePixels="False"
|
|
|
|
|
Visibility="Collapsed"
|
|
|
|
|
Width="1"
|
|
|
|
|
x:Name="separate" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsChecked" Value="true">
|
|
|
|
|
<Setter Property="Data" TargetName="arrow" Value="M 4.5,1 L 1,4.5 L 4.5,8" />
|
|
|
|
|
<Setter Property="Visibility" TargetName="separate" Value="Visible" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsMouseOver" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryFocusedBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsPressed" Value="true">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource PrimaryNormalBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Stroke" TargetName="arrow" Value="{DynamicResource TextDisabledBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Style TargetType="{x:Type Expander}">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Foreground" Value="{DynamicResource TextPrimaryBrush}" />
|
|
|
|
|
<Setter Property="Background" Value="{DynamicResource BackgroundContainerBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
|
|
|
|
<Setter Property="VerticalContentAlignment" Value="Stretch" />
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="BorderBrush" Value="{DynamicResource BorderNormalBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
<Setter Property="FontSize" Value="14" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="1" />
|
|
|
|
|
<Setter Property="Margin" Value="4" />
|
|
|
|
|
<Setter Property="Padding" Value="4" />
|
|
|
|
|
<Setter Property="Template">
|
|
|
|
|
<Setter.Value>
|
|
|
|
|
<ControlTemplate TargetType="{x:Type Expander}">
|
|
|
|
|
<Border
|
|
|
|
|
Background="{TemplateBinding Background}"
|
|
|
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
|
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
|
|
|
CornerRadius="4"
|
|
|
|
|
SnapsToDevicePixels="true">
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<ToggleButton
|
|
|
|
|
Content="{TemplateBinding Header}"
|
|
|
|
|
ContentTemplate="{TemplateBinding HeaderTemplate}"
|
|
|
|
|
ContentTemplateSelector="{TemplateBinding HeaderTemplateSelector}"
|
|
|
|
|
DockPanel.Dock="Top"
|
|
|
|
|
FocusVisualStyle="{DynamicResource FocusVisual}"
|
|
|
|
|
FontFamily="{TemplateBinding FontFamily}"
|
|
|
|
|
FontSize="{TemplateBinding FontSize}"
|
|
|
|
|
FontStretch="{TemplateBinding FontStretch}"
|
|
|
|
|
FontStyle="{TemplateBinding FontStyle}"
|
|
|
|
|
FontWeight="{TemplateBinding FontWeight}"
|
|
|
|
|
Foreground="{TemplateBinding Foreground}"
|
|
|
|
|
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
|
|
|
IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
|
|
|
|
|
Padding="6"
|
|
|
|
|
Style="{StaticResource ExpanderDownHeaderStyle}"
|
|
|
|
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
|
|
|
x:Name="HeaderSite" />
|
|
|
|
|
<ContentPresenter
|
|
|
|
|
DockPanel.Dock="Bottom"
|
|
|
|
|
Focusable="false"
|
|
|
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
|
|
|
Margin="{TemplateBinding Padding}"
|
|
|
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
|
|
|
Visibility="Collapsed"
|
|
|
|
|
x:Name="ExpandSite" />
|
|
|
|
|
</DockPanel>
|
|
|
|
|
</Border>
|
|
|
|
|
<ControlTemplate.Triggers>
|
|
|
|
|
<Trigger Property="IsExpanded" Value="true">
|
|
|
|
|
<Setter Property="Visibility" TargetName="ExpandSite" Value="Visible" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="ExpandDirection" Value="Right">
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="ExpandSite" Value="Right" />
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="HeaderSite" Value="Left" />
|
|
|
|
|
<Setter Property="Style" TargetName="HeaderSite" Value="{StaticResource ExpanderRightHeaderStyle}" />
|
|
|
|
|
<!-- 靠左 -->
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Left" />
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Stretch" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="ExpandDirection" Value="Up">
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="ExpandSite" Value="Top" />
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="HeaderSite" Value="Bottom" />
|
|
|
|
|
<Setter Property="Style" TargetName="HeaderSite" Value="{StaticResource ExpanderUpHeaderStyle}" />
|
|
|
|
|
<!-- 靠下 -->
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Bottom" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="ExpandDirection" Value="Left">
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="ExpandSite" Value="Left" />
|
|
|
|
|
<Setter Property="DockPanel.Dock" TargetName="HeaderSite" Value="Right" />
|
|
|
|
|
<Setter Property="Style" TargetName="HeaderSite" Value="{StaticResource ExpanderLeftHeaderStyle}" />
|
|
|
|
|
<!-- 靠右 -->
|
|
|
|
|
<Setter Property="HorizontalAlignment" Value="Right" />
|
|
|
|
|
<Setter Property="VerticalAlignment" Value="Stretch" />
|
|
|
|
|
</Trigger>
|
|
|
|
|
<Trigger Property="IsEnabled" Value="false">
|
2025-08-12 23:08:54 +08:00
|
|
|
<Setter Property="Foreground" Value="{DynamicResource TextDisabledBrush}" />
|
2025-07-31 20:12:24 +08:00
|
|
|
</Trigger>
|
|
|
|
|
</ControlTemplate.Triggers>
|
|
|
|
|
</ControlTemplate>
|
|
|
|
|
</Setter.Value>
|
|
|
|
|
</Setter>
|
|
|
|
|
</Style>
|
|
|
|
|
</ResourceDictionary>
|