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<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>

要在执行命令时执行的操作。

canExecute
System.Func<T,System.Boolean>

指示是否能执行命令的 System.Func`2

适用于