Command<T> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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。