다음을 통해 공유


ScrollView.ScrollAnimationStarting 이벤트

정의

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

// Register
event_token ScrollAnimationStarting(TypedEventHandler<ScrollView, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ScrollView::ScrollAnimationStarting_revoker ScrollAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollView, ScrollingScrollAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollView,ScrollingScrollAnimationStartingEventArgs> ScrollAnimationStarting;
function onScrollAnimationStarting(eventArgs) { /* Your code */ }
scrollView.addEventListener("scrollanimationstarting", onScrollAnimationStarting);
scrollView.removeEventListener("scrollanimationstarting", onScrollAnimationStarting);
- or -
scrollView.onscrollanimationstarting = onScrollAnimationStarting;
Public Custom Event ScrollAnimationStarting As TypedEventHandler(Of ScrollView, ScrollingScrollAnimationStartingEventArgs) 

이벤트 유형

설명

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

적용 대상