2013-08-27 16 views

回答

1

不能請你與此類似

Touch.FrameReported += TouchFrameReported; //東西在構造函數中註冊事件

void TouchFrameReported(object sender, TouchFrameEventArgs e) 
    { 
     var tp = e.GetPrimaryTouchPoint(Control); // Control you want to manupulate 

     switch (tp.Action) 
     { 
       case TouchAction.Move: 
       case TouchAction.Up: 
       case TouchAction.Down: 
     } 
     } 
+1

男人,你搖滾:) – fspirit

相關問題