Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/CreateExperimentDialog.Designer.cs @ 9361

Last change on this file since 9361 was 9361, checked in by ascheibe, 11 years ago

#1886 adapted create experiment dialog so that it can generate random configurations

File size: 29.1 KB
RevLine 
[9361]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Analysis.AlgorithmBehavior.Analyzers.Views {
23  partial class CreateExperimentDialog {
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 && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form 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.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CreateExperimentDialog));
49      this.okButton = new System.Windows.Forms.Button();
50      this.cancelButton = new System.Windows.Forms.Button();
51      this.createBatchRunCheckBox = new System.Windows.Forms.CheckBox();
52      this.createBatchRunLabel = new System.Windows.Forms.Label();
53      this.repetitionsLabel = new System.Windows.Forms.Label();
54      this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
56      this.experimentCreationBackgroundWorker = new System.ComponentModel.BackgroundWorker();
57      this.instanceDiscoveryProgressBar = new System.Windows.Forms.ProgressBar();
58      this.instanceDiscoveryProgressLabel = new System.Windows.Forms.Label();
59      this.selectAllCheckBox = new System.Windows.Forms.CheckBox();
60      this.selectNoneCheckBox = new System.Windows.Forms.CheckBox();
61      this.instanceDiscoveryBackgroundWorker = new System.ComponentModel.BackgroundWorker();
62      this.tabControl = new System.Windows.Forms.TabControl();
63      this.parametersTabPage = new System.Windows.Forms.TabPage();
64      this.parametersSplitContainer = new System.Windows.Forms.SplitContainer();
65      this.parametersListView = new System.Windows.Forms.ListView();
66      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
67      this.generateButton = new System.Windows.Forms.Button();
68      this.stringConvertibleArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
69      this.detailsTypeLabel = new System.Windows.Forms.Label();
70      this.choicesListView = new System.Windows.Forms.ListView();
71      this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
72      this.instancesTabPage = new System.Windows.Forms.TabPage();
73      this.label1 = new System.Windows.Forms.Label();
74      this.instancesTreeView = new System.Windows.Forms.TreeView();
75      this.experimentsToCreateDescriptionLabel = new System.Windows.Forms.Label();
76      this.variationsLabel = new System.Windows.Forms.Label();
77      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
78      this.warningProvider = new System.Windows.Forms.ErrorProvider(this.components);
79      this.experimentCreationProgressBar = new System.Windows.Forms.ProgressBar();
80      this.combinationsTextBox = new System.Windows.Forms.TextBox();
81      this.label2 = new System.Windows.Forms.Label();
82      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
83      this.tabControl.SuspendLayout();
84      this.parametersTabPage.SuspendLayout();
85      ((System.ComponentModel.ISupportInitialize)(this.parametersSplitContainer)).BeginInit();
86      this.parametersSplitContainer.Panel1.SuspendLayout();
87      this.parametersSplitContainer.Panel2.SuspendLayout();
88      this.parametersSplitContainer.SuspendLayout();
89      this.instancesTabPage.SuspendLayout();
90      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
91      ((System.ComponentModel.ISupportInitialize)(this.warningProvider)).BeginInit();
92      this.SuspendLayout();
93      //
94      // okButton
95      //
96      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
97      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
98      this.okButton.Enabled = false;
99      this.okButton.Location = new System.Drawing.Point(474, 377);
100      this.okButton.Name = "okButton";
101      this.okButton.Size = new System.Drawing.Size(75, 23);
102      this.okButton.TabIndex = 7;
103      this.okButton.Text = "&OK";
104      this.okButton.UseVisualStyleBackColor = true;
105      this.okButton.Click += new System.EventHandler(this.okButton_Click);
106      //
107      // cancelButton
108      //
109      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
110      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
111      this.cancelButton.Location = new System.Drawing.Point(555, 377);
112      this.cancelButton.Name = "cancelButton";
113      this.cancelButton.Size = new System.Drawing.Size(75, 23);
114      this.cancelButton.TabIndex = 8;
115      this.cancelButton.Text = "&Cancel";
116      this.cancelButton.UseVisualStyleBackColor = true;
117      //
118      // createBatchRunCheckBox
119      //
120      this.createBatchRunCheckBox.AutoSize = true;
121      this.createBatchRunCheckBox.Checked = true;
122      this.createBatchRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
123      this.createBatchRunCheckBox.Location = new System.Drawing.Point(113, 8);
124      this.createBatchRunCheckBox.Name = "createBatchRunCheckBox";
125      this.createBatchRunCheckBox.Size = new System.Drawing.Size(15, 14);
126      this.createBatchRunCheckBox.TabIndex = 1;
127      this.toolTip.SetToolTip(this.createBatchRunCheckBox, "Check to create a batch run for executing an optimizer multiple times.");
128      this.createBatchRunCheckBox.UseVisualStyleBackColor = true;
129      this.createBatchRunCheckBox.CheckedChanged += new System.EventHandler(this.createBatchRunCheckBox_CheckedChanged);
130      //
131      // createBatchRunLabel
132      //
133      this.createBatchRunLabel.AutoSize = true;
134      this.createBatchRunLabel.Location = new System.Drawing.Point(12, 9);
135      this.createBatchRunLabel.Name = "createBatchRunLabel";
136      this.createBatchRunLabel.Size = new System.Drawing.Size(95, 13);
137      this.createBatchRunLabel.TabIndex = 0;
138      this.createBatchRunLabel.Text = "&Create Batch Run:";
139      //
140      // repetitionsLabel
141      //
142      this.repetitionsLabel.AutoSize = true;
143      this.repetitionsLabel.Location = new System.Drawing.Point(12, 31);
144      this.repetitionsLabel.Name = "repetitionsLabel";
145      this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
146      this.repetitionsLabel.TabIndex = 2;
147      this.repetitionsLabel.Text = "&Repetitions:";
148      //
149      // repetitionsNumericUpDown
150      //
151      this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
152            | System.Windows.Forms.AnchorStyles.Right)));
153      this.repetitionsNumericUpDown.Location = new System.Drawing.Point(113, 28);
154      this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
155            1000000,
156            0,
157            0,
158            0});
159      this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
160            1,
161            0,
162            0,
163            0});
164      this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
165      this.repetitionsNumericUpDown.Size = new System.Drawing.Size(517, 20);
166      this.repetitionsNumericUpDown.TabIndex = 3;
167      this.repetitionsNumericUpDown.ThousandsSeparator = true;
168      this.toolTip.SetToolTip(this.repetitionsNumericUpDown, "Number of repetitions executed by the batch run.");
169      this.repetitionsNumericUpDown.Value = new decimal(new int[] {
170            10,
171            0,
172            0,
173            0});
174      this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
175      //
176      // experimentCreationBackgroundWorker
177      //
178      this.experimentCreationBackgroundWorker.WorkerReportsProgress = true;
179      this.experimentCreationBackgroundWorker.WorkerSupportsCancellation = true;
180      this.experimentCreationBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.experimentCreationBackgroundWorker_DoWork);
181      this.experimentCreationBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.experimentCreationBackgroundWorker_ProgressChanged);
182      this.experimentCreationBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.experimentCreationBackgroundWorker_RunWorkerCompleted);
183      //
184      // instanceDiscoveryProgressBar
185      //
186      this.instanceDiscoveryProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
187      this.instanceDiscoveryProgressBar.Location = new System.Drawing.Point(6, 141);
188      this.instanceDiscoveryProgressBar.Name = "instanceDiscoveryProgressBar";
189      this.instanceDiscoveryProgressBar.Size = new System.Drawing.Size(367, 23);
190      this.instanceDiscoveryProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
191      this.instanceDiscoveryProgressBar.TabIndex = 4;
192      this.instanceDiscoveryProgressBar.Visible = false;
193      //
194      // instanceDiscoveryProgressLabel
195      //
196      this.instanceDiscoveryProgressLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
197      this.instanceDiscoveryProgressLabel.BackColor = System.Drawing.SystemColors.Control;
198      this.instanceDiscoveryProgressLabel.Location = new System.Drawing.Point(6, 167);
199      this.instanceDiscoveryProgressLabel.Name = "instanceDiscoveryProgressLabel";
200      this.instanceDiscoveryProgressLabel.Size = new System.Drawing.Size(367, 23);
201      this.instanceDiscoveryProgressLabel.TabIndex = 5;
202      this.instanceDiscoveryProgressLabel.Text = "label1";
203      this.instanceDiscoveryProgressLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
204      this.instanceDiscoveryProgressLabel.Visible = false;
205      //
206      // selectAllCheckBox
207      //
208      this.selectAllCheckBox.AutoSize = true;
209      this.selectAllCheckBox.Location = new System.Drawing.Point(52, 12);
210      this.selectAllCheckBox.Name = "selectAllCheckBox";
211      this.selectAllCheckBox.Size = new System.Drawing.Size(36, 17);
212      this.selectAllCheckBox.TabIndex = 1;
213      this.selectAllCheckBox.Text = "all";
214      this.selectAllCheckBox.UseVisualStyleBackColor = true;
215      this.selectAllCheckBox.CheckedChanged += new System.EventHandler(this.selectAllCheckBox_CheckedChanged);
216      //
217      // selectNoneCheckBox
218      //
219      this.selectNoneCheckBox.AutoSize = true;
220      this.selectNoneCheckBox.Location = new System.Drawing.Point(94, 12);
221      this.selectNoneCheckBox.Name = "selectNoneCheckBox";
222      this.selectNoneCheckBox.Size = new System.Drawing.Size(50, 17);
223      this.selectNoneCheckBox.TabIndex = 2;
224      this.selectNoneCheckBox.Text = "none";
225      this.selectNoneCheckBox.UseVisualStyleBackColor = true;
226      this.selectNoneCheckBox.CheckedChanged += new System.EventHandler(this.selectNoneCheckBox_CheckedChanged);
227      //
228      // instanceDiscoveryBackgroundWorker
229      //
230      this.instanceDiscoveryBackgroundWorker.WorkerReportsProgress = true;
231      this.instanceDiscoveryBackgroundWorker.WorkerSupportsCancellation = true;
232      this.instanceDiscoveryBackgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.instanceDiscoveryBackgroundWorker_DoWork);
233      this.instanceDiscoveryBackgroundWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.instanceDiscoveryBackgroundWorker_ProgressChanged);
234      this.instanceDiscoveryBackgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.instanceDiscoveryBackgroundWorker_RunWorkerCompleted);
235      //
236      // tabControl
237      //
238      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
239            | System.Windows.Forms.AnchorStyles.Left)
240            | System.Windows.Forms.AnchorStyles.Right)));
241      this.tabControl.Controls.Add(this.parametersTabPage);
242      this.tabControl.Controls.Add(this.instancesTabPage);
243      this.tabControl.Location = new System.Drawing.Point(15, 54);
244      this.tabControl.Name = "tabControl";
245      this.tabControl.SelectedIndex = 0;
246      this.tabControl.Size = new System.Drawing.Size(615, 317);
247      this.tabControl.TabIndex = 4;
248      //
249      // parametersTabPage
250      //
251      this.parametersTabPage.Controls.Add(this.parametersSplitContainer);
252      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
253      this.parametersTabPage.Name = "parametersTabPage";
254      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
255      this.parametersTabPage.Size = new System.Drawing.Size(607, 291);
256      this.parametersTabPage.TabIndex = 1;
257      this.parametersTabPage.Text = "Parameter Variations";
258      this.parametersTabPage.UseVisualStyleBackColor = true;
259      //
260      // parametersSplitContainer
261      //
262      this.parametersSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
263      this.parametersSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
264      this.parametersSplitContainer.Location = new System.Drawing.Point(3, 3);
265      this.parametersSplitContainer.Name = "parametersSplitContainer";
266      //
267      // parametersSplitContainer.Panel1
268      //
269      this.parametersSplitContainer.Panel1.Controls.Add(this.parametersListView);
270      //
271      // parametersSplitContainer.Panel2
272      //
273      this.parametersSplitContainer.Panel2.Controls.Add(this.generateButton);
274      this.parametersSplitContainer.Panel2.Controls.Add(this.stringConvertibleArrayView);
275      this.parametersSplitContainer.Panel2.Controls.Add(this.detailsTypeLabel);
276      this.parametersSplitContainer.Panel2.Controls.Add(this.choicesListView);
277      this.parametersSplitContainer.Size = new System.Drawing.Size(601, 285);
278      this.parametersSplitContainer.SplitterDistance = 155;
279      this.parametersSplitContainer.TabIndex = 1;
280      //
281      // parametersListView
282      //
283      this.parametersListView.CheckBoxes = true;
284      this.parametersListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
285            this.columnHeader1});
286      this.parametersListView.Dock = System.Windows.Forms.DockStyle.Fill;
287      this.parametersListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
288      this.parametersListView.Location = new System.Drawing.Point(0, 0);
289      this.parametersListView.MultiSelect = false;
290      this.parametersListView.Name = "parametersListView";
291      this.parametersListView.Size = new System.Drawing.Size(155, 285);
292      this.parametersListView.TabIndex = 0;
293      this.parametersListView.UseCompatibleStateImageBehavior = false;
294      this.parametersListView.View = System.Windows.Forms.View.Details;
295      this.parametersListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.parametersListView_ItemChecked);
296      this.parametersListView.SelectedIndexChanged += new System.EventHandler(this.parametersListView_SelectedIndexChanged);
297      //
298      // columnHeader1
299      //
300      this.columnHeader1.Width = 150;
301      //
302      // generateButton
303      //
304      this.generateButton.Location = new System.Drawing.Point(16, 10);
305      this.generateButton.Name = "generateButton";
306      this.generateButton.Size = new System.Drawing.Size(75, 23);
307      this.generateButton.TabIndex = 8;
308      this.generateButton.Text = "Generate...";
309      this.generateButton.UseVisualStyleBackColor = true;
310      this.generateButton.Click += new System.EventHandler(this.generateButton_Click);
311      //
312      // stringConvertibleArrayView
313      //
314      this.stringConvertibleArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
315            | System.Windows.Forms.AnchorStyles.Left)
316            | System.Windows.Forms.AnchorStyles.Right)));
317      this.stringConvertibleArrayView.Caption = "StringConvertibleArray View";
318      this.stringConvertibleArrayView.Content = null;
319      this.stringConvertibleArrayView.Location = new System.Drawing.Point(16, 39);
320      this.stringConvertibleArrayView.Name = "stringConvertibleArrayView";
321      this.stringConvertibleArrayView.ReadOnly = false;
322      this.stringConvertibleArrayView.Size = new System.Drawing.Size(411, 233);
323      this.stringConvertibleArrayView.TabIndex = 7;
324      //
325      // detailsTypeLabel
326      //
327      this.detailsTypeLabel.AutoSize = true;
328      this.detailsTypeLabel.Location = new System.Drawing.Point(13, 15);
329      this.detailsTypeLabel.Name = "detailsTypeLabel";
330      this.detailsTypeLabel.Size = new System.Drawing.Size(48, 13);
331      this.detailsTypeLabel.TabIndex = 0;
332      this.detailsTypeLabel.Text = "Choices:";
333      //
334      // choicesListView
335      //
336      this.choicesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
337            | System.Windows.Forms.AnchorStyles.Left)
338            | System.Windows.Forms.AnchorStyles.Right)));
339      this.choicesListView.CheckBoxes = true;
340      this.choicesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
341            this.columnHeader2});
342      this.choicesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
343      this.choicesListView.Location = new System.Drawing.Point(16, 34);
344      this.choicesListView.Name = "choicesListView";
345      this.choicesListView.Size = new System.Drawing.Size(411, 238);
346      this.choicesListView.TabIndex = 6;
347      this.choicesListView.UseCompatibleStateImageBehavior = false;
348      this.choicesListView.View = System.Windows.Forms.View.Details;
349      this.choicesListView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.choiceListView_ItemChecked);
350      //
351      // columnHeader2
352      //
353      this.columnHeader2.Width = 150;
354      //
355      // instancesTabPage
356      //
357      this.instancesTabPage.Controls.Add(this.label1);
358      this.instancesTabPage.Controls.Add(this.instanceDiscoveryProgressBar);
359      this.instancesTabPage.Controls.Add(this.selectNoneCheckBox);
360      this.instancesTabPage.Controls.Add(this.instanceDiscoveryProgressLabel);
361      this.instancesTabPage.Controls.Add(this.selectAllCheckBox);
362      this.instancesTabPage.Controls.Add(this.instancesTreeView);
363      this.instancesTabPage.Location = new System.Drawing.Point(4, 22);
364      this.instancesTabPage.Name = "instancesTabPage";
365      this.instancesTabPage.Padding = new System.Windows.Forms.Padding(3);
366      this.instancesTabPage.Size = new System.Drawing.Size(379, 291);
367      this.instancesTabPage.TabIndex = 0;
368      this.instancesTabPage.Text = "Problem Instances";
369      this.instancesTabPage.UseVisualStyleBackColor = true;
370      //
371      // label1
372      //
373      this.label1.AutoSize = true;
374      this.label1.Location = new System.Drawing.Point(6, 13);
375      this.label1.Name = "label1";
376      this.label1.Size = new System.Drawing.Size(40, 13);
377      this.label1.TabIndex = 0;
378      this.label1.Text = "Select:";
379      //
380      // instancesTreeView
381      //
382      this.instancesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
383            | System.Windows.Forms.AnchorStyles.Left)
384            | System.Windows.Forms.AnchorStyles.Right)));
385      this.instancesTreeView.CheckBoxes = true;
386      this.instancesTreeView.Location = new System.Drawing.Point(6, 35);
387      this.instancesTreeView.Name = "instancesTreeView";
388      this.instancesTreeView.Size = new System.Drawing.Size(367, 250);
389      this.instancesTreeView.TabIndex = 6;
390      this.instancesTreeView.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.instancesTreeView_AfterCheck);
391      //
392      // experimentsToCreateDescriptionLabel
393      //
394      this.experimentsToCreateDescriptionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
395      this.experimentsToCreateDescriptionLabel.AutoSize = true;
396      this.experimentsToCreateDescriptionLabel.Location = new System.Drawing.Point(12, 382);
397      this.experimentsToCreateDescriptionLabel.Name = "experimentsToCreateDescriptionLabel";
398      this.experimentsToCreateDescriptionLabel.Size = new System.Drawing.Size(56, 13);
399      this.experimentsToCreateDescriptionLabel.TabIndex = 5;
400      this.experimentsToCreateDescriptionLabel.Text = "Variations:";
401      //
402      // variationsLabel
403      //
404      this.variationsLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
405      this.variationsLabel.AutoSize = true;
406      this.variationsLabel.Location = new System.Drawing.Point(74, 382);
407      this.variationsLabel.Name = "variationsLabel";
408      this.variationsLabel.Size = new System.Drawing.Size(13, 13);
409      this.variationsLabel.TabIndex = 6;
410      this.variationsLabel.Text = "1";
411      this.variationsLabel.TextChanged += new System.EventHandler(this.experimentsLabel_TextChanged);
412      //
413      // errorProvider
414      //
415      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
416      this.errorProvider.ContainerControl = this;
417      //
418      // warningProvider
419      //
420      this.warningProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
421      this.warningProvider.ContainerControl = this;
422      this.warningProvider.Icon = ((System.Drawing.Icon)(resources.GetObject("warningProvider.Icon")));
423      //
424      // experimentCreationProgressBar
425      //
426      this.experimentCreationProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
427            | System.Windows.Forms.AnchorStyles.Right)));
428      this.experimentCreationProgressBar.Location = new System.Drawing.Point(371, 377);
429      this.experimentCreationProgressBar.Name = "experimentCreationProgressBar";
430      this.experimentCreationProgressBar.Size = new System.Drawing.Size(178, 23);
431      this.experimentCreationProgressBar.TabIndex = 9;
432      this.experimentCreationProgressBar.Visible = false;
433      //
434      // combinationsTextBox
435      //
436      this.combinationsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
437      this.combinationsTextBox.Location = new System.Drawing.Point(265, 379);
438      this.combinationsTextBox.Name = "combinationsTextBox";
439      this.combinationsTextBox.Size = new System.Drawing.Size(100, 20);
440      this.combinationsTextBox.TabIndex = 10;
441      this.combinationsTextBox.Text = "10";
442      //
443      // label2
444      //
445      this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
446      this.label2.AutoSize = true;
447      this.label2.Location = new System.Drawing.Point(173, 382);
448      this.label2.Name = "label2";
449      this.label2.Size = new System.Drawing.Size(86, 13);
450      this.label2.TabIndex = 11;
451      this.label2.Text = "Var. to generate:";
452      //
453      // CreateExperimentDialog
454      //
455      this.AcceptButton = this.okButton;
456      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
457      this.CancelButton = this.cancelButton;
458      this.ClientSize = new System.Drawing.Size(642, 412);
459      this.Controls.Add(this.label2);
460      this.Controls.Add(this.combinationsTextBox);
461      this.Controls.Add(this.experimentCreationProgressBar);
462      this.Controls.Add(this.variationsLabel);
463      this.Controls.Add(this.experimentsToCreateDescriptionLabel);
464      this.Controls.Add(this.tabControl);
465      this.Controls.Add(this.repetitionsNumericUpDown);
466      this.Controls.Add(this.repetitionsLabel);
467      this.Controls.Add(this.createBatchRunLabel);
468      this.Controls.Add(this.createBatchRunCheckBox);
469      this.Controls.Add(this.cancelButton);
470      this.Controls.Add(this.okButton);
471      this.MaximizeBox = false;
472      this.MinimizeBox = false;
473      this.Name = "CreateExperimentDialog";
474      this.ShowIcon = false;
475      this.ShowInTaskbar = false;
476      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
477      this.Text = "Create Experiment";
478      this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CreateExperimentDialog_FormClosing);
479      this.Load += new System.EventHandler(this.CreateExperimentDialog_Load);
480      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
481      this.tabControl.ResumeLayout(false);
482      this.parametersTabPage.ResumeLayout(false);
483      this.parametersSplitContainer.Panel1.ResumeLayout(false);
484      this.parametersSplitContainer.Panel2.ResumeLayout(false);
485      this.parametersSplitContainer.Panel2.PerformLayout();
486      ((System.ComponentModel.ISupportInitialize)(this.parametersSplitContainer)).EndInit();
487      this.parametersSplitContainer.ResumeLayout(false);
488      this.instancesTabPage.ResumeLayout(false);
489      this.instancesTabPage.PerformLayout();
490      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
491      ((System.ComponentModel.ISupportInitialize)(this.warningProvider)).EndInit();
492      this.ResumeLayout(false);
493      this.PerformLayout();
494
495    }
496
497    #endregion
498
499    private System.Windows.Forms.Button okButton;
500    private System.Windows.Forms.Button cancelButton;
501    private System.Windows.Forms.CheckBox createBatchRunCheckBox;
502    private System.Windows.Forms.Label createBatchRunLabel;
503    private System.Windows.Forms.Label repetitionsLabel;
504    private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
505    private System.Windows.Forms.ToolTip toolTip;
506    private System.ComponentModel.BackgroundWorker experimentCreationBackgroundWorker;
507    private System.Windows.Forms.ProgressBar instanceDiscoveryProgressBar;
508    private System.Windows.Forms.Label instanceDiscoveryProgressLabel;
509    private System.Windows.Forms.CheckBox selectAllCheckBox;
510    private System.Windows.Forms.CheckBox selectNoneCheckBox;
511    private System.ComponentModel.BackgroundWorker instanceDiscoveryBackgroundWorker;
512    private System.Windows.Forms.TabControl tabControl;
513    private System.Windows.Forms.TabPage parametersTabPage;
514    private System.Windows.Forms.TabPage instancesTabPage;
515    private System.Windows.Forms.SplitContainer parametersSplitContainer;
516    private System.Windows.Forms.ListView parametersListView;
517    private System.Windows.Forms.ColumnHeader columnHeader1;
518    private System.Windows.Forms.Label experimentsToCreateDescriptionLabel;
519    private System.Windows.Forms.Label variationsLabel;
520    private System.Windows.Forms.Label detailsTypeLabel;
521    private System.Windows.Forms.ListView choicesListView;
522    private System.Windows.Forms.ColumnHeader columnHeader2;
523    private System.Windows.Forms.Label label1;
524    private System.Windows.Forms.ErrorProvider errorProvider;
525    private System.Windows.Forms.ErrorProvider warningProvider;
526    private System.Windows.Forms.TreeView instancesTreeView;
527    private Data.Views.StringConvertibleArrayView stringConvertibleArrayView;
528    private System.Windows.Forms.ProgressBar experimentCreationProgressBar;
529    private System.Windows.Forms.Button generateButton;
530    private System.Windows.Forms.Label label2;
531    private System.Windows.Forms.TextBox combinationsTextBox;
532
533  }
534}
Note: See TracBrowser for help on using the repository browser.