Getting IBindingList Property to sort by
- by Josh
I've got a class called DatagridBoundList that implements CollectionBase and IBindingList. The implementation of IBindingList.ApplySort looks like this so far:
void IBindingList.ApplySort(PropertyDescriptor property, ListSortDirection direction) {
throw new NotSupportedException();
}
I'm binding the DatagridBoundList to a DataGridView…