当前位置:开发者网络 >> 技术教程 >> .NET教程 >> Windows开发 >> 内容
精彩推荐
分类最新教程
分类热点教程
  
除了使用hook外,下面的代码也能够在全局捕捉鼠标:(csdn)
作者:未知
日期:2003-07-12
人气:
投稿:Andy.m(转贴)
来源:未知
字体:
收藏:加入浏览器收藏
以下正文:
 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;
        }
    }
}
  

相关文章: