我有
在XAML中<Label Grid.Row="1" Grid.Column="1" Content="{Binding Id}"></Label>
在public int Id;
后面的代码中,在构造函数DataContext = this;
但是Id中的值永远不会出现在页面中。
答案 0 :(得分:2)
将Id
从field
更改为property
:
public int Id
{
get;
set;
}
但是,如果要在运行时更改属性的值,则需要实现INotifyPropertyChanged