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
,这可能会导致绑定问题。通过遵循这些准则,您可以可靠地绑定到 WPF 用户控件中的依赖项属性。
以上是为什么我的 XAML 绑定不适用于 WPF 用户控件中的依赖属性?的详细内容。更多信息请关注PHP中文网其他相关文章!