private void toolStripMenuItem1_Click(object sender, EventArgs e) { FilmesForm filmesForm = new FilmesForm(); filmesForm.Show(); this.Hide(); }
private void nextStep() { if (filme == null) { FilmesForm filmeForm = new FilmesForm(); filmeForm.Show(); this.Hide(); } else { SalaForm sala = new SalaForm(); sala.Show(); this.Hide(); } }