public balanceAllSelectCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, CheckBox cb, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     checkbox    = cb;
     slaveNum    = i;
 }
示例#2
0
 public DelegateCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#3
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = (object parameter) => { return(true); };
 }
示例#4
0
 public WPFShippingCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public gen2BalanceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     num         = i;
 }
示例#6
0
 public WPFExchangeCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#7
0
 public CommandeLocationVoiture(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#8
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     execute    = onExecuteMethod;
     canExecute = onCanExecuteMethod;
 }
示例#9
0
 public ViewModelRepoCommand(ICommandOnExecute executeMethod, ICommandOnCanExecute canExecuteMethod)
 {
     _execute    = executeMethod;
     _canExecute = canExecuteMethod;
 }
示例#10
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
       _canExecute = onCanExecuteMethod;
 }
示例#11
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
     : this(onExecuteMethod, (object parameter) => { return true; })
 {
 }
示例#12
0
 public CustomCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public ViewModelMakeChangeUICommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#14
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = onCanExecuteMethod;
 }
示例#15
0
 public UpdateServiceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#16
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = ReturnTrue;
 }
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#18
0
 public Commanding(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#19
0
 public ExecutionManagerCommand(ICommandOnExecute onExecuteMethod)
 {
     m_execute     = onExecuteMethod;
     m_can_execute = true;
 }
示例#20
0
 public SimpleCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#21
0
 public SaveCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteCommand) {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteCommand;
 }
 public MyCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute = onExecuteMethod;
 }
示例#23
0
 public CommandExecutor(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#24
0
 public WPFRepoCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#25
0
 public StandardCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute = onExecuteMethod;
 }
示例#26
0
 public RelayCommand(ICommandOnExecute onExecuteMethod) :
     this(onExecuteMethod, (object parameter) => { return(true); })
 {
 }
示例#27
0
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#28
0
 public SRRelayAsyncCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canexecute = onCanExecuteMethod;
 }
示例#29
0
 public ActionCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#30
0
 public CommandeCaseClick(ICommandOnExecute commmandOnExecute, ICommandOnCanExecute commandOnCanExecute)
 {
     onExecute  = commmandOnExecute;
     canExecute = commandOnCanExecute;
 }
示例#31
0
 public commandModel(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
示例#32
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod = null)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
		public MyCommand(ICommandOnExecute onExecuteMethod)
		{
			_execute = onExecuteMethod;
		}