Filter an ObservableCollection with a CollectionView in C#
Using an ObservableCollection and need to filter its contents? A quick and easy way I found was to create and bind to a CollectionView to perform the filtering for you. Step 1 : Create the Observable Collection The first step is to create the observable collection. This will work for objects or system type lists, so feel free to use...