摘要: 摘自CSDN:WPF中如果使用ObservableCollection,对ObservableCollection实现类似List的排序操作,再删除以后通知UI层刷新数据public class SortableObservableCollection<T> : ObservableCollection<T>{ public SortableObservableCollection(List<T> list) : base(list) { } public SortableObservableCollection(IEnumerable<T> c 阅读全文
posted @ 2013-04-24 16:55 qds86 阅读(904) 评论(0) 推荐(1) 编辑
摘要: Silverlight自定义DatePickerXaml代码: xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup- 阅读全文
posted @ 2013-04-24 16:17 qds86 阅读(238) 评论(0) 推荐(0) 编辑