Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/ExperimentView.Designer.cs @ 3275

Last change on this file since 3275 was 3275, checked in by swagner, 14 years ago

Continued work on algorithm batch processing (#947).

File size: 12.0 KB
Line 
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
22namespace HeuristicLab.Optimization.Views {
23  partial class ExperimentView {
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() {
47      this.tabControl = new System.Windows.Forms.TabControl();
48      this.optimizersTabPage = new System.Windows.Forms.TabPage();
49      this.optimizerListView = new HeuristicLab.Optimization.Views.OptimizerListView();
50      this.startButton = new System.Windows.Forms.Button();
51      this.stopButton = new System.Windows.Forms.Button();
52      this.resetButton = new System.Windows.Forms.Button();
53      this.executionTimeLabel = new System.Windows.Forms.Label();
54      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
55      this.pauseButton = new System.Windows.Forms.Button();
56      this.runsTabPage = new System.Windows.Forms.TabPage();
57      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
58      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
59      this.tabControl.SuspendLayout();
60      this.optimizersTabPage.SuspendLayout();
61      this.runsTabPage.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // nameTextBox
65      //
66      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
67      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
68      this.nameTextBox.Size = new System.Drawing.Size(607, 20);
69      //
70      // descriptionTextBox
71      //
72      this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
73      //
74      // tabControl
75      //
76      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77                  | System.Windows.Forms.AnchorStyles.Left)
78                  | System.Windows.Forms.AnchorStyles.Right)));
79      this.tabControl.Controls.Add(this.optimizersTabPage);
80      this.tabControl.Controls.Add(this.runsTabPage);
81      this.tabControl.Location = new System.Drawing.Point(0, 52);
82      this.tabControl.Name = "tabControl";
83      this.tabControl.SelectedIndex = 0;
84      this.tabControl.Size = new System.Drawing.Size(679, 400);
85      this.tabControl.TabIndex = 4;
86      //
87      // optimizersTabPage
88      //
89      this.optimizersTabPage.Controls.Add(this.optimizerListView);
90      this.optimizersTabPage.Location = new System.Drawing.Point(4, 22);
91      this.optimizersTabPage.Name = "optimizersTabPage";
92      this.optimizersTabPage.Padding = new System.Windows.Forms.Padding(3);
93      this.optimizersTabPage.Size = new System.Drawing.Size(671, 374);
94      this.optimizersTabPage.TabIndex = 1;
95      this.optimizersTabPage.Text = "Optimizers";
96      this.optimizersTabPage.UseVisualStyleBackColor = true;
97      //
98      // optimizerListView
99      //
100      this.optimizerListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
101                  | System.Windows.Forms.AnchorStyles.Left)
102                  | System.Windows.Forms.AnchorStyles.Right)));
103      this.optimizerListView.Caption = "OptimizerList";
104      this.optimizerListView.Content = null;
105      this.optimizerListView.Location = new System.Drawing.Point(6, 6);
106      this.optimizerListView.Name = "optimizerListView";
107      this.optimizerListView.Size = new System.Drawing.Size(659, 362);
108      this.optimizerListView.TabIndex = 0;
109      //
110      // startButton
111      //
112      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
113      this.startButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
114      this.startButton.Location = new System.Drawing.Point(0, 458);
115      this.startButton.Name = "startButton";
116      this.startButton.Size = new System.Drawing.Size(24, 24);
117      this.startButton.TabIndex = 5;
118      this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
119      this.startButton.UseVisualStyleBackColor = true;
120      this.startButton.Click += new System.EventHandler(this.startButton_Click);
121      //
122      // stopButton
123      //
124      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
125      this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
126      this.stopButton.Location = new System.Drawing.Point(60, 458);
127      this.stopButton.Name = "stopButton";
128      this.stopButton.Size = new System.Drawing.Size(24, 24);
129      this.stopButton.TabIndex = 7;
130      this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
131      this.stopButton.UseVisualStyleBackColor = true;
132      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
133      //
134      // resetButton
135      //
136      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
137      this.resetButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Restart;
138      this.resetButton.Location = new System.Drawing.Point(90, 458);
139      this.resetButton.Name = "resetButton";
140      this.resetButton.Size = new System.Drawing.Size(24, 24);
141      this.resetButton.TabIndex = 8;
142      this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
143      this.resetButton.UseVisualStyleBackColor = true;
144      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
145      //
146      // executionTimeLabel
147      //
148      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
149      this.executionTimeLabel.AutoSize = true;
150      this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
151      this.executionTimeLabel.Name = "executionTimeLabel";
152      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
153      this.executionTimeLabel.TabIndex = 9;
154      this.executionTimeLabel.Text = "&Execution Time:";
155      //
156      // executionTimeTextBox
157      //
158      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
159      this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
160      this.executionTimeTextBox.Name = "executionTimeTextBox";
161      this.executionTimeTextBox.ReadOnly = true;
162      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
163      this.executionTimeTextBox.TabIndex = 10;
164      //
165      // pauseButton
166      //
167      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
168      this.pauseButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Pause;
169      this.pauseButton.Location = new System.Drawing.Point(30, 458);
170      this.pauseButton.Name = "pauseButton";
171      this.pauseButton.Size = new System.Drawing.Size(24, 24);
172      this.pauseButton.TabIndex = 6;
173      this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
174      this.pauseButton.UseVisualStyleBackColor = true;
175      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
176      //
177      // runsTabPage
178      //
179      this.runsTabPage.Controls.Add(this.runsView);
180      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
181      this.runsTabPage.Name = "runsTabPage";
182      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
183      this.runsTabPage.Size = new System.Drawing.Size(671, 374);
184      this.runsTabPage.TabIndex = 2;
185      this.runsTabPage.Text = "Runs";
186      this.runsTabPage.UseVisualStyleBackColor = true;
187      //
188      // runsView
189      //
190      this.runsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
191                  | System.Windows.Forms.AnchorStyles.Left)
192                  | System.Windows.Forms.AnchorStyles.Right)));
193      this.runsView.Caption = "RunCollection";
194      this.runsView.Content = null;
195      this.runsView.Location = new System.Drawing.Point(6, 6);
196      this.runsView.Name = "runsView";
197      this.runsView.Size = new System.Drawing.Size(659, 362);
198      this.runsView.TabIndex = 0;
199      //
200      // ExperimentView
201      //
202      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
203      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
204      this.Controls.Add(this.tabControl);
205      this.Controls.Add(this.startButton);
206      this.Controls.Add(this.executionTimeTextBox);
207      this.Controls.Add(this.executionTimeLabel);
208      this.Controls.Add(this.pauseButton);
209      this.Controls.Add(this.stopButton);
210      this.Controls.Add(this.resetButton);
211      this.Name = "ExperimentView";
212      this.Size = new System.Drawing.Size(679, 482);
213      this.Controls.SetChildIndex(this.resetButton, 0);
214      this.Controls.SetChildIndex(this.stopButton, 0);
215      this.Controls.SetChildIndex(this.pauseButton, 0);
216      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
217      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
218      this.Controls.SetChildIndex(this.startButton, 0);
219      this.Controls.SetChildIndex(this.tabControl, 0);
220      this.Controls.SetChildIndex(this.nameLabel, 0);
221      this.Controls.SetChildIndex(this.descriptionLabel, 0);
222      this.Controls.SetChildIndex(this.nameTextBox, 0);
223      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
224      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
225      this.tabControl.ResumeLayout(false);
226      this.optimizersTabPage.ResumeLayout(false);
227      this.runsTabPage.ResumeLayout(false);
228      this.ResumeLayout(false);
229      this.PerformLayout();
230
231    }
232    #endregion
233
234    private System.Windows.Forms.TabControl tabControl;
235    private System.Windows.Forms.TabPage optimizersTabPage;
236    private System.Windows.Forms.Button startButton;
237    private System.Windows.Forms.Button stopButton;
238    private System.Windows.Forms.Button resetButton;
239    private System.Windows.Forms.Label executionTimeLabel;
240    private System.Windows.Forms.TextBox executionTimeTextBox;
241    private System.Windows.Forms.Button pauseButton;
242    private OptimizerListView optimizerListView;
243    private System.Windows.Forms.TabPage runsTabPage;
244    private RunCollectionView runsView;
245
246  }
247}
Note: See TracBrowser for help on using the repository browser.