private void bt_login_Click(object sender, EventArgs e) { App app = new App(); app.Show(); PSN psn = new PSN(); psn.Hide(); }
private void bt_crearcuenta_Click(object sender, EventArgs e) { if (tb_inLastName.Text == " " || tb_inName.Text == " " || tb_inUsername.Text == " " || tb_inContraseña.Text == " " || tb_inName.Text == "Nombre" || tb_inLastName.Text == "Apellido" || tb_inContraseña.Text == "Contraseña" || tb_inUsername.Text == "Nombre de Usuario") { lb_rellenecampos.Visible = true; } else { lb_exito.Visible = true; lb_rellenecampos.Visible = false; App app = new App(); app.Show(); PSN psn = new PSN(); psn.Hide(); } }