UICommand Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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()
public:
UICommand();
UICommand();
public UICommand();
function UICommand()
Public Sub New ()
Vedi anche
- UICommand
- UICommand(String, UICommandInvokedHandler)
- UICommand(String, UICommandInvokedHandler, Object)
Si applica a
UICommand(String)
public:
UICommand(Platform::String ^ label);
UICommand(winrt::hstring const& label);
public UICommand(string label);
function UICommand(label)
Public Sub New (label As String)
Parametri
Vedi anche
Si applica a
UICommand(String, UICommandInvokedHandler)
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)
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.