コード例 #1
0
ファイル: NotifyPage.xaml.cs プロジェクト: Bigsby/PoC
 public NotifyPageViewModel(NotifyViewModel vm)
 {
     Text   = vm.Text;
     Action = new Command(() => {
         Window.Current.Close();
         vm.Action();
     });
 }