다음을 통해 공유


GestureRecognizer.ManipulationCompleted 이벤트

정의

입력 지점이 들어 올려지고 관성까지의 모든 후속 동작(변환, 확장 또는 회전)이 종료될 때 발생합니다.

이 API에 대한 자세한 내용은 UWP WinRT ManipulationCompleted 항목을 참조하세요.

// Register
event_token ManipulationCompleted(TypedEventHandler<GestureRecognizer, ManipulationCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GestureRecognizer::ManipulationCompleted_revoker ManipulationCompleted(auto_revoke_t, TypedEventHandler<GestureRecognizer, ManipulationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,ManipulationCompletedEventArgs> ManipulationCompleted;
function onManipulationCompleted(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("manipulationcompleted", onManipulationCompleted);
gestureRecognizer.removeEventListener("manipulationcompleted", onManipulationCompleted);
- or -
gestureRecognizer.onmanipulationcompleted = onManipulationCompleted;
Public Custom Event ManipulationCompleted As TypedEventHandler(Of GestureRecognizer, ManipulationCompletedEventArgs) 

이벤트 유형

적용 대상

추가 정보