private void button7_Click(object sender, EventArgs e) { foreach (Actor actor in sonic.actores) { if (Convert.ToString(comboBox7.SelectedItem) == actor.nombre) { SeguimientoEleccion tmp = new SeguimientoEleccion(sonic, usuario, this); tmp.Show(); tmp.actor = actor; break; } } }
private void button1_Click(object sender, EventArgs e) { foreach (Cantante cantante in sonic.cantantes) { if (Convert.ToString(comboBox1.SelectedItem) == cantante.nombre) { SeguimientoEleccion tmp = new SeguimientoEleccion(sonic, usuario, this); tmp.Show(); tmp.cantante = cantante; break; } } }
private void button5_Click(object sender, EventArgs e) { foreach (Album album in sonic.albums) { if (Convert.ToString(comboBox4.SelectedItem) == album.nombre) { SeguimientoEleccion tmp = new SeguimientoEleccion(sonic, usuario, this); tmp.Show(); tmp.album = album; break; } } }