private void CadastrarAluno_Click(object sender, EventArgs e) { CadastroAluno cadastroAluno = new CadastroAluno(0); Hide(); cadastroAluno.Show(); }
private void tabela_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.ColumnIndex == tabela.Columns["Excluir"].Index) { controle.excluirAluno(Convert.ToInt32(tabela.CurrentRow.Cells[2].Value.ToString())); MessageBox.Show("Usuário Excluído com sucesso!", "Usuário Excluído", MessageBoxButtons.OK, MessageBoxIcon.Information); Preencher(); } else if (e.ColumnIndex == tabela.Columns["Editar"].Index) { CadastroAluno cadastroUsuario = new CadastroAluno(Convert.ToInt32(tabela.CurrentRow.Cells[2].Value.ToString())); Hide(); cadastroUsuario.Show(); } }