Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 CollectionViewSource 中查找项目的最简单方法是什么?我似乎找不到对 linq 友好的属性。我想做类似 MyCollectionViewSource.View.Where(x=>x...)
干杯, 贝里尔
您必须将 src.Source 强制转换为您绑定到的任何集合。例如,如果您的 CollectionViewSource 的 Source 是 IEnumerable<Int32> 您可以这样做:
(MyCollectionViewSource.Source as IEnumerable<Int32>).Where(s => s < 2);