void addressEditBox_PreKeyDown(KeyEvent e, ref bool handled)
 {
     if (e.Key == EKeys.Return)
     {
         webBrowserControl.LoadURL(addressEditBox.Text);
         webBrowserControl.Focus();
         handled = true;
     }
 }