1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2019 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 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
22 | partial class IntervalConstraintView {
|
---|
23 | /// <summary>
|
---|
24 | /// Required designer variable.
|
---|
25 | /// </summary>
|
---|
26 | private System.ComponentModel.IContainer components = null;
|
---|
27 |
|
---|
28 | /// <summary>
|
---|
29 | /// Clean up any resources being used.
|
---|
30 | /// </summary>
|
---|
31 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
32 | protected override void Dispose(bool disposing) {
|
---|
33 | if (disposing && (components != null)) {
|
---|
34 | components.Dispose();
|
---|
35 | }
|
---|
36 | base.Dispose(disposing);
|
---|
37 | }
|
---|
38 |
|
---|
39 | #region Component Designer generated code
|
---|
40 |
|
---|
41 | /// <summary>
|
---|
42 | /// Required method for Designer support - do not modify
|
---|
43 | /// the contents of this method with the code editor.
|
---|
44 | /// </summary>
|
---|
45 | private void InitializeComponent() {
|
---|
46 | this.components = new System.ComponentModel.Container();
|
---|
47 | this.lowerboundLabel = new System.Windows.Forms.Label();
|
---|
48 | this.upperboundLabel = new System.Windows.Forms.Label();
|
---|
49 | this.incllowerboundLabel = new System.Windows.Forms.Label();
|
---|
50 | this.inclupperboundLabel = new System.Windows.Forms.Label();
|
---|
51 | this.variableLabel = new System.Windows.Forms.Label();
|
---|
52 | this.numberderivationLabel = new System.Windows.Forms.Label();
|
---|
53 | this.upperboundInput = new System.Windows.Forms.TextBox();
|
---|
54 | this.lowerboundInput = new System.Windows.Forms.TextBox();
|
---|
55 | this.variableInput = new System.Windows.Forms.TextBox();
|
---|
56 | this.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
57 | this.label1 = new System.Windows.Forms.Label();
|
---|
58 | this.numberderivationInput = new System.Windows.Forms.ComboBox();
|
---|
59 | this.ischeckedCheckBox = new System.Windows.Forms.CheckBox();
|
---|
60 | this.expressionInput = new System.Windows.Forms.TextBox();
|
---|
61 | this.expressionLabel = new System.Windows.Forms.Label();
|
---|
62 | this.inclupperboundInput = new System.Windows.Forms.CheckBox();
|
---|
63 | this.incllowerboundInput = new System.Windows.Forms.CheckBox();
|
---|
64 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
65 | this.enabledLabel = new System.Windows.Forms.Label();
|
---|
66 | this.groupBox1.SuspendLayout();
|
---|
67 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
68 | this.SuspendLayout();
|
---|
69 | //
|
---|
70 | // lowerboundLabel
|
---|
71 | //
|
---|
72 | this.lowerboundLabel.AutoSize = true;
|
---|
73 | this.lowerboundLabel.Location = new System.Drawing.Point(8, 101);
|
---|
74 | this.lowerboundLabel.Name = "lowerboundLabel";
|
---|
75 | this.lowerboundLabel.Size = new System.Drawing.Size(69, 13);
|
---|
76 | this.lowerboundLabel.TabIndex = 2;
|
---|
77 | this.lowerboundLabel.Text = "Lowerbound:";
|
---|
78 | //
|
---|
79 | // upperboundLabel
|
---|
80 | //
|
---|
81 | this.upperboundLabel.AutoSize = true;
|
---|
82 | this.upperboundLabel.Location = new System.Drawing.Point(8, 126);
|
---|
83 | this.upperboundLabel.Name = "upperboundLabel";
|
---|
84 | this.upperboundLabel.Size = new System.Drawing.Size(69, 13);
|
---|
85 | this.upperboundLabel.TabIndex = 3;
|
---|
86 | this.upperboundLabel.Text = "Upperbound:";
|
---|
87 | //
|
---|
88 | // incllowerboundLabel
|
---|
89 | //
|
---|
90 | this.incllowerboundLabel.AutoSize = true;
|
---|
91 | this.incllowerboundLabel.Location = new System.Drawing.Point(8, 153);
|
---|
92 | this.incllowerboundLabel.Name = "incllowerboundLabel";
|
---|
93 | this.incllowerboundLabel.Size = new System.Drawing.Size(92, 13);
|
---|
94 | this.incllowerboundLabel.TabIndex = 4;
|
---|
95 | this.incllowerboundLabel.Text = "Incl. Lowerbound:";
|
---|
96 | //
|
---|
97 | // inclupperboundLabel
|
---|
98 | //
|
---|
99 | this.inclupperboundLabel.AutoSize = true;
|
---|
100 | this.inclupperboundLabel.Location = new System.Drawing.Point(8, 178);
|
---|
101 | this.inclupperboundLabel.Name = "inclupperboundLabel";
|
---|
102 | this.inclupperboundLabel.Size = new System.Drawing.Size(92, 13);
|
---|
103 | this.inclupperboundLabel.TabIndex = 5;
|
---|
104 | this.inclupperboundLabel.Text = "Incl. Upperbound:";
|
---|
105 | //
|
---|
106 | // variableLabel
|
---|
107 | //
|
---|
108 | this.variableLabel.AutoSize = true;
|
---|
109 | this.variableLabel.Location = new System.Drawing.Point(8, 47);
|
---|
110 | this.variableLabel.Name = "variableLabel";
|
---|
111 | this.variableLabel.Size = new System.Drawing.Size(48, 13);
|
---|
112 | this.variableLabel.TabIndex = 7;
|
---|
113 | this.variableLabel.Text = "Variable:";
|
---|
114 | //
|
---|
115 | // numberderivationLabel
|
---|
116 | //
|
---|
117 | this.numberderivationLabel.AutoSize = true;
|
---|
118 | this.numberderivationLabel.Location = new System.Drawing.Point(8, 74);
|
---|
119 | this.numberderivationLabel.Name = "numberderivationLabel";
|
---|
120 | this.numberderivationLabel.Size = new System.Drawing.Size(65, 13);
|
---|
121 | this.numberderivationLabel.TabIndex = 8;
|
---|
122 | this.numberderivationLabel.Text = "#Derivation:";
|
---|
123 | //
|
---|
124 | // upperboundInput
|
---|
125 | //
|
---|
126 | this.upperboundInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
127 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
128 | this.upperboundInput.Location = new System.Drawing.Point(108, 123);
|
---|
129 | this.upperboundInput.Name = "upperboundInput";
|
---|
130 | this.upperboundInput.Size = new System.Drawing.Size(473, 20);
|
---|
131 | this.upperboundInput.TabIndex = 11;
|
---|
132 | this.upperboundInput.Validating += new System.ComponentModel.CancelEventHandler(this.upperboundInput_Validating);
|
---|
133 | this.upperboundInput.Validated += new System.EventHandler(this.upperboundInput_Validated);
|
---|
134 | //
|
---|
135 | // lowerboundInput
|
---|
136 | //
|
---|
137 | this.lowerboundInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
138 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
139 | this.lowerboundInput.Location = new System.Drawing.Point(108, 98);
|
---|
140 | this.lowerboundInput.Name = "lowerboundInput";
|
---|
141 | this.lowerboundInput.Size = new System.Drawing.Size(473, 20);
|
---|
142 | this.lowerboundInput.TabIndex = 12;
|
---|
143 | this.lowerboundInput.Validating += new System.ComponentModel.CancelEventHandler(this.lowerboundInput_Validating);
|
---|
144 | this.lowerboundInput.Validated += new System.EventHandler(this.lowerboundInput_Validated);
|
---|
145 | //
|
---|
146 | // variableInput
|
---|
147 | //
|
---|
148 | this.variableInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
149 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
150 | this.variableInput.Location = new System.Drawing.Point(108, 44);
|
---|
151 | this.variableInput.Name = "variableInput";
|
---|
152 | this.variableInput.Size = new System.Drawing.Size(473, 20);
|
---|
153 | this.variableInput.TabIndex = 15;
|
---|
154 | //
|
---|
155 | // groupBox1
|
---|
156 | //
|
---|
157 | this.groupBox1.Controls.Add(this.enabledLabel);
|
---|
158 | this.groupBox1.Controls.Add(this.label1);
|
---|
159 | this.groupBox1.Controls.Add(this.numberderivationInput);
|
---|
160 | this.groupBox1.Controls.Add(this.ischeckedCheckBox);
|
---|
161 | this.groupBox1.Controls.Add(this.expressionInput);
|
---|
162 | this.groupBox1.Controls.Add(this.expressionLabel);
|
---|
163 | this.groupBox1.Controls.Add(this.inclupperboundInput);
|
---|
164 | this.groupBox1.Controls.Add(this.incllowerboundInput);
|
---|
165 | this.groupBox1.Controls.Add(this.variableInput);
|
---|
166 | this.groupBox1.Controls.Add(this.lowerboundInput);
|
---|
167 | this.groupBox1.Controls.Add(this.upperboundInput);
|
---|
168 | this.groupBox1.Controls.Add(this.numberderivationLabel);
|
---|
169 | this.groupBox1.Controls.Add(this.variableLabel);
|
---|
170 | this.groupBox1.Controls.Add(this.inclupperboundLabel);
|
---|
171 | this.groupBox1.Controls.Add(this.incllowerboundLabel);
|
---|
172 | this.groupBox1.Controls.Add(this.upperboundLabel);
|
---|
173 | this.groupBox1.Controls.Add(this.lowerboundLabel);
|
---|
174 | this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
175 | this.groupBox1.Location = new System.Drawing.Point(0, 0);
|
---|
176 | this.groupBox1.Name = "groupBox1";
|
---|
177 | this.groupBox1.Size = new System.Drawing.Size(587, 380);
|
---|
178 | this.groupBox1.TabIndex = 0;
|
---|
179 | this.groupBox1.TabStop = false;
|
---|
180 | this.groupBox1.Text = "Interval Constraints Detail";
|
---|
181 | //
|
---|
182 | // label1
|
---|
183 | //
|
---|
184 | this.label1.AutoSize = true;
|
---|
185 | this.label1.Location = new System.Drawing.Point(11, -105);
|
---|
186 | this.label1.Name = "label1";
|
---|
187 | this.label1.Size = new System.Drawing.Size(49, 13);
|
---|
188 | this.label1.TabIndex = 28;
|
---|
189 | this.label1.Text = "Enabled:";
|
---|
190 | //
|
---|
191 | // numberderivationInput
|
---|
192 | //
|
---|
193 | this.numberderivationInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
194 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
195 | this.numberderivationInput.FormattingEnabled = true;
|
---|
196 | this.numberderivationInput.Location = new System.Drawing.Point(108, 71);
|
---|
197 | this.numberderivationInput.Name = "numberderivationInput";
|
---|
198 | this.numberderivationInput.Size = new System.Drawing.Size(473, 21);
|
---|
199 | this.numberderivationInput.TabIndex = 27;
|
---|
200 | this.numberderivationInput.SelectedIndexChanged += new System.EventHandler(this.numberderivationInput_SelectedIndexChanged);
|
---|
201 | //
|
---|
202 | // ischeckedCheckBox
|
---|
203 | //
|
---|
204 | this.ischeckedCheckBox.AutoSize = true;
|
---|
205 | this.ischeckedCheckBox.Location = new System.Drawing.Point(108, 200);
|
---|
206 | this.ischeckedCheckBox.Name = "ischeckedCheckBox";
|
---|
207 | this.ischeckedCheckBox.Size = new System.Drawing.Size(15, 14);
|
---|
208 | this.ischeckedCheckBox.TabIndex = 26;
|
---|
209 | this.ischeckedCheckBox.UseVisualStyleBackColor = true;
|
---|
210 | this.ischeckedCheckBox.CheckedChanged += new System.EventHandler(this.ischeckedCheckBox_CheckedChanged);
|
---|
211 | //
|
---|
212 | // expressionInput
|
---|
213 | //
|
---|
214 | this.expressionInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
215 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
216 | this.expressionInput.Location = new System.Drawing.Point(108, 19);
|
---|
217 | this.expressionInput.Name = "expressionInput";
|
---|
218 | this.expressionInput.Size = new System.Drawing.Size(473, 20);
|
---|
219 | this.expressionInput.TabIndex = 25;
|
---|
220 | //
|
---|
221 | // expressionLabel
|
---|
222 | //
|
---|
223 | this.expressionLabel.AutoSize = true;
|
---|
224 | this.expressionLabel.Location = new System.Drawing.Point(8, 22);
|
---|
225 | this.expressionLabel.Name = "expressionLabel";
|
---|
226 | this.expressionLabel.Size = new System.Drawing.Size(61, 13);
|
---|
227 | this.expressionLabel.TabIndex = 24;
|
---|
228 | this.expressionLabel.Text = "Expression:";
|
---|
229 | //
|
---|
230 | // inclupperboundInput
|
---|
231 | //
|
---|
232 | this.inclupperboundInput.AutoSize = true;
|
---|
233 | this.inclupperboundInput.Location = new System.Drawing.Point(108, 177);
|
---|
234 | this.inclupperboundInput.Name = "inclupperboundInput";
|
---|
235 | this.inclupperboundInput.Size = new System.Drawing.Size(15, 14);
|
---|
236 | this.inclupperboundInput.TabIndex = 23;
|
---|
237 | this.inclupperboundInput.UseVisualStyleBackColor = true;
|
---|
238 | this.inclupperboundInput.CheckedChanged += new System.EventHandler(this.inclupperboundInput_CheckedChanged);
|
---|
239 | //
|
---|
240 | // incllowerboundInput
|
---|
241 | //
|
---|
242 | this.incllowerboundInput.AutoSize = true;
|
---|
243 | this.incllowerboundInput.Location = new System.Drawing.Point(108, 153);
|
---|
244 | this.incllowerboundInput.Name = "incllowerboundInput";
|
---|
245 | this.incllowerboundInput.Size = new System.Drawing.Size(15, 14);
|
---|
246 | this.incllowerboundInput.TabIndex = 22;
|
---|
247 | this.incllowerboundInput.UseVisualStyleBackColor = true;
|
---|
248 | this.incllowerboundInput.CheckedChanged += new System.EventHandler(this.incllowerboundInput_CheckedChanged);
|
---|
249 | //
|
---|
250 | // errorProvider
|
---|
251 | //
|
---|
252 | this.errorProvider.ContainerControl = this;
|
---|
253 | this.errorProvider.RightToLeft = true;
|
---|
254 | //
|
---|
255 | // enabledLabel
|
---|
256 | //
|
---|
257 | this.enabledLabel.AutoSize = true;
|
---|
258 | this.enabledLabel.Location = new System.Drawing.Point(8, 200);
|
---|
259 | this.enabledLabel.Name = "enabledLabel";
|
---|
260 | this.enabledLabel.Size = new System.Drawing.Size(49, 13);
|
---|
261 | this.enabledLabel.TabIndex = 29;
|
---|
262 | this.enabledLabel.Text = "Enabled:";
|
---|
263 | //
|
---|
264 | // IntervalConstraintView
|
---|
265 | //
|
---|
266 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
267 | this.Controls.Add(this.groupBox1);
|
---|
268 | this.Name = "IntervalConstraintView";
|
---|
269 | this.Size = new System.Drawing.Size(587, 380);
|
---|
270 | this.groupBox1.ResumeLayout(false);
|
---|
271 | this.groupBox1.PerformLayout();
|
---|
272 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
273 | this.ResumeLayout(false);
|
---|
274 |
|
---|
275 | }
|
---|
276 |
|
---|
277 | #endregion
|
---|
278 | private System.Windows.Forms.Label lowerboundLabel;
|
---|
279 | private System.Windows.Forms.Label upperboundLabel;
|
---|
280 | private System.Windows.Forms.Label incllowerboundLabel;
|
---|
281 | private System.Windows.Forms.Label inclupperboundLabel;
|
---|
282 | private System.Windows.Forms.Label variableLabel;
|
---|
283 | private System.Windows.Forms.Label numberderivationLabel;
|
---|
284 | private System.Windows.Forms.TextBox upperboundInput;
|
---|
285 | private System.Windows.Forms.TextBox lowerboundInput;
|
---|
286 | private System.Windows.Forms.TextBox variableInput;
|
---|
287 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
288 | private System.Windows.Forms.CheckBox inclupperboundInput;
|
---|
289 | private System.Windows.Forms.CheckBox incllowerboundInput;
|
---|
290 | private System.Windows.Forms.TextBox expressionInput;
|
---|
291 | private System.Windows.Forms.Label expressionLabel;
|
---|
292 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
293 | private System.Windows.Forms.CheckBox ischeckedCheckBox;
|
---|
294 | private System.Windows.Forms.ComboBox numberderivationInput;
|
---|
295 | private System.Windows.Forms.Label label1;
|
---|
296 | private System.Windows.Forms.Label enabledLabel;
|
---|
297 | }
|
---|
298 | }
|
---|