示例#1
0
 public static void ShowSplashScreen()
 {
     _splashScreen = new QTranslucentWindow {
         BackgroundImage = new Bitmap(Images.imgSplash), TopMost = true
     };
     _splashScreen.ShowCenteredOnScreen();
     Application.Idle += ApplicationIdle;
 }
示例#2
0
 /// <summary>
 /// Shows the Splash screen
 /// </summary>
 public static void ShowSplashScreen()
 {
     m_oSplash = new QTranslucentWindow();
     m_oSplash.BackgroundImage = new System.Drawing.Bitmap(Application.StartupPath + @"\IMG\Splash.jpg");
     m_oSplash.TopMost = true;
     m_oSplash.ShowCenteredOnScreen();
     Application.Idle += new EventHandler(Application_Idle);
 }
示例#3
0
 /// <summary>
 /// Shows the Splash screen
 /// </summary>
 public static void ShowSplashScreen()
 {
     m_oSplash = new QTranslucentWindow();
     m_oSplash.BackgroundImage = new System.Drawing.Bitmap(Application.StartupPath + @"\IMG\Splash.jpg");
     m_oSplash.TopMost         = true;
     m_oSplash.ShowCenteredOnScreen();
     Application.Idle += new EventHandler(Application_Idle);
 }