windows消息简单应用实例

//基本定义

 internal class MyMessager : IMessageFilter
{
public bool PreFilterMessage(ref Message m)
{
//监控鼠标
if (m.Msg == 0x0200 || m.Msg == 0x0201 || m.Msg == 0x0204 || m.Msg == 0x0207)
{
//动作
}
return false;
}
}

//调用

MyMessager msg = new MyMessager();

Application.AddMessageFilter(msg);

//继续动作

上一篇:WordPress数据库优化技巧


下一篇:mybatis 的sql语句及使用mybatis的动态sql mybatis防注入