为什么ReadOnlyObservableCollection

为什么ReadOnlyObservableCollection

本文介绍了为什么ReadOnlyObservableCollection.CollectionChanged不会公开?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么受保护且不公开(作为相应的 is)?



使用集合实现 INotifyCollectionChanged如果我无法访问 CollectionChanged 事件

div>

以下是解决方案:



您必须将集合强制转换为 INotifyCollectionChanged / p>

Why is ReadOnlyObservableCollection.CollectionChanged protected and not public (as the corresponding ObservableCollection.CollectionChanged is)?

What is the use of a collection implementing INotifyCollectionChanged if I can't access the CollectionChanged event?

解决方案

Here's the solution: CollectionChanged events on ReadOnlyObservableCollection

You have to cast the collection to INotifyCollectionChanged.

这篇关于为什么ReadOnlyObservableCollection.CollectionChanged不会公开?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 09:17