PropertyChanged始终为null,并且窗口中不显示名称。它应该是罗马人。你知道为什么它总是空的而不是扯掉这个名字吗?
我的Windows课程
<Grid>
<Label x:Name="Test" Width="100" Height="50" Foreground="Black" Content="{Binding PersonName, Mode=TwoWay}"></Label>
</Grid>
我的XAML
{{1}}
答案 0 :(得分:0)
公开public MainWindow()
添加了this.DataContext = this
及其工作
看起来像
public MainWindow()
{
InitializeComponent();
_name = "Adam";
PersonName = "Roman";
this.DataContext = this;
}