Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HistogramView.Designer.cs @ 10908

Last change on this file since 10908 was 10908, checked in by mleitner, 10 years ago

Add Feature correlation matrix, Add limit for distinct values in histogramm classification.

File size: 3.1 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class HistogramView {
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.optionsBox = new System.Windows.Forms.GroupBox();
27      this.label1 = new System.Windows.Forms.Label();
28      this.classifierComboBox = new System.Windows.Forms.ComboBox();
29      this.optionsBox.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // optionsBox
33      //
34      this.optionsBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
35      this.optionsBox.Controls.Add(this.label1);
36      this.optionsBox.Controls.Add(this.classifierComboBox);
37      this.optionsBox.Location = new System.Drawing.Point(4, 263);
38      this.optionsBox.Name = "optionsBox";
39      this.optionsBox.Size = new System.Drawing.Size(152, 134);
40      this.optionsBox.TabIndex = 7;
41      this.optionsBox.TabStop = false;
42      this.optionsBox.Text = "Options";
43      //
44      // label1
45      //
46      this.label1.AutoSize = true;
47      this.label1.Location = new System.Drawing.Point(6, 26);
48      this.label1.Name = "label1";
49      this.label1.Size = new System.Drawing.Size(91, 13);
50      this.label1.TabIndex = 2;
51      this.label1.Text = "Classifier variable:";
52      //
53      // classifierComboBox
54      //
55      this.classifierComboBox.FormattingEnabled = true;
56      this.classifierComboBox.Location = new System.Drawing.Point(9, 52);
57      this.classifierComboBox.Name = "classifierComboBox";
58      this.classifierComboBox.Size = new System.Drawing.Size(121, 21);
59      this.classifierComboBox.TabIndex = 1;
60      this.classifierComboBox.SelectedIndexChanged += new System.EventHandler(this.classifierComboBox_SelectedIndexChanged);
61      //
62      // HistogramView
63      //
64      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
65      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
66      this.Controls.Add(this.optionsBox);
67      this.Name = "HistogramView";
68      this.Controls.SetChildIndex(this.optionsBox, 0);
69      this.optionsBox.ResumeLayout(false);
70      this.optionsBox.PerformLayout();
71      this.ResumeLayout(false);
72
73    }
74
75    #endregion
76
77    private System.Windows.Forms.GroupBox optionsBox;
78    private System.Windows.Forms.ComboBox classifierComboBox;
79    private System.Windows.Forms.Label label1;
80
81  }
82}
Note: See TracBrowser for help on using the repository browser.