protected override bool ProcessDialogKey(Keys key)
 {
     if (_connector != null && key == (Keys.Control | Keys.C))
     {
         _connector.Interrupt();
         ClearConnectingState();
         return(true);
     }
     else
     {
         return(base.ProcessDialogKey(key));
     }
 }