Condividi tramite


UICommand Costruttori

Definizione

Overload

UICommand()

Crea una nuova istanza della classe UICommand .

UICommand(String)

Crea una nuova istanza della classe UICommand usando l'etichetta specificata.

UICommand(String, UICommandInvokedHandler)

Crea una nuova istanza della classe UICommand usando l'etichetta e il gestore eventi specificati.

UICommand(String, UICommandInvokedHandler, Object)

Crea una nuova istanza della classe UICommand usando l'etichetta, il gestore eventi e l'identificatore di comando specificati.

UICommand()

Crea una nuova istanza della classe UICommand .

public:
 UICommand();
 UICommand();
public UICommand();
function UICommand()
Public Sub New ()

Vedi anche

Si applica a

UICommand(String)

Crea una nuova istanza della classe UICommand usando l'etichetta specificata.

public:
 UICommand(Platform::String ^ label);
 UICommand(winrt::hstring const& label);
public UICommand(string label);
function UICommand(label)
Public Sub New (label As String)

Parametri

label
String

Platform::String

winrt::hstring

Etichetta per UICommand.

Vedi anche

Si applica a

UICommand(String, UICommandInvokedHandler)

Crea una nuova istanza della classe UICommand usando l'etichetta e il gestore eventi specificati.

public:
 UICommand(Platform::String ^ label, UICommandInvokedHandler ^ action);
 UICommand(winrt::hstring const& label, UICommandInvokedHandler const& action);
public UICommand(string label, UICommandInvokedHandler action);
function UICommand(label, action)
Public Sub New (label As String, action As UICommandInvokedHandler)

Parametri

label
String

Platform::String

winrt::hstring

Etichetta per il nuovo comando.

action
UICommandInvokedHandler

Gestore eventi per il nuovo comando.

Vedi anche

Si applica a

UICommand(String, UICommandInvokedHandler, Object)

Crea una nuova istanza della classe UICommand usando l'etichetta, il gestore eventi e l'identificatore di comando specificati.

public:
 UICommand(Platform::String ^ label, UICommandInvokedHandler ^ action, Platform::Object ^ commandId);
 UICommand(winrt::hstring const& label, UICommandInvokedHandler const& action, IInspectable const& commandId);
public UICommand(string label, UICommandInvokedHandler action, object commandId);
function UICommand(label, action, commandId)
Public Sub New (label As String, action As UICommandInvokedHandler, commandId As Object)

Parametri

label
String

Platform::String

winrt::hstring

Etichetta per il nuovo comando.

action
UICommandInvokedHandler

Gestore eventi per il nuovo comando.

commandId
Object

Platform::Object

IInspectable

Identificatore del comando per il nuovo comando.

Vedi anche

Si applica a