private void btnSelecionarInserir_Click(object sender, EventArgs e) { FrmObjetivoCadastrar frmObjetivoCadastrar = new FrmObjetivoCadastrar(AcaoNaTela.Inserir, null); DialogResult dialogResult = frmObjetivoCadastrar.ShowDialog(); if (dialogResult == DialogResult.Yes) { AtualizarGridObjetivo(DialogResult.Yes); } }
private void btnSelecionarAlterar_Click(object sender, EventArgs e) { if (this.dgwSelecionarObjetivo.SelectedRows.Count == 0) { MessageBox.Show("Nenhum objetivo está selecionado", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); txtSelecionarCodNome.Focus(); return; } Objetivo objetivoSelecionado = (this.dgwSelecionarObjetivo.SelectedRows[0].DataBoundItem) as Objetivo; FrmObjetivoCadastrar frmObjetivoCadastrar = new FrmObjetivoCadastrar(AcaoNaTela.Alterar, objetivoSelecionado); DialogResult dialogResult = frmObjetivoCadastrar.ShowDialog(); if (dialogResult == DialogResult.Yes) { AtualizarGridObjetivo(DialogResult.Yes); } }