Command 构造函数

定义

重载

Command(Action)

初始化 Command 类的新实例。

Command(Action<Object>)

初始化 Command 类的新实例。

Command(Action, Func<Boolean>)

初始化 Command 类的新实例。

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

初始化 Command 类的新实例。

Command(Action)

Source:
Command.cs
Source:
Command.cs

初始化 Command 类的新实例。

public:
 Command(Action ^ execute);
public Command (Action execute);
new Microsoft.Maui.Controls.Command : Action -> Microsoft.Maui.Controls.Command
Public Sub New (execute As Action)

参数

execute
Action

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

适用于

Command(Action<Object>)

Source:
Command.cs
Source:
Command.cs

初始化 Command 类的新实例。

public:
 Command(Action<System::Object ^> ^ execute);
public Command (Action<object> execute);
new Microsoft.Maui.Controls.Command : Action<obj> -> Microsoft.Maui.Controls.Command
Public Sub New (execute As Action(Of Object))

参数

execute
Action<Object>

要在执行命令时执行的 Action<object>。

注解

操作将使用 参数执行。

适用于

Command(Action, Func<Boolean>)

Source:
Command.cs
Source:
Command.cs

初始化 Command 类的新实例。

public:
 Command(Action ^ execute, Func<bool> ^ canExecute);
public Command (Action execute, Func<bool> canExecute);
new Microsoft.Maui.Controls.Command : Action * Func<bool> -> Microsoft.Maui.Controls.Command
Public Sub New (execute As Action, canExecute As Func(Of Boolean))

参数

execute
Action

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

canExecute
Func<Boolean>

指示是否能执行命令的 Func<TResult>

注解

每当 canExecute 返回的值发生更改时,都需要调用 ChangeCanExecute() 以触发 CanExecuteChanged

适用于

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

Source:
Command.cs
Source:
Command.cs

初始化 Command 类的新实例。

public:
 Command(Action<System::Object ^> ^ execute, Func<System::Object ^, bool> ^ canExecute);
public Command (Action<object> execute, Func<object,bool> canExecute);
new Microsoft.Maui.Controls.Command : Action<obj> * Func<obj, bool> -> Microsoft.Maui.Controls.Command
Public Sub New (execute As Action(Of Object), canExecute As Func(Of Object, Boolean))

参数

execute
Action<Object>

要在执行命令时执行的 Action<object>。

canExecute
Func<Object,Boolean>

指示是否能执行命令的 Func<T,TResult>

注解

每当 canExecute 返回的值发生更改时,都需要调用 ChangeCanExecute() 以触发 CanExecuteChanged

适用于