Changeset 3092 for trunk/sources/HeuristicLab.PluginInfrastructure/Starter
- Timestamp:
- 03/17/10 19:01:27 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.cs
r2922 r3092 36 36 37 37 namespace HeuristicLab.PluginInfrastructure.Starter { 38 /// <summary> 39 /// The starter form is responsible for initializing the plugin infrastructure 40 /// and shows a list of installed applications. 41 /// </summary> 38 42 public partial class StarterForm : Form { 39 43 … … 42 46 private PluginManager pluginManager; 43 47 48 /// <summary> 49 /// Initializes an instance of the starter form. 50 /// The starter form shows a splashscreen and initializes the plugin infrastructure. 51 /// </summary> 44 52 public StarterForm() 45 53 : base() { … … 74 82 } 75 83 84 /// <summary> 85 /// Creates a new StarterForm and tries to start application with <paramref name="appName"/> immediately. 86 /// </summary> 87 /// <param name="appName">Name of the application</param> 76 88 public StarterForm(string appName) 77 89 : this() {
Note: See TracChangeset
for help on using the changeset viewer.