CK.WPF.Controls.SimpleCommand.SimpleCommand C# (CSharp) Method

SimpleCommand() public method

Creates a new command that can always execute.
public SimpleCommand ( System.Action execute ) : System
execute System.Action The execution logic.
return System
        public SimpleCommand( Action execute )
            : this(execute, null)
        {
        }

Same methods

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