第一 安装nuget包 PropertyChanged.Fody。
第二 在类的上方加上 [PropertyChanged.AddINotifyPropertyChangedInterface]
类似这样
[PropertyChanged.AddINotifyPropertyChangedInterface]
public class IoInfo
{
public string Info1 { get; set; }
public string Info2 { get; set; }
public string Info3 { get; set; }
}
千万别自己写 INotifyPropertyChanged 去刷新数据了,真是low爆了,写那么多代码实现WPF后台数据刷新页面跟着一起刷新不累吗,用别人包装好的Nuget包真香