Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Navigation;
- using Microsoft.Phone.Controls;
- using Microsoft.Phone.Shell;
- using BubblingTest.Resources;
- namespace BubblingTest
- {
- public partial class MainPage : PhoneApplicationPage
- {
- // Constructor
- public MainPage()
- {
- InitializeComponent();
- TestGrid.ManipulationStarted+=TestGrid_ManipulationStarted;
- TestGrid.ManipulationDelta += TestGrid_ManipulationDelta;
- TestGrid.ManipulationCompleted += TestGrid_ManipulationCompleted;
- }
- void TestGrid_ManipulationCompleted(object sender, System.Windows.Input.ManipulationCompletedEventArgs e)
- {
- e.Handled = true;
- }
- void TestGrid_ManipulationDelta(object sender, System.Windows.Input.ManipulationDeltaEventArgs e)
- {
- e.Handled = true;
- }
- private void TestGrid_ManipulationStarted(object sender, System.Windows.Input.ManipulationStartedEventArgs e)
- {
- e.Handled = true;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement