コード例 #1
0
ファイル: Home.cs プロジェクト: a2pr/cinemaPIM
        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            FilmesForm filmesForm = new FilmesForm();

            filmesForm.Show();
            this.Hide();
        }
コード例 #2
0
ファイル: CinemasForm.cs プロジェクト: a2pr/cinemaPIM
 private void nextStep()
 {
     if (filme == null)
     {
         FilmesForm filmeForm = new FilmesForm();
         filmeForm.Show();
         this.Hide();
     }
     else
     {
         SalaForm sala = new SalaForm();
         sala.Show();
         this.Hide();
     }
 }