App1.DelegateCommand.DelegateCommand C# (CSharp) 메소드

DelegateCommand() 공개 메소드

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