摘要: 区分鼠标单击和双击事件处理MouseDown事件并确定单击位置和两次单击间的时间间隔,方法是使用适当的SystemInformation属性和Timer组件。根据发生的是单击还是双击,执行适当的操作。下面的代码示例阐释这是如何实现的。using System;using System.Drawing;using System.Windows.Forms;namespace SingleVersusDoubleClick{ class Form1 : Form { private Rectangle hitTestRectangle = new Rectangle(); private Rect 阅读全文
posted @ 2011-07-12 11:32 把爱延续 阅读(3447) 评论(0) 推荐(0) 编辑