注册系统热键 系统热键用在像弹出窗口杀手这种应用程序非常有用,Ctrl+Shift+J是缺省热键。 说道实现,我们继续用RegisterHotkey(HWND hWnd, int id, UINT fsModifiers, UINT vkey)完成,代码如下: 一般的,注册热键要以下几步: /* ------- using HOTKEYs in a C# application ------- -- code snippet by James J Thompson -- 在Form的load 中 : Ctrl+Shift+J bool success = RegisterHotKey(Handle, 100, KeyModifiers.Control | KeyModifiers.Shift, Keys.J); |
正在阅读:弹出窗口杀手(下)弹出窗口杀手(下)
2004-02-14 09:34
出处:PConline
责任编辑:huangpeidan
键盘也能翻页,试试“← →”键