可能重複:
How do I prevent the app from terminating when I close the startup form?關閉第一形式
試想用2種形式,Form 1和Form的應用程序。當我點擊Form1中的一個按鈕時,我想打開Form2並關閉Form1,關閉不隱藏。 我是這樣做的方式是:
_Form2 = new Form2();
_Form2.Show();
this.Close();//or this.Dispose();
當我運行它關閉Form1並結束應用程序的代碼。林不知道,但也許是因爲在我的Program.cs我有Application.Run(new Form1());
?或者這行只意味着當應用程序啓動時它應該加載Form1?