从 ICollectionView 中删除项目

发布于 2024-11-15 21:45:49 字数 264 浏览 3 评论 0原文


如何从 C# 中的 ICollectionView 中删除项目?

Dictionary<int, String> entityDict;
public ICollectionView DictView { get; set; }
dictView = CollectionViewSource.GetDefaultView(entityDict.Values);
dictView.//No remove method

谢谢

How can I remove item from ICollectionView in c#?

Dictionary<int, String> entityDict;
public ICollectionView DictView { get; set; }
dictView = CollectionViewSource.GetDefaultView(entityDict.Values);
dictView.//No remove method

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

女皇必胜 2024-11-22 21:45:49

你不能,因为它是集合的视图。您需要从基础集合中删除该项目或使用过滤器。如果您对过滤感兴趣,那么这个问题提供了更多信息和链接:WPF's ICollectionView.filter 包含大量数据

You can't because it's a view of a collection. You need to remove the item from the underlying collection or use a filter. If you are interested in filtering then this question provides further information and links: WPF's ICollectionView.filter with large sets of data

莫言歌 2024-11-22 21:45:49

ChrisWue 所说的是正确的。
您可以检查 ICollectionView 的 Filter 属性;也许它适合您的需求。

What ChrisWue says, is correct.
You could check the Filter property of ICollectionView; perhaps it suits your needs.

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