'宣言
Public Function New( _ ByVal executeAction As Action, _ ByVal canExecute As Func(Of Boolean) _ )
public DelegateCommand( Action executeAction, Func<bool> canExecute )
パラメータ
- executeAction
- コマンドが実行されます。
- canExecute
- コマンドを実行できるかどうかを決定します。
'宣言
Public Function New( _ ByVal executeAction As Action, _ ByVal canExecute As Func(Of Boolean) _ )
public DelegateCommand( Action executeAction, Func<bool> canExecute )