为什么PropertyChanged总是为空?

时间:2017-12-24 15:22:04

标签: c# wpf inotifypropertychanged

PropertyChanged始终为null,并且窗口中不显示名称。它应该是罗马人。你知道为什么它总是空的而不是扯掉这个名字吗?

我的Windows课程

<Grid>
    <Label x:Name="Test" Width="100" Height="50" Foreground="Black" Content="{Binding PersonName, Mode=TwoWay}"></Label>
</Grid>

我的XAML

{{1}}

1 个答案:

答案 0 :(得分:0)

公开public MainWindow()添加了this.DataContext = this及其工作

看起来像

 public MainWindow()
    {
        InitializeComponent();
        _name = "Adam";
        PersonName = "Roman";
        this.DataContext = this;
    }