GestureRecognizer.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) 

이벤트 유형

적용 대상

추가 정보