Is there any equivalent class in .ne开发者_StackOverflow中文版t 3.5 or 4.0 for WPF like PagedCollectionView in Silverlight?
No, there isn't BUT You can grab it from here - https://silverlight.svn.codeplex.com/svn/Release/Silverlight4/Source/System.Windows.Data/PagedCollectionView/
You may need more relevant types (all in the same folder).
No there isn't, as seen in the CollectionView class documentation there are only three derivative classes.
- System.Windows.Controls.ItemCollection
- System.Windows.Data.BindingListCollectionView
- System.Windows.Data.ListCollectionView
(There are some more classes sub-class CollectionView but they are internal)
精彩评论