SIL.FieldWorks.FieldWorks.ShowSplashScreen C# (CSharp) Метод

ShowSplashScreen() приватный статический Метод

Displays the splash screen
private static ShowSplashScreen ( FwApp app ) : void
app SIL.FieldWorks.Common.Framework.FwApp
Результат void
		private static void ShowSplashScreen(FwApp app)
		{
			s_splashScreen = new FwSplashScreen();
			s_splashScreen.ProductExecutableAssembly = Assembly.LoadFile(app.ProductExecutableFile);
			s_splashScreen.Show(!FwRegistrySettings.DisableSplashScreenSetting, s_noUserInterface);
			s_splashScreen.Refresh();
		}
FieldWorks