INotifyPropertyChanged基类

时间:2010-07-02 20:26:40

标签: c# inotifypropertychanged

如果我有一个实现INotifyPropertyChanged

的基类
public class ResourceWrapperBase : INotifyPropertyChanged

在基类中触发propertychanged事件,如下所示:

PropertyChanged(this, new PropertyChangedEventArgs(null)) 

还要更新从此基类继承的类中的属性的所有绑定吗?

public class ResourceWrapper : ResourceWrapperBase

换句话说,当我触发ResourceWrapperBase中的propertychanged事件时,我想更新ResourceWrapper中属性的所有绑定。

这可能吗?

1 个答案:

答案 0 :(得分:1)

通常使用PropertyChangedEventArgs(null)触发PropertyChanged事件会导致更新所有绑定。