コード例 #1
0
ファイル: SplashScreen.cs プロジェクト: GNUtn/wimaxcu
 public static void CloseForm()
 {
     if (SplashScreen._splashScreen != null)
     SplashScreen._splashScreen._opacityIncrement = -SplashScreen._splashScreen._opacityDecrement;
       SplashScreen._splashThread = (Thread) null;
       SplashScreen._splashScreen = (SplashScreen) null;
 }
コード例 #2
0
ファイル: SplashScreen.cs プロジェクト: GNUtn/wimaxcu
 private static void ShowForm()
 {
     SplashScreen._splashScreen = new SplashScreen();
       Application.Run((Form) SplashScreen._splashScreen);
 }