随笔分类 -  MVVM

MahApps.Metro样式
摘要:http://mahapps.com/guides/styles.htmlStylesTable of ContentsOverviewHow to change the current theme... via App.xamlHow to change the current theme... ... 阅读全文
posted @ 2014-09-11 14:20 fenix 阅读(1642) 评论(0) 推荐(0)
ICommand
摘要:/// <summary> /// This class allows delegating the commanding logic to methods passed as parameters, /// and enables a View to bind commands to objects that are not part of the element tree. /// </summary> public class DelegateCommand : ICommand { #region Constructors /// <summary> 阅读全文
posted @ 2011-07-01 15:20 fenix 阅读(428) 评论(0) 推荐(0)
MVVM
摘要:publicclassViewModelCollection<T>:ObservableCollection<T>{publicViewModelCollection():base(){}publicneweventPropertyChangedEventHandlerPropertyChanged;publicnewvoidAdd(Titem){((INotifyPropertyChanged)item).PropertyChanged+=(sender,e)=>{if(PropertyChanged!=null){PropertyChanged(sender, 阅读全文
posted @ 2009-06-15 16:46 fenix 阅读(284) 评论(0) 推荐(0)