- Timestamp:
- 05/03/10 19:15:41 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Starter/StarterForm.Designer.cs
r3573 r3600 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 listViewGroup 1= new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left);50 System.Windows.Forms.ListViewGroup listViewGroup 2= new System.Windows.Forms.ListViewGroup("Plugin Management", System.Windows.Forms.HorizontalAlignment.Left);49 System.Windows.Forms.ListViewGroup listViewGroup3 = new System.Windows.Forms.ListViewGroup("Applications", System.Windows.Forms.HorizontalAlignment.Left); 50 System.Windows.Forms.ListViewGroup listViewGroup4 = 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); … … 57 57 this.smallImageList = new System.Windows.Forms.ImageList(this.components); 58 58 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 59 this.showL istButton = new System.Windows.Forms.RadioButton();59 this.showLargeIconsButton = new System.Windows.Forms.RadioButton(); 60 60 this.showDetailsButton = new System.Windows.Forms.RadioButton(); 61 this.groupBox = new System.Windows.Forms.GroupBox();62 this.groupBox.SuspendLayout();63 61 this.SuspendLayout(); 64 62 // … … 67 65 this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 68 66 this.startButton.Enabled = false; 69 this.startButton.Location = new System.Drawing.Point(579, 5 07);67 this.startButton.Location = new System.Drawing.Point(579, 511); 70 68 this.startButton.Name = "startButton"; 71 69 this.startButton.Size = new System.Drawing.Size(75, 23); … … 91 89 this.versionColumnHeader, 92 90 this.descriptionColumnHeader}); 93 listViewGroup 1.Header = "Applications";94 listViewGroup 1.Name = "Applications";95 listViewGroup 2.Header = "Plugin Management";96 listViewGroup 2.Name = "Plugin Management";91 listViewGroup3.Header = "Applications"; 92 listViewGroup3.Name = "Applications"; 93 listViewGroup4.Header = "Plugin Management"; 94 listViewGroup4.Name = "Plugin Management"; 97 95 this.applicationsListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] { 98 listViewGroup 1,99 listViewGroup 2});96 listViewGroup3, 97 listViewGroup4}); 100 98 this.applicationsListView.LargeImageList = this.largeImageList; 101 99 this.applicationsListView.Location = new System.Drawing.Point(12, 12); … … 103 101 this.applicationsListView.Name = "applicationsListView"; 104 102 this.applicationsListView.ShowItemToolTips = true; 105 this.applicationsListView.Size = new System.Drawing.Size(642, 4 79);103 this.applicationsListView.Size = new System.Drawing.Size(642, 493); 106 104 this.applicationsListView.SmallImageList = this.smallImageList; 107 this.applicationsListView.TabIndex = 2;105 this.applicationsListView.TabIndex = 0; 108 106 this.applicationsListView.UseCompatibleStateImageBehavior = false; 109 107 this.applicationsListView.ItemActivate += new System.EventHandler(this.applicationsListView_ItemActivate); … … 130 128 this.smallImageList.Images.SetKeyName(0, "HeuristicLab.ico"); 131 129 // 132 // showL istButton130 // showLargeIconsButton 133 131 // 134 this.showListButton.Appearance = System.Windows.Forms.Appearance.Button; 135 this.showListButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.show_icons; 136 this.showListButton.Location = new System.Drawing.Point(6, 9); 137 this.showListButton.Name = "showListButton"; 138 this.showListButton.Size = new System.Drawing.Size(25, 25); 139 this.showListButton.TabIndex = 3; 140 this.showListButton.TabStop = true; 141 this.toolTip.SetToolTip(this.showListButton, "Show List"); 142 this.showListButton.UseVisualStyleBackColor = true; 143 this.showListButton.Click += new System.EventHandler(this.largeIconsButton_Click); 132 this.showLargeIconsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 133 this.showLargeIconsButton.Appearance = System.Windows.Forms.Appearance.Button; 134 this.showLargeIconsButton.Checked = true; 135 this.showLargeIconsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.show_icons; 136 this.showLargeIconsButton.Location = new System.Drawing.Point(12, 511); 137 this.showLargeIconsButton.Name = "showLargeIconsButton"; 138 this.showLargeIconsButton.Size = new System.Drawing.Size(23, 23); 139 this.showLargeIconsButton.TabIndex = 2; 140 this.toolTip.SetToolTip(this.showLargeIconsButton, "Show Large Icons"); 141 this.showLargeIconsButton.UseVisualStyleBackColor = false; 142 this.showLargeIconsButton.Click += new System.EventHandler(this.largeIconsButton_Click); 144 143 // 145 144 // showDetailsButton 146 145 // 146 this.showDetailsButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 147 147 this.showDetailsButton.Appearance = System.Windows.Forms.Appearance.Button; 148 148 this.showDetailsButton.Image = global::HeuristicLab.PluginInfrastructure.Properties.Resources.show_details; 149 this.showDetailsButton.Location = new System.Drawing.Point( 37, 9);149 this.showDetailsButton.Location = new System.Drawing.Point(41, 511); 150 150 this.showDetailsButton.Name = "showDetailsButton"; 151 this.showDetailsButton.Size = new System.Drawing.Size(25, 25); 152 this.showDetailsButton.TabIndex = 4; 153 this.showDetailsButton.TabStop = true; 151 this.showDetailsButton.Size = new System.Drawing.Size(23, 23); 152 this.showDetailsButton.TabIndex = 3; 154 153 this.toolTip.SetToolTip(this.showDetailsButton, "Show Details"); 155 this.showDetailsButton.UseVisualStyleBackColor = true;154 this.showDetailsButton.UseVisualStyleBackColor = false; 156 155 this.showDetailsButton.Click += new System.EventHandler(this.detailsButton_Click); 157 //158 // groupBox159 //160 this.groupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));161 this.groupBox.Controls.Add(this.showListButton);162 this.groupBox.Controls.Add(this.showDetailsButton);163 this.groupBox.Location = new System.Drawing.Point(12, 497);164 this.groupBox.Name = "groupBox";165 this.groupBox.Size = new System.Drawing.Size(68, 37);166 this.groupBox.TabIndex = 5;167 this.groupBox.TabStop = false;168 156 // 169 157 // StarterForm … … 172 160 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 173 161 this.ClientSize = new System.Drawing.Size(666, 546); 174 this.Controls.Add(this.groupBox); 162 this.Controls.Add(this.showDetailsButton); 163 this.Controls.Add(this.showLargeIconsButton); 175 164 this.Controls.Add(this.applicationsListView); 176 165 this.Controls.Add(this.startButton); … … 179 168 this.Text = "HeuristicLab Starter"; 180 169 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); 181 this.groupBox.ResumeLayout(false);182 170 this.ResumeLayout(false); 183 171 … … 194 182 private System.Windows.Forms.ImageList smallImageList; 195 183 private System.Windows.Forms.ToolTip toolTip; 196 private System.Windows.Forms.RadioButton showL istButton;184 private System.Windows.Forms.RadioButton showLargeIconsButton; 197 185 private System.Windows.Forms.RadioButton showDetailsButton; 198 private System.Windows.Forms.GroupBox groupBox;199 186 } 200 187 }
Note: See TracChangeset
for help on using the changeset viewer.