public balanceAllSelectCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, CheckBox cb, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     checkbox    = cb;
     slaveNum    = i;
 }
Exemplo n.º 2
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = onCanExecuteMethod;
 }
Exemplo n.º 3
0
 public UpdateServiceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 4
0
 public DelegateCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 5
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = (object parameter) => { return(true); };
 }
Exemplo n.º 6
0
 public WPFRepoCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 7
0
 public WPFExchangeCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 8
0
 public CommandeLocationVoiture(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 9
0
 public CommandExecutor(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 10
0
 public SaveCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteCommand) {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteCommand;
 }
Exemplo n.º 11
0
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 12
0
 public ViewModelRepoCommand(ICommandOnExecute executeMethod, ICommandOnCanExecute canExecuteMethod)
 {
     _execute    = executeMethod;
     _canExecute = canExecuteMethod;
 }
Exemplo n.º 13
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
       _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 14
0
 public CustomCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public ViewModelMakeChangeUICommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 16
0
 public Commanding(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 17
0
 /// <summary>
 /// Initializes a new instance of <see cref="DelegateCommand"/> class.
 /// </summary>
 /// <param name="action">Delegate to execute when Execute is called on the command.</param>
 /// <param name="canExecute">Delegate to execute when CanExecute is called on the command. This can be null.</param>
 public DelegateCommand(Action action, ICommandOnCanExecute canExecute)
 {
     _action = action;
     _canExecute = canExecute;
 }
Exemplo n.º 18
0
 /// <summary>
 /// Initializes a new instance of <see cref="DelegateCommand"/> class.
 /// </summary>
 /// <param name="action">Delegate to execute when Execute is called on the command.</param>
 /// <param name="canExecute">Delegate to execute when CanExecute is called on the command. This can be null.</param>
 public DelegateCommand(Action action, ICommandOnCanExecute canExecute)
 {
     _action     = action;
     _canExecute = canExecute;
 }
Exemplo n.º 19
0
 public SimpleCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 20
0
 public StandardCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 21
0
 public gen2BalanceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     num         = i;
 }
Exemplo n.º 22
0
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 23
0
 public WPFShippingCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 24
0
 public ActionCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 25
0
 public SRRelayAsyncCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canexecute = onCanExecuteMethod;
 }
Exemplo n.º 26
0
 public commandModel(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 27
0
 public CommandeCaseClick(ICommandOnExecute commmandOnExecute, ICommandOnCanExecute commandOnCanExecute)
 {
     onExecute  = commmandOnExecute;
     canExecute = commandOnCanExecute;
 }
Exemplo n.º 28
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     execute    = onExecuteMethod;
     canExecute = onCanExecuteMethod;
 }
Exemplo n.º 29
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod = null)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemplo n.º 30
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = ReturnTrue;
 }