Bagikan melalui


SpatialGestureRecognizer.ManipulationStarted Kejadian

Definisi

Terjadi ketika interaksi menjadi gerakan Manipulasi .

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

Jenis Acara

Keterangan

Untuk interaksi tangan, peristiwa SpatialManipulationStartedEventArgs diaktifkan ketika jari ditekan dan kemudian bergerak di luar zona mati Manipulasi kecil.

Untuk interaksi pengontrol ucapan dan gerakan, peristiwa ini tidak diaktifkan.

Berlaku untuk