asp.net RadioButton控件呼应双击办法[网站编程]
本文“asp.net RadioButton控件呼应双击办法[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
using system;
using system.collections.generic;
using system.text;
using system.windows.forms;
using system.threading;
using system.runtime.interops教程ervices;
using system.diagnostics;
using system.data;
using system.data.oledb;namespace windowsformsapplication1
{
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;
}
}
}
以上是“asp.net RadioButton控件呼应双击办法[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |