다음을 통해 공유


ScrollView.ZoomAnimationStarting 이벤트

정의

를 호출하거나 ZoomBy 애니메이션을 트리거할 ZoomTo 때 발생합니다.

// Register
event_token ZoomAnimationStarting(TypedEventHandler<ScrollView, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ScrollView::ZoomAnimationStarting_revoker ZoomAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollView, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollView,ScrollingZoomAnimationStartingEventArgs> ZoomAnimationStarting;
function onZoomAnimationStarting(eventArgs) { /* Your code */ }
scrollView.addEventListener("zoomanimationstarting", onZoomAnimationStarting);
scrollView.removeEventListener("zoomanimationstarting", onZoomAnimationStarting);
- or -
scrollView.onzoomanimationstarting = onZoomAnimationStarting;
Public Custom Event ZoomAnimationStarting As TypedEventHandler(Of ScrollView, ScrollingZoomAnimationStartingEventArgs) 

이벤트 유형

설명

이 이벤트를 처리하여 시작 중인 애니메이션을 사용자 지정합니다.

적용 대상