Ejemplo n.º 1
0
 public static void ShowSplash()
 {
     m_splash = new OCMSplash();
     m_splash.ShowNow();
     System.Timers.Timer splashtime = new System.Timers.Timer();
     splashtime.AutoReset = false;
     splashtime.Interval = 1000;
     splashtime.Elapsed += HandleSplashtimeElapsed;
     splashtime.Start();
 }