UICommand.Invoked Property

Definition

Gets or sets the handler for the event that is fired when the user selects the UICommand.

public:
 property UICommandInvokedHandler ^ Invoked { UICommandInvokedHandler ^ get(); void set(UICommandInvokedHandler ^ value); };
UICommandInvokedHandler Invoked();

void Invoked(UICommandInvokedHandler value);
public UICommandInvokedHandler Invoked { get; set; }
var uICommandInvokedHandler = uICommand.invoked;
uICommand.invoked = uICommandInvokedHandler;
Public Property Invoked As UICommandInvokedHandler

Property Value

The event handler associated with the UICommand.

Implements

Remarks

This property may be null.

Applies to

See also