我是创建UserControl的新手,现在我尝试自定义UserControl模板,如下所示:

<UserControl x:Class="WpfApplication1.PieButton"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             mc:Ignorable="d"
             d:DesignHeight="300" d:DesignWidth="300" Loaded="OnLoaded">
    <UserControl.Template>
        <ControlTemplate>
            <Path Name="path" Stroke="Aqua" StrokeThickness="3">
                <Path.Fill>
                    <SolidColorBrush Color="{TemplateBinding Fill}" />
                </Path.Fill>
                <Path.Data>
                ......
</UserControl>

同时,我在后端代码中创建了dependencyproperty:
public partial class PieButton : UserControl
{
    public PieButton()
    {
        InitializeComponent();
    }

    private void OnLoaded(object sender, RoutedEventArgs e)
    {

    }



    public Color Fill
    {
        get { return (Color)GetValue(FillProperty); }
        set { SetValue(FillProperty, value); }
    }

    public static readonly DependencyProperty FillProperty =
        DependencyProperty.Register("Fill", typeof(Color), typeof(PieButton));
    ......

我想在XAML中使用TemplateBinding绑定(bind)我的PieButton的Fill属性以填充路径对象。 Visual Studio设计器警告我“无法访问或识别Fill属性”。

根据我的理解,TemplateBinding从应用此ControlTemplate的元素中找到属性名称,此处应为PieControl,但是为什么Fill属性无法在此处访问?

顺便提一句,

我测试以下绑定(bind),它可以为我工作
Color="Binding Fill,RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type UserControl}}"

但是我仍然认为TemplateBinding应该可以在这种情况下工作,所以请在这里指出我的错。谢谢。

最佳答案

根据TemplateBinding to DependencyProperty on a custom control is not working
TemplateBinding不适用于控件上的自定义依赖项属性。

作为解决方案,建议使用
{Binding MyProperty, RelativeSource={RelativeSource TemplatedParent}}

10-04 18:50