Ghost1372

everything can be handy

CheckBox

CheckBoxBaseStyle

The default style of the checkbox is not recommended for direct use and should always be used by other styles in the BasedOn mode.

Example:

1
2
3
4
5
6
7
8
<StackPanel>
<CheckBox Content="CheckBox" IsChecked="True"/>
<CheckBox Margin="0,16,0,0" Content="CheckBox" IsChecked="True" IsEnabled="False"/>
<CheckBox Margin="0,16,0,0" Content="CheckBox"/>
<CheckBox Margin="0,16,0,0" Content="CheckBox" IsEnabled="False"/>
<CheckBox Margin="0,16,0,0" Content="CheckBox" IsChecked="{x:Null}"/>
<CheckBox Margin="0,16,0,0" Content="CheckBox" IsChecked="{x:Null}" IsEnabled="False"/>
</StackPanel>

CheckBox

0%