C# Class UWP10template.Base.DelegateCommand

Inheritance: ICommand
Mostrar archivo Open project: mapaux/UWP10template

Public Methods

Method Description
DelegateCommand ( System.Action execute ) : System

Initializes a new instance of the RelayCommand class that can always execute.

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

Initializes a new instance of the RelayCommand class.

Execute ( object parameter ) : void

Defines the method to be called when the command is invoked.

Private Methods

Method Description
CanExecute ( object parameter ) : bool
RaiseCanExecuteChanged ( ) : void

Method Details

DelegateCommand() public method

Initializes a new instance of the RelayCommand class that can always execute.
If the execute argument is null.
public DelegateCommand ( System.Action execute ) : System
execute System.Action The execution logic.
return System

DelegateCommand() public method

Initializes a new instance of the RelayCommand class.
If the execute argument is null.
public DelegateCommand ( System.Action execute, Func canExecute ) : System
execute System.Action The execution logic.
canExecute Func The execution status logic.
return System

Execute() public method

Defines the method to be called when the command is invoked.
public Execute ( object parameter ) : void
parameter object This parameter will always be ignored.
return void