1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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.Problems.DataAnalysis.Views {
|
---|
23 | partial class PartialDependencePlotConfigurationDialog {
|
---|
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 | this.xAxisGroupBox = new System.Windows.Forms.GroupBox();
|
---|
49 | this.maxXTextBox = new System.Windows.Forms.TextBox();
|
---|
50 | this.xAutomaticCheckBox = new System.Windows.Forms.CheckBox();
|
---|
51 | this.minXTextBox = new System.Windows.Forms.TextBox();
|
---|
52 | this.maxXLabel = new System.Windows.Forms.Label();
|
---|
53 | this.minXLabel = new System.Windows.Forms.Label();
|
---|
54 | this.yAxisGroupBox = new System.Windows.Forms.GroupBox();
|
---|
55 | this.maxYTextBox = new System.Windows.Forms.TextBox();
|
---|
56 | this.yAutomaticCheckBox = new System.Windows.Forms.CheckBox();
|
---|
57 | this.minYTextBox = new System.Windows.Forms.TextBox();
|
---|
58 | this.maxYLabel = new System.Windows.Forms.Label();
|
---|
59 | this.minYLabel = new System.Windows.Forms.Label();
|
---|
60 | this.miscGroupBox = new System.Windows.Forms.GroupBox();
|
---|
61 | this.StepsNumericUpDown = new System.Windows.Forms.NumericUpDown();
|
---|
62 | this.stepsLabel = new System.Windows.Forms.Label();
|
---|
63 | this.applyButton = new System.Windows.Forms.Button();
|
---|
64 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
65 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
|
---|
66 | this.xAxisGroupBox.SuspendLayout();
|
---|
67 | this.yAxisGroupBox.SuspendLayout();
|
---|
68 | this.miscGroupBox.SuspendLayout();
|
---|
69 | ((System.ComponentModel.ISupportInitialize)(this.StepsNumericUpDown)).BeginInit();
|
---|
70 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
71 | this.SuspendLayout();
|
---|
72 | //
|
---|
73 | // xAxisGroupBox
|
---|
74 | //
|
---|
75 | this.xAxisGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
77 | this.xAxisGroupBox.Controls.Add(this.maxXTextBox);
|
---|
78 | this.xAxisGroupBox.Controls.Add(this.xAutomaticCheckBox);
|
---|
79 | this.xAxisGroupBox.Controls.Add(this.minXTextBox);
|
---|
80 | this.xAxisGroupBox.Controls.Add(this.maxXLabel);
|
---|
81 | this.xAxisGroupBox.Controls.Add(this.minXLabel);
|
---|
82 | this.xAxisGroupBox.Location = new System.Drawing.Point(12, 12);
|
---|
83 | this.xAxisGroupBox.Name = "xAxisGroupBox";
|
---|
84 | this.xAxisGroupBox.Size = new System.Drawing.Size(234, 78);
|
---|
85 | this.xAxisGroupBox.TabIndex = 1;
|
---|
86 | this.xAxisGroupBox.TabStop = false;
|
---|
87 | this.xAxisGroupBox.Text = "X-Axis";
|
---|
88 | //
|
---|
89 | // maxXTextBox
|
---|
90 | //
|
---|
91 | this.maxXTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
92 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
93 | this.maxXTextBox.Location = new System.Drawing.Point(61, 45);
|
---|
94 | this.maxXTextBox.Name = "maxXTextBox";
|
---|
95 | this.maxXTextBox.Size = new System.Drawing.Size(167, 20);
|
---|
96 | this.maxXTextBox.TabIndex = 3;
|
---|
97 | this.maxXTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.numberTextBox_Validating);
|
---|
98 | this.maxXTextBox.Validated += new System.EventHandler(this.numberTextBox_Validated);
|
---|
99 | //
|
---|
100 | // xAutomaticCheckBox
|
---|
101 | //
|
---|
102 | this.xAutomaticCheckBox.AutoSize = true;
|
---|
103 | this.xAutomaticCheckBox.Location = new System.Drawing.Point(48, -1);
|
---|
104 | this.xAutomaticCheckBox.Name = "xAutomaticCheckBox";
|
---|
105 | this.xAutomaticCheckBox.Size = new System.Drawing.Size(73, 17);
|
---|
106 | this.xAutomaticCheckBox.TabIndex = 1;
|
---|
107 | this.xAutomaticCheckBox.Text = "Automatic";
|
---|
108 | this.xAutomaticCheckBox.UseVisualStyleBackColor = true;
|
---|
109 | this.xAutomaticCheckBox.CheckedChanged += new System.EventHandler(this.automaticCheckBox_CheckedChanged);
|
---|
110 | //
|
---|
111 | // minXTextBox
|
---|
112 | //
|
---|
113 | this.minXTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
114 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
115 | this.minXTextBox.Location = new System.Drawing.Point(61, 19);
|
---|
116 | this.minXTextBox.Name = "minXTextBox";
|
---|
117 | this.minXTextBox.Size = new System.Drawing.Size(167, 20);
|
---|
118 | this.minXTextBox.TabIndex = 2;
|
---|
119 | this.minXTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.numberTextBox_Validating);
|
---|
120 | this.minXTextBox.Validated += new System.EventHandler(this.numberTextBox_Validated);
|
---|
121 | //
|
---|
122 | // maxXLabel
|
---|
123 | //
|
---|
124 | this.maxXLabel.AutoSize = true;
|
---|
125 | this.maxXLabel.Location = new System.Drawing.Point(7, 48);
|
---|
126 | this.maxXLabel.Name = "maxXLabel";
|
---|
127 | this.maxXLabel.Size = new System.Drawing.Size(27, 13);
|
---|
128 | this.maxXLabel.TabIndex = 1;
|
---|
129 | this.maxXLabel.Text = "Max";
|
---|
130 | //
|
---|
131 | // minXLabel
|
---|
132 | //
|
---|
133 | this.minXLabel.AutoSize = true;
|
---|
134 | this.minXLabel.Location = new System.Drawing.Point(7, 22);
|
---|
135 | this.minXLabel.Name = "minXLabel";
|
---|
136 | this.minXLabel.Size = new System.Drawing.Size(24, 13);
|
---|
137 | this.minXLabel.TabIndex = 0;
|
---|
138 | this.minXLabel.Text = "Min";
|
---|
139 | //
|
---|
140 | // yAxisGroupBox
|
---|
141 | //
|
---|
142 | this.yAxisGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
143 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
144 | this.yAxisGroupBox.Controls.Add(this.maxYTextBox);
|
---|
145 | this.yAxisGroupBox.Controls.Add(this.yAutomaticCheckBox);
|
---|
146 | this.yAxisGroupBox.Controls.Add(this.minYTextBox);
|
---|
147 | this.yAxisGroupBox.Controls.Add(this.maxYLabel);
|
---|
148 | this.yAxisGroupBox.Controls.Add(this.minYLabel);
|
---|
149 | this.yAxisGroupBox.Location = new System.Drawing.Point(13, 96);
|
---|
150 | this.yAxisGroupBox.Name = "yAxisGroupBox";
|
---|
151 | this.yAxisGroupBox.Size = new System.Drawing.Size(234, 75);
|
---|
152 | this.yAxisGroupBox.TabIndex = 2;
|
---|
153 | this.yAxisGroupBox.TabStop = false;
|
---|
154 | this.yAxisGroupBox.Text = "Y-Axis";
|
---|
155 | //
|
---|
156 | // maxYTextBox
|
---|
157 | //
|
---|
158 | this.maxYTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
159 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
160 | this.maxYTextBox.Location = new System.Drawing.Point(61, 45);
|
---|
161 | this.maxYTextBox.Name = "maxYTextBox";
|
---|
162 | this.maxYTextBox.Size = new System.Drawing.Size(167, 20);
|
---|
163 | this.maxYTextBox.TabIndex = 3;
|
---|
164 | this.maxYTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.numberTextBox_Validating);
|
---|
165 | this.maxYTextBox.Validated += new System.EventHandler(this.numberTextBox_Validated);
|
---|
166 | //
|
---|
167 | // yAutomaticCheckBox
|
---|
168 | //
|
---|
169 | this.yAutomaticCheckBox.AutoSize = true;
|
---|
170 | this.yAutomaticCheckBox.Location = new System.Drawing.Point(47, -1);
|
---|
171 | this.yAutomaticCheckBox.Name = "yAutomaticCheckBox";
|
---|
172 | this.yAutomaticCheckBox.Size = new System.Drawing.Size(73, 17);
|
---|
173 | this.yAutomaticCheckBox.TabIndex = 1;
|
---|
174 | this.yAutomaticCheckBox.Text = "Automatic";
|
---|
175 | this.yAutomaticCheckBox.UseVisualStyleBackColor = true;
|
---|
176 | this.yAutomaticCheckBox.CheckedChanged += new System.EventHandler(this.automaticCheckBox_CheckedChanged);
|
---|
177 | //
|
---|
178 | // minYTextBox
|
---|
179 | //
|
---|
180 | this.minYTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
181 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
182 | this.minYTextBox.Location = new System.Drawing.Point(61, 19);
|
---|
183 | this.minYTextBox.Name = "minYTextBox";
|
---|
184 | this.minYTextBox.Size = new System.Drawing.Size(167, 20);
|
---|
185 | this.minYTextBox.TabIndex = 2;
|
---|
186 | this.minYTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.numberTextBox_Validating);
|
---|
187 | this.minYTextBox.Validated += new System.EventHandler(this.numberTextBox_Validated);
|
---|
188 | //
|
---|
189 | // maxYLabel
|
---|
190 | //
|
---|
191 | this.maxYLabel.AutoSize = true;
|
---|
192 | this.maxYLabel.Location = new System.Drawing.Point(7, 48);
|
---|
193 | this.maxYLabel.Name = "maxYLabel";
|
---|
194 | this.maxYLabel.Size = new System.Drawing.Size(27, 13);
|
---|
195 | this.maxYLabel.TabIndex = 1;
|
---|
196 | this.maxYLabel.Text = "Max";
|
---|
197 | //
|
---|
198 | // minYLabel
|
---|
199 | //
|
---|
200 | this.minYLabel.AutoSize = true;
|
---|
201 | this.minYLabel.Location = new System.Drawing.Point(7, 22);
|
---|
202 | this.minYLabel.Name = "minYLabel";
|
---|
203 | this.minYLabel.Size = new System.Drawing.Size(24, 13);
|
---|
204 | this.minYLabel.TabIndex = 0;
|
---|
205 | this.minYLabel.Text = "Min";
|
---|
206 | //
|
---|
207 | // miscGroupBox
|
---|
208 | //
|
---|
209 | this.miscGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
210 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
211 | this.miscGroupBox.Controls.Add(this.StepsNumericUpDown);
|
---|
212 | this.miscGroupBox.Controls.Add(this.stepsLabel);
|
---|
213 | this.miscGroupBox.Location = new System.Drawing.Point(13, 177);
|
---|
214 | this.miscGroupBox.Name = "miscGroupBox";
|
---|
215 | this.miscGroupBox.Size = new System.Drawing.Size(233, 53);
|
---|
216 | this.miscGroupBox.TabIndex = 4;
|
---|
217 | this.miscGroupBox.TabStop = false;
|
---|
218 | //
|
---|
219 | // StepsNumericUpDown
|
---|
220 | //
|
---|
221 | this.StepsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
222 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
223 | this.StepsNumericUpDown.Increment = new decimal(new int[] {
|
---|
224 | 50,
|
---|
225 | 0,
|
---|
226 | 0,
|
---|
227 | 0});
|
---|
228 | this.StepsNumericUpDown.Location = new System.Drawing.Point(61, 20);
|
---|
229 | this.StepsNumericUpDown.Maximum = new decimal(new int[] {
|
---|
230 | 100000,
|
---|
231 | 0,
|
---|
232 | 0,
|
---|
233 | 0});
|
---|
234 | this.StepsNumericUpDown.Name = "StepsNumericUpDown";
|
---|
235 | this.StepsNumericUpDown.Size = new System.Drawing.Size(166, 20);
|
---|
236 | this.StepsNumericUpDown.TabIndex = 4;
|
---|
237 | //
|
---|
238 | // stepsLabel
|
---|
239 | //
|
---|
240 | this.stepsLabel.AutoSize = true;
|
---|
241 | this.stepsLabel.Location = new System.Drawing.Point(6, 22);
|
---|
242 | this.stepsLabel.Name = "stepsLabel";
|
---|
243 | this.stepsLabel.Size = new System.Drawing.Size(34, 13);
|
---|
244 | this.stepsLabel.TabIndex = 1;
|
---|
245 | this.stepsLabel.Text = "Steps";
|
---|
246 | //
|
---|
247 | // applyButton
|
---|
248 | //
|
---|
249 | this.applyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
250 | this.applyButton.Location = new System.Drawing.Point(91, 239);
|
---|
251 | this.applyButton.Name = "applyButton";
|
---|
252 | this.applyButton.Size = new System.Drawing.Size(75, 23);
|
---|
253 | this.applyButton.TabIndex = 5;
|
---|
254 | this.applyButton.Text = "Apply";
|
---|
255 | this.applyButton.UseVisualStyleBackColor = true;
|
---|
256 | this.applyButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
257 | //
|
---|
258 | // cancelButton
|
---|
259 | //
|
---|
260 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
261 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
262 | this.cancelButton.Location = new System.Drawing.Point(172, 239);
|
---|
263 | this.cancelButton.Name = "cancelButton";
|
---|
264 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
265 | this.cancelButton.TabIndex = 6;
|
---|
266 | this.cancelButton.Text = "Cancel";
|
---|
267 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
268 | //
|
---|
269 | // errorProvider
|
---|
270 | //
|
---|
271 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
272 | this.errorProvider.ContainerControl = this;
|
---|
273 | //
|
---|
274 | // PartialDependencePlotConfigurationDialog
|
---|
275 | //
|
---|
276 | this.AcceptButton = this.applyButton;
|
---|
277 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
278 | this.CancelButton = this.cancelButton;
|
---|
279 | this.ClientSize = new System.Drawing.Size(258, 272);
|
---|
280 | this.Controls.Add(this.cancelButton);
|
---|
281 | this.Controls.Add(this.applyButton);
|
---|
282 | this.Controls.Add(this.miscGroupBox);
|
---|
283 | this.Controls.Add(this.xAxisGroupBox);
|
---|
284 | this.Controls.Add(this.yAxisGroupBox);
|
---|
285 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
286 | this.MaximizeBox = false;
|
---|
287 | this.MinimizeBox = false;
|
---|
288 | this.Name = "PartialDependencePlotConfigurationDialog";
|
---|
289 | this.ShowIcon = false;
|
---|
290 | this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
|
---|
291 | this.Text = "Configure Gradient Chart";
|
---|
292 | this.TopMost = true;
|
---|
293 | this.Shown += new System.EventHandler(this.PartialDependencePlotConfigurationDialog_Shown);
|
---|
294 | this.xAxisGroupBox.ResumeLayout(false);
|
---|
295 | this.xAxisGroupBox.PerformLayout();
|
---|
296 | this.yAxisGroupBox.ResumeLayout(false);
|
---|
297 | this.yAxisGroupBox.PerformLayout();
|
---|
298 | this.miscGroupBox.ResumeLayout(false);
|
---|
299 | this.miscGroupBox.PerformLayout();
|
---|
300 | ((System.ComponentModel.ISupportInitialize)(this.StepsNumericUpDown)).EndInit();
|
---|
301 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
302 | this.ResumeLayout(false);
|
---|
303 |
|
---|
304 | }
|
---|
305 |
|
---|
306 | #endregion
|
---|
307 |
|
---|
308 | private System.Windows.Forms.GroupBox xAxisGroupBox;
|
---|
309 | private System.Windows.Forms.TextBox maxXTextBox;
|
---|
310 | private System.Windows.Forms.TextBox minXTextBox;
|
---|
311 | private System.Windows.Forms.Label maxXLabel;
|
---|
312 | private System.Windows.Forms.Label minXLabel;
|
---|
313 | private System.Windows.Forms.GroupBox yAxisGroupBox;
|
---|
314 | private System.Windows.Forms.TextBox maxYTextBox;
|
---|
315 | private System.Windows.Forms.CheckBox yAutomaticCheckBox;
|
---|
316 | private System.Windows.Forms.TextBox minYTextBox;
|
---|
317 | private System.Windows.Forms.Label maxYLabel;
|
---|
318 | private System.Windows.Forms.Label minYLabel;
|
---|
319 | private System.Windows.Forms.GroupBox miscGroupBox;
|
---|
320 | private System.Windows.Forms.Label stepsLabel;
|
---|
321 | private System.Windows.Forms.Button applyButton;
|
---|
322 | private System.Windows.Forms.Button cancelButton;
|
---|
323 | private System.Windows.Forms.CheckBox xAutomaticCheckBox;
|
---|
324 | private System.Windows.Forms.NumericUpDown StepsNumericUpDown;
|
---|
325 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
326 | }
|
---|
327 | } |
---|