void CloseSplashScreen()
 {
     if (!SplashContainer.IsActive)
     {
         return;
     }
     SplashContainer.Close();
 }
 protected virtual void CloseSplashScreen()
 {
     if (!IsActive)
     {
         return;
     }
     SplashContainer.Close();
 }
 public static void Close()
 {
     if (!IsActive)
     {
         throw new InvalidOperationException(DXSplashScreenExceptions.Exception3);
     }
     SplashContainer.Close();
 }