RadialControllerMenuItem.Invoked Event

Definition

Occurs when a custom tool is selected from the RadialController menu.

// Register
event_token Invoked(TypedEventHandler<RadialControllerMenuItem, IInspectable const&> const& handler) const;

// Revoke with event_token
void Invoked(event_token const* cookie) const;

// Revoke with event_revoker
RadialControllerMenuItem::Invoked_revoker Invoked(auto_revoke_t, TypedEventHandler<RadialControllerMenuItem, IInspectable const&> const& handler) const;
public event TypedEventHandler<RadialControllerMenuItem,object> Invoked;
function onInvoked(eventArgs) { /* Your code */ }
radialControllerMenuItem.addEventListener("invoked", onInvoked);
radialControllerMenuItem.removeEventListener("invoked", onInvoked);
- or -
radialControllerMenuItem.oninvoked = onInvoked;
Public Custom Event Invoked As TypedEventHandler(Of RadialControllerMenuItem, Object) 

Event Type

Applies to

See also