mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-16 22:46:36 +08:00
453 lines
26 KiB
XML
453 lines
26 KiB
XML
<ResourceDictionary
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:CompileBindings="True">
|
|
<Design.PreviewWith>
|
|
<StackPanel Margin="20">
|
|
<RadioButton>Hello Button2</RadioButton>
|
|
<RadioButton>Hello Button3</RadioButton>
|
|
<Border Theme="{StaticResource RadioButtonGroupBorder}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<RadioButton Theme="{StaticResource ButtonRadioButton}">Hello Button2</RadioButton>
|
|
<RadioButton Theme="{StaticResource ButtonRadioButton}">Hello Button3</RadioButton>
|
|
</StackPanel>
|
|
</Border>
|
|
<RadioButton Theme="{StaticResource PureCardRadioButton}">Hello Button3</RadioButton>
|
|
<RadioButton Theme="{StaticResource PureCardRadioButton}">Hello Button3</RadioButton>
|
|
</StackPanel>
|
|
</Design.PreviewWith>
|
|
<!-- Theme: Default, Button, Card, PureCard -->
|
|
<ControlTheme x:Key="{x:Type RadioButton}" TargetType="RadioButton">
|
|
<Setter Property="RadioButton.HorizontalAlignment" Value="Left" />
|
|
<Setter Property="RadioButton.VerticalAlignment" Value="Top" />
|
|
<Setter Property="RadioButton.Cursor" Value="Hand" />
|
|
<Setter Property="RadioButton.HorizontalContentAlignment" Value="Left" />
|
|
<Setter Property="RadioButton.VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonFontSize}" />
|
|
<Setter Property="Template">
|
|
<ControlTemplate TargetType="RadioButton">
|
|
<Border
|
|
Name="RootBorder"
|
|
Margin="{TemplateBinding Margin}"
|
|
Padding="{TemplateBinding Padding}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
CornerRadius="{TemplateBinding CornerRadius}">
|
|
<Grid ColumnDefinitions="Auto,*">
|
|
<Grid Margin="{DynamicResource RadioButtonIconMargin}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}">
|
|
<Ellipse
|
|
Name="OuterEllipse"
|
|
Width="{DynamicResource RadioButtonIconRadius}"
|
|
Height="{DynamicResource RadioButtonIconRadius}"
|
|
Fill="{DynamicResource RadioButtonUncheckIconDefaultBackground}"
|
|
Stroke="{DynamicResource RadioButtonUncheckIconDefaultBorderBrush}"
|
|
StrokeThickness="1"
|
|
UseLayoutRounding="False" />
|
|
|
|
<Ellipse
|
|
Name="CheckGlyph"
|
|
Width="{DynamicResource RadioButtonGlyphRadius}"
|
|
Height="{DynamicResource RadioButtonGlyphRadius}"
|
|
Fill="{DynamicResource RadioButtonCheckGlyphFill}"
|
|
Opacity="0"
|
|
Stroke="{DynamicResource RadioButtonCheckGlyphFill}"
|
|
StrokeThickness="0"
|
|
UseLayoutRounding="False" />
|
|
</Grid>
|
|
|
|
<ContentPresenter
|
|
Name="PART_ContentPresenter"
|
|
Grid.Column="1"
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
Foreground="{TemplateBinding Foreground}"
|
|
RecognizesAccessKey="True"
|
|
TextElement.FontSize="{DynamicResource RadioButtonFontSize}"
|
|
TextElement.Foreground="{DynamicResource RadioButtonForeground}" />
|
|
</Grid>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
|
|
<!-- Unchecked State -->
|
|
<Style Selector="^:unchecked">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconDefaultBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconDefaultBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
|
|
<!-- Unchecked Pointerover State -->
|
|
<Style Selector="^:pointerover">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconPointeroverBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Unchecked Pressed State -->
|
|
<Style Selector="^:pressed">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconPressedBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconPressedBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Unchecked Disabled state -->
|
|
<Style Selector="^:disabled">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconDisabledBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconDisabledBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked State -->
|
|
<Style Selector="^:checked">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconDefaultBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconDefaultBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
|
|
<!-- Checked Pointerover State -->
|
|
<Style Selector="^:pointerover">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconPointeroverBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked Pressed State -->
|
|
<Style Selector="^:pressed">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconPressedBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconPressedBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked Disabled State -->
|
|
<Style Selector="^:disabled">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconDisabledBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconDisabledBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
</ControlTheme>
|
|
|
|
<ControlTheme x:Key="ButtonRadioButton" TargetType="RadioButton">
|
|
<Setter Property="RadioButton.CornerRadius" Value="{DynamicResource RadioButtonButtonCornerRadius}" />
|
|
<Setter Property="RadioButton.VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="RadioButton.Margin" Value="2" />
|
|
<Setter Property="RadioButton.Cursor" Value="Hand" />
|
|
<Setter Property="RadioButton.FontWeight" Value="{DynamicResource RadioButtonButtonFontWeight}" />
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonButtonDefaultFontSize}" />
|
|
<Setter Property="RadioButton.Padding" Value="{DynamicResource RadioButtonButtonDefaultPadding}" />
|
|
<Setter Property="RadioButton.Foreground" Value="{DynamicResource RadioButtonButtonUncheckedForeground}" />
|
|
<Setter Property="RadioButton.Template">
|
|
<ControlTemplate TargetType="RadioButton">
|
|
<ContentPresenter
|
|
x:Name="PART_ContentPresenter"
|
|
Margin="{TemplateBinding Margin}"
|
|
Padding="{TemplateBinding Padding}"
|
|
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
CornerRadius="{TemplateBinding CornerRadius}"
|
|
RecognizesAccessKey="True"
|
|
TextElement.FontSize="{TemplateBinding FontSize}"
|
|
TextElement.FontWeight="{TemplateBinding FontWeight}"
|
|
UseLayoutRounding="False" />
|
|
</ControlTemplate>
|
|
</Setter>
|
|
<Style Selector="^:unchecked">
|
|
<Setter Property="RadioButton.Background" Value="Transparent" />
|
|
<Style Selector="^:pointerover">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonButtonUncheckedPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^:disabled">
|
|
<Setter Property="RadioButton.Foreground" Value="{DynamicResource RadioButtonButtonUncheckedDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="^:checked">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonButtonCheckedBackground}" />
|
|
<Setter Property="RadioButton.Foreground" Value="{DynamicResource RadioButtonButtonCheckedForeground}" />
|
|
<Style Selector="^:disabled">
|
|
<Setter Property="RadioButton.Foreground" Value="{DynamicResource RadioButtonButtonCheckedDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="^.Small">
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonButtonSmallFontSize}" />
|
|
<Setter Property="RadioButton.Padding" Value="{DynamicResource RadioButtonButtonSmallPadding}" />
|
|
</Style>
|
|
<Style Selector="^.Large">
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonButtonLargeFontSize}" />
|
|
<Setter Property="RadioButton.Padding" Value="{DynamicResource RadioButtonButtonLargePadding}" />
|
|
</Style>
|
|
</ControlTheme>
|
|
|
|
<ControlTheme x:Key="CardRadioButton" TargetType="RadioButton">
|
|
<Setter Property="RadioButton.Padding" Value="{DynamicResource RadioButtonCardPadding}" />
|
|
<Setter Property="RadioButton.BorderThickness" Value="1" />
|
|
<Setter Property="RadioButton.CornerRadius" Value="{DynamicResource RadioButtonCardCornerRadius}" />
|
|
<Setter Property="RadioButton.Cursor" Value="Hand" />
|
|
<Setter Property="RadioButton.HorizontalAlignment" Value="Left" />
|
|
<Setter Property="RadioButton.VerticalAlignment" Value="Center" />
|
|
<Setter Property="RadioButton.HorizontalContentAlignment" Value="Left" />
|
|
<Setter Property="RadioButton.VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardDefaultBackground}" />
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonFontSize}" />
|
|
<Setter Property="Template">
|
|
<ControlTemplate TargetType="RadioButton">
|
|
<Border
|
|
Name="RootBorder"
|
|
Margin="{TemplateBinding Margin}"
|
|
Padding="{TemplateBinding Padding}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
CornerRadius="{TemplateBinding CornerRadius}">
|
|
<Grid
|
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
ColumnDefinitions="Auto,*">
|
|
<Grid Margin="{DynamicResource RadioButtonIconMargin}" VerticalAlignment="Top">
|
|
<Ellipse
|
|
Name="OuterEllipse"
|
|
Width="{DynamicResource RadioButtonIconRadius}"
|
|
Height="{DynamicResource RadioButtonIconRadius}"
|
|
Fill="{DynamicResource RadioButtonUncheckIconDefaultBackground}"
|
|
Stroke="{DynamicResource RadioButtonUncheckIconDefaultBorderBrush}"
|
|
StrokeThickness="1"
|
|
UseLayoutRounding="False" />
|
|
|
|
<Ellipse
|
|
Name="CheckGlyph"
|
|
Width="{DynamicResource RadioButtonGlyphRadius}"
|
|
Height="{DynamicResource RadioButtonGlyphRadius}"
|
|
Fill="{DynamicResource RadioButtonCheckGlyphFill}"
|
|
Opacity="0"
|
|
Stroke="{DynamicResource RadioButtonCheckGlyphFill}"
|
|
StrokeThickness="0"
|
|
UseLayoutRounding="False" />
|
|
</Grid>
|
|
|
|
<ContentPresenter
|
|
Name="PART_ContentPresenter"
|
|
Grid.Column="1"
|
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
Foreground="{TemplateBinding Foreground}"
|
|
RecognizesAccessKey="True"
|
|
TextElement.FontSize="{DynamicResource RadioButtonFontSize}"
|
|
TextElement.Foreground="{DynamicResource RadioButtonForeground}" />
|
|
</Grid>
|
|
</Border>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
|
|
<!-- Unchecked State -->
|
|
<Style Selector="^:unchecked">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconDefaultBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconDefaultBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
|
|
<!-- Unchecked Pointerover State -->
|
|
<Style Selector="^:pointerover">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardUncheckPointeroverBackground}" />
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconPointeroverBorderBrush}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Unchecked Pressed State -->
|
|
<Style Selector="^:pressed">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardUncheckPressedBackground}" />
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconPressedBorderBrush}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Unchecked Disabled state -->
|
|
<Style Selector="^:disabled">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonUncheckIconDisabledBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonUncheckIconDisabledBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="0" />
|
|
</Style>
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked State -->
|
|
<Style Selector="^:checked">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardCheckedBackground}" />
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckDefaultBorderBrush}" />
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconDefaultBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconDefaultBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
|
|
<!-- Checked Pointerover State -->
|
|
<Style Selector="^:pointerover">
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckPointeroverBorderBrush}" />
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconPointeroverBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconPointeroverBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked Pressed State -->
|
|
<Style Selector="^:pressed">
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckPressedBorderBrush}" />
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconPressedBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconPressedBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
</Style>
|
|
|
|
<!-- Checked Disabled State -->
|
|
<Style Selector="^:disabled">
|
|
<Style Selector="^ /template/ Ellipse#OuterEllipse">
|
|
<Setter Property="Stroke" Value="{DynamicResource RadioButtonCheckIconDisabledBorderBrush}" />
|
|
<Setter Property="Fill" Value="{DynamicResource RadioButtonCheckIconDisabledBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Ellipse#CheckGlyph">
|
|
<Setter Property="Ellipse.Opacity" Value="1" />
|
|
</Style>
|
|
<Style Selector="^ /template/ Border#RootBorder">
|
|
<Setter Property="BorderBrush" Value="{DynamicResource RadioButtonCheckIconDisabledBackground}" />
|
|
<Setter Property="Background" Value="{DynamicResource RadioButtonCardCheckedBackground}" />
|
|
</Style>
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
</ControlTheme>
|
|
|
|
<ControlTheme x:Key="PureCardRadioButton" TargetType="RadioButton">
|
|
<Setter Property="RadioButton.CornerRadius" Value="{DynamicResource RadioButtonCardCornerRadius}" />
|
|
<Setter Property="RadioButton.Cursor" Value="Hand" />
|
|
<Setter Property="RadioButton.VerticalContentAlignment" Value="Center" />
|
|
<Setter Property="RadioButton.BorderThickness" Value="1" />
|
|
<Setter Property="RadioButton.FontSize" Value="{DynamicResource RadioButtonFontSize}" />
|
|
<Setter Property="RadioButton.Padding" Value="{DynamicResource RadioButtonCardPadding}" />
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardDefaultBackground}" />
|
|
<Setter Property="RadioButton.Template">
|
|
<ControlTemplate TargetType="RadioButton">
|
|
<ContentPresenter
|
|
x:Name="PART_ContentPresenter"
|
|
Margin="{TemplateBinding Margin}"
|
|
Padding="{TemplateBinding Padding}"
|
|
HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
|
|
VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
CornerRadius="{TemplateBinding CornerRadius}"
|
|
RecognizesAccessKey="True"
|
|
UseLayoutRounding="False" />
|
|
</ControlTemplate>
|
|
</Setter>
|
|
<Style Selector="^:unchecked">
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardDefaultBorderBrush}" />
|
|
<Style Selector="^:pointerover">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardUncheckPointeroverBackground}" />
|
|
</Style>
|
|
<Style Selector="^:pressed">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardUncheckPressedBackground}" />
|
|
</Style>
|
|
<Style Selector="^:disabled">
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="^:checked">
|
|
<Setter Property="RadioButton.Background" Value="{DynamicResource RadioButtonCardCheckedBackground}" />
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckDefaultBorderBrush}" />
|
|
<Style Selector="^:pointerover">
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckPointeroverBorderBrush}" />
|
|
</Style>
|
|
<Style Selector="^:pressed">
|
|
<Setter Property="RadioButton.BorderBrush" Value="{DynamicResource RadioButtonCardCheckPressedBorderBrush}" />
|
|
</Style>
|
|
<Style Selector="^:disabled">
|
|
<Setter Property="BorderBrush" Value="{DynamicResource RadioButtonCheckIconDisabledBackground}" />
|
|
<Setter Property="Background" Value="{DynamicResource RadioButtonCardCheckedBackground}" />
|
|
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter">
|
|
<Setter Property="Foreground" Value="{DynamicResource RadioButtonDisabledForeground}" />
|
|
</Style>
|
|
</Style>
|
|
</Style>
|
|
|
|
</ControlTheme>
|
|
</ResourceDictionary>
|