다음을 통해 공유


InputPointerSource.PointerRoutedAway 이벤트

정의

포인터가 다른 InputPointerSource 로 리디렉션될 때 발생합니다(별도의 프로세스일 수 있음).

// Register
event_token PointerRoutedAway(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InputPointerSource::PointerRoutedAway_revoker PointerRoutedAway(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerRoutedAway;
function onPointerRoutedAway(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerroutedaway", onPointerRoutedAway);
inputPointerSource.removeEventListener("pointerroutedaway", onPointerRoutedAway);
- or -
inputPointerSource.onpointerroutedaway = onPointerRoutedAway;
Public Custom Event PointerRoutedAway As TypedEventHandler(Of InputPointerSource, PointerEventArgs) 

이벤트 유형

설명

포인터가 다른 대상으로 라우팅되는 동안 해제되면 PointerRoutedReleased 이벤트가 발생합니다.

적용 대상