Search code examples
c#wpficollectionview

CollectionView without a dispatcher


I need a sorting, grouping and filtering behavior of a CollectionView also with LiveShaping properties, but every .NET implementation has a Dispatcher connected to it.

Is there any implementation of the ICollectionView without a dispatcher?


Solution

  • Is there any implementation of the ICollectionView without a dispatcher?

    No, there isn't. The only class that implements this interface in the .NET Framework is the CollectionView class and it is a DispatcherObject.

    So you will have to provide your own implementation or solve your issue in a different way.