我有一个 DependencyObject 类
public class TestDependency : DependencyObject
{
public static readonly DependencyProperty TestDateTimeProperty ...
public DateTime TestDateTime {get... set..}
}
我的窗户是这样的
public partial class MainWindow : Window{
public TestDependency td;
public MainWindow()
{
InitializeComponent();
td = new TestDependency();
td.TestDateTime = DateTime.Now;
}
}
如果我想将 MainWindow 的依赖对象 td (public TestDependency td;) 的 TestDateTime 属性绑定到 Xaml 中的文本框,我该如何绑定它?这就是我现在正在做的
<TextBlock Name="tb" Text="{Binding Source = td, Path=TestDateTime, TargetNullValue=novalue}"/>
它根本不起作用。有谁知道我需要改变什么?