wpf 属性变更通知类的实现

View Code
public class Student : INotifyPropertyChanged
{
private string studentID;
public string StudentID
{
get { return studentID; }
set
{
studentID
= value;
NotifyPropertyChange(
"StudentID");
}
}
private string studentName;
public string StudentName
{
get { return studentName; }
set
{
studentName
= value;
NotifyPropertyChange(
"StudentName");
}
}

public event PropertyChangedEventHandler PropertyChanged;
private void NotifyPropertyChange(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(
this, new PropertyChangedEventArgs(propertyName));
}
}
原文地址:https://www.cnblogs.com/jiwenchao/p/2009196.html