我想创建一个 ViewModel 类来从数据库中检索值。我的目标是从我的数据库表中检索 RAM 的使用值(RAM 总数和可用的 RAM),然后将其显示在我的视图中。
这就是我迄今为止在我的 ViewModel 类上所做的
public class RamViewModel : INotifyPropertyChanged
{
float _ramTotal;
float _ramUsed;
public float RamTotal
{
get { return _ramTotal; }
set { _ramTotal = value; RaisePropertyChanged("RamTotal"); }
}
public float RamUsed
{
get { return _ramUsed; }
set { _ramUsed = value; RaisePropertyChanged("RamUsed"); }
}
private void RaisePropertyChanged(string p)
{
throw new NotImplementedException();
}
}
当我构建这个类时,我得到了这个错误,“ViewModel.RamViewModel 没有实现接口成员'System.ComponentModel.INotifyPropertyChanged.PropertyChanged'”
如何克服这个错误