Alexandria.Common.RelayCommand.RelayCommand C# (CSharp) Méthode

RelayCommand() public méthode

Creates a new command that can always execute.
public RelayCommand ( System.Action execute ) : System
execute System.Action The execution logic.
Résultat System
        public RelayCommand(Action execute)
            : this(execute, null)
        {
        }

Same methods

RelayCommand::RelayCommand ( System.Action execute, Func canExecute ) : System