2011年5月20日

摘要: View Code 1 public class SortableObservableCollection<T> : ObservableCollection<T> 2 { 3 public SortableObservableCollection(List<T> list) 4 : base(list) 5 { 6 } 7 8 public SortableObservableCollection(IEnumerable<T> collection) 9 : base(collection)10 {11 }12 13 public void S 阅读全文
posted @ 2011-05-20 15:47 Ivan Sun 阅读(385) 评论(0) 推荐(0) 编辑

导航