Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis.Views/3.3/ScatterPlotDataRowVisualPropertiesControl.Designer.cs @ 14984

Last change on this file since 14984 was 14984, checked in by pfleck, 7 years ago

#2715 Added a Clear-Color button (like in the DataTableVisualPropertiesControl).

File size: 17.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Analysis.Views {
23  partial class ScatterPlotDataRowVisualPropertiesControl {
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.pointStyleComboBox = new System.Windows.Forms.ComboBox();
49      this.colorDialog = new System.Windows.Forms.ColorDialog();
50      this.colorButton = new System.Windows.Forms.Button();
51      this.isVisibleInLegendCheckBox = new System.Windows.Forms.CheckBox();
52      this.label1 = new System.Windows.Forms.Label();
53      this.label2 = new System.Windows.Forms.Label();
54      this.pointSizeNumericUpDown = new System.Windows.Forms.NumericUpDown();
55      this.label3 = new System.Windows.Forms.Label();
56      this.displayNameTextBox = new System.Windows.Forms.TextBox();
57      this.label9 = new System.Windows.Forms.Label();
58      this.label7 = new System.Windows.Forms.Label();
59      this.label4 = new System.Windows.Forms.Label();
60      this.regressionTypeComboBox = new System.Windows.Forms.ComboBox();
61      this.regressionGroupBox = new System.Windows.Forms.GroupBox();
62      this.isRegressionVisibleInLegendCheckBox = new System.Windows.Forms.CheckBox();
63      this.polynomialRegressionOrderNumericUpDown = new System.Windows.Forms.NumericUpDown();
64      this.orderLabel = new System.Windows.Forms.Label();
65      this.regressionLegendTextBox = new System.Windows.Forms.TextBox();
66      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
67      this.clearColorButton = new System.Windows.Forms.Button();
68      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).BeginInit();
69      this.regressionGroupBox.SuspendLayout();
70      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).BeginInit();
71      this.SuspendLayout();
72      //
73      // pointStyleComboBox
74      //
75      this.pointStyleComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76            | System.Windows.Forms.AnchorStyles.Right)));
77      this.pointStyleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
78      this.pointStyleComboBox.FormattingEnabled = true;
79      this.pointStyleComboBox.Location = new System.Drawing.Point(99, 34);
80      this.pointStyleComboBox.Name = "pointStyleComboBox";
81      this.pointStyleComboBox.Size = new System.Drawing.Size(240, 21);
82      this.pointStyleComboBox.TabIndex = 3;
83      this.pointStyleComboBox.SelectedValueChanged += new System.EventHandler(this.pointStyleComboBox_SelectedValueChanged);
84      //
85      // colorDialog
86      //
87      this.colorDialog.Color = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
88      //
89      // colorButton
90      //
91      this.colorButton.BackColor = System.Drawing.SystemColors.Control;
92      this.colorButton.Location = new System.Drawing.Point(99, 61);
93      this.colorButton.Name = "colorButton";
94      this.colorButton.Size = new System.Drawing.Size(23, 23);
95      this.colorButton.TabIndex = 5;
96      this.colorButton.UseVisualStyleBackColor = false;
97      this.colorButton.Click += new System.EventHandler(this.colorButton_Click);
98      //
99      // isVisibleInLegendCheckBox
100      //
101      this.isVisibleInLegendCheckBox.AutoSize = true;
102      this.isVisibleInLegendCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
103      this.isVisibleInLegendCheckBox.Location = new System.Drawing.Point(99, 116);
104      this.isVisibleInLegendCheckBox.Name = "isVisibleInLegendCheckBox";
105      this.isVisibleInLegendCheckBox.Size = new System.Drawing.Size(15, 14);
106      this.isVisibleInLegendCheckBox.TabIndex = 3;
107      this.isVisibleInLegendCheckBox.UseVisualStyleBackColor = true;
108      this.isVisibleInLegendCheckBox.CheckedChanged += new System.EventHandler(this.isVisibleInLegendCheckBox_CheckedChanged);
109      //
110      // label1
111      //
112      this.label1.AutoSize = true;
113      this.label1.Location = new System.Drawing.Point(3, 37);
114      this.label1.Name = "label1";
115      this.label1.Size = new System.Drawing.Size(60, 13);
116      this.label1.TabIndex = 2;
117      this.label1.Text = "&Point Style:";
118      //
119      // label2
120      //
121      this.label2.AutoSize = true;
122      this.label2.Location = new System.Drawing.Point(3, 66);
123      this.label2.Name = "label2";
124      this.label2.Size = new System.Drawing.Size(61, 13);
125      this.label2.TabIndex = 4;
126      this.label2.Text = "Point &Color:";
127      //
128      // pointSizeNumericUpDown
129      //
130      this.pointSizeNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
131            | System.Windows.Forms.AnchorStyles.Right)));
132      this.pointSizeNumericUpDown.Location = new System.Drawing.Point(99, 90);
133      this.pointSizeNumericUpDown.Minimum = new decimal(new int[] {
134            1,
135            0,
136            0,
137            0});
138      this.pointSizeNumericUpDown.Name = "pointSizeNumericUpDown";
139      this.pointSizeNumericUpDown.Size = new System.Drawing.Size(240, 20);
140      this.pointSizeNumericUpDown.TabIndex = 5;
141      this.pointSizeNumericUpDown.Value = new decimal(new int[] {
142            1,
143            0,
144            0,
145            0});
146      this.pointSizeNumericUpDown.ValueChanged += new System.EventHandler(this.pointSizeNumericUpDown_ValueChanged);
147      //
148      // label3
149      //
150      this.label3.AutoSize = true;
151      this.label3.Location = new System.Drawing.Point(3, 92);
152      this.label3.Name = "label3";
153      this.label3.Size = new System.Drawing.Size(57, 13);
154      this.label3.TabIndex = 6;
155      this.label3.Text = "Point &Size:";
156      //
157      // displayNameTextBox
158      //
159      this.displayNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
160            | System.Windows.Forms.AnchorStyles.Right)));
161      this.displayNameTextBox.Location = new System.Drawing.Point(99, 8);
162      this.displayNameTextBox.Name = "displayNameTextBox";
163      this.displayNameTextBox.Size = new System.Drawing.Size(240, 20);
164      this.displayNameTextBox.TabIndex = 1;
165      this.displayNameTextBox.Validated += new System.EventHandler(this.displayNameTextBox_Validated);
166      //
167      // label9
168      //
169      this.label9.AutoSize = true;
170      this.label9.Location = new System.Drawing.Point(3, 11);
171      this.label9.Name = "label9";
172      this.label9.Size = new System.Drawing.Size(38, 13);
173      this.label9.TabIndex = 0;
174      this.label9.Text = "&Name:";
175      //
176      // label7
177      //
178      this.label7.AutoSize = true;
179      this.label7.Location = new System.Drawing.Point(3, 116);
180      this.label7.Name = "label7";
181      this.label7.Size = new System.Drawing.Size(90, 13);
182      this.label7.TabIndex = 2;
183      this.label7.Text = "&Visible in Legend:";
184      //
185      // label4
186      //
187      this.label4.AutoSize = true;
188      this.label4.Location = new System.Drawing.Point(6, 22);
189      this.label4.Name = "label4";
190      this.label4.Size = new System.Drawing.Size(34, 13);
191      this.label4.TabIndex = 7;
192      this.label4.Text = "Type:";
193      //
194      // regressionTypeComboBox
195      //
196      this.regressionTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
197            | System.Windows.Forms.AnchorStyles.Right)));
198      this.regressionTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
199      this.regressionTypeComboBox.FormattingEnabled = true;
200      this.regressionTypeComboBox.Location = new System.Drawing.Point(93, 19);
201      this.regressionTypeComboBox.Name = "regressionTypeComboBox";
202      this.regressionTypeComboBox.Size = new System.Drawing.Size(147, 21);
203      this.regressionTypeComboBox.TabIndex = 8;
204      this.regressionTypeComboBox.SelectedValueChanged += new System.EventHandler(this.regressionTypeComboBox_SelectedValueChanged);
205      //
206      // regressionGroupBox
207      //
208      this.regressionGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
209            | System.Windows.Forms.AnchorStyles.Right)));
210      this.regressionGroupBox.Controls.Add(this.isRegressionVisibleInLegendCheckBox);
211      this.regressionGroupBox.Controls.Add(this.regressionTypeComboBox);
212      this.regressionGroupBox.Controls.Add(this.polynomialRegressionOrderNumericUpDown);
213      this.regressionGroupBox.Controls.Add(this.orderLabel);
214      this.regressionGroupBox.Controls.Add(this.regressionLegendTextBox);
215      this.regressionGroupBox.Controls.Add(this.label4);
216      this.regressionGroupBox.Location = new System.Drawing.Point(3, 136);
217      this.regressionGroupBox.Name = "regressionGroupBox";
218      this.regressionGroupBox.Size = new System.Drawing.Size(336, 74);
219      this.regressionGroupBox.TabIndex = 9;
220      this.regressionGroupBox.TabStop = false;
221      this.regressionGroupBox.Text = "&Regression";
222      //
223      // isRegressionVisibleInLegendCheckBox
224      //
225      this.isRegressionVisibleInLegendCheckBox.AutoSize = true;
226      this.isRegressionVisibleInLegendCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
227      this.isRegressionVisibleInLegendCheckBox.Location = new System.Drawing.Point(6, 48);
228      this.isRegressionVisibleInLegendCheckBox.Name = "isRegressionVisibleInLegendCheckBox";
229      this.isRegressionVisibleInLegendCheckBox.Size = new System.Drawing.Size(68, 17);
230      this.isRegressionVisibleInLegendCheckBox.TabIndex = 13;
231      this.isRegressionVisibleInLegendCheckBox.Text = "Legend: ";
232      this.isRegressionVisibleInLegendCheckBox.UseVisualStyleBackColor = true;
233      this.isRegressionVisibleInLegendCheckBox.CheckedChanged += new System.EventHandler(this.isRegressionVisibleInLegendCheckBox_CheckedChanged);
234      //
235      // polynomialRegressionOrderNumericUpDown
236      //
237      this.polynomialRegressionOrderNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
238      this.polynomialRegressionOrderNumericUpDown.Location = new System.Drawing.Point(285, 20);
239      this.polynomialRegressionOrderNumericUpDown.Margin = new System.Windows.Forms.Padding(9, 3, 3, 3);
240      this.polynomialRegressionOrderNumericUpDown.Maximum = new decimal(new int[] {
241            6,
242            0,
243            0,
244            0});
245      this.polynomialRegressionOrderNumericUpDown.Minimum = new decimal(new int[] {
246            2,
247            0,
248            0,
249            0});
250      this.polynomialRegressionOrderNumericUpDown.Name = "polynomialRegressionOrderNumericUpDown";
251      this.polynomialRegressionOrderNumericUpDown.Size = new System.Drawing.Size(45, 20);
252      this.polynomialRegressionOrderNumericUpDown.TabIndex = 11;
253      this.toolTip.SetToolTip(this.polynomialRegressionOrderNumericUpDown, "Order only available for Polynomial");
254      this.polynomialRegressionOrderNumericUpDown.Value = new decimal(new int[] {
255            2,
256            0,
257            0,
258            0});
259      this.polynomialRegressionOrderNumericUpDown.ValueChanged += new System.EventHandler(this.polynomialRegressionOrderNumericUpDown_ValueChanged);
260      //
261      // orderLabel
262      //
263      this.orderLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
264      this.orderLabel.AutoSize = true;
265      this.orderLabel.Location = new System.Drawing.Point(246, 22);
266      this.orderLabel.Name = "orderLabel";
267      this.orderLabel.Size = new System.Drawing.Size(36, 13);
268      this.orderLabel.TabIndex = 12;
269      this.orderLabel.Text = "Order:";
270      //
271      // regressionLegendTextBox
272      //
273      this.regressionLegendTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
274            | System.Windows.Forms.AnchorStyles.Right)));
275      this.regressionLegendTextBox.Location = new System.Drawing.Point(93, 46);
276      this.regressionLegendTextBox.Name = "regressionLegendTextBox";
277      this.regressionLegendTextBox.Size = new System.Drawing.Size(237, 20);
278      this.regressionLegendTextBox.TabIndex = 10;
279      this.regressionLegendTextBox.Validated += new System.EventHandler(this.regressionLegendTextBox_Validated);
280      //
281      // clearColorButton
282      //
283      this.clearColorButton.BackColor = System.Drawing.SystemColors.ActiveCaption;
284      this.clearColorButton.Cursor = System.Windows.Forms.Cursors.Default;
285      this.clearColorButton.FlatAppearance.BorderSize = 0;
286      this.clearColorButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
287      this.clearColorButton.ForeColor = System.Drawing.Color.Transparent;
288      this.clearColorButton.Location = new System.Drawing.Point(125, 65);
289      this.clearColorButton.Margin = new System.Windows.Forms.Padding(0);
290      this.clearColorButton.Name = "clearColorButton";
291      this.clearColorButton.Size = new System.Drawing.Size(15, 16);
292      this.clearColorButton.TabIndex = 11;
293      this.clearColorButton.TabStop = false;
294      this.clearColorButton.UseVisualStyleBackColor = false;
295      this.clearColorButton.Click += new System.EventHandler(this.clearColorButton_Click);
296      //
297      // ScatterPlotDataRowVisualPropertiesControl
298      //
299      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
300      this.Controls.Add(this.clearColorButton);
301      this.Controls.Add(this.regressionGroupBox);
302      this.Controls.Add(this.pointSizeNumericUpDown);
303      this.Controls.Add(this.isVisibleInLegendCheckBox);
304      this.Controls.Add(this.label9);
305      this.Controls.Add(this.label3);
306      this.Controls.Add(this.pointStyleComboBox);
307      this.Controls.Add(this.label7);
308      this.Controls.Add(this.label2);
309      this.Controls.Add(this.displayNameTextBox);
310      this.Controls.Add(this.label1);
311      this.Controls.Add(this.colorButton);
312      this.Name = "ScatterPlotDataRowVisualPropertiesControl";
313      this.Size = new System.Drawing.Size(342, 215);
314      ((System.ComponentModel.ISupportInitialize)(this.pointSizeNumericUpDown)).EndInit();
315      this.regressionGroupBox.ResumeLayout(false);
316      this.regressionGroupBox.PerformLayout();
317      ((System.ComponentModel.ISupportInitialize)(this.polynomialRegressionOrderNumericUpDown)).EndInit();
318      this.ResumeLayout(false);
319      this.PerformLayout();
320
321    }
322
323    #endregion
324
325    private System.Windows.Forms.ComboBox pointStyleComboBox;
326    private System.Windows.Forms.ColorDialog colorDialog;
327    private System.Windows.Forms.Button colorButton;
328    private System.Windows.Forms.CheckBox isVisibleInLegendCheckBox;
329    private System.Windows.Forms.Label label1;
330    private System.Windows.Forms.Label label2;
331    private System.Windows.Forms.NumericUpDown pointSizeNumericUpDown;
332    private System.Windows.Forms.Label label7;
333    private System.Windows.Forms.TextBox displayNameTextBox;
334    private System.Windows.Forms.Label label9;
335    private System.Windows.Forms.Label label3;
336    private System.Windows.Forms.Label label4;
337    private System.Windows.Forms.ComboBox regressionTypeComboBox;
338    private System.Windows.Forms.GroupBox regressionGroupBox;
339    private System.Windows.Forms.TextBox regressionLegendTextBox;
340    private System.Windows.Forms.NumericUpDown polynomialRegressionOrderNumericUpDown;
341    private System.Windows.Forms.Label orderLabel;
342    private System.Windows.Forms.ToolTip toolTip;
343    private System.Windows.Forms.CheckBox isRegressionVisibleInLegendCheckBox;
344    private System.Windows.Forms.Button clearColorButton;
345  }
346}
Note: See TracBrowser for help on using the repository browser.