可以用windowapi
[DllImport("User32")]
public static extern bool RegisterHotKey(
IntPtr hWnd, //要定义热键的窗口的句柄
int id, //定义热键ID(不能与其它ID重复)
KeyModifiers fsModifiers, //标识热键是否在按Alt、Ctrl、Shift、Windows等键时才会生效
Keys vk //定义热键的内容
);
当然也有别的方法.具体可参考:http://www.cnblogs.com/wifi/articles/1964912.html