Hello, I would like to be able to sort by DataGridView objects that are bound to objects of type BindingList<T> explicitly or implicitly through a BindingSource by using the default functionality provided by the grid when column headers are clicked. In order to do this, I have to derive a class from BindingList<T> and implement the appropriate property and method overrides for this functionality to work. I have done this by creating a class called SortableBindingList<T>, and sorting
Read More...