GestureRecognizer.ManipulationStarted Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika satu atau beberapa titik input telah dimulai dan gerakan berikutnya (terjemahan, ekspansi, atau rotasi) telah dimulai.
// Register
event_token ManipulationStarted(TypedEventHandler<GestureRecognizer, ManipulationStartedEventArgs const&> const& handler) const;
// Revoke with event_token
void ManipulationStarted(event_token const* cookie) const;
// Revoke with event_revoker
GestureRecognizer::ManipulationStarted_revoker ManipulationStarted(auto_revoke_t, TypedEventHandler<GestureRecognizer, ManipulationStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,ManipulationStartedEventArgs> ManipulationStarted;
function onManipulationStarted(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("manipulationstarted", onManipulationStarted);
gestureRecognizer.removeEventListener("manipulationstarted", onManipulationStarted);
- or -
gestureRecognizer.onmanipulationstarted = onManipulationStarted;
Public Custom Event ManipulationStarted As TypedEventHandler(Of GestureRecognizer, ManipulationStartedEventArgs)
Jenis Acara
Berlaku untuk
Lihat juga
- ManipulationStartedEventArgs
- Interaksi sentuh - Peristiwa manipulasi
- Sampel mode interaksi pengguna
- Sampel visual fokus
- Input: Sampel kemampuan perangkat
- Input: Sampel tinta yang disederhanakan
- Input: sampel gerakan Windows 8
- Input: Sampel peristiwa input pengguna XAML
- Sampel pengguliran, penggeseran, dan pembesaran tampilan XAML
- Sampel input sentuh DirectX
- Input: Sampel manipulasi dan gerakan (C++)
- Input: Sampel pengujian tekan sentuhan
- Sampel identifikasi sumber input
- Sampel injeksi sentuh
- Sampel pengujian hit sentuh Win32