SysSpatialInputDeviceWatcher.Stopped 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.
Peristiwa yang dimunculkan saat pengamatan perangkat input spasial telah berhenti.
Penting
API ini hanya tersedia untuk komponen sistem operasi Windows. Panggilan ke API ini akan gagal pada runtime untuk semua proses lainnya. API ini dapat dimodifikasi atau dihapus dalam rilis Windows mendatang.
// Register
event_token Stopped(TypedEventHandler<SysSpatialInputDeviceWatcher, IInspectable const&> const& handler) const;
// Revoke with event_token
void Stopped(event_token const* cookie) const;
// Revoke with event_revoker
SysSpatialInputDeviceWatcher::Stopped_revoker Stopped(auto_revoke_t, TypedEventHandler<SysSpatialInputDeviceWatcher, IInspectable const&> const& handler) const;
public event TypedEventHandler<SysSpatialInputDeviceWatcher,object> Stopped;
function onStopped(eventArgs) { /* Your code */ }
sysSpatialInputDeviceWatcher.addEventListener("stopped", onStopped);
sysSpatialInputDeviceWatcher.removeEventListener("stopped", onStopped);
- or -
sysSpatialInputDeviceWatcher.onstopped = onStopped;
Public Custom Event Stopped As TypedEventHandler(Of SysSpatialInputDeviceWatcher, Object)
Jenis Acara
TypedEventHandler<SysSpatialInputDeviceWatcher,IInspectable>