Ejemplo n.º 1
0
 private void IP1_KeyDown_1(object sender, KeyEventArgs e)
 {
     if (e.Key == Key.Enter)
     {
         IP2.Focus();
     }
 }
Ejemplo n.º 2
0
Archivo: IpSetUp.cs Proyecto: ROCS95/x2
        private void IP1_TextChanged(object sender, EventArgs e)
        {
            //Get text from textbox
            string text = ((TextBox)sender).Text;


            //Do what ever it is you want to do to edit the text
            if (text.Length == 3)
            {
                IP2.Focus();
            }
        }