Does anyone know if there is a common object that inherits from ICollectionView in both Silverlight and WPF?
Or do I just have to create my own version?
Does anyone know if there is a common object that inherits from ICollectionView in both Silverlight and WPF?
Or do I just have to create my own version?
Whilst WPF has a few types that implement ICollectionView (e.g. CollectionView and ListCollectionView), the Silverlight API does not expose many types that implement this interface. This is because whilst WPF uses this interface widely, Silverlight only uses ICollectionView internally within its DataGrid control.
You can find a Silverlight collection view that implements this interface here:
Check the PagedCollectionView. Just be sure you have a reference to System.Windows.Data
.