//Evento duplo click no item da grid view, para escolha do item a ser movimentado.

        #region Evento Duplo Click Item Grid View
        private void dtgConsultaEstoque_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            frmMovimentoEstoque movimento = new frmMovimentoEstoque();

            movimento.txtCodigo.Text      = this.dtgConsultaEstoque.CurrentRow.Cells[0].Value.ToString();
            movimento.txtNome.Text        = this.dtgConsultaEstoque.CurrentRow.Cells[1].Value.ToString();
            movimento.txtDescricao.Text   = this.dtgConsultaEstoque.CurrentRow.Cells[2].Value.ToString();
            movimento.txtQtdeEstoque.Text = this.dtgConsultaEstoque.CurrentRow.Cells[3].Value.ToString();
            movimento.txtPreco.Text       = this.dtgConsultaEstoque.CurrentRow.Cells[4].Value.ToString();
            Close();
            movimento.Show();
        }
        private void btnMovimentoEstoque_Click(object sender, EventArgs e)
        {
            frmMovimentoEstoque movimento = new frmMovimentoEstoque();

            movimento.Show();
        }