获取鼠标双击时间间隔
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取鼠标双击时间间隔相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
API函数 GetDoubleClickTime //判断连续两次鼠标单击之间会被处理成双击事件的时间间隔 单位毫秒
实现代码:
[DllImport("user32.dll", EntryPoint = "GetDoubleClickTime")] public extern static int GetDoubleClickTime(); //重写API函数 private void Form1_Load(object sender, EventArgs e) { label2.Text = GetDoubleClickTime() + "毫秒"; //显示间隔秒数 }
以上是关于获取鼠标双击时间间隔的主要内容,如果未能解决你的问题,请参考以下文章