private void button2_Click(object sender, EventArgs e) { funcionesVideo ins = new funcionesVideo(login); ins.MdiParent = this.MdiParent; this.Hide(); ins.ShowDialog(); }
private void button1_Click(object sender, EventArgs e) { string selected = comboBox1.SelectedItem.ToString(); if (selected == "Si") { Actor actor1 = new Actor(textBox1.Text); actores1.Add(actor1); login.sonic.AgregarActor(textBox1.Text); textBox1.Text = ""; } else { Actor actor1 = new Actor(textBox1.Text); actores1.Add(actor1); login.sonic.AgregarActor(textBox1.Text); login.sonic.ImportarVideos(actores1, titulo, categoria, genero, estudio, director, descripcion, añoDeEstreno, resolucion, 0, 0, archivMP3, rutaArchivo); MessageBox.Show("Se ha agregado el video con exito."); funcionesVideo ins = new funcionesVideo(login); ins.MdiParent = this.MdiParent; this.Hide(); ins.ShowDialog(); } }