0
kicks
Use a BindingListCollectionView from a BindingList from a List<T>
Let’s say you have a WPF application with a DataGrid on it. You also have a strongly typed list of objects – I.E. List<Person> which you would normally bind to your grid. You might have been under the misconception that you can’t convert the List<Person> to a BindingListCollectionView. I have searched google for answers and ran across people saying you can’t do that.
It is possible and I will show you how to make it happen.