C# Class dbz.UIComponents.DelegateCommand

Inheritance: ICommand
Show file Open project: earlnuclear/DanbooruBrowser Class Usage Examples

Public Methods

Method Description
CanExecute ( object parameter ) : bool

Checks if the command Execute method can run

Execute ( object parameter ) : void

Executes the actual command

Method Details

CanExecute() public method

Checks if the command Execute method can run
public CanExecute ( object parameter ) : bool
parameter object THe command parameter to be passed
return bool

Execute() public method

Executes the actual command
public Execute ( object parameter ) : void
parameter object THe command parameter to be passed
return void