Method | Description | |
---|---|---|
CanExecute ( object parameter ) : bool |
指示当前状态是否允许命令执行。
|
|
DelegateCommand ( System.Action execute ) : System |
初始化委托命令。
|
|
DelegateCommand ( System.Action execute, Func |
初始化委托命令。
|
|
DelegateCommand ( Func |
初始化委托命令。
|
|
DelegateCommand ( Func |
初始化委托命令。
|
|
Execute ( object parameter ) : void |
执行命令。
|
|
RaiseCanExecuteChanged ( ) : void |
通知命令是否允许执行发生变更。
|
public CanExecute ( object parameter ) : bool | ||
parameter | object | 参数。 |
return | bool |
public DelegateCommand ( System.Action execute ) : System | ||
execute | System.Action | 命令动作。 |
return | System |
public DelegateCommand ( System.Action execute, Func |
||
execute | System.Action | 命令动作。 |
canExecute | Func |
指示命令在某个状态下是否能够执行。 |
return | System |
public DelegateCommand ( Func |
||
asyncExecute | Func |
命令动作。 |
return | System |
public DelegateCommand ( Func |
||
asyncExecute | Func |
命令动作。 |
canExecute | Func |
指示命令在某个状态下是否能够执行。 |
return | System |