private void pagamentoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (Application.OpenForms.OfType <FrmCadPagamento>().Count() == 0)
     {
         FrmCadPagamento tela = new FrmCadPagamento();
         tela.Show();
     }
 }
        //Ações para abrir as telas do sistema
        private void toolStripMenuItem3_Click(object sender, EventArgs e)
        {
            FrmCadPagamento tela = new FrmCadPagamento();

            tela.Show();
        }