Touch gesture in WPF scroll viewer

WPF 4.0 comes up with attractive features. One of them is Multi touch. We can play with WPF scroll viewer using  finger. Setting the property PanningMode will do the magic.   <ScrollViewer PanningMode="Both"               HorizontalScrollBarVisibility="Auto"              VerticalScrollBarVisibility="Auto"/> PanningMode can be either set directly on a ScrollViewer or used as an attached property. When a control contains a ScrollViewer in its ControlTemplate, use... Continue Reading →

Up ↑