gpt4 book ai didi

wpf - TemplateBinding 如何在 UserControl 模板中工作?

转载 作者:行者123 更新时间:2023-12-04 05:18:54 29 4
gpt4 key购买 nike

我是创建 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>

同时我在后端代码中创建了依赖属性:
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));
......

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

根据我的理解, TemplateBinding从应用此 ControlTemplate 的元素中查找属性名称,应为 PieControl在这里,但为什么 Fill属性(property)无法访问这里?

顺便提一句,

我测试了以下绑定(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}}

关于wpf - TemplateBinding 如何在 UserControl 模板中工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14974202/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com