Wannabe Pro
Вот ответ, который я сделал, на случай, если кому-то понадобится что-то подобное в будущем.
1.сначала я создал пользовательский элемент управления, вытекающие из кнопки. А внутри у меня есть 2 DependencyProperties только для того, чтобы изменить изображение по щелчку.
public ImageSource Image
{
get { return (ImageSource)GetValue(ImageProperty); }
set { SetValue(ImageProperty, value); }
}
public static readonly DependencyProperty ImageProperty =
DependencyProperty.Register("Image", typeof(ImageSource), typeof(CustomControl),
new FrameworkPropertyMetadata(default(ImageSource), FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));
public ImageSource NewImage
{
get { return (ImageSource)GetValue(NewImageProperty); }
set { SetValue(NewImageProperty, value); }
}
public static readonly DependencyProperty NewImageProperty =
DependencyProperty.Register("NewImage", typeof(ImageSource), typeof(CustomControl),
new FrameworkPropertyMetadata(default(ImageSource), FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));
Внутри Generic. xaml у меня есть структурированный код, подобный этому ( это работает для меня и моего проекта).
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:wpf.core">
<Style TargetType="{x:Type local:CustomControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="{Binding ActualWidth, ElementName=image}"
Height="{Binding ActualHeight, ElementName=image}">
<Image x:Name="image"
IsHitTestVisible="False"
Stretch="None"
VerticalAlignment="Center"
HorizontalAlignment="Center">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Setter Property="Source"
Value="{Binding Image, RelativeSource={RelativeSource TemplatedParent}}" />
<Style.Triggers>
<DataTrigger Binding="{Binding IsPressed, RelativeSource={RelativeSource AncestorType={x:Type Button}}}"
Value="true">
<Setter Property="Source"
Value="{Binding NewImage, RelativeSource={RelativeSource TemplatedParent}}" />
</DataTrigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
<ContentPresenter ContentTemplate="{TemplateBinding ContentTemplate}"
Content="{TemplateBinding Content}"
ContentStringFormat="{TemplateBinding ContentStringFormat}"
Height="48"
IsHitTestVisible="False"
Margin="38.667,0,38,46.666"
VerticalAlignment="Bottom"
HorizontalAlignment="Center"
MaxHeight="48"
MaxWidth="188" />
<Path Data="M2,88.60254L152,2 302,88.60254 302,261.817621 152,350.410161 2,261.807621z"
RenderTransformOrigin="0.5,0.5"
Stretch="Fill"
Fill="Transparent"
Focusable="True"
StrokeThickness="0"
Margin="25.333,-24.001,25.333,-23.999"
VerticalAlignment="Stretch"
Opacity="0">
<Path.RenderTransform>
<TransformGroup>
<ScaleTransform />
<SkewTransform />
<RotateTransform Angle="90" />
<TranslateTransform />
</TransformGroup>
</Path.RenderTransform>
</Path>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsPressed"
Value="true">
<Setter Property="Foreground"
Value="White" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
Трюк состоял в том, чтобы сделать путь (шестиугольник), который будет точно таким же, как мои фотографии, и установить этот путь, чтобы он был кликабельным, но прозрачным, а изображение было видимым, но не кликабельным, и это решило мою проблему, теперь у меня есть полностью функциональная кнопка шестиугольника.
Пример кода в главном окне, просто чтобы показать цель.
<Grid>
<cc:CustomControl Image="/WpfApp3;component/Images/hexPicture1.png"
NewImage="/WpfApp3;component/Images/hexPicture2.png"
ToolTip="Button"
Content="Some content"
FontFamily="Arial narrow"
FontSize="18"/>
</Grid>