Changeset 2748 for trunk/sources/HeuristicLab.PluginInfrastructure/Starter
- Timestamp:
- 02/04/10 09:38:25 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.cs
r2527 r2748 33 33 using HeuristicLab.PluginInfrastructure.Manager; 34 34 using System.IO; 35 using HeuristicLab.PluginInfrastructure.Advanced; 35 36 36 37 namespace HeuristicLab.PluginInfrastructure.Starter { … … 45 46 InitializeComponent(); 46 47 47 string pluginPath = Path.GetFullPath(Application.StartupPath); 48 string pluginPath = Path.GetFullPath(Application.StartupPath); 48 49 pluginManager = new PluginManager(pluginPath); 49 50 SplashScreen splashScreen = new SplashScreen(pluginManager, 1000, "Loading HeuristicLab..."); … … 77 78 var appDesc = (from desc in pluginManager.Applications 78 79 where desc.Name == appName 79 select desc).Single ();80 select desc).SingleOrDefault(); 80 81 if (appDesc != null) { 81 82 StartApplication(appDesc); … … 93 94 if (selected == pluginManagerListViewItem) { 94 95 try { 95 //Cursor = Cursors.AppStarting;96 //ManagerForm form = newManagerForm();97 //this.Visible = false;98 //form.ShowDialog(this);99 // //RefreshApplicationsList();100 //this.Visible = true;96 Cursor = Cursors.AppStarting; 97 InstallationManagerForm form = new InstallationManagerForm(); 98 this.Visible = false; 99 form.ShowDialog(this); 100 // RefreshApplicationsList(); 101 this.Visible = true; 101 102 } 102 103 finally {
Note: See TracChangeset
for help on using the changeset viewer.