You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.4 KiB
52 lines
2.4 KiB
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
> |
|
<Style TargetType="{x:Type ToggleButton}"> |
|
<Setter Property="Focusable" |
|
Value="False"/> |
|
<Setter Property="Width" |
|
Value="19"/> |
|
<Setter Property="Height" |
|
Value="13"/> |
|
<Setter Property="Template"> |
|
<Setter.Value> |
|
<ControlTemplate TargetType="{x:Type ToggleButton}"> |
|
<Border Width="19" |
|
Height="13" |
|
Background="Transparent"> |
|
<Border Width="9" |
|
Height="9" |
|
BorderThickness="1" |
|
BorderBrush="#FF7898B5" |
|
CornerRadius="1" |
|
SnapsToDevicePixels="true"> |
|
<Border.Background> |
|
<LinearGradientBrush StartPoint="0,0" |
|
EndPoint="1,1"> |
|
<LinearGradientBrush.GradientStops> |
|
<GradientStop Color="White" |
|
Offset=".2"/> |
|
<GradientStop Color="#FFC0B7A6" |
|
Offset="1"/> |
|
</LinearGradientBrush.GradientStops> |
|
</LinearGradientBrush> |
|
</Border.Background> |
|
<Path x:Name="ExpandPath" |
|
Margin="1,1,1,1" |
|
Fill="Black" |
|
Data="M 0 2 L 0 3 L 2 3 L 2 5 L 3 5 L 3 3 L 5 3 L 5 2 L 3 2 L 3 0 L 2 0 L 2 2 Z"/> |
|
</Border> |
|
</Border> |
|
<ControlTemplate.Triggers> |
|
<Trigger Property="IsChecked" |
|
Value="True"> |
|
<Setter Property="Data" |
|
TargetName="ExpandPath" |
|
Value="M 0 2 L 0 3 L 5 3 L 5 2 Z"/> |
|
</Trigger> |
|
</ControlTemplate.Triggers> |
|
</ControlTemplate> |
|
</Setter.Value> |
|
</Setter> |
|
</Style> |
|
</ResourceDictionary> |