private void lblCadastrarCli_Click(object sender, EventArgs e)
        {
            CadastrarCliente cad = new CadastrarCliente();

            cad.MdiParent = this;

            cad.Show();
        }
        private void btnCadClie_Click(object sender, EventArgs e)
        {
            CadastrarCliente telaCadastroCli = new CadastrarCliente();

            telaCadastroCli.Show();
        }