使用 MouseClick Winforms 控件事件实现缺失的 MouseDoubleClick
我有一个实现了 MouseClick 事件侦听器的控件,但缺少 MouseDoubleClick 侦听器。
我已经使用自定义版本的 jQuery.DoubleTap 插件成功区分了 javascript 中的 click 和 dblclick 事件:bit.ly/roCV7h
所以我想在 C# 中使用类似的技巧:设置点击事件执行的延迟如果在超时之前再次触发,则取消它。
我在 stackoverflow 上找到了很多解决方案:但它们都不是线程安全的,或者使主(GUI)线程进入睡眠状态。
I have a control that has MouseClick event listener implemented, while MouseDoubleClick listener is missing.
I've already managed to distinguish between click and dblclick events in javascript using my custom version of jQuery.DoubleTap plugin: bit.ly/roCV7h
So I would like to use a similar trick in C#: to set a delay on the click event execution and cancel it if fires again before the time out.
I found a lot of solutions on stackoverflow: but all of them are not thread-safe or put a main (GUI) thread to sleep.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用计时器并存储点击次数。当计时器“滴答作响”时,检查点击计数并触发相关事件。
伪代码(抱歉不记得头顶的计时器功能)...
I would use a timer and store the number of clicks. When the timer "ticks" then check the click count and fire the relevant event.
pseudo code (sorry don't recall timer functions of top of head)...