您的位置:首页 > 编程语言

除了使用hook外,下面的代码也能够在全局捕捉鼠标:(csdn)

2008-05-01 03:19 253 查看
dy_2000_abc(芝麻开门)
public class Form1 : System.Windows.Forms.Form,IMessageFilter
{
private System.Windows.Forms.Button button1;
static void Main()
{
Application.Run(new Form1());
}

private void Form1_Load(object sender, System.EventArgs e)
{
Application.AddMessageFilter(this);
}
public bool PreFilterMessage(ref Message msg)
{
if (msg.Msg==0x205)
{
this.button1.Visible=true;
return true;
}
else
if (msg.Msg==0x201)
{
this.button1.Visible=false;
return true;
}
else
return false;
}
}
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: