private void BtnAlterar_Click(object sender, EventArgs e) { try { if (gvCidade.CurrentRow != null) { frmCadastroCidade frmCadCidade = new frmCadastroCidade(); var cidRow = gvCidade.CurrentRow.DataBoundItem as DataRowView; var id = cidRow["codigo"]; frmCadCidade.Carregar(id); if (frmCadCidade.ShowDialog() == DialogResult.OK) { gvCidade.DataSource = CtrlCidade.ListarTodos(); } } else { MessageBox.Show("Nenhuma cidade foi selecionada"); } } catch (Exception ex) { MessageBox.Show("Não foi possivel alterar a cidade"); } }
private void BtnNovo_Click(object sender, EventArgs e) { frmCadastroCidade frmCadCidade = new frmCadastroCidade(); if (frmCadCidade.ShowDialog() == DialogResult.OK) { gvCidade.DataSource = CtrlCidade.ListarTodos(); } }