資源簡(jiǎn)介
定時(shí)自動(dòng)按鍵
代碼片段和文件信息
using?System.Collections.Generic;
using?System.Linq;
using?System.Web;
using?System.Runtime.InteropServices;
using?System.Diagnostics;
using?System.Collections;
using?System.Windows.Forms;
using?System.IO;
using?System;
using?System.Threading;
public?class?HotKeys
{
????//引入系統(tǒng)API
????[DllImport(“user32.dll“)]
????static?extern?bool?RegisterHotKey(IntPtr?hWnd?int?id?int?modifiers?Keys?vk);
????[DllImport(“user32.dll“)]
????static?extern?bool?UnregisterHotKey(IntPtr?hWnd?int?id);
????int?keyid?=?10;?????//區(qū)分不同的快捷鍵
????Dictionary?keymap?=?new?Dictionary();???//每一個(gè)key對(duì)于一個(gè)處理函數(shù)
????public?delegate?void?HotKeyCallBackHanlder();
????//組合控制鍵
????public?enum?HotkeyModifiers
????{
????????Alt?=?1
????????Cont
評(píng)論
共有 條評(píng)論