c# 如何获取键盘和鼠标处于空闲状态的时间

可以通过windows  api 函数GetLastInputInfo 或者 全局钩子HOOK来实现。
下面就针对GetLastInputInfo 写了个DEMO,判断鼠标键盘空闲时间超过15分站则自动弹出视频播放窗口播放视频。


新建windows 应用程序项目,代码如下: 
 
 
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace APPDEMO
{
    static class Program
    {
       private static VedioForm vf = null;
       private static System.Windows.Forms.Timer timer1 = null;
       /// <summary>
       /// 应用程序的主入口点。
       /// </summary>
       [STAThread]
       static void Main()
       {
           Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            //启用定时器
            if (timer1 == null)
            {
                timer1 = new Timer();
            }
            timer1.Interval = 60*1000;
            timer1.Tick += new EventHandler(timer1_Tick);
            timer1.Start();
            Application.Run(new MainForm());
       }
private static void timer1_Tick(object sender, EventArgs e)
        {
            //判断空闲时间是否超过15分钟,超过则自动弹出视频播放窗口
            if (GetIdleTick() / 1000 >= 15*60)
                {
                    ShowVidioForm();
                }
        }
        /// <summary>
        /// 打开视频播放窗口
        /// </summary>
        private static void ShowVidioForm()
        {
            try
            {
                if (vf == null)
                {
                    vf = new VedioForm();
                }
                vf.ShowDialog();
            }
            catch
            { 
            }
        }
/// <summary>
        /// 获取鼠标键盘空闲时间
        /// </summary>
        /// <returns></returns>
        public static long GetIdleTick()
        {
            LASTINPUTINFO lastInputInfo = new LASTINPUTINFO();
            lastInputInfo.cbSize = Marshal.SizeOf(lastInputInfo);
            if (!GetLastInputInfo(ref lastInputInfo)) return 0;
            return Environment.TickCount - (long)lastInputInfo.dwTime;
        }
        [StructLayout(LayoutKind.Sequential)]
        private struct LASTINPUTINFO
        {
            [MarshalAs(UnmanagedType.U4)]
            public int cbSize;
            [MarshalAs(UnmanagedType.U4)]
            public uint dwTime;
        }
        /// <summary>
        /// 调用windows API获取鼠标键盘空闲时间
        /// </summary>
        /// <param name="plii"></param>
        /// <returns></returns>
        [DllImport("user32.dll")]
        private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
 }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值