I have a fairly large amount of data, and binding ListViews, DataGrids with CollectionView, and using OnFilter event to filter the CollectionView.
So when loading data for CollectionView and also when string property FilterString
changes, it calls CollectionView.Refresh()
on Setter, the actions locks up the screen too long, so I tried using a different thread to load data and filtering data, but as CollectionView does not support different thread, program crashes.
Can someone give me some guideline how to make RX work for this purpose?
Training video or article with sample code will be greatly appreciated.
Thanks a lot.