Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Templates/HeuristicLab.VS2010Wizards/AlgorithmWizardForm.Designer.cs @ 5704

Last change on this file since 5704 was 5704, checked in by abeham, 13 years ago

#567

  • Added item template
  • Adapted problem template
  • Enabled tab key to continue editing the next column in the grid
File size: 13.3 KB
Line 
1namespace HeuristicLab.VS2010Wizards {
2  partial class AlgorithmWizardForm {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AlgorithmWizardForm));
27      this.label1 = new System.Windows.Forms.Label();
28      this.label2 = new System.Windows.Forms.Label();
29      this.algorithmDescriptionTextBox = new System.Windows.Forms.TextBox();
30      this.isMultiObjectiveCheckBox = new System.Windows.Forms.CheckBox();
31      this.algorithmNameTextBox = new System.Windows.Forms.TextBox();
32      this.cancelButton = new System.Windows.Forms.Button();
33      this.finishButton = new System.Windows.Forms.Button();
34      this.panel1 = new System.Windows.Forms.Panel();
35      this.label4 = new System.Windows.Forms.Label();
36      this.pictureBox1 = new System.Windows.Forms.PictureBox();
37      this.page2Panel = new System.Windows.Forms.Panel();
38      this.label3 = new System.Windows.Forms.Label();
39      this.parametersControl = new HeuristicLab.VS2010Wizards.ParametersControl();
40      this.panel2 = new System.Windows.Forms.Panel();
41      this.nextButton = new System.Windows.Forms.Button();
42      this.previousButton = new System.Windows.Forms.Button();
43      this.page1Panel = new System.Windows.Forms.Panel();
44      this.panel1.SuspendLayout();
45      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
46      this.page2Panel.SuspendLayout();
47      this.page1Panel.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // label1
51      //
52      this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
53      this.label1.AutoSize = true;
54      this.label1.Location = new System.Drawing.Point(100, 48);
55      this.label1.Name = "label1";
56      this.label1.Size = new System.Drawing.Size(38, 13);
57      this.label1.TabIndex = 0;
58      this.label1.Text = "Name:";
59      //
60      // label2
61      //
62      this.label2.Anchor = System.Windows.Forms.AnchorStyles.None;
63      this.label2.AutoSize = true;
64      this.label2.Location = new System.Drawing.Point(100, 96);
65      this.label2.Name = "label2";
66      this.label2.Size = new System.Drawing.Size(63, 13);
67      this.label2.TabIndex = 2;
68      this.label2.Text = "Description:";
69      //
70      // algorithmDescriptionTextBox
71      //
72      this.algorithmDescriptionTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
73      this.algorithmDescriptionTextBox.Location = new System.Drawing.Point(102, 112);
74      this.algorithmDescriptionTextBox.Multiline = true;
75      this.algorithmDescriptionTextBox.Name = "algorithmDescriptionTextBox";
76      this.algorithmDescriptionTextBox.Size = new System.Drawing.Size(469, 63);
77      this.algorithmDescriptionTextBox.TabIndex = 3;
78      //
79      // isMultiObjectiveCheckBox
80      //
81      this.isMultiObjectiveCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
82      this.isMultiObjectiveCheckBox.AutoSize = true;
83      this.isMultiObjectiveCheckBox.Location = new System.Drawing.Point(102, 188);
84      this.isMultiObjectiveCheckBox.Name = "isMultiObjectiveCheckBox";
85      this.isMultiObjectiveCheckBox.Size = new System.Drawing.Size(96, 17);
86      this.isMultiObjectiveCheckBox.TabIndex = 5;
87      this.isMultiObjectiveCheckBox.Text = "Multi-Objective";
88      this.isMultiObjectiveCheckBox.UseVisualStyleBackColor = true;
89      //
90      // algorithmNameTextBox
91      //
92      this.algorithmNameTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
93      this.algorithmNameTextBox.Location = new System.Drawing.Point(103, 64);
94      this.algorithmNameTextBox.Name = "algorithmNameTextBox";
95      this.algorithmNameTextBox.Size = new System.Drawing.Size(468, 20);
96      this.algorithmNameTextBox.TabIndex = 1;
97      this.algorithmNameTextBox.Text = "MyAlgorithm";
98      //
99      // cancelButton
100      //
101      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
102      this.cancelButton.Location = new System.Drawing.Point(589, 391);
103      this.cancelButton.Name = "cancelButton";
104      this.cancelButton.Size = new System.Drawing.Size(75, 25);
105      this.cancelButton.TabIndex = 7;
106      this.cancelButton.Text = "Cancel";
107      this.cancelButton.UseVisualStyleBackColor = true;
108      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
109      //
110      // finishButton
111      //
112      this.finishButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
113      this.finishButton.Location = new System.Drawing.Point(504, 391);
114      this.finishButton.Name = "finishButton";
115      this.finishButton.Size = new System.Drawing.Size(75, 25);
116      this.finishButton.TabIndex = 6;
117      this.finishButton.Text = "Finish";
118      this.finishButton.UseVisualStyleBackColor = true;
119      this.finishButton.Click += new System.EventHandler(this.finishButton_Click);
120      //
121      // panel1
122      //
123      this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
124                  | System.Windows.Forms.AnchorStyles.Right)));
125      this.panel1.BackColor = System.Drawing.Color.White;
126      this.panel1.Controls.Add(this.label4);
127      this.panel1.Controls.Add(this.pictureBox1);
128      this.panel1.Location = new System.Drawing.Point(0, 0);
129      this.panel1.Name = "panel1";
130      this.panel1.Size = new System.Drawing.Size(676, 81);
131      this.panel1.TabIndex = 8;
132      //
133      // label4
134      //
135      this.label4.AutoSize = true;
136      this.label4.Font = new System.Drawing.Font("Calibri", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
137      this.label4.Location = new System.Drawing.Point(96, 21);
138      this.label4.Name = "label4";
139      this.label4.Size = new System.Drawing.Size(214, 39);
140      this.label4.TabIndex = 1;
141      this.label4.Text = "New Algorithm";
142      //
143      // pictureBox1
144      //
145      this.pictureBox1.Image = global::HeuristicLab.VS2010Wizards.Properties.Resources.HL3_Logo;
146      this.pictureBox1.Location = new System.Drawing.Point(3, 3);
147      this.pictureBox1.Name = "pictureBox1";
148      this.pictureBox1.Size = new System.Drawing.Size(75, 75);
149      this.pictureBox1.TabIndex = 0;
150      this.pictureBox1.TabStop = false;
151      //
152      // page2Panel
153      //
154      this.page2Panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
155                  | System.Windows.Forms.AnchorStyles.Left)
156                  | System.Windows.Forms.AnchorStyles.Right)));
157      this.page2Panel.Controls.Add(this.label3);
158      this.page2Panel.Controls.Add(this.parametersControl);
159      this.page2Panel.Location = new System.Drawing.Point(0, 86);
160      this.page2Panel.Name = "page2Panel";
161      this.page2Panel.Size = new System.Drawing.Size(676, 289);
162      this.page2Panel.TabIndex = 10;
163      this.page2Panel.Visible = false;
164      //
165      // label3
166      //
167      this.label3.AutoSize = true;
168      this.label3.Location = new System.Drawing.Point(13, 10);
169      this.label3.Name = "label3";
170      this.label3.Size = new System.Drawing.Size(63, 13);
171      this.label3.TabIndex = 1;
172      this.label3.Text = "Parameters:";
173      //
174      // parametersControl
175      //
176      this.parametersControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
177                  | System.Windows.Forms.AnchorStyles.Left)
178                  | System.Windows.Forms.AnchorStyles.Right)));
179      this.parametersControl.Location = new System.Drawing.Point(0, 33);
180      this.parametersControl.Name = "parametersControl";
181      this.parametersControl.Size = new System.Drawing.Size(676, 256);
182      this.parametersControl.TabIndex = 0;
183      //
184      // panel2
185      //
186      this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
187                  | System.Windows.Forms.AnchorStyles.Right)));
188      this.panel2.BackColor = System.Drawing.Color.White;
189      this.panel2.ForeColor = System.Drawing.SystemColors.ControlText;
190      this.panel2.Location = new System.Drawing.Point(0, 379);
191      this.panel2.Name = "panel2";
192      this.panel2.Size = new System.Drawing.Size(676, 2);
193      this.panel2.TabIndex = 8;
194      //
195      // nextButton
196      //
197      this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
198      this.nextButton.Location = new System.Drawing.Point(406, 391);
199      this.nextButton.Name = "nextButton";
200      this.nextButton.Size = new System.Drawing.Size(75, 25);
201      this.nextButton.TabIndex = 6;
202      this.nextButton.Text = "Next >";
203      this.nextButton.UseVisualStyleBackColor = true;
204      this.nextButton.Click += new System.EventHandler(this.nextButton_Click);
205      //
206      // previousButton
207      //
208      this.previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
209      this.previousButton.Enabled = false;
210      this.previousButton.Location = new System.Drawing.Point(321, 391);
211      this.previousButton.Name = "previousButton";
212      this.previousButton.Size = new System.Drawing.Size(75, 25);
213      this.previousButton.TabIndex = 6;
214      this.previousButton.Text = "< Previous";
215      this.previousButton.UseVisualStyleBackColor = true;
216      this.previousButton.Click += new System.EventHandler(this.previousButton_Click);
217      //
218      // page1Panel
219      //
220      this.page1Panel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
221                  | System.Windows.Forms.AnchorStyles.Left)
222                  | System.Windows.Forms.AnchorStyles.Right)));
223      this.page1Panel.Controls.Add(this.label1);
224      this.page1Panel.Controls.Add(this.label2);
225      this.page1Panel.Controls.Add(this.algorithmDescriptionTextBox);
226      this.page1Panel.Controls.Add(this.algorithmNameTextBox);
227      this.page1Panel.Controls.Add(this.isMultiObjectiveCheckBox);
228      this.page1Panel.Location = new System.Drawing.Point(0, 86);
229      this.page1Panel.Name = "page1Panel";
230      this.page1Panel.Size = new System.Drawing.Size(676, 298);
231      this.page1Panel.TabIndex = 9;
232      //
233      // AlgorithmWizardForm
234      //
235      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
236      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
237      this.ClientSize = new System.Drawing.Size(676, 428);
238      this.Controls.Add(this.panel1);
239      this.Controls.Add(this.cancelButton);
240      this.Controls.Add(this.previousButton);
241      this.Controls.Add(this.nextButton);
242      this.Controls.Add(this.finishButton);
243      this.Controls.Add(this.panel2);
244      this.Controls.Add(this.page1Panel);
245      this.Controls.Add(this.page2Panel);
246      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
247      this.Name = "AlgorithmWizardForm";
248      this.Text = "New Algorithm Wizard";
249      this.panel1.ResumeLayout(false);
250      this.panel1.PerformLayout();
251      ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
252      this.page2Panel.ResumeLayout(false);
253      this.page2Panel.PerformLayout();
254      this.page1Panel.ResumeLayout(false);
255      this.page1Panel.PerformLayout();
256      this.ResumeLayout(false);
257
258    }
259
260    #endregion
261
262    private System.Windows.Forms.Label label1;
263    private System.Windows.Forms.Label label2;
264    private System.Windows.Forms.TextBox algorithmDescriptionTextBox;
265    private System.Windows.Forms.CheckBox isMultiObjectiveCheckBox;
266    private System.Windows.Forms.TextBox algorithmNameTextBox;
267    private System.Windows.Forms.Button cancelButton;
268    private System.Windows.Forms.Button finishButton;
269    private System.Windows.Forms.Panel panel1;
270    private System.Windows.Forms.PictureBox pictureBox1;
271    private System.Windows.Forms.Panel panel2;
272    private System.Windows.Forms.Label label4;
273    private System.Windows.Forms.Button nextButton;
274    private System.Windows.Forms.Button previousButton;
275    private System.Windows.Forms.Panel page1Panel;
276    private System.Windows.Forms.Panel page2Panel;
277    private ParametersControl parametersControl;
278    private System.Windows.Forms.Label label3;
279  }
280}
Note: See TracBrowser for help on using the repository browser.