大家好,我需要在程序中判断用户是否有操作,如果持续指定时间内无操作,就退程序。请教大家有什么思路?

解决方案 »

  1.   

    设置一个全局变量,用来判断用户多久没有操作该程序了,每当用户切换到该程序界面的时候,即actived状态的时候把这个全局变量清零,当这个全局变量达到阀值的时候退出程序。
      

  2.   

    http://www.idcrx.com/zhishiku/_netjishu/2012/0531/17704.html
      

  3.   

    namespace ActivityMonitor{ using System; using System.Runtime.InteropServices; class ActivityMonitor : System.ComponentModel.Component { public void Start()  { this.isIdle = false; timer.Elapsed -= Timer_Elapsed; timer.Elapsed += Timer_Elapsed; timer.Interval = this.resolution; timer.Start(); } public void Stop()  { timer.Stop(); } public bool IsIdle  { get { return this.isIdle; } private set { if (this.isIdle != value) { this.isIdle = value; if (isIdle && OnIdle != null) { OnIdle(this, EventArgs.Empty); } if (!isIdle && OnActive != null) { OnActive(this, EventArgs.Empty); } } } } public int IdleTimeOut  {  get { return idleTimeOut; } set { idleTimeOut = Math.Max(50, value); } } public int Resolution  {  get { return resolution; }  set { resolution = Math.Max(50, value); }  } public event EventHandler OnIdle; public event EventHandler OnActive; private void Timer_Elapsed(object sender, EventArgs e) { LASTINPUTINFO lastInputInfo = new LASTINPUTINFO(); lastInputInfo.size = 8; if (GetLastInputInfo(ref lastInputInfo)) { lastActivity = Math.Max(lastActivity, lastInputInfo.lastTick); int diff = Environment.TickCount - lastActivity; this.IsIdle = diff > this.IdleTimeOut; } } private bool isIdle = false; private int idleTimeOut = 5000; private int resolution = 100; private int lastActivity = Environment.TickCount; private System.Timers.Timer timer = new System.Timers.Timer(); [StructLayout(LayoutKind.Sequential)] private struct LASTINPUTINFO { public int size; public int lastTick; } [DllImport("User32")] private static extern bool GetLastInputInfo(ref LASTINPUTINFO lii); } class UnitTest { static void Main() { ActivityMonitor monitor = new ActivityMonitor(); monitor.IdleTimeOut = 2000; // 2 seconds monitor.OnIdle += delegate { Console.WriteLine("On idle"); }; monitor.OnActive += delegate { Console.WriteLine("On active"); }; monitor.Start(); Console.ReadLine(); } }}
      

  4.   

    [DllImport("User32.dll")]
    private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);private struct LASTINPUTINFO
    {
    public uint cbSize; public uint dwTime;
    }
    LASTINPUTINFO lastInPut = new LASTINPUTINFO();
    private void timer_Tick(object sender, EventArgs e)
    {
    //配置时间内无操作锁定
    lastInPut.cbSize = (uint)System.Runtime.InteropServices.Marshal.SizeOf(lastInPut);
    GetLastInputInfo(ref lastInPut); long noOperationTime = System.Environment.TickCount - lastInPut.dwTime; if (noOperationTime > 毫秒时间)
    {
    //退出程序
    }}