标签: silverlight windows-mobile touch
有谁知道如何实现单个触摸事件。一个简单的单指触摸事件,不是多个手势或任何东西......只需简单的一个手指触摸。
我想学习如何做而不是做LeftButtonMouseUp。
答案 0 :(得分:1)
将此添加到任何控件:
Tap="Control_Tap"
private void Control_Tap(object sender, System.Windows.Input.GestureEventArgs e) { // Tap Logic }
Here is a link to the Gesture cheat sheet