Beispiel #1
0
 public IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
 {
     //窗口消息处理函数
     _hotKeys.ProcessHotKey(msg, wParam);
     return(hwnd);
 }
Beispiel #2
0
 protected override void WndProc(ref Message m)
 {
     //窗口消息处理函数
     h.ProcessHotKey(m);
     base.WndProc(ref m);
 }