Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XNA + windows phone 7で、イベントまたはタップダウン(タッチダウン)とタップアップ(タッチアップ)を2つの異なるジェスチャとして認識する方法はありますか?
ここに行きます:
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 } }