1. 程式人生 > 實用技巧 >Winform 空閒時間(滑鼠鍵盤無操作)

Winform 空閒時間(滑鼠鍵盤無操作)

前言

Winform 在特定情況下,需要判斷軟體空閒時間(滑鼠鍵盤無操作),然後在做一下一些操作。

實現

做了一個簡單的例子,新建一個窗體,然後拖兩個控制元件(Timer控制元件和label控制元件)

using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace LastInPut
{
    public partial class FrmLastInfo : Form
    {
        [StructLayout(LayoutKind.Sequential)]
        struct LASTINPUTINFO
        {
            [MarshalAs(UnmanagedType.U4)]
            public int Size;
            [MarshalAs(UnmanagedType.U4)]
            public uint Time;
        }
        [DllImport("user32.dll")]
        static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
        static long GetLastInputTime()
        {
            LASTINPUTINFO vLastInputInfo = new LASTINPUTINFO();
            vLastInputInfo.Size = Marshal.SizeOf(vLastInputInfo);
            if (!GetLastInputInfo(ref vLastInputInfo)) return 0;
            return Environment.TickCount - (long)vLastInputInfo.Time;
        }

        public FrmLastInfo()
        {
            InitializeComponent();
        }
        //{GetLastInputTime()/1000}為系統空閒時間,
        private void tmrLastInfo_Tick(object sender, EventArgs e)
        {
            label1.Text = $"空閒時間{GetLastInputTime()/1000}秒";
        }
    }
}

效果圖