Compartir a través de


ScrollPresenter.ScrollAnimationStarting Evento

Definición

Se produce cuando una llamada a ScrollTo o ScrollBy desencadena una animación.

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

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

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

Tipo de evento

Comentarios

Controle este evento para personalizar la animación que se está iniciando.

Se aplica a