我的應用程序出現問題,我想創建一個簡單的登錄頁面,通過主頁(登錄成功)發送給您,所以我將此代碼放在我的program.cs中我可以瀏覽低谷形式:C#:非主窗體的關閉應用程序
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 a = new Form1();
a.Show();
Application.Run();
}
}
的probleme是,如果我提交的應用程序沒有關閉...
感謝之前關閉我的應用程序(登錄頁)
非常感謝您寶貴的回覆! – user3426711
不客氣。我還加入了公共靜態來糾正對課程的訪問。 –
爲什麼我的回答得到-1? –