人人范文网 范文大全

键盘鼠标空闲

发布时间:2020-03-02 22:09:50 来源:范文大全 收藏本文 下载本文 手机版

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

using System.Runtime.InteropServices;

namespace WindowsApplication2

{

public partial cla Form1 : Form

{

public Form1()

{

InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)

{

timer1.Enabled = true;

timer2.Enabled = true;

}

[StructLayout(LayoutKind.Sequential)]

struct LASTINPUTINFO

{

[MarshalAs(UnmanagedType.U4)]

public int cbSize;

[MarshalAs(UnmanagedType.U4)]

public uint dwTime;

}

[DllImport(\"user32.dll\")]

static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);

static long GetLastInputTime()

{

LASTINPUTINFO vLastInputInfo = new LASTINPUTINFO();

vLastInputInfo.cbSize = Marshal.SizeOf(vLastInputInfo);if (!GetLastInputInfo(ref vLastInputInfo)) return 0;

return Environment.TickCount - (long)vLastInputInfo.dwTime;

}

private void timer1_Tick(object sender, EventArgs e){

if(GetLastInputTime()/1000+\"\"==\"5\"){

//此处可填写你需要的功能

MeageBox.Show(\"任务执行\");

}

}

private void timer2_Tick(object sender, EventArgs e){

this.label1.Text =string.Format(\"用户已经{0}秒没有路过了\", GetLastInputTime() / 1000);

}

}

}

鼠标控制键盘

键盘鼠标维修总结

机箱电源键盘鼠标

无线键盘鼠标干扰上网

键盘鼠标故障检测点

xp鼠标、键盘同时没反应

键盘鼠标没反应检查方法

键盘与鼠标常见故障教案

键盘鼠标失灵 鼠标键盘没反应怎么办

竹制键盘鼠标调查问卷

键盘鼠标空闲
《键盘鼠标空闲.doc》
将本文的Word文档下载到电脑,方便编辑。
推荐度:
点击下载文档
点击下载本文文档