Ejemplo n.º 1
0
 public void Dispose()
 {
     if (this.mSplash != null)
     {
         if (this.bStarted)
         {
             this.End();
         }
         this.mSplash.Dispose();
         this.mSplash = null;
     }
 }
Ejemplo n.º 2
0
 public SplashLauncher()
 {
     this.bStarted = false;
     this.mSplash = new Splash("Starting " + MainForm.kName);
 }