private void btnInserir_Click(object sender, EventArgs e) { Form form = new VCadastroTipoDado(null); form.ShowDialog(); btnPesquisar_Click(null, null); }
private void btnEditar_Click(object sender, EventArgs e) { if (dgvResultado.SelectedRows != null && dgvResultado.SelectedRows.Count > 0) { MTipoDado item = new MTipoDado(); item.ID = int.Parse(dgvResultado.SelectedRows[0].Cells["iDDataGridViewTextBoxColumn"].Value.ToString()); Form form = new VCadastroTipoDado(item); form.ShowDialog(); btnPesquisar_Click(null, null); } }
private void btnVCadastroTipoDados_Click(object sender, EventArgs e) { VCadastroTipoDado form = new VCadastroTipoDado(null); form.ShowDialog(); }