다음을 통해 공유


SpatialInteractionManager.InteractionDetected 이벤트

정의

SpatialGestureRecognizer로 라우팅하는 데 새 상호 작용을 사용할 수 있을 때 발생합니다.

// Register
event_token InteractionDetected(TypedEventHandler<SpatialInteractionManager, SpatialInteractionDetectedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SpatialInteractionManager::InteractionDetected_revoker InteractionDetected(auto_revoke_t, TypedEventHandler<SpatialInteractionManager, SpatialInteractionDetectedEventArgs const&> const& handler) const;
public event TypedEventHandler<SpatialInteractionManager,SpatialInteractionDetectedEventArgs> InteractionDetected;
function onInteractionDetected(eventArgs) { /* Your code */ }
spatialInteractionManager.addEventListener("interactiondetected", onInteractionDetected);
spatialInteractionManager.removeEventListener("interactiondetected", onInteractionDetected);
- or -
spatialInteractionManager.oninteractiondetected = onInteractionDetected;
Public Custom Event InteractionDetected As TypedEventHandler(Of SpatialInteractionManager, SpatialInteractionDetectedEventArgs) 

이벤트 유형

설명

이벤트 인수의 SpatialInteraction 개체를 SpatialGestureRecognizerCaptureInteraction 메서드에 전달하여 이 상호 작용을 해당 제스처 인식기로 라우팅합니다.

적용 대상