Partager via


SpatialGestureRecognizer.ManipulationStarted Événement

Définition

Se produit lorsqu’une interaction devient un mouvement de manipulation .

// Register
event_token ManipulationStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::ManipulationStarted_revoker ManipulationStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialManipulationStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialManipulationStartedEventArgs> ManipulationStarted;
function onManipulationStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("manipulationstarted", onManipulationStarted);
spatialGestureRecognizer.removeEventListener("manipulationstarted", onManipulationStarted);
- or -
spatialGestureRecognizer.onmanipulationstarted = onManipulationStarted;
Public Custom Event ManipulationStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialManipulationStartedEventArgs) 

Type d'événement

Remarques

Pour les interactions manuelles, l’événement SpatialManipulationStartedEventArgs se déclenche lorsqu’un doigt est enfoncé, puis se déplace en dehors de la petite zone morte manipulation.

Pour les interactions du contrôleur de parole et de mouvement, cet événement ne se déclenche pas.

S’applique à