ObservableCollection 是如何工作的?
我正在查看 ObservableCollection 代码(感谢出色的 .NET Reflector),并惊讶地发现 Add 和 Remove 方法没有被重写。那么 ObservableCollection 如何引发 PropertyChanged 或 CollectionChanged 事件以在添加或删除某些内容时发出通知?
I was having a look at the ObservableCollection code (thanks to the awsome .NET Reflector) and was surprised to find that the Add and Remove methods are not overriden. How then does ObservableCollection raise the PropertyChanged or CollectionChanged event to notify when something is added or removed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它重写了基 Collection的一堆受保护方法。类,例如 InsertItem(int index, T item)、RemoveItem(int index) 等。
这些覆盖专门引发事件:
It overrides a bunch of protected methods of the base Collection<T> class, e.g. InsertItem(int index, T item), RemoveItem(int index), etc.
These overrides specifically raise the events: