public frmReportesTotal() { InitializeComponent(); Formateador f = new Formateador(); f.formReportes(this, "Reportes", pnlCtn); f.formatearBotonNaranja(btnAsistenciaCurso); f.formatearBotonNaranja(btnAsistenciaHorario); f.formatearBotonNaranja(btnMonto); f.formatearBotonListar(btnbuscarCurso); }
public frmBuscarClaseParticular() { InitializeComponent(); dgvClasesParticulares.AutoGenerateColumns = false; Formateador f = new Formateador(); Paleta p = new Paleta(); this.BackColor = p.Blanco; f.formatearBotonListar(btnBuscarCliente); f.formatearBotonNaranja(btnSeleccionar); f.formatearBotonNaranja(btnEliminar); }
public frmCuotas() { InitializeComponent(); Formateador f = new Formateador(); f.formatearBotonListar(btnBuscarCliente); f.formatearBotonListar(btnListarServicios); f.formatearBotonNaranja(btnAbonar); f.formatearBotonNaranja(btnCancelar); btnCancelar.Top = gbPago.Top + gbPago.Height + 10; btnCancelar.Left = gbPago.Left + gbPago.Width - btnCancelar.Width; btnAbonar.Top = btnCancelar.Top; btnAbonar.Left = btnCancelar.Left - btnCancelar.Width - 10; f.formRegistrarCuota(this, "Cuotas", pnlCtn, false); }
public frmBuscarServicioDeudaPorCliente(Service.cliente c) { InitializeComponent(); dgvMatriculas.AutoGenerateColumns = false; Formateador f = new Formateador(); Paleta p = new Paleta(); this.BackColor = p.Blanco; f.formatearBotonNaranja(btnSeleccionar); btnSeleccionar.Top = dgvMatriculas.Top + dgvMatriculas.Height + 10; btnSeleccionar.Left = dgvMatriculas.Left + dgvMatriculas.Width - 85; if (c is Service.apoderado) { matriculas = Program.dbController.listarMatriculaSaldoPorApoderado(c.idPersona).ToList <Service.matricula>(); } else { matriculas = Program.dbController.listarMatriculaSaldoPorGestante(c.idPersona).ToList <Service.matricula>(); } foreach (Service.matricula m in matriculas) { Object[] fila = new Object[3]; fila[0] = m.servicio.nombre; fila[1] = m.fecha; fila[2] = m.saldo; dgvMatriculas.Rows.Add(fila); } }
public frmInscribirAHorario() { InitializeComponent(); Formateador f = new Formateador(); f.formatearBotonListar(btnBuscarCliente); f.formatearBotonNaranja(btnBuscarHorarios); btnBuscarHorarios.Width = 150; f.formInscribir(this, "Inscripcion", pnlCtn, gbServicio, btnSeleccionarHorario); }
public frmCambiarPass(Service.colaborador colab, Form ventana) { InitializeComponent(); Formateador f = new Formateador(); Paleta colores = new Paleta(); pnlTitulo.BackColor = colores.Naranja; pnlFill.BackColor = colores.Blanco; f.formatearBotonNaranja(btnConfirmar); btnConfirmar.Left = txtRepetir.Left + txtRepetir.Width - 85; lblCoinciden.Visible = false; colaborador = colab; padre = ventana; this.StartPosition = FormStartPosition.CenterScreen; }
public frmPagoMat(Service.matricula c) { InitializeComponent(); Formateador f = new Formateador(); Paleta p = new Paleta(); this.BackColor = p.Blanco; f.formatearBotonNaranja(btnGuardar); txtTotalAPagar.Text = c.monto.ToString(); txtAbonar.Text = "0"; txtPendiente.Text = c.monto.ToString(); cboFormaPago.SelectedIndex = 0; }
public frmBuscarServicioPorCliente(Service.cliente c) { InitializeComponent(); dgvMatriculas.AutoGenerateColumns = false; Formateador f = new Formateador(); Paleta p = new Paleta(); this.BackColor = p.Blanco; f.formatearBotonNaranja(btnSeleccionar); btnSeleccionar.Top = dgvMatriculas.Top + dgvMatriculas.Height + 10; btnSeleccionar.Left = dgvMatriculas.Left + dgvMatriculas.Width - 85; IEnumerable <Service.matricula> mats; if (c is Service.apoderado) { mats = Program.dbController.listarMatriculaActivaPorApoderado(c.idPersona); } else { mats = Program.dbController.listarMatriculaActivaPorGestante(c.idPersona); } if (mats != null) { matriculas = mats.ToList(); foreach (Service.matricula m in matriculas) { Object[] fila = new Object[3]; fila[0] = m.servicio.nombre; fila[1] = m.fecha.ToShortDateString(); fila[2] = m.saldo; dgvMatriculas.Rows.Add(fila); } } else { frmMensaje mensaje = new frmMensaje("El cliente no tiene servicios asociados", "Mensaje de advertencia", ""); if (mensaje.ShowDialog() == DialogResult.OK) { } this.DialogResult = DialogResult.OK; this.Hide(); } }