Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.Designer.cs @ 4368

Last change on this file since 4368 was 4368, checked in by cneumuel, 14 years ago
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File size: 25.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.Hive.Experiment.Views {
23  partial class HiveExperimentView {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HiveExperimentView));
48      this.tabControl = new System.Windows.Forms.TabControl();
49      this.experimentTabPage = new System.Windows.Forms.TabPage();
50      this.openExperimentButton = new System.Windows.Forms.Button();
51      this.newExperimentButton = new System.Windows.Forms.Button();
52      this.experimentNamedItemView = new HeuristicLab.Core.Views.NamedItemView();
53      this.viewExperimentButton = new System.Windows.Forms.Button();
54      this.configurationTabPage = new System.Windows.Forms.TabPage();
55      this.updateJobConfigTreeButton = new System.Windows.Forms.Button();
56      this.jobsTabPage = new System.Windows.Forms.TabPage();
57      this.runsTabPage = new System.Windows.Forms.TabPage();
58      this.runCollectionView = new HeuristicLab.Optimization.Views.RunCollectionView();
59      this.logTabPage = new System.Windows.Forms.TabPage();
60      this.logView = new HeuristicLab.Core.Views.LogView();
61      this.startButton = new System.Windows.Forms.Button();
62      this.stopButton = new System.Windows.Forms.Button();
63      this.resetButton = new System.Windows.Forms.Button();
64      this.executionTimeLabel = new System.Windows.Forms.Label();
65      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
66      this.pauseButton = new System.Windows.Forms.Button();
67      this.resourceIdsLabel = new System.Windows.Forms.Label();
68      this.resourceIdsTextBox = new System.Windows.Forms.TextBox();
69      this.disconnectButton = new System.Windows.Forms.Button();
70      this.reconnectButton = new System.Windows.Forms.Button();
71      this.downloadExperimentButton = new System.Windows.Forms.Button();
72      this.jobConfigView = new HeuristicLab.Hive.Experiment.Views.JobConfigView();
73      this.jobItemView = new HeuristicLab.Hive.Experiment.Views.JobItemView();
74      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
75      this.tabControl.SuspendLayout();
76      this.experimentTabPage.SuspendLayout();
77      this.configurationTabPage.SuspendLayout();
78      this.jobsTabPage.SuspendLayout();
79      this.runsTabPage.SuspendLayout();
80      this.logTabPage.SuspendLayout();
81      this.SuspendLayout();
82      //
83      // nameTextBox
84      //
85      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
86      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
87      this.nameTextBox.Size = new System.Drawing.Size(663, 20);
88      //
89      // descriptionTextBox
90      //
91      this.descriptionTextBox.Size = new System.Drawing.Size(663, 20);
92      //
93      // tabControl
94      //
95      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96                  | System.Windows.Forms.AnchorStyles.Left)
97                  | System.Windows.Forms.AnchorStyles.Right)));
98      this.tabControl.Controls.Add(this.experimentTabPage);
99      this.tabControl.Controls.Add(this.configurationTabPage);
100      this.tabControl.Controls.Add(this.jobsTabPage);
101      this.tabControl.Controls.Add(this.runsTabPage);
102      this.tabControl.Controls.Add(this.logTabPage);
103      this.tabControl.Location = new System.Drawing.Point(0, 78);
104      this.tabControl.Name = "tabControl";
105      this.tabControl.SelectedIndex = 0;
106      this.tabControl.Size = new System.Drawing.Size(735, 416);
107      this.tabControl.TabIndex = 4;
108      //
109      // experimentTabPage
110      //
111      this.experimentTabPage.Controls.Add(this.downloadExperimentButton);
112      this.experimentTabPage.Controls.Add(this.openExperimentButton);
113      this.experimentTabPage.Controls.Add(this.newExperimentButton);
114      this.experimentTabPage.Controls.Add(this.experimentNamedItemView);
115      this.experimentTabPage.Controls.Add(this.viewExperimentButton);
116      this.experimentTabPage.Location = new System.Drawing.Point(4, 22);
117      this.experimentTabPage.Name = "experimentTabPage";
118      this.experimentTabPage.Padding = new System.Windows.Forms.Padding(3);
119      this.experimentTabPage.Size = new System.Drawing.Size(727, 390);
120      this.experimentTabPage.TabIndex = 1;
121      this.experimentTabPage.Text = "Experiment";
122      this.experimentTabPage.UseVisualStyleBackColor = true;
123      //
124      // openExperimentButton
125      //
126      this.openExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("openExperimentButton.Image")));
127      this.openExperimentButton.Location = new System.Drawing.Point(36, 6);
128      this.openExperimentButton.Name = "openExperimentButton";
129      this.openExperimentButton.Size = new System.Drawing.Size(24, 24);
130      this.openExperimentButton.TabIndex = 5;
131      this.toolTip.SetToolTip(this.openExperimentButton, "Open Experiment");
132      this.openExperimentButton.UseVisualStyleBackColor = true;
133      this.openExperimentButton.Click += new System.EventHandler(this.openExperimentButton_Click);
134      //
135      // newExperimentButton
136      //
137      this.newExperimentButton.Image = ((System.Drawing.Image)(resources.GetObject("newExperimentButton.Image")));
138      this.newExperimentButton.Location = new System.Drawing.Point(6, 6);
139      this.newExperimentButton.Name = "newExperimentButton";
140      this.newExperimentButton.Size = new System.Drawing.Size(24, 24);
141      this.newExperimentButton.TabIndex = 4;
142      this.toolTip.SetToolTip(this.newExperimentButton, "New Experiment");
143      this.newExperimentButton.UseVisualStyleBackColor = true;
144      this.newExperimentButton.Click += new System.EventHandler(this.newExperimentButton_Click);
145      //
146      // experimentNamedItemView
147      //
148      this.experimentNamedItemView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
149                  | System.Windows.Forms.AnchorStyles.Right)));
150      this.experimentNamedItemView.Caption = "NamedItem View";
151      this.experimentNamedItemView.Content = null;
152      this.experimentNamedItemView.Location = new System.Drawing.Point(3, 36);
153      this.experimentNamedItemView.Name = "experimentNamedItemView";
154      this.experimentNamedItemView.ReadOnly = false;
155      this.experimentNamedItemView.Size = new System.Drawing.Size(721, 52);
156      this.experimentNamedItemView.TabIndex = 3;
157      //
158      // viewExperimentButton
159      //
160      this.viewExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
161                  | System.Windows.Forms.AnchorStyles.Right)));
162      this.viewExperimentButton.Location = new System.Drawing.Point(0, 94);
163      this.viewExperimentButton.Name = "viewExperimentButton";
164      this.viewExperimentButton.Size = new System.Drawing.Size(727, 23);
165      this.viewExperimentButton.TabIndex = 1;
166      this.viewExperimentButton.Text = "&Show Experiment";
167      this.viewExperimentButton.UseVisualStyleBackColor = true;
168      this.viewExperimentButton.Click += new System.EventHandler(this.showExperimentButton_Click);
169      //
170      // configurationTabPage
171      //
172      this.configurationTabPage.Controls.Add(this.jobConfigView);
173      this.configurationTabPage.Controls.Add(this.updateJobConfigTreeButton);
174      this.configurationTabPage.Location = new System.Drawing.Point(4, 22);
175      this.configurationTabPage.Name = "configurationTabPage";
176      this.configurationTabPage.Padding = new System.Windows.Forms.Padding(3);
177      this.configurationTabPage.Size = new System.Drawing.Size(727, 390);
178      this.configurationTabPage.TabIndex = 2;
179      this.configurationTabPage.Text = "Configuration";
180      this.configurationTabPage.UseVisualStyleBackColor = true;
181      //
182      // updateJobConfigTreeButton
183      //
184      this.updateJobConfigTreeButton.Location = new System.Drawing.Point(6, 6);
185      this.updateJobConfigTreeButton.Name = "updateJobConfigTreeButton";
186      this.updateJobConfigTreeButton.Size = new System.Drawing.Size(199, 23);
187      this.updateJobConfigTreeButton.TabIndex = 1;
188      this.updateJobConfigTreeButton.Text = "Update Config Tree from Experiment";
189      this.updateJobConfigTreeButton.UseVisualStyleBackColor = true;
190      this.updateJobConfigTreeButton.Click += new System.EventHandler(this.updateJobConfigTreeButton_Click);
191      //
192      // jobsTabPage
193      //
194      this.jobsTabPage.Controls.Add(this.jobItemView);
195      this.jobsTabPage.Location = new System.Drawing.Point(4, 22);
196      this.jobsTabPage.Name = "jobsTabPage";
197      this.jobsTabPage.Size = new System.Drawing.Size(727, 390);
198      this.jobsTabPage.TabIndex = 5;
199      this.jobsTabPage.Text = "Jobs";
200      this.jobsTabPage.UseVisualStyleBackColor = true;
201      //
202      // runsTabPage
203      //
204      this.runsTabPage.Controls.Add(this.runCollectionView);
205      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
206      this.runsTabPage.Name = "runsTabPage";
207      this.runsTabPage.Size = new System.Drawing.Size(727, 390);
208      this.runsTabPage.TabIndex = 4;
209      this.runsTabPage.Text = "Runs";
210      this.runsTabPage.UseVisualStyleBackColor = true;
211      //
212      // runCollectionView
213      //
214      this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
215                  | System.Windows.Forms.AnchorStyles.Left)
216                  | System.Windows.Forms.AnchorStyles.Right)));
217      this.runCollectionView.Caption = "RunCollection View";
218      this.runCollectionView.Content = null;
219      this.runCollectionView.Location = new System.Drawing.Point(0, 3);
220      this.runCollectionView.Name = "runCollectionView";
221      this.runCollectionView.ReadOnly = false;
222      this.runCollectionView.Size = new System.Drawing.Size(727, 366);
223      this.runCollectionView.TabIndex = 0;
224      //
225      // logTabPage
226      //
227      this.logTabPage.Controls.Add(this.logView);
228      this.logTabPage.Location = new System.Drawing.Point(4, 22);
229      this.logTabPage.Name = "logTabPage";
230      this.logTabPage.Size = new System.Drawing.Size(727, 390);
231      this.logTabPage.TabIndex = 3;
232      this.logTabPage.Text = "Log";
233      this.logTabPage.UseVisualStyleBackColor = true;
234      //
235      // logView
236      //
237      this.logView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
238                  | System.Windows.Forms.AnchorStyles.Left)
239                  | System.Windows.Forms.AnchorStyles.Right)));
240      this.logView.Caption = "Log View";
241      this.logView.Content = null;
242      this.logView.Location = new System.Drawing.Point(3, 4);
243      this.logView.Name = "logView";
244      this.logView.ReadOnly = false;
245      this.logView.Size = new System.Drawing.Size(721, 362);
246      this.logView.TabIndex = 0;
247      //
248      // startButton
249      //
250      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
251      this.startButton.Image = ((System.Drawing.Image)(resources.GetObject("startButton.Image")));
252      this.startButton.Location = new System.Drawing.Point(0, 500);
253      this.startButton.Name = "startButton";
254      this.startButton.Size = new System.Drawing.Size(24, 24);
255      this.startButton.TabIndex = 5;
256      this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
257      this.startButton.UseVisualStyleBackColor = true;
258      this.startButton.Click += new System.EventHandler(this.startButton_Click);
259      //
260      // stopButton
261      //
262      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
263      this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
264      this.stopButton.Location = new System.Drawing.Point(60, 500);
265      this.stopButton.Name = "stopButton";
266      this.stopButton.Size = new System.Drawing.Size(24, 24);
267      this.stopButton.TabIndex = 7;
268      this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
269      this.stopButton.UseVisualStyleBackColor = true;
270      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
271      //
272      // resetButton
273      //
274      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
275      this.resetButton.Enabled = false;
276      this.resetButton.Image = ((System.Drawing.Image)(resources.GetObject("resetButton.Image")));
277      this.resetButton.Location = new System.Drawing.Point(90, 500);
278      this.resetButton.Name = "resetButton";
279      this.resetButton.Size = new System.Drawing.Size(24, 24);
280      this.resetButton.TabIndex = 8;
281      this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
282      this.resetButton.UseVisualStyleBackColor = true;
283      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
284      //
285      // executionTimeLabel
286      //
287      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
288      this.executionTimeLabel.AutoSize = true;
289      this.executionTimeLabel.Location = new System.Drawing.Point(509, 507);
290      this.executionTimeLabel.Name = "executionTimeLabel";
291      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
292      this.executionTimeLabel.TabIndex = 9;
293      this.executionTimeLabel.Text = "&Execution Time:";
294      //
295      // executionTimeTextBox
296      //
297      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
298      this.executionTimeTextBox.Location = new System.Drawing.Point(598, 504);
299      this.executionTimeTextBox.Name = "executionTimeTextBox";
300      this.executionTimeTextBox.ReadOnly = true;
301      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
302      this.executionTimeTextBox.TabIndex = 10;
303      //
304      // pauseButton
305      //
306      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
307      this.pauseButton.Enabled = false;
308      this.pauseButton.Image = ((System.Drawing.Image)(resources.GetObject("pauseButton.Image")));
309      this.pauseButton.Location = new System.Drawing.Point(30, 500);
310      this.pauseButton.Name = "pauseButton";
311      this.pauseButton.Size = new System.Drawing.Size(24, 24);
312      this.pauseButton.TabIndex = 6;
313      this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
314      this.pauseButton.UseVisualStyleBackColor = true;
315      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
316      //
317      // resourceIdsLabel
318      //
319      this.resourceIdsLabel.AutoSize = true;
320      this.resourceIdsLabel.Location = new System.Drawing.Point(3, 55);
321      this.resourceIdsLabel.Name = "resourceIdsLabel";
322      this.resourceIdsLabel.Size = new System.Drawing.Size(67, 13);
323      this.resourceIdsLabel.TabIndex = 12;
324      this.resourceIdsLabel.Text = "ResourceIds";
325      //
326      // resourceIdsTextBox
327      //
328      this.resourceIdsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
329                  | System.Windows.Forms.AnchorStyles.Right)));
330      this.resourceIdsTextBox.Location = new System.Drawing.Point(72, 52);
331      this.resourceIdsTextBox.Name = "resourceIdsTextBox";
332      this.resourceIdsTextBox.Size = new System.Drawing.Size(663, 20);
333      this.resourceIdsTextBox.TabIndex = 14;
334      this.resourceIdsTextBox.Validated += new System.EventHandler(this.resourceIdsTextBox_Validated);
335      //
336      // disconnectButton
337      //
338      this.disconnectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
339      this.disconnectButton.Enabled = false;
340      this.disconnectButton.Location = new System.Drawing.Point(131, 500);
341      this.disconnectButton.Name = "disconnectButton";
342      this.disconnectButton.Size = new System.Drawing.Size(120, 24);
343      this.disconnectButton.TabIndex = 15;
344      this.disconnectButton.Text = "Disconnect from Hive";
345      this.toolTip.SetToolTip(this.disconnectButton, "Disconnect from Hive (Jobs will be continue to be calculated)");
346      this.disconnectButton.UseVisualStyleBackColor = true;
347      this.disconnectButton.Click += new System.EventHandler(this.disconnectButton_Click);
348      //
349      // reconnectButton
350      //
351      this.reconnectButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
352      this.reconnectButton.Enabled = false;
353      this.reconnectButton.Location = new System.Drawing.Point(257, 500);
354      this.reconnectButton.Name = "reconnectButton";
355      this.reconnectButton.Size = new System.Drawing.Size(77, 24);
356      this.reconnectButton.TabIndex = 16;
357      this.reconnectButton.Text = "Reconnect";
358      this.toolTip.SetToolTip(this.reconnectButton, "Reconnect to Hive");
359      this.reconnectButton.UseVisualStyleBackColor = true;
360      this.reconnectButton.Click += new System.EventHandler(this.reconnectButton_Click);
361      //
362      // downloadExperimentButton
363      //
364      this.downloadExperimentButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
365                  | System.Windows.Forms.AnchorStyles.Right)));
366      this.downloadExperimentButton.Enabled = false;
367      this.downloadExperimentButton.Location = new System.Drawing.Point(2, 123);
368      this.downloadExperimentButton.Name = "downloadExperimentButton";
369      this.downloadExperimentButton.Size = new System.Drawing.Size(725, 24);
370      this.downloadExperimentButton.TabIndex = 17;
371      this.downloadExperimentButton.Text = "Download Experiment";
372      this.toolTip.SetToolTip(this.downloadExperimentButton, "Reconnect to Hive");
373      this.downloadExperimentButton.UseVisualStyleBackColor = true;
374      this.downloadExperimentButton.Click += new System.EventHandler(this.downloadExperimentButton_Click);
375      //
376      // jobConfigView
377      //
378      this.jobConfigView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
379                  | System.Windows.Forms.AnchorStyles.Left)
380                  | System.Windows.Forms.AnchorStyles.Right)));
381      this.jobConfigView.Caption = "JobConfigView";
382      this.jobConfigView.Content = null;
383      this.jobConfigView.Location = new System.Drawing.Point(3, 35);
384      this.jobConfigView.Name = "jobConfigView";
385      this.jobConfigView.ReadOnly = false;
386      this.jobConfigView.Size = new System.Drawing.Size(721, 352);
387      this.jobConfigView.TabIndex = 2;
388      //
389      // jobItemView
390      //
391      this.jobItemView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
392                  | System.Windows.Forms.AnchorStyles.Left)
393                  | System.Windows.Forms.AnchorStyles.Right)));
394      this.jobItemView.Caption = "JobItem View";
395      this.jobItemView.Content = null;
396      this.jobItemView.Location = new System.Drawing.Point(2, 3);
397      this.jobItemView.Name = "jobItemView";
398      this.jobItemView.ReadOnly = true;
399      this.jobItemView.Size = new System.Drawing.Size(722, 384);
400      this.jobItemView.TabIndex = 0;
401      //
402      // HiveExperimentView
403      //
404      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
405      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
406      this.Controls.Add(this.tabControl);
407      this.Controls.Add(this.disconnectButton);
408      this.Controls.Add(this.startButton);
409      this.Controls.Add(this.resourceIdsTextBox);
410      this.Controls.Add(this.executionTimeTextBox);
411      this.Controls.Add(this.resourceIdsLabel);
412      this.Controls.Add(this.executionTimeLabel);
413      this.Controls.Add(this.pauseButton);
414      this.Controls.Add(this.stopButton);
415      this.Controls.Add(this.resetButton);
416      this.Controls.Add(this.reconnectButton);
417      this.Name = "HiveExperimentView";
418      this.Size = new System.Drawing.Size(735, 524);
419      this.Controls.SetChildIndex(this.reconnectButton, 0);
420      this.Controls.SetChildIndex(this.resetButton, 0);
421      this.Controls.SetChildIndex(this.stopButton, 0);
422      this.Controls.SetChildIndex(this.pauseButton, 0);
423      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
424      this.Controls.SetChildIndex(this.resourceIdsLabel, 0);
425      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
426      this.Controls.SetChildIndex(this.resourceIdsTextBox, 0);
427      this.Controls.SetChildIndex(this.startButton, 0);
428      this.Controls.SetChildIndex(this.disconnectButton, 0);
429      this.Controls.SetChildIndex(this.tabControl, 0);
430      this.Controls.SetChildIndex(this.nameLabel, 0);
431      this.Controls.SetChildIndex(this.descriptionLabel, 0);
432      this.Controls.SetChildIndex(this.nameTextBox, 0);
433      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
434      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
435      this.tabControl.ResumeLayout(false);
436      this.experimentTabPage.ResumeLayout(false);
437      this.configurationTabPage.ResumeLayout(false);
438      this.jobsTabPage.ResumeLayout(false);
439      this.runsTabPage.ResumeLayout(false);
440      this.logTabPage.ResumeLayout(false);
441      this.ResumeLayout(false);
442      this.PerformLayout();
443
444    }
445    #endregion
446
447    private System.Windows.Forms.TabControl tabControl;
448    private System.Windows.Forms.TabPage experimentTabPage;
449    private System.Windows.Forms.Button startButton;
450    private System.Windows.Forms.Button stopButton;
451    private System.Windows.Forms.Button resetButton;
452    private System.Windows.Forms.Label executionTimeLabel;
453    private System.Windows.Forms.TextBox executionTimeTextBox;
454    private System.Windows.Forms.Button pauseButton;
455    private System.Windows.Forms.TabPage configurationTabPage;
456    private System.Windows.Forms.Label resourceIdsLabel;
457    private System.Windows.Forms.TextBox resourceIdsTextBox;
458    private System.Windows.Forms.Button viewExperimentButton;
459    private Core.Views.NamedItemView experimentNamedItemView;
460    private System.Windows.Forms.TabPage logTabPage;
461    private Core.Views.LogView logView;
462    private System.Windows.Forms.Button disconnectButton;
463    private System.Windows.Forms.Button reconnectButton;
464    protected System.Windows.Forms.Button openExperimentButton;
465    protected System.Windows.Forms.Button newExperimentButton;
466    private System.Windows.Forms.TabPage runsTabPage;
467    private Optimization.Views.RunCollectionView runCollectionView;
468    private System.Windows.Forms.Button updateJobConfigTreeButton;
469    private System.Windows.Forms.TabPage jobsTabPage;
470    private JobItemView jobItemView;
471    private JobConfigView jobConfigView;
472    private System.Windows.Forms.Button downloadExperimentButton;
473
474  }
475}
Note: See TracBrowser for help on using the repository browser.