自定义双击事件_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 自定义双击事件

自定义双击事件

 2013/8/14 20:43:52  誓言的爱  博客园  我要评论(0)
  • 摘要:publicpartialclassForm1:Form,IMessageFilter{publicForm1(){InitializeComponent();Application.AddMessageFilter(this);}privateintWM_LBUTTONDBLCLK=0x0203;publicboolPreFilterMessage(refMessagemsg){if(msg.HWnd==this.radioButton1.Handle&&msg
  • 标签:事件 自定义
public partial class Form1 : Form,IMessageFilter
    {
        public Form1()
        {
            InitializeComponent();
            Application.AddMessageFilter(this);
        }

        private int WM_LBUTTONDBLCLK = 0x0203;

        public bool PreFilterMessage(ref Message msg)
        {
            if (msg.HWnd == this.radioButton1.Handle && msg.Msg == WM_LBUTTONDBLCLK)
            {
                MessageBox.Show("触发双击事件");
            }

            return true;
        } 
    }




源文档 <http://topic.csdn.net/u/20101110/21/c38130de-7edb-4527-b3da-e964a3c37fc7.html?99703> 
发表评论
用户名: 匿名