Ejemplo n.º 1
0
 protected virtual void OnKeyPress(Alt.GUI.KeyPressEventArgs e)
 {
     if (Child != null)
     {
         Child.InjectKeyPress(e);
     }
 }
Ejemplo n.º 2
0
        protected void RaiseKeyPress(Alt.GUI.KeyPressEventArgs e)
        {
            OnKeyPress(e);

            if (KeyPress != null)
            {
                KeyPress(this, e);
            }
        }