コード例 #1
0
ファイル: WIZZ06.cs プロジェクト: EmileBosse/TP3GenieLogiciel
        private void btnSuivantPrescription_Click(object sender, EventArgs e)
        {
            // SUIVANT = WIZZ07
            WIZZ07 c = new WIZZ07(this)
            {
                Tag = this
            };

            c.Show();
            Hide();
        }
コード例 #2
0
ファイル: WIZZ05.cs プロジェクト: EmileBosse/TP3GenieLogiciel
 private void btnPrecedentPrescription_Click(object sender, EventArgs e)
 {
     // PRECEDENT = WIZZ03
     if (creatorP != null)
     {
         creatorP.Show();
     }
     // PRECEDENT = WIZZ07
     else if (creatorR != null)
     {
         creatorR.Show();
     }
     this.Hide();
 }