Ive applied some styling on CheckBoxes
in my app to write default values to some its properties.
<Style
TargetType="{x:Type CheckBox}">
<Setter
Property="HorizontalAlignment"
Value="Left" />
<Setter
Property="Margin"
Value="2" />
<Setter
Property="MinHeight"
Value="22" />
</Style>
But that ruined the access keys, now Content
looks like for example: _Is Active and not Is Active with access on ALT hold+I. How to make style work with access keys working too?