Changeset 3112 for trunk/sources/HeuristicLab.PluginInfrastructure/Starter
- Timestamp:
- 03/19/10 11:46:07 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.Designer.cs
r2790 r3112 47 47 this.components = new System.ComponentModel.Container(); 48 48 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(StarterForm)); 49 System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup(" Plugin Management", System.Windows.Forms.HorizontalAlignment.Left);50 System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup(" Applications", System.Windows.Forms.HorizontalAlignment.Left);49 System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left); 50 System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Plugin Management", System.Windows.Forms.HorizontalAlignment.Left); 51 51 this.startButton = new System.Windows.Forms.Button(); 52 52 this.largeImageList = new System.Windows.Forms.ImageList(this.components); … … 88 88 this.versionColumnHeader, 89 89 this.descriptionColumnHeader}); 90 listViewGroup1.Header = " Plugin Management";91 listViewGroup1.Name = " Plugin Management";92 listViewGroup2.Header = " Applications";93 listViewGroup2.Name = " Applications";90 listViewGroup1.Header = "Applications"; 91 listViewGroup1.Name = "Applications"; 92 listViewGroup2.Header = "Plugin Management"; 93 listViewGroup2.Name = "Plugin Management"; 94 94 this.applicationsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] { 95 95 listViewGroup1, … … 131 131 this.detailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 132 132 this.detailsButton.AutoSize = true; 133 this.detailsButton.Image = HeuristicLab.PluginInfrastructure.Properties.Resources.Details;133 this.detailsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.Details; 134 134 this.detailsButton.Location = new System.Drawing.Point(68, 511); 135 135 this.detailsButton.Name = "detailsButton"; … … 144 144 this.listButton.AutoSize = true; 145 145 this.listButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; 146 this.listButton.Image = HeuristicLab.PluginInfrastructure.Properties.Resources.List;146 this.listButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.List; 147 147 this.listButton.Location = new System.Drawing.Point(40, 511); 148 148 this.listButton.Name = "listButton"; … … 157 157 this.largeIconsButton.AutoSize = true; 158 158 this.largeIconsButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; 159 this.largeIconsButton.Image = HeuristicLab.PluginInfrastructure.Properties.Resources.LargeIcons;159 this.largeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.LargeIcons; 160 160 this.largeIconsButton.Location = new System.Drawing.Point(12, 511); 161 161 this.largeIconsButton.Name = "largeIconsButton"; … … 165 165 this.largeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click); 166 166 // 167 // MainForm167 // StarterForm 168 168 // 169 169 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); … … 176 176 this.Controls.Add(this.startButton); 177 177 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 178 this.Name = " MainForm";178 this.Name = "StarterForm"; 179 179 this.Text = "HeuristicLab Starter"; 180 180 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
Note: See TracChangeset
for help on using the changeset viewer.