private void textBox1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) this.textBox2.Focus(); }
this.textBox1.KeyDown += this.textBox1_KeyDown;