Files
BeWoPlaner/BeWo/Styles/ControlStyles/RadioButtonStyles.xaml
Rene Evertz 94c3b00c32 DeveloperWindow
+ cleane Shortcuts
2026-06-10 15:41:31 +02:00

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>