[4548] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.Clients.OKB {
|
---|
| 23 | partial class OKBExperimentView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing) {
|
---|
| 35 | if (components != null) components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Component Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
[4549] | 47 | this.algorithmLabel = new System.Windows.Forms.Label();
|
---|
| 48 | this.problemLabel = new System.Windows.Forms.Label();
|
---|
| 49 | this.algorithmComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 50 | this.problemComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 51 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
| 52 | this.startButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
| 54 | this.stopButton = new System.Windows.Forms.Button();
|
---|
| 55 | this.prepareButton = new System.Windows.Forms.Button();
|
---|
| 56 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
| 57 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 58 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
[4558] | 59 | this.problemParametersTabPage = new System.Windows.Forms.TabPage();
|
---|
| 60 | this.algorithmParametersTabPage = new System.Windows.Forms.TabPage();
|
---|
[4549] | 61 | this.resultsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 62 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
[4558] | 63 | this.problemParametersViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 64 | this.algorithmParametersViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[4549] | 65 | this.resultsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 66 | this.runsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[4548] | 67 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
[4549] | 68 | this.tabControl.SuspendLayout();
|
---|
[4558] | 69 | this.problemParametersTabPage.SuspendLayout();
|
---|
| 70 | this.algorithmParametersTabPage.SuspendLayout();
|
---|
[4549] | 71 | this.resultsTabPage.SuspendLayout();
|
---|
| 72 | this.runsTabPage.SuspendLayout();
|
---|
[4548] | 73 | this.SuspendLayout();
|
---|
| 74 | //
|
---|
| 75 | // nameTextBox
|
---|
| 76 | //
|
---|
| 77 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 78 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[4549] | 79 | this.nameTextBox.Size = new System.Drawing.Size(638, 20);
|
---|
[4548] | 80 | //
|
---|
| 81 | // descriptionTextBox
|
---|
| 82 | //
|
---|
[4549] | 83 | this.descriptionTextBox.Size = new System.Drawing.Size(638, 20);
|
---|
[4548] | 84 | //
|
---|
[4549] | 85 | // algorithmLabel
|
---|
| 86 | //
|
---|
| 87 | this.algorithmLabel.AutoSize = true;
|
---|
| 88 | this.algorithmLabel.Location = new System.Drawing.Point(3, 111);
|
---|
| 89 | this.algorithmLabel.Name = "algorithmLabel";
|
---|
| 90 | this.algorithmLabel.Size = new System.Drawing.Size(53, 13);
|
---|
| 91 | this.algorithmLabel.TabIndex = 5;
|
---|
| 92 | this.algorithmLabel.Text = "&Algorithm:";
|
---|
| 93 | //
|
---|
| 94 | // problemLabel
|
---|
| 95 | //
|
---|
| 96 | this.problemLabel.AutoSize = true;
|
---|
| 97 | this.problemLabel.Location = new System.Drawing.Point(3, 138);
|
---|
| 98 | this.problemLabel.Name = "problemLabel";
|
---|
| 99 | this.problemLabel.Size = new System.Drawing.Size(48, 13);
|
---|
| 100 | this.problemLabel.TabIndex = 7;
|
---|
| 101 | this.problemLabel.Text = "&Problem:";
|
---|
| 102 | //
|
---|
| 103 | // algorithmComboBox
|
---|
| 104 | //
|
---|
| 105 | this.algorithmComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 106 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 107 | this.algorithmComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 108 | this.algorithmComboBox.FormattingEnabled = true;
|
---|
| 109 | this.algorithmComboBox.Location = new System.Drawing.Point(72, 108);
|
---|
| 110 | this.algorithmComboBox.Name = "algorithmComboBox";
|
---|
| 111 | this.algorithmComboBox.Size = new System.Drawing.Size(638, 21);
|
---|
| 112 | this.algorithmComboBox.TabIndex = 6;
|
---|
| 113 | this.algorithmComboBox.SelectedValueChanged += new System.EventHandler(this.algorithmComboBox_SelectedValueChanged);
|
---|
| 114 | //
|
---|
| 115 | // problemComboBox
|
---|
| 116 | //
|
---|
| 117 | this.problemComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 118 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 119 | this.problemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 120 | this.problemComboBox.FormattingEnabled = true;
|
---|
| 121 | this.problemComboBox.Location = new System.Drawing.Point(72, 135);
|
---|
| 122 | this.problemComboBox.Name = "problemComboBox";
|
---|
| 123 | this.problemComboBox.Size = new System.Drawing.Size(638, 21);
|
---|
| 124 | this.problemComboBox.TabIndex = 8;
|
---|
| 125 | this.problemComboBox.SelectedValueChanged += new System.EventHandler(this.problemComboBox_SelectedValueChanged);
|
---|
| 126 | //
|
---|
| 127 | // refreshButton
|
---|
| 128 | //
|
---|
| 129 | this.refreshButton.Location = new System.Drawing.Point(0, 79);
|
---|
| 130 | this.refreshButton.Name = "refreshButton";
|
---|
| 131 | this.refreshButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 132 | this.refreshButton.TabIndex = 4;
|
---|
| 133 | this.refreshButton.Text = "&Refresh";
|
---|
| 134 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 135 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
| 136 | //
|
---|
| 137 | // startButton
|
---|
| 138 | //
|
---|
| 139 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 140 | this.startButton.Location = new System.Drawing.Point(81, 476);
|
---|
| 141 | this.startButton.Name = "startButton";
|
---|
| 142 | this.startButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 143 | this.startButton.TabIndex = 11;
|
---|
| 144 | this.startButton.Text = "Start";
|
---|
| 145 | this.startButton.UseVisualStyleBackColor = true;
|
---|
| 146 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
| 147 | //
|
---|
| 148 | // pauseButton
|
---|
| 149 | //
|
---|
| 150 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 151 | this.pauseButton.Location = new System.Drawing.Point(162, 476);
|
---|
| 152 | this.pauseButton.Name = "pauseButton";
|
---|
| 153 | this.pauseButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 154 | this.pauseButton.TabIndex = 12;
|
---|
| 155 | this.pauseButton.Text = "Pause";
|
---|
| 156 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
| 157 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
| 158 | //
|
---|
| 159 | // stopButton
|
---|
| 160 | //
|
---|
| 161 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 162 | this.stopButton.Location = new System.Drawing.Point(243, 476);
|
---|
| 163 | this.stopButton.Name = "stopButton";
|
---|
| 164 | this.stopButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 165 | this.stopButton.TabIndex = 13;
|
---|
| 166 | this.stopButton.Text = "Stop";
|
---|
| 167 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
| 168 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
| 169 | //
|
---|
| 170 | // prepareButton
|
---|
| 171 | //
|
---|
| 172 | this.prepareButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 173 | this.prepareButton.Location = new System.Drawing.Point(0, 476);
|
---|
| 174 | this.prepareButton.Name = "prepareButton";
|
---|
| 175 | this.prepareButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 176 | this.prepareButton.TabIndex = 10;
|
---|
| 177 | this.prepareButton.Text = "Prepare";
|
---|
| 178 | this.prepareButton.UseVisualStyleBackColor = true;
|
---|
| 179 | this.prepareButton.Click += new System.EventHandler(this.prepareButton_Click);
|
---|
| 180 | //
|
---|
| 181 | // executionTimeLabel
|
---|
| 182 | //
|
---|
| 183 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 184 | this.executionTimeLabel.AutoSize = true;
|
---|
| 185 | this.executionTimeLabel.Location = new System.Drawing.Point(476, 482);
|
---|
| 186 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
| 187 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
| 188 | this.executionTimeLabel.TabIndex = 14;
|
---|
| 189 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
| 190 | //
|
---|
| 191 | // executionTimeTextBox
|
---|
| 192 | //
|
---|
| 193 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 194 | this.executionTimeTextBox.Location = new System.Drawing.Point(565, 479);
|
---|
| 195 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
| 196 | this.executionTimeTextBox.ReadOnly = true;
|
---|
| 197 | this.executionTimeTextBox.Size = new System.Drawing.Size(145, 20);
|
---|
| 198 | this.executionTimeTextBox.TabIndex = 15;
|
---|
| 199 | //
|
---|
| 200 | // tabControl
|
---|
| 201 | //
|
---|
| 202 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 203 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 204 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4558] | 205 | this.tabControl.Controls.Add(this.problemParametersTabPage);
|
---|
| 206 | this.tabControl.Controls.Add(this.algorithmParametersTabPage);
|
---|
[4549] | 207 | this.tabControl.Controls.Add(this.resultsTabPage);
|
---|
| 208 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
| 209 | this.tabControl.Location = new System.Drawing.Point(0, 162);
|
---|
| 210 | this.tabControl.Name = "tabControl";
|
---|
| 211 | this.tabControl.SelectedIndex = 0;
|
---|
| 212 | this.tabControl.Size = new System.Drawing.Size(710, 308);
|
---|
| 213 | this.tabControl.TabIndex = 9;
|
---|
| 214 | //
|
---|
[4558] | 215 | // problemParametersTabPage
|
---|
[4549] | 216 | //
|
---|
[4558] | 217 | this.problemParametersTabPage.Controls.Add(this.problemParametersViewHost);
|
---|
| 218 | this.problemParametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 219 | this.problemParametersTabPage.Name = "problemParametersTabPage";
|
---|
| 220 | this.problemParametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 221 | this.problemParametersTabPage.Size = new System.Drawing.Size(702, 282);
|
---|
| 222 | this.problemParametersTabPage.TabIndex = 0;
|
---|
| 223 | this.problemParametersTabPage.Text = "Problem Parameters";
|
---|
| 224 | this.problemParametersTabPage.UseVisualStyleBackColor = true;
|
---|
[4549] | 225 | //
|
---|
[4558] | 226 | // algorithmParametersTabPage
|
---|
[4549] | 227 | //
|
---|
[4558] | 228 | this.algorithmParametersTabPage.Controls.Add(this.algorithmParametersViewHost);
|
---|
| 229 | this.algorithmParametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 230 | this.algorithmParametersTabPage.Name = "algorithmParametersTabPage";
|
---|
| 231 | this.algorithmParametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 232 | this.algorithmParametersTabPage.Size = new System.Drawing.Size(702, 282);
|
---|
| 233 | this.algorithmParametersTabPage.TabIndex = 1;
|
---|
| 234 | this.algorithmParametersTabPage.Text = "Algorithm Parameters";
|
---|
| 235 | this.algorithmParametersTabPage.UseVisualStyleBackColor = true;
|
---|
[4549] | 236 | //
|
---|
| 237 | // resultsTabPage
|
---|
| 238 | //
|
---|
| 239 | this.resultsTabPage.Controls.Add(this.resultsViewHost);
|
---|
| 240 | this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 241 | this.resultsTabPage.Name = "resultsTabPage";
|
---|
| 242 | this.resultsTabPage.Size = new System.Drawing.Size(702, 282);
|
---|
| 243 | this.resultsTabPage.TabIndex = 2;
|
---|
| 244 | this.resultsTabPage.Text = "Results";
|
---|
| 245 | this.resultsTabPage.UseVisualStyleBackColor = true;
|
---|
| 246 | //
|
---|
| 247 | // runsTabPage
|
---|
| 248 | //
|
---|
| 249 | this.runsTabPage.Controls.Add(this.runsViewHost);
|
---|
| 250 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 251 | this.runsTabPage.Name = "runsTabPage";
|
---|
| 252 | this.runsTabPage.Size = new System.Drawing.Size(702, 282);
|
---|
| 253 | this.runsTabPage.TabIndex = 3;
|
---|
| 254 | this.runsTabPage.Text = "Runs";
|
---|
| 255 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
| 256 | //
|
---|
[4558] | 257 | // problemParametersViewHost
|
---|
[4549] | 258 | //
|
---|
[4558] | 259 | this.problemParametersViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[4549] | 260 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 261 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4558] | 262 | this.problemParametersViewHost.Caption = "View";
|
---|
| 263 | this.problemParametersViewHost.Content = null;
|
---|
| 264 | this.problemParametersViewHost.Location = new System.Drawing.Point(6, 6);
|
---|
| 265 | this.problemParametersViewHost.Name = "problemParametersViewHost";
|
---|
| 266 | this.problemParametersViewHost.ReadOnly = false;
|
---|
| 267 | this.problemParametersViewHost.Size = new System.Drawing.Size(690, 270);
|
---|
| 268 | this.problemParametersViewHost.TabIndex = 0;
|
---|
| 269 | this.problemParametersViewHost.ViewType = null;
|
---|
[4549] | 270 | //
|
---|
[4558] | 271 | // algorithmParametersViewHost
|
---|
[4549] | 272 | //
|
---|
[4558] | 273 | this.algorithmParametersViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[4549] | 274 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 275 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4558] | 276 | this.algorithmParametersViewHost.Caption = "View";
|
---|
| 277 | this.algorithmParametersViewHost.Content = null;
|
---|
| 278 | this.algorithmParametersViewHost.Location = new System.Drawing.Point(6, 6);
|
---|
| 279 | this.algorithmParametersViewHost.Name = "algorithmParametersViewHost";
|
---|
| 280 | this.algorithmParametersViewHost.ReadOnly = false;
|
---|
| 281 | this.algorithmParametersViewHost.Size = new System.Drawing.Size(690, 270);
|
---|
| 282 | this.algorithmParametersViewHost.TabIndex = 1;
|
---|
| 283 | this.algorithmParametersViewHost.ViewType = null;
|
---|
[4549] | 284 | //
|
---|
| 285 | // resultsViewHost
|
---|
| 286 | //
|
---|
| 287 | this.resultsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 288 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 289 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 290 | this.resultsViewHost.Caption = "View";
|
---|
| 291 | this.resultsViewHost.Content = null;
|
---|
| 292 | this.resultsViewHost.Location = new System.Drawing.Point(6, 6);
|
---|
| 293 | this.resultsViewHost.Name = "resultsViewHost";
|
---|
| 294 | this.resultsViewHost.ReadOnly = false;
|
---|
| 295 | this.resultsViewHost.Size = new System.Drawing.Size(690, 270);
|
---|
| 296 | this.resultsViewHost.TabIndex = 1;
|
---|
| 297 | this.resultsViewHost.ViewType = null;
|
---|
| 298 | //
|
---|
| 299 | // runsViewHost
|
---|
| 300 | //
|
---|
| 301 | this.runsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 302 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 303 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 304 | this.runsViewHost.Caption = "View";
|
---|
| 305 | this.runsViewHost.Content = null;
|
---|
| 306 | this.runsViewHost.Location = new System.Drawing.Point(6, 6);
|
---|
| 307 | this.runsViewHost.Name = "runsViewHost";
|
---|
| 308 | this.runsViewHost.ReadOnly = false;
|
---|
| 309 | this.runsViewHost.Size = new System.Drawing.Size(690, 270);
|
---|
| 310 | this.runsViewHost.TabIndex = 1;
|
---|
| 311 | this.runsViewHost.ViewType = null;
|
---|
| 312 | //
|
---|
[4548] | 313 | // OKBExperimentView
|
---|
| 314 | //
|
---|
| 315 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 316 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[4549] | 317 | this.Controls.Add(this.algorithmComboBox);
|
---|
| 318 | this.Controls.Add(this.problemComboBox);
|
---|
| 319 | this.Controls.Add(this.algorithmLabel);
|
---|
| 320 | this.Controls.Add(this.problemLabel);
|
---|
| 321 | this.Controls.Add(this.tabControl);
|
---|
| 322 | this.Controls.Add(this.refreshButton);
|
---|
| 323 | this.Controls.Add(this.prepareButton);
|
---|
| 324 | this.Controls.Add(this.startButton);
|
---|
| 325 | this.Controls.Add(this.executionTimeTextBox);
|
---|
| 326 | this.Controls.Add(this.pauseButton);
|
---|
| 327 | this.Controls.Add(this.stopButton);
|
---|
| 328 | this.Controls.Add(this.executionTimeLabel);
|
---|
[4548] | 329 | this.Name = "OKBExperimentView";
|
---|
[4549] | 330 | this.Size = new System.Drawing.Size(710, 499);
|
---|
| 331 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
| 332 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
| 333 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
| 334 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
| 335 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
| 336 | this.Controls.SetChildIndex(this.prepareButton, 0);
|
---|
| 337 | this.Controls.SetChildIndex(this.refreshButton, 0);
|
---|
| 338 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
| 339 | this.Controls.SetChildIndex(this.problemLabel, 0);
|
---|
| 340 | this.Controls.SetChildIndex(this.algorithmLabel, 0);
|
---|
| 341 | this.Controls.SetChildIndex(this.problemComboBox, 0);
|
---|
| 342 | this.Controls.SetChildIndex(this.algorithmComboBox, 0);
|
---|
| 343 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 344 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 345 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 346 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
[4548] | 347 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
[4549] | 348 | this.tabControl.ResumeLayout(false);
|
---|
[4558] | 349 | this.problemParametersTabPage.ResumeLayout(false);
|
---|
| 350 | this.algorithmParametersTabPage.ResumeLayout(false);
|
---|
[4549] | 351 | this.resultsTabPage.ResumeLayout(false);
|
---|
| 352 | this.runsTabPage.ResumeLayout(false);
|
---|
[4548] | 353 | this.ResumeLayout(false);
|
---|
| 354 | this.PerformLayout();
|
---|
| 355 |
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | #endregion
|
---|
| 359 |
|
---|
[4549] | 360 | private System.Windows.Forms.Label algorithmLabel;
|
---|
| 361 | private System.Windows.Forms.Label problemLabel;
|
---|
| 362 | private System.Windows.Forms.ComboBox algorithmComboBox;
|
---|
| 363 | private System.Windows.Forms.ComboBox problemComboBox;
|
---|
| 364 | private System.Windows.Forms.Button refreshButton;
|
---|
| 365 | private System.Windows.Forms.Button startButton;
|
---|
| 366 | private System.Windows.Forms.Button pauseButton;
|
---|
| 367 | private System.Windows.Forms.Button stopButton;
|
---|
| 368 | private System.Windows.Forms.Button prepareButton;
|
---|
| 369 | private System.Windows.Forms.Label executionTimeLabel;
|
---|
| 370 | private System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
| 371 | private System.Windows.Forms.TabControl tabControl;
|
---|
[4558] | 372 | private System.Windows.Forms.TabPage problemParametersTabPage;
|
---|
| 373 | private System.Windows.Forms.TabPage algorithmParametersTabPage;
|
---|
| 374 | private MainForm.WindowsForms.ViewHost problemParametersViewHost;
|
---|
| 375 | private MainForm.WindowsForms.ViewHost algorithmParametersViewHost;
|
---|
[4549] | 376 | private System.Windows.Forms.TabPage resultsTabPage;
|
---|
| 377 | private MainForm.WindowsForms.ViewHost resultsViewHost;
|
---|
| 378 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
| 379 | private MainForm.WindowsForms.ViewHost runsViewHost;
|
---|
[4548] | 380 |
|
---|
| 381 |
|
---|
| 382 |
|
---|
[4549] | 383 |
|
---|
[4548] | 384 | }
|
---|
| 385 | }
|
---|