ScrollViewer.ViewChanging Événement

Définition

Se produit lorsque des manipulations telles que le défilement et le zoom provoquent une modification de la vue.

// Register
event_token ViewChanging(EventHandler<ScrollViewerViewChangingEventArgs> const& handler) const;

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

// Revoke with event_revoker
ScrollViewer::ViewChanging_revoker ViewChanging(auto_revoke_t, EventHandler<ScrollViewerViewChangingEventArgs> const& handler) const;
public event System.EventHandler<ScrollViewerViewChangingEventArgs> ViewChanging;
function onViewChanging(eventArgs) { /* Your code */ }
scrollViewer.addEventListener("viewchanging", onViewChanging);
scrollViewer.removeEventListener("viewchanging", onViewChanging);
- or -
scrollViewer.onviewchanging = onViewChanging;
Public Custom Event ViewChanging As EventHandler(Of ScrollViewerViewChangingEventArgs) 
<ScrollViewer ViewChanging="eventhandler"/>

Type d'événement

Remarques

ScrollViewerViewChangingEventArgs inclut la propriété IsInertial , qui indique si la manipulation qui déclenche l’événement contient un composant inertiel.

Toutes les manipulations sous-jacentes ne déclenchent pas nécessairement cet événement. La logique ScrollViewer retarde et consolide les événements intermédiaires en une seule occurrence dans certains cas.

S’applique à

Voir aussi