如何从 PagedCollectionView 中的当前页面获取项目?
我的对象位于 PagedCollectionView 绑定到 DataGrid 和 DataPager。
var pcView = new PagedCollectionView(ObservableCollection<Message>(messages));
如何从我的 ViewModel 轻松获取 PagedCollectionView 中当前页面的项目?我希望有这样的东西:
var messagesFromCurrentPage = pcView.CurrentPageItems; // error: no such a property
有诸如 SourceCollection、PageIndex 和 Count 之类的属性,但我认为它们在这种情况下没有用处。我在这里缺少什么?
I've got my objects in PagedCollectionView bound to DataGrid and DataPager.
var pcView = new PagedCollectionView(ObservableCollection<Message>(messages));
How can I easily get items from current page in PagedCollectionView from my ViewModel? I wish there were something like this:
var messagesFromCurrentPage = pcView.CurrentPageItems; // error: no such a property
There are properties like SourceCollection, PageIndex and Count but I don't find them useful in this case. What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想获取选定的项目,你可以使用 Linq 来完成。
确保为 System.Linq 添加 using 语句。
编辑:每当我对到底发生了什么有疑问时,我都会使用 Reflector(或 ILSpy)查看代码。在本例中,这里是 GetEnumerator() 内的相关代码,这就是 Select 或Where 获取列表中的项目的方式:
因此您可以看到它如何从此代码中仅返回当前页面中的项目。
If you want to get select items you can just use Linq to do it.
Make sure you add a using statement for System.Linq.
Edit: Whenever I have a question as to what is really going on I just look at the code using Reflector (or ILSpy). In this case here is the relevant code inside GetEnumerator() which is how the Select or Where gets the items in the list:
So you can see how it is returning only the items in the current page from this code.