private void btEditar_Click(object sender, EventArgs e) { CadastroProduto cadastroProduto = new CadastroProduto(Convert.ToInt32(grvListaProdutos.CurrentRow.Cells[1].Value), this); cadastroProduto.Show(); }
private void btCadastrar_Click(object sender, EventArgs e) { CadastroProduto cadastroProduto = new CadastroProduto(this); cadastroProduto.Show(); }