private void btn_guardar_Click(object sender, EventArgs e) { Apariencia.setearValor("menuPrincipal", this.btn_menuPrincipal.BackColor.ToArgb()); Apariencia.setearValor("textoMenu", this.btn_textoMenu.BackColor.ToArgb()); Apariencia.setearValor("submenu", this.btn_submenu.BackColor.ToArgb()); Apariencia.setearValor("textoSub", this.btn_textoSub.BackColor.ToArgb()); Apariencia.setearValor("submenu1", this.btn_submenu1.BackColor.ToArgb()); Apariencia.setearValor("textoSub1", this.btn_textoSub1.BackColor.ToArgb()); Apariencia.setearValor("textoLeyenda", this.btn_textoLeyendas.BackColor.ToArgb()); Apariencia.setearValor("textoBoton", this.btn_textoBoton.BackColor.ToArgb()); Apariencia.setearValor("estiloFondo", this.cmb_posicionFondo.SelectedIndex); if (this.usarDefecto) { Apariencia.setearValorBool("usarFondo", false); } else if (this.cambioImagen) { this.guardarImagen(); } frm_menu menu = (frm_menu)this.Owner; menu.actualizarColor(); }
private void enviarMailApertura(int idCaja) { frm_menu menu = (frm_menu)this.Owner; Thread hiloApertura = new Thread( new ThreadStart(() => { List <object> datosMail = ParametroTR.ConsultarInt("19,47,48"); if (datosMail[1].Equals("1")) { Mail correo = new Mail(); correo.enviarCorreo(datosMail[0].ToString(), datosMail[2].ToString(), correo.contenidoAperturaCaja(idCaja)); } })); menu.setThread(hiloApertura); }
protected void guardarImagen() { frm_menu menu = (frm_menu)this.Owner; menu.BackgroundImage.Dispose(); //menu.BackgroundImage = Resources.logo; menu.BackgroundImage = null; string fileName = "custom_background.jpg"; string targetPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + @"\Contifico"; if (!System.IO.Directory.Exists(targetPath)) { System.IO.Directory.CreateDirectory(targetPath); } string destFile = System.IO.Path.Combine(targetPath, fileName); System.IO.File.Copy(this.rutaImagen, destFile, true); Apariencia.setearValorBool("usarFondo", true); }
protected void entrar() { if (validarIngreso()) { string msn = ""; UsuarioTR tran = new UsuarioTR(); if (tran.esUsuarioValido(ref msn, this.txt_usuario.Text.Trim(), General.encriptar(this.txt_password.Text))) { frm_menu menu = new frm_menu(); menu.Show(); this.Hide(); } else if (String.IsNullOrEmpty(msn)) { Mensaje.error("No se encontro el usuario."); } else { Mensaje.error(msn); } } }