Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.RegressionSolutionGradientView/HeuristicLab.Problems.DataAnalysis.Views/3.4/GradientChartConfigurationDialog.Designer.cs @ 13853

Last change on this file since 13853 was 13853, checked in by pfleck, 8 years ago

#2597

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