Thursday, August 25, 2011

ListView column sorting

Found plenty of samples for WPF using a ListView and sorting on a column when the column header is clicked.
But I could not get any of them to work!!!
They never mentioned that this doesn't work with BindingList!!!
Switched to ObservableCollection<t>, and it worked fine.
I'm going to stop using that BindingList.

Russ