C#中Form的操做:ide
關閉用Close();函數
隱藏用Hide();this
新打開一個用new Form();spa
主窗體的生成代碼通常是這樣的:指針
1 static class Program 2 { 3 /// <summary> 4 /// 應用程序的主入口點。 5 /// </summary> 6 [STAThread] 7 static void Main() 8 { 9 Application.EnableVisualStyles(); 10 Application.SetCompatibleTextRenderingDefault(false); 11 Application.Run(new Form1()); 12 } 13 }
這裏Application.Run(new Form1());是應用程序的主入口點。也就是Form1是主窗體,關閉後整個程序都會關閉。code
執行Application.Run(new Form1());以後,會默認新建主窗體(即Form1)並可見。這時候,若是在Form1裏面的某個響應函數裏打開新的窗體,能夠如如下代碼:orm
private void button1_Click(object sender, EventArgs e) { this.Hide(); // here "this" is point to Form1, //so it means to hide the main Form Form1 new Form2().Show(); }
能夠看到,這裏只能經過this.Hide();把主窗體隱藏掉了(注意:不能執行this.Close();,由於Form1是主窗體,關閉後就直接退出程序了。)對象
那麼,在執行完new Form2().Show(); 新建了一個窗體Form2並顯示以後,怎麼顯示原來被隱藏掉的主窗體Form1呢???這就是關鍵。blog
解決方法有哪些?it
首先分析一下,主窗體是經過這行代碼建立的:
1 Application.Run(new Form1());
這是一個匿名對象,沒法找到引用了吧?網上所謂的「this.Show();"根本就是一個笑話了,this引用了哪一個對象呢?看下面的提示:
顯然,this指針仍是當前對象的引用並非主窗體的引用。(ps:有木有全局變量是記錄主窗體對象的引用呢?剛開始接觸C#,思考中)
我能想到的,就是:方法1:新建一個主窗體對象並顯示。
至於能不能創建一個全局變量,用於引用主窗體對象呢?這是一個思路,各位看官能夠手動探索一番。