2012-10-12 4 views

답변

1

은 간다 :

TouchCollection touchCollection = TouchPanel.GetState(); 
     foreach (TouchLocation tl in touchCollection) 
     { 
      if (tl.State == TouchLocationState.Pressed) 
      { 
        ...on touch down code 
      } 

      if (tl.State == TouchLocationState.Released) 
      { 
        ...on touch up code 
      } 

     }