INotifyPropertyChanged 基类
如果我有一个实现 INotifyPropertyChanged 的基类,
public class ResourceWrapperBase : INotifyPropertyChanged
是否会在基类中触发 propertychanged 事件,如下所示:
PropertyChanged(this, new PropertyChangedEventArgs(null))
同时更新从此基类继承的类中属性的所有绑定?
public class ResourceWrapper : ResourceWrapperBase
换句话说,我想在触发 ResourceWrapperBase 中的 propertychanged 事件时更新 ResourceWrapper 中属性的所有绑定。
这可能吗?
If I have a base class that implement INotifyPropertyChanged
public class ResourceWrapperBase : INotifyPropertyChanged
Does firing the propertychanged event in the base class, like this:
PropertyChanged(this, new PropertyChangedEventArgs(null))
Also update all the bindings on properties in classes that inherit from this base class?
public class ResourceWrapper : ResourceWrapperBase
So in other words, I want to update all bindings to properties in ResourceWrapper when the propertychanged event in ResourceWrapperBase is fired.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常使用 PropertyChangedEventArgs(null) 触发 PropertyChanged 事件会导致所有绑定更新。
Usually firing PropertyChanged event with PropertyChangedEventArgs(null) causes all bindings to be updated.