C# Class Utils.RelayCommand

RelayCommand class to connect wpf buttons command to the methods
Inheritance: ICommand
Datei anzeigen Open project: net-shell/quantum-vaginer

Public Methods

Method Description
Execute ( object parameter ) : void
RelayCommand ( Action execute ) : System

Creates a new command that can always execute.

RelayCommand ( Action execute, Predicate canExecute ) : System

Creates a new command.

Private Methods

Method Description
CanExecute ( object parameter ) : bool

Method Details

Execute() public method

public Execute ( object parameter ) : void
parameter object
return void

RelayCommand() public method

Creates a new command that can always execute.
public RelayCommand ( Action execute ) : System
execute Action The execution logic.
return System

RelayCommand() public method

Creates a new command.
public RelayCommand ( Action execute, Predicate canExecute ) : System
execute Action The execution logic.
canExecute Predicate The execution status logic.
return System