Exemplo n.º 1
0
        protected override void OnKeyPress(KeyPressEventArgs e)
        {
            base.OnKeyPress(e);

            if ((webView == null) || !webView.IsLive)
            {
                return;
            }

            webView.InjectKeyboardEvent(e.GetKeyboardEvent());
        }
Exemplo n.º 2
0
 private void frmMain_KeyPress(object sender, KeyPressEventArgs e)
 {
     Core.BrowserManager[id].KeyPress(e.GetKeyboardEvent());
 }
Exemplo n.º 3
0
 protected override void OnKeyPress(KeyPressEventArgs e)
 {
     Core.BrowserManager[id].KeyPress(e.GetKeyboardEvent());
     base.OnKeyPress(e);
 }