RadialController.ControlLost Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
TypedEventHandler<RadialController,IInspectable>