Inheritance: System.EventArgs
Exemplo n.º 1
0
 private static void OnHotKeyPressed(HotKeyEventArgs e)
 {
     if (HotKeyManager.HotKeyPressed != null)
     {
         HotKeyManager.HotKeyPressed(null, e);
     }
 }
Exemplo n.º 2
0
            protected override void WndProc(ref Message m)
            {
                if (m.Msg == WM_HOTKEY)
                {
                    HotKeyEventArgs e = new HotKeyEventArgs(m.LParam);
                    HotKeyManager.OnHotKeyPressed(e);
                }

                base.WndProc(ref m);
            }