Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.Designer.cs @ 5976

Last change on this file since 5976 was 5832, checked in by swagner, 13 years ago

Moved description from textbox to icon in NamedItemView and adapted all derived views (#1416)

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