似乎看不到我哪里出错了?OnPropertyChange 没有被重新考虑有什么建议吗?
public class MedicationList : INotifyPropertyChanged
{
public int MedicationID { get; set; }
public string Description
{
get
{
return Description;
}
set
{
OnPropertyChanged( "Description" );
Description = value;
}
}
}
}
编辑 我已经添加 public class MedicationList : INotifyPropertyChanged