ScrollView.ScrollAnimationStarting Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando uma chamada para ScrollTo
ou ScrollBy
dispara uma animação.
// 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)
Tipo de evento
Comentários
Manipule esse evento para personalizar a animação que está sendo iniciada.