private void BtnPecas_Click(object sender, EventArgs e)
        {
            Pecas pecas = new Pecas();

            pecas.Show();
            this.Hide();
        }
        private void BtnAlterar_Click(object sender, EventArgs e)
        {
            ModeloPeca novaPeca = new ModeloPeca();

            novaPeca._nomePeca       = txtNomeDaPeca.Text;
            novaPeca._quantidadePeca = Convert.ToInt32(txtQuantidade.Text);
            novaPeca._valorPeca      = Convert.ToDouble(txtValor.Text);
            novaPeca._idPeca         = this.idPeca;

            PecaDAO.alterarPeca(novaPeca);

            Pecas pecas = new Pecas();

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