コード例 #1
0
ファイル: ChildWindow.xaml.cs プロジェクト: Slesa/Poseidon
 public ResultCommand(CommandOnExecute execute)
 {
     _execute = execute;
 }
コード例 #2
0
 public Command(CommandOnExecute onExecuteMethod, CommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
コード例 #3
0
ファイル: ChildWindow.xaml.cs プロジェクト: Slesa/Poseidon
 public ResultCommand(CommandOnExecute execute)
 {
     _execute = execute;
 }
コード例 #4
0
ファイル: MainWindowViewModel.cs プロジェクト: noobiny/MVVMex
 public TestCommand(CommandOnExecute onExe, CommandOnCanExecute onCanExe)
 {
     _execute    = onExe;
     _canExecute = onCanExe;
 }
コード例 #5
0
 public Command(CommandOnExecute <T> onExecuteMethod, CommandOnCanExecute onCanExecuteMethod = null)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }