public void GravarTemanoArquivo() { XMLSerializar serializar = new XMLSerializar(); Tema tema = new Tema(); if (CorTexto == null) { tema.CorTexto = Application.Current.Resources["PadraoTexto"].ToString(); } else { tema.CorTexto = this.CorTexto; } if (CorTema == null) { tema.CorTema = Application.Current.Resources["PadraoBackGround"].ToString(); } else { tema.CorTema = this.CorTema; } if (TextoFonte == null) { tema.TextoFonte = Application.Current.Resources["fonteFamilia"].ToString(); } else { tema.TextoFonte = this.TextoFonte; } if (TextoTamanho == 0) { tema.TextoTamanho = (Double)Application.Current.Resources["FonteTamanho"]; } else { tema.TextoTamanho = this.TextoTamanho; } XMLSerializar ser = new XMLSerializar(); ser.Serializar(tema, Pub.ArquivoTema); }
private void btnConfirmar_Click(object sender, EventArgs e) { if (!VerificaD()) { return; } Criptografia crip = new Criptografia(); XMLSerializar serializar = new XMLSerializar(); DadosBase bas = new DadosBase(); bas.Servidor = txtServidor.Text.Trim(); bas.Usuario = txtUsuario.Text.Trim(); bas.Senha = crip.Encrypt(txtSenha.Text.Trim()); bas.Banco = cmbBancoDados.Text.Trim(); XMLSerializar ser = new XMLSerializar(); ser.Serializar(bas, Pub.ArquivoBase); string sDados; sDados = txtServidor.Text.Trim(); sDados += "|"; sDados += txtUsuario.Text.Trim(); sDados += "|"; sDados += txtSenha.Text.Trim(); sDados += "|"; sDados += cmbBancoDados.Text.Trim(); //StreamWriter sw = new StreamWriter(VariaveisPublicas.pDadosSistema.ArquivoBase); //sDados = Criptografia.Encryptar(sDados); //sw.Write(sDados); //sw.Close(); this.Close(); }