Share via


SysSpatialInputDeviceWatcher.Stopped 이벤트

정의

공간 입력 디바이스 감시가 중지되었을 때 발생하는 이벤트입니다.

중요

이 API는 Windows 운영 체제의 구성 요소에서만 사용할 수 있습니다. 이러한 API에 대한 호출은 런타임에 다른 모든 프로세스에 대해 실패합니다. 이러한 API는 향후 Windows 릴리스에서 수정되거나 제거될 수 있습니다.

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

이벤트 유형

적용 대상