触屏滚动实现
设置属性 在ScrollViewer的xaml代码那里加上
PanningMode=“Both”
在ScrollViewer的xaml代码那里加上
ManipulationBoundaryFeedback="SCManipulationBoundaryFeedback"
然后cs里加上
private void SCManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e)
{
e.Handled = true;
}