Esempio n. 1
0
 public virtual void onKeyPress(object sender, KeyPressEventArgs e)
 {
     KeyPress.Raise (sender, e);
 }
Esempio n. 2
0
        public override void onKeyPress(object sender, KeyPressEventArgs e)
        {
            base.onKeyPress (sender, e);

            this.Insert (e.KeyChar.ToString());

            SelRelease = -1;
            SelBegin = new Point(CurrentColumn, SelBegin.Y);

            RegisterForGraphicUpdate();
        }