16 lines
688 B
XML
16 lines
688 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<!-- Base -->
|
|
<Style x:Key="BaseRadioButton" TargetType="RadioButton">
|
|
<Setter Property="Margin" Value="3" />
|
|
<Setter Property="VerticalAlignment" Value="Top" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="PopupBlackRadioButton"
|
|
BasedOn="{StaticResource BaseRadioButton}"
|
|
TargetType="RadioButton">
|
|
<Setter Property="Foreground" Value="Black" />
|
|
<Setter Property="Padding" Value="2" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
</Style>
|
|
</ResourceDictionary> |