Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.4/SingleScatterPlotView.Designer.cs @ 10925

Last change on this file since 10925 was 10915, checked in by aesterer, 10 years ago

Splitted scatter plot view in single and multi view

File size: 4.9 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class SingleScatterPlotView {
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.FormattingEnabled = true;
82      this.comboBoxYVariable.Location = new System.Drawing.Point(20, 96);
83      this.comboBoxYVariable.Name = "comboBoxYVariable";
84      this.comboBoxYVariable.Size = new System.Drawing.Size(121, 21);
85      this.comboBoxYVariable.TabIndex = 1;
86      this.comboBoxYVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
87      //
88      // comboBoxXVariable
89      //
90      this.comboBoxXVariable.FormattingEnabled = true;
91      this.comboBoxXVariable.Location = new System.Drawing.Point(20, 41);
92      this.comboBoxXVariable.Name = "comboBoxXVariable";
93      this.comboBoxXVariable.Size = new System.Drawing.Size(121, 21);
94      this.comboBoxXVariable.TabIndex = 0;
95      this.comboBoxXVariable.SelectedIndexChanged += new System.EventHandler(this.comboBox_SelectedIndexChanged);
96      //
97      // SingleScatterPlotView
98      //
99      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
100      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
101      this.Controls.Add(this.groupBox1);
102      this.Controls.Add(this.scatterPlotView);
103      this.Name = "SingleScatterPlotView";
104      this.Size = new System.Drawing.Size(863, 517);
105      this.groupBox1.ResumeLayout(false);
106      this.groupBox1.PerformLayout();
107      this.ResumeLayout(false);
108
109    }
110
111    #endregion
112
113    private HeuristicLab.DataPreprocessing.Views.PreprocessingScatterPlotView scatterPlotView;
114    private System.Windows.Forms.GroupBox groupBox1;
115    private System.Windows.Forms.Label label2;
116    private System.Windows.Forms.Label label1;
117    private System.Windows.Forms.ComboBox comboBoxYVariable;
118    private System.Windows.Forms.ComboBox comboBoxXVariable;
119  }
120}
Note: See TracBrowser for help on using the repository browser.