Exemplo n.º 1
0
        private void BtnVolver_Click(object sender, EventArgs e)
        {
            this.Hide();
            VentanaClientes v = new VentanaClientes();

            v.ShowDialog();
        }
Exemplo n.º 2
0
 private void btnClientesMain_Click(object sender, EventArgs e)
 {
     VentanaClientes Ventana1 = new VentanaClientes();
     this.Hide();
     Ventana1.ShowDialog();
     this.Show();
     
 }