ScrollViewer.ViewChanging Event

Definition

Occurs when manipulations such as scrolling and zooming cause the view to change.

C#
public event System.EventHandler<ScrollViewerViewChangingEventArgs> ViewChanging;
XAML
<ScrollViewer ViewChanging="eventhandler"/>

Event Type

Remarks

ScrollViewerViewChangingEventArgs includes the IsInertial property, which reports whether the manipulation that is firing the event contains an inertial component.

Not every underlying manipulation will necessarily fire this event. The ScrollViewer logic delays and consolidates intermediate events into a single occurrence in some cases.

Applies to

Produkt Verzie
Windows App SDK 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6

See also