RadialController.RotationChanged É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 lorsque le périphérique de roue est pivoté pendant qu’un outil RadialController personnalisé est actif.
Votre application ne reçoit pas cet événement dans les cas suivants :
- Le menu RadialController est actif
- Un outil intégré est actif
// Register
event_token RotationChanged(TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void RotationChanged(event_token const* cookie) const;
// Revoke with event_revoker
RadialController::RotationChanged_revoker RotationChanged(auto_revoke_t, TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RadialController,RadialControllerRotationChangedEventArgs> RotationChanged;
function onRotationChanged(eventArgs) { /* Your code */ }
radialController.addEventListener("rotationchanged", onRotationChanged);
radialController.removeEventListener("rotationchanged", onRotationChanged);
- or -
radialController.onrotationchanged = onRotationChanged;
Public Custom Event RotationChanged As TypedEventHandler(Of RadialController, RadialControllerRotationChangedEventArgs)