74 lines
3.8 KiB
XML
74 lines
3.8 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style x:Key="CheckBoxFocusVisual">
|
|
<Setter Property="Control.Template">
|
|
<Setter.Value>
|
|
<ControlTemplate>
|
|
<Border>
|
|
<Rectangle
|
|
Margin="15,0,0,0"
|
|
StrokeThickness="1"
|
|
Stroke="#60000000"
|
|
StrokeDashArray="1 2"/>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style x:Key="{x:Type CheckBox}" TargetType="CheckBox">
|
|
<Setter Property="SnapsToDevicePixels" Value="true"/>
|
|
<Setter Property="OverridesDefaultStyle" Value="true"/>
|
|
<Setter Property="FontFamily" Value="{DynamicResource MetroFontRegular}"/>
|
|
<Setter Property="FocusVisualStyle" Value="{StaticResource CheckBoxFocusVisual}"/>
|
|
<Setter Property="Foreground" Value="#999999"/>
|
|
<Setter Property="Background" Value="#3f3f3f"/>
|
|
<Setter Property="FontSize" Value="12"/>
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="CheckBox">
|
|
<BulletDecorator Background="Transparent">
|
|
<BulletDecorator.Bullet>
|
|
<Border x:Name="Border"
|
|
Width="13"
|
|
Height="13"
|
|
CornerRadius="0"
|
|
Background="#3f3f3f"
|
|
BorderBrush="#999999"
|
|
BorderThickness="1">
|
|
<Path
|
|
Width="7" Height="7"
|
|
x:Name="CheckMark"
|
|
SnapsToDevicePixels="False"
|
|
Stroke="#979797"
|
|
StrokeThickness="2"
|
|
Data="M 0 0 L 7 7 M 0 7 L 7 0" />
|
|
</Border>
|
|
</BulletDecorator.Bullet>
|
|
<ContentPresenter Margin="8,0,0,0"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left"
|
|
RecognizesAccessKey="True"/>
|
|
</BulletDecorator>
|
|
<ControlTemplate.Triggers>
|
|
<Trigger Property="IsChecked" Value="false">
|
|
<Setter TargetName="CheckMark" Property="Visibility" Value="Collapsed"/>
|
|
</Trigger>
|
|
<Trigger Property="IsChecked" Value="{x:Null}">
|
|
<Setter TargetName="CheckMark" Property="Data" Value="M 0 7 L 7 0" />
|
|
</Trigger>
|
|
<Trigger Property="IsMouseOver" Value="true">
|
|
<Setter TargetName="Border" Property="Background" Value="#454545" />
|
|
<Setter TargetName="Border" Property="BorderBrush" Value="{DynamicResource ApplicationAccentBrush}" />
|
|
</Trigger>
|
|
<Trigger Property="IsEnabled" Value="false">
|
|
<Setter Property="Foreground" Value="#c1c1c1"/>
|
|
</Trigger>
|
|
</ControlTemplate.Triggers>
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
</ResourceDictionary> |