重要的很有用的接口: INotifyPropertyChanged 功能: 向客户端发出某一属性值已更改的通知。 只有一个事件:PropertyChanged在更改属性值时发生。 示例: // This class implements a simple customer type // that implements the IPropertyChange interface.public class DemoCustomer : INotifyPropertyChanged} 相关文章: