Exemplo n.º 1
0
 /// ----------------------------------------------------------------------------------------
 /// <summary>
 /// Activates the (real) splash screen
 /// </summary>
 /// ----------------------------------------------------------------------------------------
 public void Activate()
 {
     if (m_splashScreen != null)
     {
         lock (m_splashScreen.m_Synchronizer)
         {
             try
             {
                 m_splashScreen.Invoke(new MethodInvoker(m_splashScreen.Activate));
             }
             catch
             {
                 // Something bad happened, but don't die
             }
         }
     }
 }