I have a problem using two ICollectionView instances that have the same ObservableCollection as source.
When I filter an ICollectionView, it seems that also the other ICollectionView is filtered with the same filter. I instantiate the ICollectionView with the method CollectionViewSource.GetDefaultView.
Is this the expected behaviour? I don't think so, but maybe I'm missing something.
This is the constructor of the ViewModel:
ListaVoci = CollectionViewSource.GetDefaultView(RootVM.CollectionVociCE);
where ListaVoci is an ICollectionView and RootVM.CollectionVociCE is an ObservableCollection.
I have two different user controls that have two different instances of this ViewModel.
This is the constructor of the user control:
datacontext.ListaVoci.Filter = FiltraListaVoci;
where FiltraListaVoci is
public bool FiltraListaVoci(object filter)
{
// I make some filtering
}