如果没有移动,5秒后(空闲)在winform app中关闭会话

时间:2015-03-04 10:59:14

标签: c# winforms session

我正在编写一个c#Winform应用程序,如果计算机空闲5秒钟,我需要关闭会话。该应用程序就像一个餐馆应用程序,当服务员离开他的会话时,我将在5秒后关闭它。

我找到了一些代码,但我不知道如何使用它以及如何触发它

using System.Runtime.InteropServices;

[DllImport("User32.dll")]
private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);   

internal struct LASTINPUTINFO
{
    public uint cbSize;

    public uint dwTime;
}

有人可以帮我吗?

1 个答案:

答案 0 :(得分:6)

请按照以下步骤操作:

1-向Timer添加Form

2-将其interval属性设置为1000(在form_load中设置,或在设置模式中从Properties窗口设置)。

3 - 将此方法添加到Form班级。

public static uint GetIdleTime()
{
     LASTINPUTINFO LastUserAction = new LASTINPUTINFO();
     LastUserAction.cbSize = (uint)System.Runtime.InteropServices.Marshal.SizeOf(LastUserAction);
     GetLastInputInfo(ref LastUserAction);
     return ((uint)Environment.TickCount - LastUserAction.dwTime);
}

4- in Form_Load启动计时器:

timer1.Start();

5- in timer tick事件检查GetIdleTime(),例如,如果它大于5000则意味着应用程序自5秒前被闲置。

private void timer1_Tick(object sender, EventArgs e)
{
    if (GetIdleTime() > 5000)  
       Application.Exit();//For Example
}