[3226] | 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.Optimization.Views {
|
---|
| 23 | partial class BatchRunView {
|
---|
| 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 (algorithmTypeSelectorDialog != null) algorithmTypeSelectorDialog.Dispose();
|
---|
| 36 | if (components != null) components.Dispose();
|
---|
| 37 | }
|
---|
| 38 | base.Dispose(disposing);
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | #region Component Designer generated code
|
---|
| 42 |
|
---|
| 43 | /// <summary>
|
---|
| 44 | /// Required method for Designer support - do not modify
|
---|
| 45 | /// the contents of this method with the code editor.
|
---|
| 46 | /// </summary>
|
---|
| 47 | private void InitializeComponent() {
|
---|
| 48 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 49 | this.algorithmTabPage = new System.Windows.Forms.TabPage();
|
---|
[3299] | 50 | this.algorithmPanel = new System.Windows.Forms.Panel();
|
---|
| 51 | this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[3226] | 52 | this.openAlgorithmButton = new System.Windows.Forms.Button();
|
---|
| 53 | this.newAlgorithmButton = new System.Windows.Forms.Button();
|
---|
[3260] | 54 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
[3265] | 55 | this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
[3226] | 56 | this.startButton = new System.Windows.Forms.Button();
|
---|
| 57 | this.stopButton = new System.Windows.Forms.Button();
|
---|
| 58 | this.resetButton = new System.Windows.Forms.Button();
|
---|
| 59 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
| 60 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 61 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
| 62 | this.repetitionsLabel = new System.Windows.Forms.Label();
|
---|
| 63 | this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
[3265] | 64 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
[3226] | 65 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 66 | this.tabControl.SuspendLayout();
|
---|
| 67 | this.algorithmTabPage.SuspendLayout();
|
---|
[3299] | 68 | this.algorithmPanel.SuspendLayout();
|
---|
[3260] | 69 | this.runsTabPage.SuspendLayout();
|
---|
[3226] | 70 | ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
|
---|
| 71 | this.SuspendLayout();
|
---|
| 72 | //
|
---|
| 73 | // nameTextBox
|
---|
| 74 | //
|
---|
| 75 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 76 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 77 | this.nameTextBox.Size = new System.Drawing.Size(607, 20);
|
---|
| 78 | //
|
---|
| 79 | // descriptionTextBox
|
---|
| 80 | //
|
---|
| 81 | this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
|
---|
| 82 | //
|
---|
| 83 | // tabControl
|
---|
| 84 | //
|
---|
| 85 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 86 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 87 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 88 | this.tabControl.Controls.Add(this.algorithmTabPage);
|
---|
[3260] | 89 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
[3226] | 90 | this.tabControl.Location = new System.Drawing.Point(0, 78);
|
---|
| 91 | this.tabControl.Name = "tabControl";
|
---|
| 92 | this.tabControl.SelectedIndex = 0;
|
---|
| 93 | this.tabControl.Size = new System.Drawing.Size(679, 374);
|
---|
| 94 | this.tabControl.TabIndex = 6;
|
---|
| 95 | //
|
---|
| 96 | // algorithmTabPage
|
---|
| 97 | //
|
---|
[3299] | 98 | this.algorithmTabPage.Controls.Add(this.algorithmPanel);
|
---|
[3226] | 99 | this.algorithmTabPage.Controls.Add(this.openAlgorithmButton);
|
---|
| 100 | this.algorithmTabPage.Controls.Add(this.newAlgorithmButton);
|
---|
| 101 | this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 102 | this.algorithmTabPage.Name = "algorithmTabPage";
|
---|
| 103 | this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 104 | this.algorithmTabPage.Size = new System.Drawing.Size(671, 348);
|
---|
| 105 | this.algorithmTabPage.TabIndex = 1;
|
---|
| 106 | this.algorithmTabPage.Text = "Algorithm";
|
---|
| 107 | this.algorithmTabPage.UseVisualStyleBackColor = true;
|
---|
| 108 | //
|
---|
[3299] | 109 | // algorithmPanel
|
---|
| 110 | //
|
---|
| 111 | this.algorithmPanel.AllowDrop = true;
|
---|
| 112 | this.algorithmPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 113 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 114 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 115 | this.algorithmPanel.Controls.Add(this.algorithmViewHost);
|
---|
| 116 | this.algorithmPanel.Location = new System.Drawing.Point(6, 36);
|
---|
| 117 | this.algorithmPanel.Name = "algorithmPanel";
|
---|
| 118 | this.algorithmPanel.Size = new System.Drawing.Size(659, 306);
|
---|
| 119 | this.algorithmPanel.TabIndex = 3;
|
---|
| 120 | this.algorithmPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
|
---|
| 121 | this.algorithmPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragDrop);
|
---|
| 122 | this.algorithmPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.algorithmPanel_DragEnterOver);
|
---|
| 123 | //
|
---|
| 124 | // algorithmViewHost
|
---|
| 125 | //
|
---|
| 126 | this.algorithmViewHost.Content = null;
|
---|
| 127 | this.algorithmViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 128 | this.algorithmViewHost.Location = new System.Drawing.Point(0, 0);
|
---|
| 129 | this.algorithmViewHost.Name = "algorithmViewHost";
|
---|
| 130 | this.algorithmViewHost.Size = new System.Drawing.Size(659, 306);
|
---|
| 131 | this.algorithmViewHost.TabIndex = 0;
|
---|
| 132 | this.algorithmViewHost.ViewType = null;
|
---|
| 133 | //
|
---|
[3226] | 134 | // openAlgorithmButton
|
---|
| 135 | //
|
---|
| 136 | this.openAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Open;
|
---|
| 137 | this.openAlgorithmButton.Location = new System.Drawing.Point(36, 6);
|
---|
| 138 | this.openAlgorithmButton.Name = "openAlgorithmButton";
|
---|
| 139 | this.openAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 140 | this.openAlgorithmButton.TabIndex = 1;
|
---|
| 141 | this.toolTip.SetToolTip(this.openAlgorithmButton, "Open Problem");
|
---|
| 142 | this.openAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
| 143 | this.openAlgorithmButton.Click += new System.EventHandler(this.openAlgorithmButton_Click);
|
---|
| 144 | //
|
---|
| 145 | // newAlgorithmButton
|
---|
| 146 | //
|
---|
| 147 | this.newAlgorithmButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.NewDocument;
|
---|
| 148 | this.newAlgorithmButton.Location = new System.Drawing.Point(6, 6);
|
---|
| 149 | this.newAlgorithmButton.Name = "newAlgorithmButton";
|
---|
| 150 | this.newAlgorithmButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 151 | this.newAlgorithmButton.TabIndex = 0;
|
---|
| 152 | this.toolTip.SetToolTip(this.newAlgorithmButton, "New Problem");
|
---|
| 153 | this.newAlgorithmButton.UseVisualStyleBackColor = true;
|
---|
| 154 | this.newAlgorithmButton.Click += new System.EventHandler(this.newAlgorithmButton_Click);
|
---|
| 155 | //
|
---|
[3260] | 156 | // runsTabPage
|
---|
[3226] | 157 | //
|
---|
[3260] | 158 | this.runsTabPage.Controls.Add(this.runsView);
|
---|
| 159 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 160 | this.runsTabPage.Name = "runsTabPage";
|
---|
| 161 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 162 | this.runsTabPage.Size = new System.Drawing.Size(671, 348);
|
---|
| 163 | this.runsTabPage.TabIndex = 2;
|
---|
| 164 | this.runsTabPage.Text = "Runs";
|
---|
| 165 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
[3226] | 166 | //
|
---|
[3265] | 167 | // runsView
|
---|
| 168 | //
|
---|
| 169 | this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 170 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 171 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 172 | this.runsView.Caption = "RunCollection";
|
---|
| 173 | this.runsView.Content = null;
|
---|
| 174 | this.runsView.Location = new System.Drawing.Point(6, 6);
|
---|
| 175 | this.runsView.Name = "runsView";
|
---|
| 176 | this.runsView.Size = new System.Drawing.Size(659, 336);
|
---|
| 177 | this.runsView.TabIndex = 0;
|
---|
| 178 | //
|
---|
[3226] | 179 | // startButton
|
---|
| 180 | //
|
---|
| 181 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 182 | this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
|
---|
| 183 | this.startButton.Location = new System.Drawing.Point(0, 458);
|
---|
| 184 | this.startButton.Name = "startButton";
|
---|
| 185 | this.startButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 186 | this.startButton.TabIndex = 7;
|
---|
[3261] | 187 | this.toolTip.SetToolTip(this.startButton, "Start/Resume Batch Run");
|
---|
[3226] | 188 | this.startButton.UseVisualStyleBackColor = true;
|
---|
| 189 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
| 190 | //
|
---|
| 191 | // stopButton
|
---|
| 192 | //
|
---|
| 193 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[3265] | 194 | this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
|
---|
| 195 | this.stopButton.Location = new System.Drawing.Point(60, 458);
|
---|
[3226] | 196 | this.stopButton.Name = "stopButton";
|
---|
| 197 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
[3265] | 198 | this.stopButton.TabIndex = 9;
|
---|
| 199 | this.toolTip.SetToolTip(this.stopButton, "Stop Batch Run");
|
---|
[3226] | 200 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
| 201 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
| 202 | //
|
---|
| 203 | // resetButton
|
---|
| 204 | //
|
---|
| 205 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 206 | this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
|
---|
[3265] | 207 | this.resetButton.Location = new System.Drawing.Point(90, 458);
|
---|
[3226] | 208 | this.resetButton.Name = "resetButton";
|
---|
| 209 | this.resetButton.Size = new System.Drawing.Size(24, 24);
|
---|
[3265] | 210 | this.resetButton.TabIndex = 10;
|
---|
[3261] | 211 | this.toolTip.SetToolTip(this.resetButton, "Reset Batch Run");
|
---|
[3226] | 212 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
| 213 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
| 214 | //
|
---|
| 215 | // executionTimeLabel
|
---|
| 216 | //
|
---|
| 217 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 218 | this.executionTimeLabel.AutoSize = true;
|
---|
| 219 | this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
|
---|
| 220 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
| 221 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
[3265] | 222 | this.executionTimeLabel.TabIndex = 11;
|
---|
[3226] | 223 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
| 224 | //
|
---|
| 225 | // executionTimeTextBox
|
---|
| 226 | //
|
---|
| 227 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 228 | this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
|
---|
| 229 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
| 230 | this.executionTimeTextBox.ReadOnly = true;
|
---|
| 231 | this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
[3265] | 232 | this.executionTimeTextBox.TabIndex = 12;
|
---|
[3226] | 233 | //
|
---|
| 234 | // openFileDialog
|
---|
| 235 | //
|
---|
| 236 | this.openFileDialog.DefaultExt = "hl";
|
---|
| 237 | this.openFileDialog.FileName = "Algorithm";
|
---|
| 238 | this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
|
---|
| 239 | this.openFileDialog.Title = "Open Algorithm";
|
---|
| 240 | //
|
---|
| 241 | // repetitionsLabel
|
---|
| 242 | //
|
---|
| 243 | this.repetitionsLabel.AutoSize = true;
|
---|
| 244 | this.repetitionsLabel.Location = new System.Drawing.Point(3, 54);
|
---|
| 245 | this.repetitionsLabel.Name = "repetitionsLabel";
|
---|
| 246 | this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
|
---|
| 247 | this.repetitionsLabel.TabIndex = 4;
|
---|
| 248 | this.repetitionsLabel.Text = "&Repetitions:";
|
---|
| 249 | //
|
---|
| 250 | // repetitionsNumericUpDown
|
---|
| 251 | //
|
---|
| 252 | this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 253 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 254 | this.repetitionsNumericUpDown.Location = new System.Drawing.Point(72, 52);
|
---|
| 255 | this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
|
---|
| 256 | 1000000,
|
---|
| 257 | 0,
|
---|
| 258 | 0,
|
---|
| 259 | 0});
|
---|
| 260 | this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
|
---|
| 261 | 1,
|
---|
| 262 | 0,
|
---|
| 263 | 0,
|
---|
| 264 | 0});
|
---|
| 265 | this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
|
---|
| 266 | this.repetitionsNumericUpDown.Size = new System.Drawing.Size(607, 20);
|
---|
| 267 | this.repetitionsNumericUpDown.TabIndex = 5;
|
---|
| 268 | this.repetitionsNumericUpDown.ThousandsSeparator = true;
|
---|
| 269 | this.repetitionsNumericUpDown.Value = new decimal(new int[] {
|
---|
| 270 | 1,
|
---|
| 271 | 0,
|
---|
| 272 | 0,
|
---|
| 273 | 0});
|
---|
| 274 | this.repetitionsNumericUpDown.ValueChanged += new System.EventHandler(this.repetitionsNumericUpDown_ValueChanged);
|
---|
[3299] | 275 | this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
|
---|
[3226] | 276 | //
|
---|
[3265] | 277 | // pauseButton
|
---|
[3226] | 278 | //
|
---|
[3265] | 279 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
| 280 | this.pauseButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
|
---|
| 281 | this.pauseButton.Location = new System.Drawing.Point(30, 458);
|
---|
| 282 | this.pauseButton.Name = "pauseButton";
|
---|
| 283 | this.pauseButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 284 | this.pauseButton.TabIndex = 8;
|
---|
| 285 | this.toolTip.SetToolTip(this.pauseButton, "Pause Batch Run");
|
---|
| 286 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
| 287 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
[3226] | 288 | //
|
---|
| 289 | // BatchRunView
|
---|
| 290 | //
|
---|
| 291 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 292 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 293 | this.Controls.Add(this.tabControl);
|
---|
| 294 | this.Controls.Add(this.startButton);
|
---|
| 295 | this.Controls.Add(this.executionTimeTextBox);
|
---|
| 296 | this.Controls.Add(this.executionTimeLabel);
|
---|
| 297 | this.Controls.Add(this.repetitionsNumericUpDown);
|
---|
| 298 | this.Controls.Add(this.repetitionsLabel);
|
---|
[3265] | 299 | this.Controls.Add(this.pauseButton);
|
---|
| 300 | this.Controls.Add(this.stopButton);
|
---|
| 301 | this.Controls.Add(this.resetButton);
|
---|
[3226] | 302 | this.Name = "BatchRunView";
|
---|
| 303 | this.Size = new System.Drawing.Size(679, 482);
|
---|
[3265] | 304 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
| 305 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
| 306 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
[3226] | 307 | this.Controls.SetChildIndex(this.repetitionsLabel, 0);
|
---|
| 308 | this.Controls.SetChildIndex(this.repetitionsNumericUpDown, 0);
|
---|
| 309 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
| 310 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
| 311 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
| 312 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
| 313 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 314 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 315 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 316 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 317 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 318 | this.tabControl.ResumeLayout(false);
|
---|
| 319 | this.algorithmTabPage.ResumeLayout(false);
|
---|
[3299] | 320 | this.algorithmPanel.ResumeLayout(false);
|
---|
[3260] | 321 | this.runsTabPage.ResumeLayout(false);
|
---|
[3226] | 322 | ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
|
---|
| 323 | this.ResumeLayout(false);
|
---|
| 324 | this.PerformLayout();
|
---|
| 325 |
|
---|
| 326 | }
|
---|
| 327 | #endregion
|
---|
| 328 |
|
---|
| 329 | private System.Windows.Forms.TabControl tabControl;
|
---|
| 330 | private System.Windows.Forms.TabPage algorithmTabPage;
|
---|
[3281] | 331 | private HeuristicLab.MainForm.WindowsForms.ViewHost algorithmViewHost;
|
---|
[3226] | 332 | private System.Windows.Forms.Button newAlgorithmButton;
|
---|
| 333 | private System.Windows.Forms.Button openAlgorithmButton;
|
---|
| 334 | private System.Windows.Forms.Button startButton;
|
---|
| 335 | private System.Windows.Forms.Button stopButton;
|
---|
| 336 | private System.Windows.Forms.Button resetButton;
|
---|
| 337 | private System.Windows.Forms.Label executionTimeLabel;
|
---|
| 338 | private System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
| 339 | private System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
[3260] | 340 | private System.Windows.Forms.TabPage runsTabPage;
|
---|
[3226] | 341 | private System.Windows.Forms.Label repetitionsLabel;
|
---|
| 342 | private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
|
---|
[3260] | 343 | private RunCollectionView runsView;
|
---|
[3265] | 344 | private System.Windows.Forms.Button pauseButton;
|
---|
[3299] | 345 | private System.Windows.Forms.Panel algorithmPanel;
|
---|
[3226] | 346 |
|
---|
| 347 | }
|
---|
| 348 | }
|
---|