private void button5_MouseHover(object sender, EventArgs e)
 {
     if (button5.Visible)
     {
         A_Financiamento.BringToFront();
     }
 }
        private void pn_financiamentoS_Click(object sender, EventArgs e)
        {
            A_Financiamento financiamento = new A_Financiamento();

            financiamento.MdiParent = this;
            financiamento.Show();
            pn_financiamento.Hide();
        }
        private void A_Financiamento_Click(object sender, EventArgs e)
        {
            A_Financiamento financiamento = new A_Financiamento();

            financiamento.MdiParent = this;
            financiamento.Show();

            A_Financiamento.Enabled = false;
        }