主要成果代码如下:
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; } }
但愿本文所述对大家的C#措施设计有所辅佐。
除声明外,跑步客文章均为原创,转载请以链接形式标明本文地点
本文地点:
,