| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"                    xmlns:customControl="clr-namespace:Venus_Themes.CustomControls"                    xmlns:Attach="clr-namespace:Venus_UI.Themes.Attach"                    >    <ResourceDictionary.MergedDictionaries>        <ResourceDictionary Source="/Venus_Themes;component/Themes/Generic.xaml"/>    </ResourceDictionary.MergedDictionaries>    <Style TargetType="{x:Type customControl:AduRadioButtonIcon}">        <Setter Property="Height" Value="30" />        <Setter Property="Cursor" Value="Hand" />        <Setter Property="FocusVisualStyle" Value="{x:Null}" />        <Setter Property="Background" Value="White" />        <Setter Property="BorderBrush" Value="Transparent" />        <Setter Property="FontSize"  Value="20" />        <Setter Property="FontFamily"  Value="Arial" />        <Setter Property="FontWeight"  Value="DemiBold" />        <Setter Property="Foreground" Value="White" />        <Setter Property="Effect">            <Setter.Value>                <DropShadowEffect Color="LightBlue"></DropShadowEffect>            </Setter.Value>        </Setter>        <Setter Property="Attach:IconElement.Margin" Value="15,0"/>        <Setter Property="Attach:IconElement.Width" Value="16"/>        <Setter Property="Margin" Value="10,0,0,0"/>        <Setter Property="Padding" Value="0" />        <Setter Property="BorderThickness" Value="0,0,0,0"></Setter>        <Setter Property="Template">            <Setter.Value>                <ControlTemplate TargetType="{x:Type customControl:AduRadioButtonIcon}">                    <Border                        x:Name="templateRoot"                        Background="#00FFFFFF"                        Margin="{TemplateBinding Margin}"                        Padding="{TemplateBinding Padding}"                        BorderBrush="{TemplateBinding BorderBrush}"                        BorderThickness="{TemplateBinding BorderThickness}">                        <StackPanel                            VerticalAlignment="Center"                            Orientation="Horizontal"                            SnapsToDevicePixels="True">                            <Border>                                <Path x:Name="Icon" VerticalAlignment="Center" Width="{TemplateBinding Attach:IconElement.Width}" Margin="{TemplateBinding Attach:IconElement.Margin}" Fill="{TemplateBinding Foreground}" Stretch="Uniform" Data="{TemplateBinding Attach:IconElement.PathData}" />                            </Border>                            <TextBlock                                x:Name="contentPresenter"                                Grid.Column="1"                                Foreground="{TemplateBinding Foreground}"                                Margin="0,0,5,0"                                HorizontalAlignment="Left"                                VerticalAlignment="Center"                                Text="{TemplateBinding Content}"                                Focusable="False"                                SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />                        </StackPanel>                    </Border>                    <ControlTemplate.Triggers>                        <Trigger Property="IsMouseOver" Value="True" >                            <Setter TargetName="templateRoot" Property="Opacity" Value=".8" />                        </Trigger>                        <Trigger Property="IsEnabled" Value="False" />                        <Trigger Property="IsPressed" Value="True" />                        <Trigger Property="IsChecked" Value="True">                            <Setter TargetName="templateRoot" Property="Background" Value="{Binding SelectBackground, RelativeSource={RelativeSource Mode=TemplatedParent}}"/>                            <Setter TargetName="templateRoot" Property="Opacity" Value=".8" />                            <Setter TargetName="templateRoot" Property="BorderThickness" Value="0" />                            <Setter TargetName="Icon" Property="Fill" Value="{Binding SelectColor, RelativeSource={RelativeSource Mode=TemplatedParent}}" />                            <Setter TargetName="templateRoot" Property="BorderBrush" Value="{Binding SelectColor, RelativeSource={RelativeSource Mode=TemplatedParent}}" />                            <Setter TargetName="contentPresenter" Property="Foreground" Value="{Binding SelectColor, RelativeSource={RelativeSource Mode=TemplatedParent}}" />                        </Trigger>                    </ControlTemplate.Triggers>                </ControlTemplate>            </Setter.Value>        </Setter>    </Style></ResourceDictionary>
 |