Esempio n. 1
0
 public NotifyPageViewModel(NotifyViewModel vm)
 {
     Text   = vm.Text;
     Action = new Command(() => {
         Window.Current.Close();
         vm.Action();
     });
 }