1 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
2 | partial class ScatterPlotSingleView {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.scatterPlotView = new HeuristicLab.DataPreprocessing.Views.PreprocessingScatterPlotView();
|
---|
27 | this.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
28 | this.label2 = new System.Windows.Forms.Label();
|
---|
29 | this.label1 = new System.Windows.Forms.Label();
|
---|
30 | this.comboBoxYVariable = new System.Windows.Forms.ComboBox();
|
---|
31 | this.comboBoxXVariable = new System.Windows.Forms.ComboBox();
|
---|
32 | this.groupBox1.SuspendLayout();
|
---|
33 | this.SuspendLayout();
|
---|
34 | //
|
---|
35 | // scatterPlotView
|
---|
36 | //
|
---|
37 | this.scatterPlotView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
38 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
39 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
40 | this.scatterPlotView.Caption = "ScatterPlot View";
|
---|
41 | this.scatterPlotView.Content = null;
|
---|
42 | this.scatterPlotView.Location = new System.Drawing.Point(169, 3);
|
---|
43 | this.scatterPlotView.Name = "scatterPlotView";
|
---|
44 | this.scatterPlotView.ReadOnly = false;
|
---|
45 | this.scatterPlotView.Size = new System.Drawing.Size(689, 509);
|
---|
46 | this.scatterPlotView.TabIndex = 0;
|
---|
47 | //
|
---|
48 | // groupBox1
|
---|
49 | //
|
---|
50 | this.groupBox1.Controls.Add(this.label2);
|
---|
51 | this.groupBox1.Controls.Add(this.label1);
|
---|
52 | this.groupBox1.Controls.Add(this.comboBoxYVariable);
|
---|
53 | this.groupBox1.Controls.Add(this.comboBoxXVariable);
|
---|
54 | this.groupBox1.Location = new System.Drawing.Point(3, 3);
|
---|
55 | this.groupBox1.Name = "groupBox1";
|
---|
56 | this.groupBox1.Size = new System.Drawing.Size(160, 140);
|
---|
57 | this.groupBox1.TabIndex = 1;
|
---|
58 | this.groupBox1.TabStop = false;
|
---|
59 | this.groupBox1.Text = "Options";
|
---|
60 | //
|
---|
61 | // label2
|
---|
62 | //
|
---|
63 | this.label2.AutoSize = true;
|
---|
64 | this.label2.Location = new System.Drawing.Point(17, 80);
|
---|
65 | this.label2.Name = "label2";
|
---|
66 | this.label2.Size = new System.Drawing.Size(55, 13);
|
---|
67 | this.label2.TabIndex = 3;
|
---|
68 | this.label2.Text = "Y Variable";
|
---|
69 | //
|
---|
70 | // label1
|
---|
71 | //
|
---|
72 | this.label1.AutoSize = true;
|
---|
73 | this.label1.Location = new System.Drawing.Point(17, 25);
|
---|
74 | this.label1.Name = "label1";
|
---|
75 | this.label1.Size = new System.Drawing.Size(55, 13);
|
---|
76 | this.label1.TabIndex = 2;
|
---|
77 | this.label1.Text = "X Variable";
|
---|
78 | //
|
---|
79 | // comboBoxYVariable
|
---|
80 | //
|
---|
81 | this.comboBoxYVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
82 | this.comboBoxYVariable.FormattingEnabled = true;
|
---|
83 | this.comboBoxYVariable.Location = new System.Drawing.Point(20, 103);
|
---|
84 | this.comboBoxYVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
|
---|
85 | this.comboBoxYVariable.Name = "comboBoxYVariable";
|
---|
86 | this.comboBoxYVariable.Size = new System.Drawing.Size(121, 21);
|
---|
87 | this.comboBoxYVariable.TabIndex = 1;
|
---|
88 | this.comboBoxYVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
|
---|
89 | //
|
---|
90 | // comboBoxXVariable
|
---|
91 | //
|
---|
92 | this.comboBoxXVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
93 | this.comboBoxXVariable.FormattingEnabled = true;
|
---|
94 | this.comboBoxXVariable.Location = new System.Drawing.Point(20, 48);
|
---|
95 | this.comboBoxXVariable.Margin = new System.Windows.Forms.Padding(3, 10, 3, 3);
|
---|
96 | this.comboBoxXVariable.Name = "comboBoxXVariable";
|
---|
97 | this.comboBoxXVariable.Size = new System.Drawing.Size(121, 21);
|
---|
98 | this.comboBoxXVariable.TabIndex = 0;
|
---|
99 | this.comboBoxXVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
|
---|
100 | //
|
---|
101 | // ScatterPlotSingleView
|
---|
102 | //
|
---|
103 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
104 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
105 | this.Controls.Add(this.groupBox1);
|
---|
106 | this.Controls.Add(this.scatterPlotView);
|
---|
107 | this.Name = "ScatterPlotSingleView";
|
---|
108 | this.Size = new System.Drawing.Size(863, 517);
|
---|
109 | this.groupBox1.ResumeLayout(false);
|
---|
110 | this.groupBox1.PerformLayout();
|
---|
111 | this.ResumeLayout(false);
|
---|
112 |
|
---|
113 | }
|
---|
114 |
|
---|
115 | #endregion
|
---|
116 |
|
---|
117 | private HeuristicLab.DataPreprocessing.Views.PreprocessingScatterPlotView scatterPlotView;
|
---|
118 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
119 | private System.Windows.Forms.Label label2;
|
---|
120 | private System.Windows.Forms.Label label1;
|
---|
121 | private System.Windows.Forms.ComboBox comboBoxYVariable;
|
---|
122 | private System.Windows.Forms.ComboBox comboBoxXVariable;
|
---|
123 | }
|
---|
124 | }
|
---|