35 lines
No EOL
1.6 KiB
XML
35 lines
No EOL
1.6 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style BasedOn="{StaticResource {x:Type ToggleButton}}"
|
|
TargetType="{x:Type CheckBox}"
|
|
x:Key="ModernChecbox">
|
|
<Style.Setters>
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="CheckBox">
|
|
<Border CornerRadius="10"
|
|
Background="#353340">
|
|
<Grid>
|
|
<Rectangle StrokeThickness="1"/>
|
|
<CheckBox Content="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Text, UpdateSourceTrigger=PropertyChanged}"
|
|
VerticalAlignment="Center"
|
|
Foreground="DarkGray"
|
|
Background="#353340"
|
|
Margin="5,0,0,0"
|
|
BorderThickness="0"/>
|
|
</Grid>
|
|
</Border>
|
|
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
<Setter Property="Background" Value="Transparent"/>
|
|
<Setter Property="BorderThickness" Value="0"/>
|
|
</Style.Setters>
|
|
<Style.Triggers>
|
|
<Trigger Property="IsChecked" Value="True">
|
|
<Setter Property="Background" Value="#22202f"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</ResourceDictionary> |