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

            cadastroProduto.Show();
        }
Beispiel #2
0
        private void btCadastrar_Click(object sender, EventArgs e)
        {
            CadastroProduto cadastroProduto = new CadastroProduto(this);

            cadastroProduto.Show();
        }