我正在编写一个小型托盘应用程序,它需要检测用户最后一次与他们的机器交互以确定他们是否处于空闲状态。
有什么方法可以检索用户最后一次移动鼠标、敲击键或以任何方式与机器交互的时间?
我认为 Windows 显然会跟踪这个以确定何时显示屏幕保护程序或关闭电源等,所以我假设有一个 Windows API 可以自己检索这个?
我正在编写一个小型托盘应用程序,它需要检测用户最后一次与他们的机器交互以确定他们是否处于空闲状态。
有什么方法可以检索用户最后一次移动鼠标、敲击键或以任何方式与机器交互的时间?
我认为 Windows 显然会跟踪这个以确定何时显示屏幕保护程序或关闭电源等,所以我假设有一个 Windows API 可以自己检索这个?
包括以下命名空间
using System;
using System.Runtime.InteropServices;
然后包括以下
internal struct LASTINPUTINFO
{
public uint cbSize;
public uint dwTime;
}
/// <summary>
/// Helps to find the idle time, (in milliseconds) spent since the last user input
/// </summary>
public class IdleTimeFinder
{
[DllImport("User32.dll")]
private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
[DllImport("Kernel32.dll")]
private static extern uint GetLastError();
public static uint GetIdleTime()
{
LASTINPUTINFO lastInPut = new LASTINPUTINFO();
lastInPut.cbSize = (uint)System.Runtime.InteropServices.Marshal.SizeOf(lastInPut);
GetLastInputInfo(ref lastInPut);
return ((uint)Environment.TickCount - lastInPut.dwTime);
}
/// <summary>
/// Get the Last input time in milliseconds
/// </summary>
/// <returns></returns>
public static long GetLastInputTime()
{
LASTINPUTINFO lastInPut = new LASTINPUTINFO();
lastInPut.cbSize = (uint)System.Runtime.InteropServices.Marshal.SizeOf(lastInPut);
if (!GetLastInputInfo(ref lastInPut))
{
throw new Exception(GetLastError().ToString());
}
return lastInPut.dwTime;
}
}
要将滴答计数转换为时间,您可以使用
TimeSpan timespent = TimeSpan.FromMilliseconds(ticks);
笔记。此例程使用术语 TickCount,但值以毫秒为单位,因此与 Ticks 不同。
来自MSDN 关于 Environment.TickCount 的文章
获取自系统启动以来经过的毫秒数。
代码:
using System;
using System.Runtime.InteropServices;
public static int IdleTime() //In seconds
{
LASTINPUTINFO lastinputinfo = new LASTINPUTINFO();
lastinputinfo.cbSize = Marshal.SizeOf(lastinputinfo);
GetLastInputInfo(ref lastinputinfo);
return (((Environment.TickCount & int.MaxValue) - (lastinputinfo.dwTime & int.MaxValue)) & int.MaxValue) / 1000;
}