コード例 #1
0
 private void EntryContinueButton_Click(object sender, EventArgs e)
 {
     //Switch to "ContinueForm".
     this.Visible = false;
     continueForm = new ContinueForm();
     continueForm.Show();
 }
コード例 #2
0
ファイル: SetupForm.cs プロジェクト: UmslArchive/PlantersGUI
 private void StartButton_Click(object sender, EventArgs e)
 {
     //Switch to "ContinueForm".
     Close();
     continueForm = new ContinueForm();
     continueForm.Show();
 }