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