Changeset 17 for trunk/sources/HeuristicLab/MainForm.cs
- Timestamp:
- 02/20/08 14:56:45 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab/MainForm.cs
r16 r17 92 92 splashScreen.Owner = this; 93 93 splashScreen.Show(); 94 this.Visible = false;95 94 PluginManager.Manager.Action += new PluginManagerActionEventHandler(splashScreen.Manager_Action); 96 PluginManager.Manager.Run(app); 97 this.Visible = true; 95 Thread t = new Thread(delegate() { 96 PluginManager.Manager.Run(app); 97 }); 98 t.SetApartmentState(ApartmentState.STA); 99 t.Start(); 98 100 } 99 101 }
Note: See TracChangeset
for help on using the changeset viewer.