Partager via


RadialController.ControlLost Événement

Définition

Se produit lorsqu’un outil RadialController personnalisé (défini par une application) est actif et que l’application associée à l’objet RadialController est envoyée à l’arrière-plan ou que l’utilisateur active le menu RadialController .

// 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) 

Type d'événement

S’applique à

Voir aussi