private void buttonInserir_Click(object sender, EventArgs e) { { //Instanciar o formulário de cadastro FrmCombustivelCadastrar frmCombustivelCadastrar = new FrmCombustivelCadastrar(AcaoNaTela.Inserir, null); DialogResult dialogResult = frmCombustivelCadastrar.ShowDialog(); if (dialogResult == DialogResult.Yes) { AtualizarGrid(); } } }
private void buttonConsultar_Click(object sender, EventArgs e) { //Verificar se tem algum registro selecionado if (dataGridViewPrincipal.SelectedRows.Count == 0) { MessageBox.Show("Nenhuma opção selecionada."); return; } //Pegar o cliente selecionado no grid Combustivel combustivelSelecionado = (dataGridViewPrincipal.SelectedRows[0].DataBoundItem as Combustivel); //Instanciar o formulário de cadastro FrmCombustivelCadastrar frmCombustivelCadastrar = new FrmCombustivelCadastrar(AcaoNaTela.Consultar, combustivelSelecionado); frmCombustivelCadastrar.ShowDialog(); }