App1.DelegateCommand.DelegateCommand C# (CSharp) Méthode

DelegateCommand() public méthode

public DelegateCommand ( bool>.Func canExecute, Action execute ) : System
canExecute bool>.Func
execute Action
Résultat System
        public DelegateCommand(Func<object,bool> canExecute, Action<object> execute)
        {
            this.canExecute = canExecute;
            this.execute = execute;
        }