SpatialGestureRecognizer.ManipulationUpdated Evento

Definizione

Si verifica quando un movimento di manipolazione viene aggiornato a causa del movimento della mano.

// Register
event_token ManipulationUpdated(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationUpdated_revoker ManipulationUpdated(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationUpdatedEventArgs> ManipulationUpdated;
function onManipulationUpdated(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationupdated", onManipulationUpdated);
spatialGestureRecognizer.removeEventListener("manipulationupdated", onManipulationUpdated);
- or -
spatialGestureRecognizer.onmanipulationupdated = onManipulationUpdated;
Public Custom Event ManipulationUpdated As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationUpdatedEventArgs) 

Tipo evento

Commenti

Per le interazioni a mano, l'evento SpatialManipulationUpdatedEventArgs viene generato quando la mano ManipulationStarted aggiorna la posizione.

Per le interazioni vocali e del controller di movimento, questo evento non viene attivato.

Si applica a