Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/10 11:22:48 (14 years ago)
Author:
gkronber
Message:

Added about dialog. #893

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.cs

    r3697 r3736  
    6060      pluginManager = new PluginManager(pluginPath);
    6161      splashScreen = new SplashScreen(pluginManager, 1000);
    62       splashScreen.Show(this,"Loading HeuristicLab...");
     62      splashScreen.Show(this, "Loading HeuristicLab...");
    6363
    6464      pluginManager.DiscoverAndCheckPlugins();
    65 
    6665      UpdateApplicationsList();
    6766    }
     
    202201    }
    203202
     203    private void aboutButton_Click(object sender, EventArgs e) {
     204      List<IPluginDescription> plugins = new List<IPluginDescription>(pluginManager.Plugins.OfType<IPluginDescription>());
     205      var dialog = new AboutDialog(plugins);
     206      dialog.ShowDialog();
     207    }
    204208  }
    205209}
Note: See TracChangeset for help on using the changeset viewer.