Freigeben über


RadialController.ControlLost Ereignis

Definition

Tritt auf, während ein benutzerdefiniertes RadialController-Tool (definiert durch eine App) aktiv ist und entweder die dem RadialController-Objekt zugeordnete App an den Hintergrund gesendet wird, oder der Benutzer das RadialController-Menü aktiviert.

// Register
event_token ControlLost(TypedEventHandler<RadialController, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
RadialController::ControlLost_revoker ControlLost(auto_revoke_t, TypedEventHandler<RadialController, IInspectable const&> const& handler) const;
public event TypedEventHandler<RadialController,object> ControlLost;
function onControlLost(eventArgs) { /* Your code */ }
radialController.addEventListener("controllost", onControlLost);
radialController.removeEventListener("controllost", onControlLost);
- or -
radialController.oncontrollost = onControlLost;
Public Custom Event ControlLost As TypedEventHandler(Of RadialController, Object) 

Ereignistyp

Gilt für:

Weitere Informationen