私はユーザーがアイドル状態かどうかを判断するためにユーザーが最後にマシンと対話した時間を検出する必要がある小さなトレイアプリケーションを作成しています。
ユーザーがマウスを最後に動かした時間、キーを押す時間、または何らかの方法でマシンと対話した時間を取得する方法はありますか?
私は明らかに、Windowsがこれを追跡してスクリーンセーバーを表示するか電源を切るかなどを決定すると考えているので、これを自分で取得するためのWindows APIがあると仮定していますか?
GetLastInputInfo 。 PInvoke.net で文書化されています。
次の名前空間を含める
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とは異なります。
Environment.TickCountに関するMSDN記事
システムが起動してから経過したミリ秒数を取得します。
コード:
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;
}