首页 >后端开发 >C++ >为什么我的 XAML 绑定不适用于 WPF 用户控件中的依赖属性?

为什么我的 XAML 绑定不适用于 WPF 用户控件中的依赖属性?

Barbara Streisand
Barbara Streisand原创
2025-01-09 21:08:43282浏览

Why Doesn't My XAML Binding Work on a Dependency Property in a WPF User Control?

WPF 用户控件:XAML 与依赖属性的绑定问题

绑定到 WPF 用户控件的 XAML 中的依赖属性可能很棘手。 让我们看一个常见的场景:

使用 TextBlock 的用户控件:

<code class="language-xml"><UserControl ... x:Class="WpfTest.MyControl">
    <TextBlock Text="{Binding Test}" />
</UserControl></code>

用户控件中的依赖属性:

<code class="language-csharp">public static readonly DependencyProperty TestProperty =
    DependencyProperty.Register(
        "Test",
        typeof(string),
        typeof(MyControl),
        new PropertyMetadata("DEFAULT"));

public string Test
{
    get { return (string)GetValue(TestProperty); }
    set { SetValue(TestProperty, value); }
}</code>

主窗口视图模型(或 DataContext):

<code class="language-csharp">private string _myText = "default";
public string MyText
{
    get { return _myText; }
    set { _myText = value; NotifyPropertyChanged(); }
}</code>

在主窗口中绑定(成功):

<code class="language-xml"><TextBlock Text="{Binding MyText}" /></code>

用户控件中的绑定(失败):

<code class="language-xml"><MyControl Test="{Binding MyText}" /></code>

代码隐藏绑定(成功):

<code class="language-csharp">TheControl.SetBinding(MyControl.TestProperty, new Binding
{
    Source = DataContext,
    Path = new PropertyPath("MyText"),
    Mode = BindingMode.TwoWay
});</code>

根本原因:

用户控件中的 XAML 绑定失败,因为未显式定义绑定源。 它默认为用户控件自己的属性。

解决方案:

使用 RelativeSource 指定绑定源:

<code class="language-xml"><UserControl ... x:Class="WpfTest.MyControl">
    <TextBlock Text="{Binding Test, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" />
</UserControl></code>

这明确告诉绑定查找 UserControl 属性的 Test 类型的祖先。 或者,如果数据上下文位于窗口级别,则可以使用 AncestorType={x:Type Window}

主要考虑因素:

  • 避免在用户控件构造函数中使用 DataContext: 通常不鼓励在用户控件的构造函数中设置 DataContext,这可能会导致绑定问题。
  • 显式代码隐藏绑定:为了实现稳健的绑定,请考虑在代码隐藏中显式设置绑定,如上所示。这提供了更多的控制和清晰度。

通过遵循这些准则,您可以可靠地绑定到 WPF 用户控件中的依赖项属性。

以上是为什么我的 XAML 绑定不适用于 WPF 用户控件中的依赖属性?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn