[2851] | 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 AlgorithmView {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | #region Component Designer generated code
|
---|
| 30 |
|
---|
| 31 | /// <summary>
|
---|
| 32 | /// Required method for Designer support - do not modify
|
---|
| 33 | /// the contents of this method with the code editor.
|
---|
| 34 | /// </summary>
|
---|
| 35 | private void InitializeComponent() {
|
---|
| 36 | this.tabControl = new System.Windows.Forms.TabControl();
|
---|
| 37 | this.problemTabPage = new System.Windows.Forms.TabPage();
|
---|
[3299] | 38 | this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[2851] | 39 | this.openProblemButton = new System.Windows.Forms.Button();
|
---|
| 40 | this.newProblemButton = new System.Windows.Forms.Button();
|
---|
[4102] | 41 | this.parametersTabPage = new System.Windows.Forms.TabPage();
|
---|
| 42 | this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
[2882] | 43 | this.resultsTabPage = new System.Windows.Forms.TabPage();
|
---|
[3226] | 44 | this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView();
|
---|
[3299] | 45 | this.runsTabPage = new System.Windows.Forms.TabPage();
|
---|
| 46 | this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
|
---|
[2851] | 47 | this.startButton = new System.Windows.Forms.Button();
|
---|
[3262] | 48 | this.pauseButton = new System.Windows.Forms.Button();
|
---|
[2851] | 49 | this.resetButton = new System.Windows.Forms.Button();
|
---|
| 50 | this.executionTimeLabel = new System.Windows.Forms.Label();
|
---|
| 51 | this.executionTimeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 52 | this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
|
---|
[3262] | 53 | this.stopButton = new System.Windows.Forms.Button();
|
---|
[4102] | 54 | this.storeAlgorithmInEachRunCheckBox = new System.Windows.Forms.CheckBox();
|
---|
[2851] | 55 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 56 | this.tabControl.SuspendLayout();
|
---|
[4102] | 57 | this.problemTabPage.SuspendLayout();
|
---|
[2851] | 58 | this.parametersTabPage.SuspendLayout();
|
---|
[2882] | 59 | this.resultsTabPage.SuspendLayout();
|
---|
[3275] | 60 | this.runsTabPage.SuspendLayout();
|
---|
[2851] | 61 | this.SuspendLayout();
|
---|
| 62 | //
|
---|
| 63 | // nameTextBox
|
---|
| 64 | //
|
---|
| 65 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 66 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
[2882] | 67 | this.nameTextBox.Size = new System.Drawing.Size(607, 20);
|
---|
[2851] | 68 | //
|
---|
| 69 | // descriptionTextBox
|
---|
| 70 | //
|
---|
[2917] | 71 | this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
|
---|
[2851] | 72 | //
|
---|
| 73 | // tabControl
|
---|
| 74 | //
|
---|
| 75 | this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 76 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 77 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[3505] | 78 | this.tabControl.Controls.Add(this.problemTabPage);
|
---|
[2851] | 79 | this.tabControl.Controls.Add(this.parametersTabPage);
|
---|
[2882] | 80 | this.tabControl.Controls.Add(this.resultsTabPage);
|
---|
[3275] | 81 | this.tabControl.Controls.Add(this.runsTabPage);
|
---|
[2917] | 82 | this.tabControl.Location = new System.Drawing.Point(0, 52);
|
---|
[2851] | 83 | this.tabControl.Name = "tabControl";
|
---|
| 84 | this.tabControl.SelectedIndex = 0;
|
---|
[2917] | 85 | this.tabControl.Size = new System.Drawing.Size(679, 400);
|
---|
[2851] | 86 | this.tabControl.TabIndex = 4;
|
---|
| 87 | //
|
---|
| 88 | // problemTabPage
|
---|
| 89 | //
|
---|
[4011] | 90 | this.problemTabPage.Controls.Add(this.problemViewHost);
|
---|
[2851] | 91 | this.problemTabPage.Controls.Add(this.openProblemButton);
|
---|
| 92 | this.problemTabPage.Controls.Add(this.newProblemButton);
|
---|
[4522] | 93 | this.problemTabPage.AllowDrop = true;
|
---|
[2851] | 94 | this.problemTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 95 | this.problemTabPage.Name = "problemTabPage";
|
---|
| 96 | this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[2917] | 97 | this.problemTabPage.Size = new System.Drawing.Size(671, 374);
|
---|
[3505] | 98 | this.problemTabPage.TabIndex = 0;
|
---|
[2851] | 99 | this.problemTabPage.Text = "Problem";
|
---|
| 100 | this.problemTabPage.UseVisualStyleBackColor = true;
|
---|
[4522] | 101 | this.problemTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragDrop);
|
---|
| 102 | this.problemTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
|
---|
| 103 | this.problemTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
|
---|
[2851] | 104 | //
|
---|
[4011] | 105 | // problemViewHost
|
---|
[3299] | 106 | //
|
---|
[4011] | 107 | this.problemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
[3299] | 108 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 109 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4102] | 110 | this.problemViewHost.Caption = "View";
|
---|
| 111 | this.problemViewHost.Content = null;
|
---|
[4011] | 112 | this.problemViewHost.Location = new System.Drawing.Point(6, 36);
|
---|
[3299] | 113 | this.problemViewHost.Name = "problemViewHost";
|
---|
[4102] | 114 | this.problemViewHost.ReadOnly = false;
|
---|
[3299] | 115 | this.problemViewHost.Size = new System.Drawing.Size(659, 332);
|
---|
[4011] | 116 | this.problemViewHost.TabIndex = 3;
|
---|
[3299] | 117 | this.problemViewHost.ViewType = null;
|
---|
| 118 | //
|
---|
[2851] | 119 | // openProblemButton
|
---|
| 120 | //
|
---|
[5287] | 121 | this.openProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
|
---|
[2851] | 122 | this.openProblemButton.Location = new System.Drawing.Point(36, 6);
|
---|
| 123 | this.openProblemButton.Name = "openProblemButton";
|
---|
| 124 | this.openProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 125 | this.openProblemButton.TabIndex = 1;
|
---|
[2882] | 126 | this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
|
---|
[2851] | 127 | this.openProblemButton.UseVisualStyleBackColor = true;
|
---|
| 128 | this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
|
---|
| 129 | //
|
---|
| 130 | // newProblemButton
|
---|
| 131 | //
|
---|
[5287] | 132 | this.newProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.NewDocument;
|
---|
[2851] | 133 | this.newProblemButton.Location = new System.Drawing.Point(6, 6);
|
---|
| 134 | this.newProblemButton.Name = "newProblemButton";
|
---|
| 135 | this.newProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 136 | this.newProblemButton.TabIndex = 0;
|
---|
[2882] | 137 | this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
|
---|
[2851] | 138 | this.newProblemButton.UseVisualStyleBackColor = true;
|
---|
| 139 | this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
|
---|
| 140 | //
|
---|
[4102] | 141 | // parametersTabPage
|
---|
| 142 | //
|
---|
| 143 | this.parametersTabPage.Controls.Add(this.parameterCollectionView);
|
---|
| 144 | this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 145 | this.parametersTabPage.Name = "parametersTabPage";
|
---|
| 146 | this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 147 | this.parametersTabPage.Size = new System.Drawing.Size(671, 374);
|
---|
| 148 | this.parametersTabPage.TabIndex = 1;
|
---|
| 149 | this.parametersTabPage.Text = "Parameters";
|
---|
| 150 | this.parametersTabPage.UseVisualStyleBackColor = true;
|
---|
| 151 | //
|
---|
| 152 | // parameterCollectionView
|
---|
| 153 | //
|
---|
| 154 | this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 155 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 156 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 157 | this.parameterCollectionView.Caption = "ParameterCollection View";
|
---|
| 158 | this.parameterCollectionView.Content = null;
|
---|
| 159 | this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
|
---|
| 160 | this.parameterCollectionView.Name = "parameterCollectionView";
|
---|
| 161 | this.parameterCollectionView.ReadOnly = false;
|
---|
| 162 | this.parameterCollectionView.Size = new System.Drawing.Size(659, 362);
|
---|
| 163 | this.parameterCollectionView.TabIndex = 0;
|
---|
| 164 | //
|
---|
[2882] | 165 | // resultsTabPage
|
---|
| 166 | //
|
---|
| 167 | this.resultsTabPage.Controls.Add(this.resultsView);
|
---|
| 168 | this.resultsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 169 | this.resultsTabPage.Name = "resultsTabPage";
|
---|
| 170 | this.resultsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
[2917] | 171 | this.resultsTabPage.Size = new System.Drawing.Size(671, 374);
|
---|
[2882] | 172 | this.resultsTabPage.TabIndex = 2;
|
---|
| 173 | this.resultsTabPage.Text = "Results";
|
---|
| 174 | this.resultsTabPage.UseVisualStyleBackColor = true;
|
---|
| 175 | //
|
---|
| 176 | // resultsView
|
---|
| 177 | //
|
---|
| 178 | this.resultsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 179 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 180 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4102] | 181 | this.resultsView.Caption = "ResultCollection View";
|
---|
[2882] | 182 | this.resultsView.Content = null;
|
---|
| 183 | this.resultsView.Location = new System.Drawing.Point(6, 6);
|
---|
| 184 | this.resultsView.Name = "resultsView";
|
---|
[4102] | 185 | this.resultsView.ReadOnly = true;
|
---|
[2917] | 186 | this.resultsView.Size = new System.Drawing.Size(659, 362);
|
---|
[2882] | 187 | this.resultsView.TabIndex = 0;
|
---|
| 188 | //
|
---|
[3299] | 189 | // runsTabPage
|
---|
| 190 | //
|
---|
[4102] | 191 | this.runsTabPage.Controls.Add(this.storeAlgorithmInEachRunCheckBox);
|
---|
[3299] | 192 | this.runsTabPage.Controls.Add(this.runsView);
|
---|
| 193 | this.runsTabPage.Location = new System.Drawing.Point(4, 22);
|
---|
| 194 | this.runsTabPage.Name = "runsTabPage";
|
---|
| 195 | this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 196 | this.runsTabPage.Size = new System.Drawing.Size(671, 374);
|
---|
| 197 | this.runsTabPage.TabIndex = 3;
|
---|
| 198 | this.runsTabPage.Text = "Runs";
|
---|
| 199 | this.runsTabPage.UseVisualStyleBackColor = true;
|
---|
| 200 | //
|
---|
| 201 | // runsView
|
---|
| 202 | //
|
---|
| 203 | this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 204 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 205 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4102] | 206 | this.runsView.Caption = "RunCollection View";
|
---|
[3299] | 207 | this.runsView.Content = null;
|
---|
| 208 | this.runsView.Location = new System.Drawing.Point(6, 6);
|
---|
| 209 | this.runsView.Name = "runsView";
|
---|
[4102] | 210 | this.runsView.ReadOnly = false;
|
---|
[3299] | 211 | this.runsView.Size = new System.Drawing.Size(659, 362);
|
---|
| 212 | this.runsView.TabIndex = 0;
|
---|
| 213 | //
|
---|
[2851] | 214 | // startButton
|
---|
| 215 | //
|
---|
| 216 | this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 217 | this.startButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
|
---|
[2882] | 218 | this.startButton.Location = new System.Drawing.Point(0, 458);
|
---|
[2851] | 219 | this.startButton.Name = "startButton";
|
---|
| 220 | this.startButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 221 | this.startButton.TabIndex = 5;
|
---|
[3225] | 222 | this.toolTip.SetToolTip(this.startButton, "Start/Resume Algorithm");
|
---|
[2851] | 223 | this.startButton.UseVisualStyleBackColor = true;
|
---|
| 224 | this.startButton.Click += new System.EventHandler(this.startButton_Click);
|
---|
| 225 | //
|
---|
[3262] | 226 | // pauseButton
|
---|
[2851] | 227 | //
|
---|
[3262] | 228 | this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 229 | this.pauseButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Pause;
|
---|
[3262] | 230 | this.pauseButton.Location = new System.Drawing.Point(30, 458);
|
---|
| 231 | this.pauseButton.Name = "pauseButton";
|
---|
| 232 | this.pauseButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 233 | this.pauseButton.TabIndex = 6;
|
---|
| 234 | this.toolTip.SetToolTip(this.pauseButton, "Pause Algorithm");
|
---|
| 235 | this.pauseButton.UseVisualStyleBackColor = true;
|
---|
| 236 | this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
|
---|
[2851] | 237 | //
|
---|
| 238 | // resetButton
|
---|
| 239 | //
|
---|
| 240 | this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 241 | this.resetButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Restart;
|
---|
[3262] | 242 | this.resetButton.Location = new System.Drawing.Point(90, 458);
|
---|
[2851] | 243 | this.resetButton.Name = "resetButton";
|
---|
| 244 | this.resetButton.Size = new System.Drawing.Size(24, 24);
|
---|
[3262] | 245 | this.resetButton.TabIndex = 8;
|
---|
[2882] | 246 | this.toolTip.SetToolTip(this.resetButton, "Reset Algorithm");
|
---|
[2851] | 247 | this.resetButton.UseVisualStyleBackColor = true;
|
---|
| 248 | this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
|
---|
| 249 | //
|
---|
| 250 | // executionTimeLabel
|
---|
| 251 | //
|
---|
| 252 | this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 253 | this.executionTimeLabel.AutoSize = true;
|
---|
[2882] | 254 | this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
|
---|
[2851] | 255 | this.executionTimeLabel.Name = "executionTimeLabel";
|
---|
| 256 | this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
|
---|
[3262] | 257 | this.executionTimeLabel.TabIndex = 9;
|
---|
[2851] | 258 | this.executionTimeLabel.Text = "&Execution Time:";
|
---|
| 259 | //
|
---|
| 260 | // executionTimeTextBox
|
---|
| 261 | //
|
---|
| 262 | this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[2882] | 263 | this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
|
---|
[2851] | 264 | this.executionTimeTextBox.Name = "executionTimeTextBox";
|
---|
| 265 | this.executionTimeTextBox.ReadOnly = true;
|
---|
| 266 | this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
|
---|
[3262] | 267 | this.executionTimeTextBox.TabIndex = 10;
|
---|
[2851] | 268 | //
|
---|
| 269 | // openFileDialog
|
---|
| 270 | //
|
---|
| 271 | this.openFileDialog.DefaultExt = "hl";
|
---|
| 272 | this.openFileDialog.FileName = "Problem";
|
---|
| 273 | this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
|
---|
| 274 | this.openFileDialog.Title = "Open Problem";
|
---|
| 275 | //
|
---|
[3262] | 276 | // stopButton
|
---|
| 277 | //
|
---|
| 278 | this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
[5287] | 279 | this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
|
---|
[3262] | 280 | this.stopButton.Location = new System.Drawing.Point(60, 458);
|
---|
| 281 | this.stopButton.Name = "stopButton";
|
---|
| 282 | this.stopButton.Size = new System.Drawing.Size(24, 24);
|
---|
| 283 | this.stopButton.TabIndex = 7;
|
---|
| 284 | this.toolTip.SetToolTip(this.stopButton, "Stop Algorithm");
|
---|
| 285 | this.stopButton.UseVisualStyleBackColor = true;
|
---|
| 286 | this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
|
---|
| 287 | //
|
---|
[4102] | 288 | // storeAlgorithmInEachRunCheckBox
|
---|
| 289 | //
|
---|
| 290 | this.storeAlgorithmInEachRunCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 291 | this.storeAlgorithmInEachRunCheckBox.AutoSize = true;
|
---|
| 292 | this.storeAlgorithmInEachRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 293 | this.storeAlgorithmInEachRunCheckBox.Checked = true;
|
---|
| 294 | this.storeAlgorithmInEachRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 295 | this.storeAlgorithmInEachRunCheckBox.Location = new System.Drawing.Point(503, 6);
|
---|
| 296 | this.storeAlgorithmInEachRunCheckBox.Name = "storeAlgorithmInEachRunCheckBox";
|
---|
| 297 | this.storeAlgorithmInEachRunCheckBox.Size = new System.Drawing.Size(161, 17);
|
---|
| 298 | this.storeAlgorithmInEachRunCheckBox.TabIndex = 1;
|
---|
| 299 | this.storeAlgorithmInEachRunCheckBox.Text = "&Store Algorithm in each Run:";
|
---|
| 300 | this.toolTip.SetToolTip(this.storeAlgorithmInEachRunCheckBox, "Check to store a copy of the algorithm in each run.");
|
---|
| 301 | this.storeAlgorithmInEachRunCheckBox.UseVisualStyleBackColor = true;
|
---|
| 302 | this.storeAlgorithmInEachRunCheckBox.CheckedChanged += new System.EventHandler(this.storeAlgorithmInEachRunCheckBox_CheckedChanged);
|
---|
| 303 | //
|
---|
[2851] | 304 | // AlgorithmView
|
---|
| 305 | //
|
---|
| 306 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 307 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 308 | this.Controls.Add(this.tabControl);
|
---|
| 309 | this.Controls.Add(this.startButton);
|
---|
[3262] | 310 | this.Controls.Add(this.pauseButton);
|
---|
[2851] | 311 | this.Controls.Add(this.executionTimeTextBox);
|
---|
| 312 | this.Controls.Add(this.executionTimeLabel);
|
---|
[3262] | 313 | this.Controls.Add(this.stopButton);
|
---|
[2851] | 314 | this.Controls.Add(this.resetButton);
|
---|
| 315 | this.Name = "AlgorithmView";
|
---|
[2882] | 316 | this.Size = new System.Drawing.Size(679, 482);
|
---|
[2851] | 317 | this.Controls.SetChildIndex(this.resetButton, 0);
|
---|
[3262] | 318 | this.Controls.SetChildIndex(this.stopButton, 0);
|
---|
[2851] | 319 | this.Controls.SetChildIndex(this.executionTimeLabel, 0);
|
---|
| 320 | this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
|
---|
[3262] | 321 | this.Controls.SetChildIndex(this.pauseButton, 0);
|
---|
[2851] | 322 | this.Controls.SetChildIndex(this.startButton, 0);
|
---|
| 323 | this.Controls.SetChildIndex(this.tabControl, 0);
|
---|
| 324 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 325 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 326 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 327 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 328 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 329 | this.tabControl.ResumeLayout(false);
|
---|
[4102] | 330 | this.problemTabPage.ResumeLayout(false);
|
---|
[2851] | 331 | this.parametersTabPage.ResumeLayout(false);
|
---|
[2882] | 332 | this.resultsTabPage.ResumeLayout(false);
|
---|
[3275] | 333 | this.runsTabPage.ResumeLayout(false);
|
---|
[4102] | 334 | this.runsTabPage.PerformLayout();
|
---|
[2851] | 335 | this.ResumeLayout(false);
|
---|
| 336 | this.PerformLayout();
|
---|
| 337 |
|
---|
| 338 | }
|
---|
| 339 |
|
---|
| 340 | #endregion
|
---|
| 341 |
|
---|
| 342 | protected System.Windows.Forms.TabControl tabControl;
|
---|
| 343 | protected System.Windows.Forms.TabPage parametersTabPage;
|
---|
| 344 | protected System.Windows.Forms.TabPage problemTabPage;
|
---|
| 345 | protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
|
---|
[3281] | 346 | protected HeuristicLab.MainForm.WindowsForms.ViewHost problemViewHost;
|
---|
[2851] | 347 | protected System.Windows.Forms.Button newProblemButton;
|
---|
| 348 | protected System.Windows.Forms.Button openProblemButton;
|
---|
| 349 | protected System.Windows.Forms.Button startButton;
|
---|
[3262] | 350 | protected System.Windows.Forms.Button pauseButton;
|
---|
[2851] | 351 | protected System.Windows.Forms.Button resetButton;
|
---|
| 352 | protected System.Windows.Forms.Label executionTimeLabel;
|
---|
| 353 | protected System.Windows.Forms.TextBox executionTimeTextBox;
|
---|
| 354 | protected System.Windows.Forms.OpenFileDialog openFileDialog;
|
---|
[2882] | 355 | protected System.Windows.Forms.TabPage resultsTabPage;
|
---|
[3226] | 356 | protected HeuristicLab.Optimization.Views.ResultCollectionView resultsView;
|
---|
[3262] | 357 | protected System.Windows.Forms.Button stopButton;
|
---|
[3275] | 358 | protected System.Windows.Forms.TabPage runsTabPage;
|
---|
| 359 | protected RunCollectionView runsView;
|
---|
[4102] | 360 | protected System.Windows.Forms.CheckBox storeAlgorithmInEachRunCheckBox;
|
---|
[2851] | 361 | }
|
---|
| 362 | }
|
---|