ScrollPresenter.ZoomAnimationStarting Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando una llamada a ZoomTo
o ZoomBy
desencadena una animación.
// Register
event_token ZoomAnimationStarting(TypedEventHandler<ScrollPresenter, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;
// Revoke with event_token
void ZoomAnimationStarting(event_token const* cookie) const;
// Revoke with event_revoker
ScrollPresenter::ZoomAnimationStarting_revoker ZoomAnimationStarting(auto_revoke_t, TypedEventHandler<ScrollPresenter, ScrollingZoomAnimationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<ScrollPresenter,ScrollingZoomAnimationStartingEventArgs> ZoomAnimationStarting;
function onZoomAnimationStarting(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("zoomanimationstarting", onZoomAnimationStarting);
scrollPresenter.removeEventListener("zoomanimationstarting", onZoomAnimationStarting);
- or -
scrollPresenter.onzoomanimationstarting = onZoomAnimationStarting;
Public Custom Event ZoomAnimationStarting As TypedEventHandler(Of ScrollPresenter, ScrollingZoomAnimationStartingEventArgs)
Tipo de evento
Comentarios
Controle este evento para personalizar la animación que se está iniciando.