使用 MouseClick Winforms 控件事件实现缺失的 MouseDoubleClick

发布于 2024-12-09 13:18:49 字数 275 浏览 0 评论 0原文

我有一个实现了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

转身以后 2024-12-16 13:18:49

我会使用计时器并存储点击次数。当计时器“滴答作响”时,检查点击计数并触发相关事件。

伪代码(抱歉不记得头顶的计时器功能)...

Timer timer = new Timer(); //maybe 500 ms elapsed period
int mouseCount = 0;

void OnMouseClick()
{
   if(!timer.Enabled)
      //start timer
   mouseCount++;
}

void OnTimerTick()
{
   timer.Stop();
   if(mouseCount == 1)
      //fire single mouse click event
   else if(mouseCount > 1)
      //fire double mouse click event
   mouseCount = 0;
}

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)...

Timer timer = new Timer(); //maybe 500 ms elapsed period
int mouseCount = 0;

void OnMouseClick()
{
   if(!timer.Enabled)
      //start timer
   mouseCount++;
}

void OnTimerTick()
{
   timer.Stop();
   if(mouseCount == 1)
      //fire single mouse click event
   else if(mouseCount > 1)
      //fire double mouse click event
   mouseCount = 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文