[C#] KMClear – 鍵鼠清潔輔助器
首先,這不是能自動幫你清潔鍵鼠的工具 XD 它只是鎖定鍵盤滑鼠讓你在開機的時候可以清潔而已 支援平台:Windows 7, 2008, XP, 2003 環境需求:.Net FrameWork 3.5 檔案下載:KMClear.exe(11KB) 源碼下載:KMClear.zip(112KB – Visual C# 2008 Express) 這類程式有兩個重點要處理,一個是全螢幕執行,另一個就是鍵盤攔截。 全螢幕執行比較簡單,完全不需要 API: private void Form1_Load(object sender, EventArgs e) { this.SetVisibleCore(false); this.FormBorderStyle = FormBorderStyle.None; this.Left = (Screen.PrimaryScreen.Bounds.Width / 2 - this.Width / 2); this.Top = (Screen.PrimaryScreen.Bounds.Height / 2 - this.Height / 2); this.SetVisibleCore(true); } 另一個則是需要借助 Low-level API […]