private void tsbInicio_Click(object sender, EventArgs e) { frmPrincipal principal = new frmPrincipal(); this.Hide(); principal.Show(); }
private void button1_Click(object sender, EventArgs e) { if (txtUsuario.Text.Trim() == string.Empty && string.IsNullOrEmpty(txtSenha.Text)) { AlertaUsuario(); } else { if (txtUsuario.Text.Trim() == "rapha" && txtSenha.Text == "123") { //Instanciar para abertura do próximo formulário frmPrincipal principal = new frmPrincipal(); this.Hide(); principal.Show(); } else { AlertaUsuario(); } } }