重要的很有用的接口:

INotifyPropertyChanged

功能:

向客户端发出某一属性值已更改的通知。


只有一个事件:PropertyChanged

在更改属性值时发生。



示例:
Silverlight 2.0 beta 2学习笔记(2)// This class implements a simple customer type 
Silverlight 2.0 beta 2学习笔记(2)
// that implements the IPropertyChange interface.
Silverlight 2.0 beta 2学习笔记(2)
public class DemoCustomer : INotifyPropertyChanged
}

相关文章: