0

在 CollectionViewSource 中查找项目的最简单方法是什么?我似乎找不到对 linq 友好的属性。我想做类似 MyCollectionViewSource.View.Where(x=>x...)

干杯,
贝里尔

4

1 回答 1

0

您必须将 src.Source 强制转换为您绑定到的任何集合。例如,如果您的 CollectionViewSource 的 Source 是 IEnumerable<Int32> 您可以这样做:

(MyCollectionViewSource.Source as IEnumerable<Int32>).Where(s => s < 2);
于 2010-02-26T16:14:45.363 回答