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 |
|
---|
22 | namespace HeuristicLab.Encodings.ScheduleEncoding.Views {
|
---|
23 | partial class TaskView {
|
---|
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 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 | this.components = new System.ComponentModel.Container();
|
---|
48 | this.taskNrLabel = new System.Windows.Forms.Label();
|
---|
49 | this.taskNrTextBox = new System.Windows.Forms.TextBox();
|
---|
50 | this.resourceNrLabel = new System.Windows.Forms.Label();
|
---|
51 | this.resourceNrTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
53 | this.jobNrLabel = new System.Windows.Forms.Label();
|
---|
54 | this.jobNrTextBox = new System.Windows.Forms.TextBox();
|
---|
55 | this.durationLabel = new System.Windows.Forms.Label();
|
---|
56 | this.durationTextBox = new System.Windows.Forms.TextBox();
|
---|
57 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // taskNrLabel
|
---|
61 | //
|
---|
62 | this.taskNrLabel.AutoSize = true;
|
---|
63 | this.taskNrLabel.Location = new System.Drawing.Point(3, 6);
|
---|
64 | this.taskNrLabel.Name = "taskNrLabel";
|
---|
65 | this.taskNrLabel.Size = new System.Drawing.Size(48, 13);
|
---|
66 | this.taskNrLabel.TabIndex = 0;
|
---|
67 | this.taskNrLabel.Text = "Task Nr:";
|
---|
68 | //
|
---|
69 | // taskNrTextBox
|
---|
70 | //
|
---|
71 | this.taskNrTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
72 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
73 | this.taskNrTextBox.Location = new System.Drawing.Point(79, 3);
|
---|
74 | this.taskNrTextBox.Name = "taskNrTextBox";
|
---|
75 | this.taskNrTextBox.Size = new System.Drawing.Size(437, 20);
|
---|
76 | this.taskNrTextBox.TabIndex = 1;
|
---|
77 | this.taskNrTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.taskNrTextBox_Validating);
|
---|
78 | //
|
---|
79 | // resourceNrLabel
|
---|
80 | //
|
---|
81 | this.resourceNrLabel.AutoSize = true;
|
---|
82 | this.resourceNrLabel.Location = new System.Drawing.Point(3, 32);
|
---|
83 | this.resourceNrLabel.Name = "resourceNrLabel";
|
---|
84 | this.resourceNrLabel.Size = new System.Drawing.Size(70, 13);
|
---|
85 | this.resourceNrLabel.TabIndex = 0;
|
---|
86 | this.resourceNrLabel.Text = "Resource Nr:";
|
---|
87 | //
|
---|
88 | // resourceNrTextBox
|
---|
89 | //
|
---|
90 | this.resourceNrTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
91 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
92 | this.resourceNrTextBox.Location = new System.Drawing.Point(79, 29);
|
---|
93 | this.resourceNrTextBox.Name = "resourceNrTextBox";
|
---|
94 | this.resourceNrTextBox.Size = new System.Drawing.Size(437, 20);
|
---|
95 | this.resourceNrTextBox.TabIndex = 1;
|
---|
96 | this.resourceNrTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.resourceNrTextBox_Validating);
|
---|
97 | //
|
---|
98 | // errorProvider
|
---|
99 | //
|
---|
100 | this.errorProvider.ContainerControl = this;
|
---|
101 | //
|
---|
102 | // jobNrLabel
|
---|
103 | //
|
---|
104 | this.jobNrLabel.AutoSize = true;
|
---|
105 | this.jobNrLabel.Location = new System.Drawing.Point(3, 58);
|
---|
106 | this.jobNrLabel.Name = "jobNrLabel";
|
---|
107 | this.jobNrLabel.Size = new System.Drawing.Size(41, 13);
|
---|
108 | this.jobNrLabel.TabIndex = 0;
|
---|
109 | this.jobNrLabel.Text = "Job Nr:";
|
---|
110 | //
|
---|
111 | // jobNrTextBox
|
---|
112 | //
|
---|
113 | this.jobNrTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
114 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
115 | this.jobNrTextBox.Location = new System.Drawing.Point(79, 55);
|
---|
116 | this.jobNrTextBox.Name = "jobNrTextBox";
|
---|
117 | this.jobNrTextBox.Size = new System.Drawing.Size(437, 20);
|
---|
118 | this.jobNrTextBox.TabIndex = 1;
|
---|
119 | this.jobNrTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.jobNrTextBox_Validating);
|
---|
120 | //
|
---|
121 | // durationLabel
|
---|
122 | //
|
---|
123 | this.durationLabel.AutoSize = true;
|
---|
124 | this.durationLabel.Location = new System.Drawing.Point(3, 84);
|
---|
125 | this.durationLabel.Name = "durationLabel";
|
---|
126 | this.durationLabel.Size = new System.Drawing.Size(50, 13);
|
---|
127 | this.durationLabel.TabIndex = 0;
|
---|
128 | this.durationLabel.Text = "Duration:";
|
---|
129 | //
|
---|
130 | // durationTextBox
|
---|
131 | //
|
---|
132 | this.durationTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
133 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
134 | this.durationTextBox.Location = new System.Drawing.Point(79, 81);
|
---|
135 | this.durationTextBox.Name = "durationTextBox";
|
---|
136 | this.durationTextBox.Size = new System.Drawing.Size(437, 20);
|
---|
137 | this.durationTextBox.TabIndex = 1;
|
---|
138 | this.durationTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.durationTextBox_Validating);
|
---|
139 | //
|
---|
140 | // TaskView
|
---|
141 | //
|
---|
142 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
143 | this.Controls.Add(this.durationTextBox);
|
---|
144 | this.Controls.Add(this.durationLabel);
|
---|
145 | this.Controls.Add(this.jobNrTextBox);
|
---|
146 | this.Controls.Add(this.jobNrLabel);
|
---|
147 | this.Controls.Add(this.resourceNrTextBox);
|
---|
148 | this.Controls.Add(this.resourceNrLabel);
|
---|
149 | this.Controls.Add(this.taskNrTextBox);
|
---|
150 | this.Controls.Add(this.taskNrLabel);
|
---|
151 | this.Name = "TaskView";
|
---|
152 | this.Size = new System.Drawing.Size(519, 108);
|
---|
153 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
154 | this.ResumeLayout(false);
|
---|
155 | this.PerformLayout();
|
---|
156 |
|
---|
157 | }
|
---|
158 |
|
---|
159 | #endregion
|
---|
160 |
|
---|
161 | private System.Windows.Forms.Label taskNrLabel;
|
---|
162 | private System.Windows.Forms.TextBox taskNrTextBox;
|
---|
163 | private System.Windows.Forms.Label resourceNrLabel;
|
---|
164 | private System.Windows.Forms.TextBox resourceNrTextBox;
|
---|
165 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
166 | private System.Windows.Forms.TextBox jobNrTextBox;
|
---|
167 | private System.Windows.Forms.Label jobNrLabel;
|
---|
168 | private System.Windows.Forms.TextBox durationTextBox;
|
---|
169 | private System.Windows.Forms.Label durationLabel;
|
---|
170 | }
|
---|
171 | }
|
---|