Changeset 3505
- Timestamp:
- 04/23/10 02:22:48 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs
r3454 r3505 89 89 | System.Windows.Forms.AnchorStyles.Left) 90 90 | System.Windows.Forms.AnchorStyles.Right))); 91 this.tabControl.Controls.Add(this.problemTabPage); 91 92 this.tabControl.Controls.Add(this.parametersTabPage); 92 this.tabControl.Controls.Add(this.problemTabPage);93 93 this.tabControl.Controls.Add(this.resultsTabPage); 94 94 this.tabControl.Controls.Add(this.runsTabPage); … … 106 106 this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3); 107 107 this.parametersTabPage.Size = new System.Drawing.Size(671, 374); 108 this.parametersTabPage.TabIndex = 0;108 this.parametersTabPage.TabIndex = 1; 109 109 this.parametersTabPage.Text = "Parameters"; 110 110 this.parametersTabPage.UseVisualStyleBackColor = true; … … 131 131 this.problemTabPage.Padding = new System.Windows.Forms.Padding(3); 132 132 this.problemTabPage.Size = new System.Drawing.Size(671, 374); 133 this.problemTabPage.TabIndex = 1;133 this.problemTabPage.TabIndex = 0; 134 134 this.problemTabPage.Text = "Problem"; 135 135 this.problemTabPage.UseVisualStyleBackColor = true; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.Designer.cs
r3454 r3505 45 45 /// </summary> 46 46 private void InitializeComponent() { 47 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EngineAlgorithmView));48 47 this.engineLabel = new System.Windows.Forms.Label(); 49 48 this.createUserDefinedAlgorithmButton = new System.Windows.Forms.Button(); … … 75 74 this.tabControl.Controls.SetChildIndex(this.runsTabPage, 0); 76 75 this.tabControl.Controls.SetChildIndex(this.resultsTabPage, 0); 76 this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0); 77 77 this.tabControl.Controls.SetChildIndex(this.problemTabPage, 0); 78 this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0);79 78 // 80 79 // parametersTabPage … … 191 190 this.engineComboBox.Location = new System.Drawing.Point(55, 6); 192 191 this.engineComboBox.Name = "engineComboBox"; 193 this.engineComboBox.Size = new System.Drawing.Size(6 10, 21);192 this.engineComboBox.Size = new System.Drawing.Size(644, 21); 194 193 this.engineComboBox.TabIndex = 1; 195 194 this.engineComboBox.SelectedIndexChanged += new System.EventHandler(this.engineComboBox_SelectedIndexChanged); … … 204 203 this.engineTabPage.Padding = new System.Windows.Forms.Padding(3); 205 204 this.engineTabPage.Size = new System.Drawing.Size(705, 441); 206 this.engineTabPage.TabIndex = 3;205 this.engineTabPage.TabIndex = 5; 207 206 this.engineTabPage.Text = "Engine"; 208 207 this.engineTabPage.UseVisualStyleBackColor = true; … … 213 212 | System.Windows.Forms.AnchorStyles.Left) 214 213 | System.Windows.Forms.AnchorStyles.Right))); 214 this.engineViewHost.Caption = null; 215 215 this.engineViewHost.Content = null; 216 216 this.engineViewHost.Location = new System.Drawing.Point(6, 33); 217 217 this.engineViewHost.Name = "engineViewHost"; 218 218 this.engineViewHost.ReadOnly = false; 219 this.engineViewHost.Size = new System.Drawing.Size(6 59, 335);219 this.engineViewHost.Size = new System.Drawing.Size(693, 402); 220 220 this.engineViewHost.TabIndex = 2; 221 221 this.engineViewHost.ViewType = null; … … 260 260 | System.Windows.Forms.AnchorStyles.Left) 261 261 | System.Windows.Forms.AnchorStyles.Right))); 262 this.operatorGraphViewHost.Caption = null; 262 263 this.operatorGraphViewHost.Content = null; 263 264 this.operatorGraphViewHost.Location = new System.Drawing.Point(3, 33); 264 265 this.operatorGraphViewHost.Name = "operatorGraphViewHost"; 265 266 this.operatorGraphViewHost.ReadOnly = true; 266 this.operatorGraphViewHost.Size = new System.Drawing.Size(6 99, 405);267 this.operatorGraphViewHost.Size = new System.Drawing.Size(665, 338); 267 268 this.operatorGraphViewHost.TabIndex = 0; 268 269 this.operatorGraphViewHost.ViewType = null; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.cs
r3483 r3505 47 47 InitializeComponent(); 48 48 Caption = "Run Collection"; 49 itemsGroupBox.Text = "Runs"; 49 50 } 50 51 -
trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.Designer.cs
r3454 r3505 48 48 this.globalScopeView = new HeuristicLab.Core.Views.ScopeView(); 49 49 this.engineTabPage.SuspendLayout(); 50 this.operatorGraphTabPage.SuspendLayout(); 50 51 this.tabControl.SuspendLayout(); 51 52 this.parametersTabPage.SuspendLayout(); … … 64 65 this.createUserDefinedAlgorithmButton.Visible = false; 65 66 // 67 // engineComboBox 68 // 69 this.engineComboBox.Size = new System.Drawing.Size(644, 21); 70 // 71 // engineViewHost 72 // 73 this.engineViewHost.Size = new System.Drawing.Size(693, 402); 74 // 75 // openOperatorGraphButton 76 // 77 this.toolTip.SetToolTip(this.openOperatorGraphButton, "Open Operator Graph"); 78 // 79 // newOperatorGraphButton 80 // 81 this.toolTip.SetToolTip(this.newOperatorGraphButton, "New Operator Graph"); 82 // 66 83 // tabControl 67 84 // 68 85 this.tabControl.Controls.Add(this.globalScopeTabPage); 86 this.tabControl.Controls.SetChildIndex(this.engineTabPage, 0); 69 87 this.tabControl.Controls.SetChildIndex(this.globalScopeTabPage, 0); 70 88 this.tabControl.Controls.SetChildIndex(this.operatorGraphTabPage, 0); 71 89 this.tabControl.Controls.SetChildIndex(this.runsTabPage, 0); 72 90 this.tabControl.Controls.SetChildIndex(this.resultsTabPage, 0); 73 this.tabControl.Controls.SetChildIndex(this. engineTabPage, 0);91 this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0); 74 92 this.tabControl.Controls.SetChildIndex(this.problemTabPage, 0); 75 this.tabControl.Controls.SetChildIndex(this.parametersTabPage, 0);76 93 // 77 94 // newProblemButton … … 110 127 this.globalScopeTabPage.Name = "globalScopeTabPage"; 111 128 this.globalScopeTabPage.Size = new System.Drawing.Size(705, 441); 112 this.globalScopeTabPage.TabIndex = 3;129 this.globalScopeTabPage.TabIndex = 6; 113 130 this.globalScopeTabPage.Text = "Global Scope"; 114 131 this.globalScopeTabPage.UseVisualStyleBackColor = true; … … 134 151 this.engineTabPage.ResumeLayout(false); 135 152 this.engineTabPage.PerformLayout(); 153 this.operatorGraphTabPage.ResumeLayout(false); 136 154 this.tabControl.ResumeLayout(false); 137 155 this.parametersTabPage.ResumeLayout(false); -
trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.Designer.cs
r3159 r3505 70 70 // importButton 71 71 // 72 this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles. Bottom| System.Windows.Forms.AnchorStyles.Left)72 this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 73 73 | System.Windows.Forms.AnchorStyles.Right))); 74 this.importButton.Location = new System.Drawing.Point(0, 399);74 this.importButton.Location = new System.Drawing.Point(0, 52); 75 75 this.importButton.Name = "importButton"; 76 76 this.importButton.Size = new System.Drawing.Size(529, 23); 77 this.importButton.TabIndex = 5;77 this.importButton.TabIndex = 4; 78 78 this.importButton.Text = "&Import from TSPLIB"; 79 79 this.importButton.UseVisualStyleBackColor = true; … … 87 87 this.tabControl.Controls.Add(this.parametersTabPage); 88 88 this.tabControl.Controls.Add(this.visualizationTabPage); 89 this.tabControl.Location = new System.Drawing.Point(0, 52);89 this.tabControl.Location = new System.Drawing.Point(0, 81); 90 90 this.tabControl.Name = "tabControl"; 91 91 this.tabControl.SelectedIndex = 0; 92 92 this.tabControl.Size = new System.Drawing.Size(529, 341); 93 this.tabControl.TabIndex = 4;93 this.tabControl.TabIndex = 5; 94 94 // 95 95 // parametersTabPage … … 113 113 this.parameterCollectionView.Location = new System.Drawing.Point(6, 6); 114 114 this.parameterCollectionView.Name = "parameterCollectionView"; 115 this.parameterCollectionView.ReadOnly = false; 115 116 this.parameterCollectionView.Size = new System.Drawing.Size(509, 303); 116 117 this.parameterCollectionView.TabIndex = 0; … … 136 137 this.pathTSPTourView.Location = new System.Drawing.Point(6, 6); 137 138 this.pathTSPTourView.Name = "pathTSPTourView"; 139 this.pathTSPTourView.ReadOnly = false; 138 140 this.pathTSPTourView.Size = new System.Drawing.Size(509, 303); 139 141 this.pathTSPTourView.TabIndex = 0;
Note: See TracChangeset
for help on using the changeset viewer.