private void dgProduto_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {
            var senderGrid = (DataGridView)sender;

            if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn &&
                e.RowIndex >= 0)
            {
                if (Convert.ToBoolean(dgProduto[12, e.RowIndex].Value) == false)
                {
                    MessageBox.Show("Não é permitido realizar esta ação. Este item está inativo.", "Validação", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    return;
                }
                if (senderGrid.Columns[e.ColumnIndex].Name == "Editar")
                {
                    frmProduto frmProduto = new frmProduto((int)dgProduto[9, e.RowIndex].Value);
                    frmProduto.Show();
                    this.Hide();
                }
                if (senderGrid.Columns[e.ColumnIndex].Name == "Excluir")
                {
                    DialogResult dr = MessageBox.Show("Deseja realmente excluir?", "Excluir", MessageBoxButtons.YesNo, MessageBoxIcon.Information);

                    if (dr == DialogResult.Yes)
                    {
                        ProdutoBO produtoBO = new ProdutoBO();
                        produtoBO.Excluir((int)dgProduto[9, e.RowIndex].Value);

                        MessageBox.Show("Produto excluído com sucesso.", "Validação", MessageBoxButtons.OK, MessageBoxIcon.Information);

                        ProdutoBE produtoBE = PreencherDados();
                        Pesquisar(produtoBE);
                    }
                }
            }
        }
        private void btnNovo_Click(object sender, EventArgs e)
        {
            frmProduto frmProduto = new frmProduto(null);

            frmProduto.Show();
            this.Hide();
        }