private void button1_Click(object sender, EventArgs e) { if (sender == AñadirProyecto) { NuevoProyecto VentanaProyecto = new NuevoProyecto(matricula); VentanaProyecto.Show(); } else if (sender == VerComoProyecto) { Seleccion_Proyecto VentanaDeProyecto = new Seleccion_Proyecto(matricula); VentanaDeProyecto.ShowDialog(); Close(); } else if (sender == BotonMatches) { Match_List match_List = new Match_List(matricula); match_List.ShowDialog(); Close(); } else { try { match.Matricula = matricula; match.ProyectoId = proyectos[ind].ProyectoId; if (sender == Like) { match.GetMatch(1, 1); match.UpdateMatch(1, 1); UpdateLabelsProjects(); } else if (sender == Dislike) { match.GetMatch(1, 0); match.UpdateMatch(1, 0); UpdateLabelsProjects(); } else if (sender == SuperLike) { match.GetMatch(1, 1); match.UpdateMatch(1, 1); UpdateLabelsProjects(); } ind++; } catch (ArgumentOutOfRangeException ex) { lblNoMas.Text = "Se han acabado los proyectos"; } } }
private void BotonMatches_Click(object sender, EventArgs e) { Match_List VentanaMatches = new Match_List(matricula); VentanaMatches.Show(); }