Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.Designer.cs @ 7967

Last change on this file since 7967 was 7967, checked in by jkarder, 12 years ago

#1688:

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