绑定到不在WPF中工作的标签

时间:2018-05-28 11:16:55

标签: c# .net wpf

我有

在XAML中<Label Grid.Row="1" Grid.Column="1" Content="{Binding Id}"></Label>

public int Id;后面的代码中,在构造函数DataContext = this;

但是Id中的值永远不会出现在页面中。

1 个答案:

答案 0 :(得分:2)

Idfield更改为property

public int Id
{
    get;
    set;
}

但是,如果要在运行时更改属性的值,则需要实现INotifyPropertyChanged