Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 7841 was 7841, checked in by abeham, 12 years ago

#1851: Updated CreateExperimentDialog to discover and display available problem instances...

File size: 11.5 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.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("QAPLIB", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("TSPLIB", System.Windows.Forms.HorizontalAlignment.Left);
50      System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("bur26a");
51      System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("esc32a");
52      System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("berlin52");
53      System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("ch130");
54      this.okButton = new System.Windows.Forms.Button();
55      this.cancelButton = new System.Windows.Forms.Button();
56      this.createBatchRunCheckBox = new System.Windows.Forms.CheckBox();
57      this.createBatchRunLabel = new System.Windows.Forms.Label();
58      this.repetitionsLabel = new System.Windows.Forms.Label();
59      this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
60      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
61      this.instancesLabel = new System.Windows.Forms.Label();
62      this.instancesListView = new System.Windows.Forms.ListView();
63      this.columnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
64      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
65      this.SuspendLayout();
66      //
67      // okButton
68      //
69      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
70      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
71      this.okButton.Enabled = false;
72      this.okButton.Location = new System.Drawing.Point(113, 259);
73      this.okButton.Name = "okButton";
74      this.okButton.Size = new System.Drawing.Size(75, 23);
75      this.okButton.TabIndex = 4;
76      this.okButton.Text = "&OK";
77      this.okButton.UseVisualStyleBackColor = true;
78      this.okButton.Click += new System.EventHandler(this.okButton_Click);
79      //
80      // cancelButton
81      //
82      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
83      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
84      this.cancelButton.Location = new System.Drawing.Point(194, 259);
85      this.cancelButton.Name = "cancelButton";
86      this.cancelButton.Size = new System.Drawing.Size(75, 23);
87      this.cancelButton.TabIndex = 5;
88      this.cancelButton.Text = "&Cancel";
89      this.cancelButton.UseVisualStyleBackColor = true;
90      //
91      // createBatchRunCheckBox
92      //
93      this.createBatchRunCheckBox.AutoSize = true;
94      this.createBatchRunCheckBox.Checked = true;
95      this.createBatchRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
96      this.createBatchRunCheckBox.Location = new System.Drawing.Point(113, 8);
97      this.createBatchRunCheckBox.Name = "createBatchRunCheckBox";
98      this.createBatchRunCheckBox.Size = new System.Drawing.Size(15, 14);
99      this.createBatchRunCheckBox.TabIndex = 1;
100      this.toolTip.SetToolTip(this.createBatchRunCheckBox, "Check to create a batch run for executing an optimizer multiple times.");
101      this.createBatchRunCheckBox.UseVisualStyleBackColor = true;
102      this.createBatchRunCheckBox.CheckedChanged += new System.EventHandler(this.createBatchRunCheckBox_CheckedChanged);
103      //
104      // createBatchRunLabel
105      //
106      this.createBatchRunLabel.AutoSize = true;
107      this.createBatchRunLabel.Location = new System.Drawing.Point(12, 9);
108      this.createBatchRunLabel.Name = "createBatchRunLabel";
109      this.createBatchRunLabel.Size = new System.Drawing.Size(95, 13);
110      this.createBatchRunLabel.TabIndex = 0;
111      this.createBatchRunLabel.Text = "&Create Batch Run:";
112      //
113      // repetitionsLabel
114      //
115      this.repetitionsLabel.AutoSize = true;
116      this.repetitionsLabel.Location = new System.Drawing.Point(12, 31);
117      this.repetitionsLabel.Name = "repetitionsLabel";
118      this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
119      this.repetitionsLabel.TabIndex = 2;
120      this.repetitionsLabel.Text = "&Repetitions:";
121      //
122      // repetitionsNumericUpDown
123      //
124      this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
125            | System.Windows.Forms.AnchorStyles.Right)));
126      this.repetitionsNumericUpDown.Location = new System.Drawing.Point(113, 28);
127      this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
128            1000000,
129            0,
130            0,
131            0});
132      this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
133            1,
134            0,
135            0,
136            0});
137      this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
138      this.repetitionsNumericUpDown.Size = new System.Drawing.Size(156, 20);
139      this.repetitionsNumericUpDown.TabIndex = 3;
140      this.repetitionsNumericUpDown.ThousandsSeparator = true;
141      this.toolTip.SetToolTip(this.repetitionsNumericUpDown, "Number of repetitions executed by the batch run.");
142      this.repetitionsNumericUpDown.Value = new decimal(new int[] {
143            10,
144            0,
145            0,
146            0});
147      this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
148      //
149      // instancesLabel
150      //
151      this.instancesLabel.AutoSize = true;
152      this.instancesLabel.Location = new System.Drawing.Point(12, 54);
153      this.instancesLabel.Name = "instancesLabel";
154      this.instancesLabel.Size = new System.Drawing.Size(56, 13);
155      this.instancesLabel.TabIndex = 2;
156      this.instancesLabel.Text = "&Instances:";
157      //
158      // instancesListView
159      //
160      this.instancesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
161            | System.Windows.Forms.AnchorStyles.Left)
162            | System.Windows.Forms.AnchorStyles.Right)));
163      this.instancesListView.CheckBoxes = true;
164      this.instancesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
165            this.columnHeader});
166      listViewGroup1.Header = "QAPLIB";
167      listViewGroup1.Name = "QAPLIBHeader";
168      listViewGroup2.Header = "TSPLIB";
169      listViewGroup2.Name = "TSPLIBHeader";
170      listViewGroup2.Tag = "";
171      this.instancesListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
172            listViewGroup1,
173            listViewGroup2});
174      this.instancesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
175      listViewItem1.Checked = true;
176      listViewItem1.Group = listViewGroup1;
177      listViewItem1.StateImageIndex = 1;
178      listViewItem2.Checked = true;
179      listViewItem2.Group = listViewGroup1;
180      listViewItem2.StateImageIndex = 1;
181      listViewItem3.Group = listViewGroup2;
182      listViewItem3.StateImageIndex = 0;
183      listViewItem4.Group = listViewGroup2;
184      listViewItem4.StateImageIndex = 0;
185      this.instancesListView.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
186            listViewItem1,
187            listViewItem2,
188            listViewItem3,
189            listViewItem4});
190      this.instancesListView.Location = new System.Drawing.Point(113, 54);
191      this.instancesListView.Name = "instancesListView";
192      this.instancesListView.Size = new System.Drawing.Size(156, 199);
193      this.instancesListView.TabIndex = 6;
194      this.instancesListView.UseCompatibleStateImageBehavior = false;
195      this.instancesListView.View = System.Windows.Forms.View.Details;
196      //
197      // columnHeader
198      //
199      this.columnHeader.Width = 150;
200      //
201      // CreateExperimentDialog
202      //
203      this.AcceptButton = this.okButton;
204      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
205      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
206      this.CancelButton = this.cancelButton;
207      this.ClientSize = new System.Drawing.Size(281, 294);
208      this.Controls.Add(this.instancesListView);
209      this.Controls.Add(this.repetitionsNumericUpDown);
210      this.Controls.Add(this.instancesLabel);
211      this.Controls.Add(this.repetitionsLabel);
212      this.Controls.Add(this.createBatchRunLabel);
213      this.Controls.Add(this.createBatchRunCheckBox);
214      this.Controls.Add(this.cancelButton);
215      this.Controls.Add(this.okButton);
216      this.MaximizeBox = false;
217      this.MinimizeBox = false;
218      this.Name = "CreateExperimentDialog";
219      this.ShowIcon = false;
220      this.ShowInTaskbar = false;
221      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
222      this.Text = "Create Experiment";
223      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
224      this.ResumeLayout(false);
225      this.PerformLayout();
226
227    }
228
229    #endregion
230
231    private System.Windows.Forms.Button okButton;
232    private System.Windows.Forms.Button cancelButton;
233    private System.Windows.Forms.CheckBox createBatchRunCheckBox;
234    private System.Windows.Forms.Label createBatchRunLabel;
235    private System.Windows.Forms.Label repetitionsLabel;
236    private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
237    private System.Windows.Forms.ToolTip toolTip;
238    private System.Windows.Forms.Label instancesLabel;
239    private System.Windows.Forms.ListView instancesListView;
240    private System.Windows.Forms.ColumnHeader columnHeader;
241
242  }
243}
Note: See TracBrowser for help on using the repository browser.