觸屏滾動實現
設置屬性 在ScrollViewer的xaml代碼那里加上
PanningMode=“Both”
在ScrollViewer的xaml代碼那里加上
1 ManipulationBoundaryFeedback="SCManipulationBoundaryFeedback"
然后cs里加上
private void SCManipulationBoundaryFeedback(object sender, ManipulationBoundaryFeedbackEventArgs e) { e.Handled = true; }