WPF 中的分页集合视图
WPF 中是否有 PagedCollectionView 的实现?它存在于 Silverlight 中,但不存在于 WPF 中。
如果没有,实现这一点的最简单方法是什么?
Is there an implementation of PagedCollectionView in WPF around? It exists in Silverlight but isn't in WPF.
If there isn't, what would be the simplest way to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需从 Silverlight one 获取代码并在您的WPF 项目。
You can simply take the code from the Silverlight one and use that in your WPF project.
或者仅使用 CollectionView 类和“双重过滤”您
在此处找到的集合解决方案: 用于分页、排序和过滤的自己的 CollectionView
为了方便起见,我已将代码片段粘贴到此处:
Or use only the CollectionView class and "double filter" your collection
solution found here: Own CollectionView for paging, sorting and filtering
I've pasted the code snipet here for your convinience: