共用方式為


Command<T> 建構函式

定義

多載

Command<T>(Action<T>)

初始化 Command 類別的新執行個體。

Command<T>(Action<T>, Func<T,Boolean>)

初始化 Command 類別的新執行個體。

Command<T>(Action<T>)

初始化 Command 類別的新執行個體。

public Command (Action<T> execute);
new Xamarin.Forms.Command<'T> : Action<'T> -> Xamarin.Forms.Command<'T>

參數

execute
System.Action<T>

要在執行 Command 時執行的動作。

適用於

Command<T>(Action<T>, Func<T,Boolean>)

初始化 Command 類別的新執行個體。

public Command (Action<T> execute, Func<T,bool> canExecute);
new Xamarin.Forms.Command<'T> : Action<'T> * Func<'T, bool> -> Xamarin.Forms.Command<'T>

參數

execute
System.Action<T>

要在執行 Command 時執行的動作。

canExecute
System.Func<T,System.Boolean>

System.Func`2,指出是否可執行 Command。

適用於