INotifyPropertyChanged 基类

发布于 2024-09-08 05:09:09 字数 468 浏览 0 评论 0原文

如果我有一个实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深巷少女 2024-09-15 05:09:09

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

Usually firing PropertyChanged event with PropertyChangedEventArgs(null) causes all bindings to be updated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文