使用gridTest.doubleTapped += DoubleTapEvent
实际上很少检测到双击。
是否有任何工作结果或某些事情可以实现。
答案 0 :(得分:1)
我通过添加调度程序层在我的应用程序中提供了一个解决方案,并且间隔大约为300毫秒。
Heres调度程序计时器代码
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(300);
timer.Tick += timer_Tick;
timer.Start();
public void timer_Tick(object sender, object args){ // handle the code here and dont forget to stop the timer}
我知道这是一种不好的做法,但它有所帮助。并且如果赶时间可以用作解决方法:)