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));
}
}
posted on 2011-04-08 11:26  暗月随风  阅读(1196)  评论(0编辑  收藏  举报