C# Class DynamicXaml.MarkupSystem.RelayCommand

Inheritance: ICommand
Show file Open project: flq/XamlTags Class Usage Examples

Public Methods

Method Description
CanExecute ( object parameter ) : bool
Execute ( object parameter ) : void
RaiseCanExecuteChanged ( ) : void
RelayCommand ( System.Action execute ) : System
RelayCommand ( Action execute ) : System
RelayCommand ( Func canExecute, System.Action execute ) : System
RelayCommand ( bool>.Func canExecute, Action execute ) : System

Method Details

CanExecute() public method

public CanExecute ( object parameter ) : bool
parameter object
return bool

Execute() public method

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

RaiseCanExecuteChanged() public method

public RaiseCanExecuteChanged ( ) : void
return void

RelayCommand() public method

public RelayCommand ( System.Action execute ) : System
execute System.Action
return System

RelayCommand() public method

public RelayCommand ( Action execute ) : System
execute Action
return System

RelayCommand() public method

public RelayCommand ( Func canExecute, System.Action execute ) : System
canExecute Func
execute System.Action
return System

RelayCommand() public method

public RelayCommand ( bool>.Func canExecute, Action execute ) : System
canExecute bool>.Func
execute Action
return System