how can I set the default view again after applying filter to my observable collection. I apply filter like this and it filters the view as per my delegate logic but at some point I want the original list in the view.How to do it?
ICollectionView collectionView = CollectionViewSource.GetDefaultView(myList);
collectionView.Filter = mydelegate;