private void button2_Click(object sender, EventArgs e) { TelaPrincipal telaPrincipal = new TelaPrincipal(); // estanciado tela principal telaPrincipal.Visible = true; // chamando tela principal novamente Close(); // fechando antigo formulario }
private void button1_Click(object sender, EventArgs e) { TelaPrincipal telaPrincipal = new TelaPrincipal(); telaPrincipal.Show(); Close(); }
private void button1_Click(object sender, EventArgs e) { if ((textUsuario.Text == "CAIQUE") && (textSenha.Text == "123")) // atribuindo valor aos text { TelaPrincipal telaPrincipal = new TelaPrincipal(); MessageBox.Show("Seja bem vindo! "); telaPrincipal.Show(); this.Visible = false; } else { MessageBox.Show("Usuário ou Senha inválido !", "Ocorreu um erro de validação", MessageBoxButtons.OK, MessageBoxIcon.Error); } }