摘要: /// <summary> /// BindingList with sorting feature /// </summary> /// <typeparam name="T"></typeparam> public class SortableBindingList<T> : BindingList<T> { private bool isSortedCore = true; private ListSortDirection sortDirectionCore = ListSortDirectio 阅读全文
posted @ 2012-12-13 14:34 imap 阅读(237) 评论(0) 推荐(0) 编辑