コード例 #1
0
ファイル: WaitSplash.cs プロジェクト: JeremieLacroix21/TP2
 static private void ShowForm()
 {
     waitSplash = new WaitSplash();
     if (CallerForm != null)
     {
         _ActiveControl = CallerForm.ActiveControl;
     }
     Application.Run(waitSplash);
 }
コード例 #2
0
ファイル: WaitSplash.cs プロジェクト: JeremieLacroix21/TP2
 static private void CloseFormInternal()
 {
     waitSplash.Close();
     waitSplash = null;
 }