private void btnNuevo_Click(object sender, EventArgs e) { AbmPaciente dialog = new AbmPaciente(); if (dialog.ShowDialog(this) == DialogResult.OK) { ActualizarLista(gestor.Listar()); } dialog.Dispose(); }
private void Historial_Load(object sender, EventArgs e) { //Estilo.Buscar(btnBuscar); //this.AcceptButton = this.btnBuscar; gp = new GestionarPaciente(); listaPaciente = gp.Listar(); ActualizarLista(listaPaciente); }
private void txtBuscar_TextChanged(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(txtBuscar.Text)) { ActualizarLista(listaPaciente); } else { ActualizarLista(gp.Listar(txtBuscar.Text)); } }
private void ConsultarPaciente_Load(object sender, EventArgs e) { Estilo.Nuevo(btnNuevo); Estilo.Guardar(btnAceptar); Estilo.Cancelar(btnCancelar); Estilo.Modificar(btnModificar); btnAceptar.DialogResult = DialogResult.OK; btnCancelar.DialogResult = DialogResult.Cancel; gestor = new GestionarPaciente(); ActualizarLista(gestor.Listar()); if (this.Owner != null) { btnModificar.Visible = false; btnNuevo.Visible = false; } }