RadialController.RotationChanged Evento

Definizione

Si verifica quando il dispositivo ruotato mentre è attivo uno strumento RadialController personalizzato.

L'app non riceve questo evento quando:

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

Tipo evento

Si applica a

Vedi anche