コード例 #1
0
 protected void OnPointerReleased(Windows.Phone.Input.Interop.DrawingSurfaceManipulationHost sender, Windows.UI.Core.PointerEventArgs args)
 {
     // Insert your code here.
 }
コード例 #2
0
 // IDrawingSurfaceManipulationHandler
 public void SetManipulationHost(Windows.Phone.Input.Interop.DrawingSurfaceManipulationHost manipulationHost)
 {
     manipulationHost.PointerPressed  += OnPointerPressed;
     manipulationHost.PointerMoved    += OnPointerMoved;
     manipulationHost.PointerReleased += OnPointerReleased;
 }