你这应该是窗体热键吧。这是注册系统热键的一段代码:/* ------- using HOTKEYs in a C# application -------
 * 在 C# 应用程序里使用热键。 in form load :
bool success = RegisterHotKey(Handle, 100,     KeyModifiers.Control | KeyModifiers.Shift, Keys.J); in form closing :
UnregisterHotKey(Handle, 100);
  protected override void WndProc( ref Message m )
 {
const int WM_HOTKEY = 0x0312; 

switch(m.Msg)
{
case WM_HOTKEY:
MessageBox.Show("Hotkey pressed");
break;

base.WndProc(ref m );
}------- using HOTKEYs in a C# application ------- */ [DllImport("user32.dll", SetLastError=true)]
public static extern bool RegisterHotKey( IntPtr hWnd, // handle to window    
int id,            // hot key identifier    
KeyModifiers fsModifiers,  // key-modifier options    
Keys vk            // virtual-key code    
); 

[DllImport("user32.dll", SetLastError=true)]
public static extern bool UnregisterHotKey( IntPtr hWnd,  // handle to window    
int id      // hot key identifier    
); [Flags()]
public enum KeyModifiers
{  
None = 0,
Alt = 1,    
Control = 2,    
Shift = 4,    
Windows = 8
}