1. 程式人生 > >c# winform登入(關閉當前form跳轉到另一個form)

c# winform登入(關閉當前form跳轉到另一個form)

賬號、密碼驗證通過後,執行以下程式碼

    System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(ThreadProc));
                    t.ApartmentState =System.Threading. ApartmentState.STA;
                    t.Start();
                    this.Close();    

ThreadProc()函式程式碼如下:

   public static void ThreadProc()
       {
            Application.Run(new mainForm());//mainForm是要開啟的視窗            
          }