<Window x:Class="WpfApp2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp2"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<Style x:Key="ButtonStyle1" TargetType="{x:Type RadioButton}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type RadioButton}">
<Grid>
<Path x:Name="path" Data="M160,80 L134.5,109.5 169.5,134.5 229.5,129.5 219.5,69.5 z" Fill="#FF5B5BC5" Stretch="Fill" Stroke="Black"/>
<ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsFocused" Value="True"/>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Fill" TargetName="path" Value="#FF43A873"/>
<Setter Property="Stroke" TargetName="path" Value="#FFBFD132"/>
<Setter Property="StrokeThickness" TargetName="path" Value="3"/>
<Setter Property="IsChecked" Value="True"></Setter>
</Trigger>
<Trigger Property="IsPressed" Value="True"/>
<Trigger Property="IsEnabled" Value="False"/>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Window.Resources>
<Grid>
<RadioButton VerticalContentAlignment="Center" x:Name="button" Content="Configration" HorizontalAlignment="Left" Height="66" Margin="134.5,69.5,0,0" Style="{DynamicResource ButtonStyle1}" VerticalAlignment="Top" Width="96"/>
</Grid>
</Window>
WPF 绘制不规则RadioButton
于 2022-02-23 09:31:19 首次发布