Dzwebs.Net

撰写电脑技术杂文十余年

监控鼠标位置与键盘输入的代码示例

Admin | 2009-2-19 12:11:37 | 被阅次数 | 6596

温馨提示!

如果未能解决您的问题,请点击搜索;登陆可复制文章,点击登陆
[DllImport("USER32.DLL",CallingConvention=CallingConvention.StdCall)]   
private static extern int GetCursorPos (ref Point  lpPoint);   
[DllImport("USER32.DLL",CallingConvention=CallingConvention.StdCall)]   
private static extern int GetKeyboardState(ref byte lpKeyState);    
private Point ptOld=new Point(0,0);
private void Form1_Load(object sender, System.EventArgs e)
{
    GetCursorPos(ref ptOld);     //启动时鼠标所处的位置 
}
private void timer1_Tick(object sender, System.EventArgs e)
{
    byte[] bytCurKeyState=new byte[256];
    GetKeyboardState(ref bytCurKeyState[0]); 
    for (int i=0;i<256;i++)
    {
        if (bytCurKeyState[i] > 1 )  //检查当前是否有个键盘被按下(包括鼠标)
        {    
            Close();
        }
    }    
    Point pt=new Point(0,0);
    GetCursorPos(ref pt); 
    if (!pt.Equals(ptOld))  //检查鼠标是否移动了
    {
        Close(); 
    }
}

该杂文来自: 网站开发杂文

上一篇:一组数据计算连号的代码示例

下一篇:程序员应具备的素质

网站备案号:

网站备案号:滇ICP备11001339号-7

版权属性:

Copyright 2007-2021-forever Inc. all Rights Reserved.

联系方式:

Email:dzwebs@126.com QQ:83539231 访问统计