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}"/>
まったく機能しません。誰が私が何を変える必要があるか知っていますか?