摘要:1 public partial class Form2 : Form 2 { 3 [DllImport("user32")] 4 public static extern bool RegisterHotKey(IntPtr hWnd, int id, uint control, Keys vk); 5 //解除注册热键的api 6 [DllImport("user32")] 7 public static extern bool UnregisterHotKey(IntPtr hWnd, int id...
阅读全文