Expand Minimize
This topic has not yet been rated - Rate this topic

PanningMode Enumeration

Specifies how ScrollViewer reacts to touch manipulation.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
public enum PanningMode
<object property="enumerationMemberName" .../>
Member nameDescription
BothThe ScrollViewer scrolls horizontally and vertically.
HorizontalFirstThe ScrollViewer scrolls when the user moves a finger horizontally first. If the user moves the vertically first, the movement is treated as mouse events. After the ScrollViewer begins to scroll, it will scroll horizontally and vertically.
HorizontalOnlyThe ScrollViewer scrolls horizontally only.
NoneThe ScrollViewer does not respond to touch input.
VerticalFirstThe ScrollViewer scrolls when the user moves a finger vertically first. If the user moves the horizontally first, the movement is treated as mouse events. After the ScrollViewer begins to scroll, it will scroll horizontally and vertically.
VerticalOnlyThe ScrollViewer scrolls vertically only.

The ScrollViewer will scroll when a user drags a finger on the control on a touch device that supports Windows Touch. The PanningMode property specifies whether the ScrollViewer scroll horizontally, vertically, or both.

.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.