private void ListarComboBox_SelectedIndexChanged(object sender, EventArgs e) { if (ListarComboBox.Text == "Genero") { GenerosForm GF = new GenerosForm(); GF.Show(); } if (ListarComboBox.Text == "Actor") { ActoresForm AF = new ActoresForm(); AF.Show(); } if (ListarComboBox.Text == "Estudio") { EstudiosForm EF = new EstudiosForm(); EF.Show(); } if (ListarComboBox.Text == "Categoría") { CategoriasForm CF = new CategoriasForm(); CF.Show(); } if (ListarComboBox.Text == "Pelicula") { PeliculasForm PF = new PeliculasForm(); PF.Show(); } }
private void categoriasToolStripMenuItem_Click(object sender, EventArgs e) { Registros.CategoriasForm categorias = new Registros.CategoriasForm(); categorias.Show(); }