- Timestamp:
- 05/07/10 13:22:53 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Starter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/SplashScreen.cs
r3113 r3697 106 106 } 107 107 108 public void Show(IWin32Window owner, string initialText) { 109 if (InvokeRequired) Invoke((Action<string>)Show, initialText); 110 else { 111 Opacity = 1; 112 infoLabel.Text = initialText; 113 fadeOutForced = false; 114 ResetFadeTimer(); 115 Show(owner); 116 } 117 } 118 108 119 private void ResetFadeTimer() { 109 120 // wait initialInterval again for the first tick -
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.cs
r3600 r3697 60 60 pluginManager = new PluginManager(pluginPath); 61 61 splashScreen = new SplashScreen(pluginManager, 1000); 62 splashScreen.Show( "Loading HeuristicLab...");62 splashScreen.Show(this,"Loading HeuristicLab..."); 63 63 64 64 pluginManager.DiscoverAndCheckPlugins();
Note: See TracChangeset
for help on using the changeset viewer.