다음을 통해 공유


SpatialGestureRecognizer.RecognitionStarted 이벤트

정의

제스처 인식이 시작될 때 발생합니다(가장 먼저 발생하는 이벤트임).

// Register
event_token RecognitionStarted(TypedEventHandler<SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialGestureRecognizer::RecognitionStarted_revoker RecognitionStarted(auto_revoke_t, TypedEventHandler<SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialGestureRecognizer,SpatialRecognitionStartedEventArgs> RecognitionStarted;
function onRecognitionStarted(eventArgs) { /* Your code */ }
spatialGestureRecognizer.addEventListener("recognitionstarted", onRecognitionStarted);
spatialGestureRecognizer.removeEventListener("recognitionstarted", onRecognitionStarted);
- or -
spatialGestureRecognizer.onrecognitionstarted = onRecognitionStarted;
Public Custom Event RecognitionStarted As TypedEventHandler(Of SpatialGestureRecognizer, SpatialRecognitionStartedEventArgs) 

이벤트 유형

설명

SpatialRecognitionStartedEventArgs 이벤트는 활성 제스처가 없고 제스처 인식기가 상호 작용을 캡처하라는 지시를 받으면 발생합니다. 상호 작용이 SpatialGestureSettings에서 요청된 제스처 중 하나 이상을 트리거할 수 있는 경우에만 이벤트가 발생합니다.

손 조작의 경우 이 이벤트는 손가락 누르기에서 발생합니다.

음성 상호 작용의 경우 이 이벤트는 "Select"와 같은 시스템 음성 명령을 사용할 때 발생합니다.

모션 컨트롤러의 경우 선택 트리거 또는 단추를 누르면 이 이벤트가 발생합니다.

적용 대상