CanExecute() public method

public CanExecute ( object parameter ) : bool
parameter object
return bool
Exemplo n.º 1
0
 protected override bool EvaluateCanExecute(object parameter)
 {
     return(_command?.CanExecute(parameter) ?? false);
 }
Exemplo n.º 2
0
 private bool SpecialEvaluateCanExecute(object parameter)
 {
     return(_command?.CanExecute(parameter) ?? false);
 }