Пример #1
0
 public DemoPageViewModel(SearchableNavigationWindow window)
 {
     _window         = window;
     SetColorCommand = new RelayCommand <Color> {
         IsExectuable = true, ExecuteAction = SetGlowColor
     };
     GoNextCommand = new RelayCommand <object> {
         IsExectuable = true, ExecuteAction = GoNext
     };
 }
Пример #2
0
 public DemoPage(SearchableNavigationWindow window)
 {
     InitializeComponent();
     DataContext = new DemoPageViewModel(window);
 }