Esempio n. 1
0
 protected override void WndProc(ref Message m)
 {
     if (_hotKey != null)
     {
         _hotKey.DoWndProc(m);
     }
     if (_listener != null)
     {
         _listener.DoWndProc(m);
     }
     base.WndProc(ref m);
 }
Esempio n. 2
0
 protected override void WndProc(ref Message m)
 {
     if (_hotKey != null)
     {
         _hotKey.DoWndProc(m);
     }
     if (_readHotKey != null)
     {
         _readHotKey.DoWndProc(m);
     }
     if (_formHotKey != null)
     {
         _formHotKey.DoWndProc(m);
     }
     //if (_listener != null)
     //{
     //    _listener.DoWndProc(m);
     //}
     base.WndProc(ref m);
 }