C# Class DotNetify.Command

Basic implementation of ICommand.
Inheritance: ICommand
显示文件 Open project: dsuryd/dotNetify

Public Methods

Method Description
CanExecute ( object parameter ) : bool

Not implemented.

Command ( System.Action executeAction ) : System

Constructor.

Execute ( object parameter ) : void

Executes the command.

Method Details

CanExecute() public method

Not implemented.
public CanExecute ( object parameter ) : bool
parameter object
return bool

Command() public method

Constructor.
public Command ( System.Action executeAction ) : System
executeAction System.Action Execute action.
return System

Execute() public method

Executes the command.
public Execute ( object parameter ) : void
parameter object Not used.
return void