当页面的数据文本用于其他绑定时,如何绑定到WPF依赖属性?

前端之家收集整理的这篇文章主要介绍了当页面的数据文本用于其他绑定时,如何绑定到WPF依赖属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
页面的数据文本用于其他绑定时,如何绑定到WPF依赖属性? (简单问题)
元素的数据文本需要设置。

XAML:

<Window x:Class="WpfDependencyPropertyTest.Window1" x:Name="mywindow">
   <StackPanel>
      <Label Content="{Binding Path=Test,ElementName=mywindow}" />
   </StackPanel>
</Window>

C#:

public static readonly DependencyProperty TestProperty =
        DependencyProperty.Register("Test",typeof(string),typeof(Window1),new FrameworkPropertyMetadata("Test"));
public string Test
{
   get { return (string)this.GetValue(Window1.TestProperty); }
   set { this.SetValue(Window1.TestProperty,value); }
}

还看到这个相关的问题:

WPF DependencyProperties

原文链接:https://www.f2er.com/javaschema/282118.html

猜你在找的设计模式相关文章