Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/HistogramView.Designer.cs @ 12683

Last change on this file since 12683 was 12676, checked in by mkommend, 9 years ago

#2335: Merged changes into trunk.

File size: 4.4 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.displayDetailsCheckBox = new System.Windows.Forms.CheckBox();
28      this.label1 = new System.Windows.Forms.Label();
29      this.classifierComboBox = new System.Windows.Forms.ComboBox();
30      this.optionsBox.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // optionsBox
34      //
35      this.optionsBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
36      this.optionsBox.Controls.Add(this.displayDetailsCheckBox);
37      this.optionsBox.Controls.Add(this.label1);
38      this.optionsBox.Controls.Add(this.classifierComboBox);
39      this.optionsBox.Location = new System.Drawing.Point(5, 324);
40      this.optionsBox.Margin = new System.Windows.Forms.Padding(4);
41      this.optionsBox.Name = "optionsBox";
42      this.optionsBox.Padding = new System.Windows.Forms.Padding(4);
43      this.optionsBox.Size = new System.Drawing.Size(203, 165);
44      this.optionsBox.TabIndex = 7;
45      this.optionsBox.TabStop = false;
46      this.optionsBox.Text = "Options";
47      //
48      // displayDetailsCheckBox
49      //
50      this.displayDetailsCheckBox.AutoSize = true;
51      this.displayDetailsCheckBox.Location = new System.Drawing.Point(7, 71);
52      this.displayDetailsCheckBox.Name = "displayDetailsCheckBox";
53      this.displayDetailsCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
54      this.displayDetailsCheckBox.Size = new System.Drawing.Size(153, 21);
55      this.displayDetailsCheckBox.TabIndex = 3;
56      this.displayDetailsCheckBox.Text = "Display value count";
57      this.displayDetailsCheckBox.UseVisualStyleBackColor = true;
58      this.displayDetailsCheckBox.CheckedChanged += new System.EventHandler(this.displayDetailsCheckBox_CheckedChanged);
59      //
60      // label1
61      //
62      this.label1.AutoSize = true;
63      this.label1.Location = new System.Drawing.Point(4, 19);
64      this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
65      this.label1.Name = "label1";
66      this.label1.Size = new System.Drawing.Size(108, 17);
67      this.label1.TabIndex = 2;
68      this.label1.Text = "Target variable:";
69      //
70      // classifierComboBox
71      //
72      this.classifierComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
73      this.classifierComboBox.FormattingEnabled = true;
74      this.classifierComboBox.Location = new System.Drawing.Point(7, 40);
75      this.classifierComboBox.Margin = new System.Windows.Forms.Padding(4);
76      this.classifierComboBox.Name = "classifierComboBox";
77      this.classifierComboBox.Size = new System.Drawing.Size(160, 24);
78      this.classifierComboBox.TabIndex = 1;
79      this.classifierComboBox.SelectedIndexChanged += new System.EventHandler(this.classifierComboBox_SelectedIndexChanged);
80      //
81      // HistogramView
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85      this.Controls.Add(this.optionsBox);
86      this.Margin = new System.Windows.Forms.Padding(5);
87      this.Name = "HistogramView";
88      this.Controls.SetChildIndex(this.optionsBox, 0);
89      this.optionsBox.ResumeLayout(false);
90      this.optionsBox.PerformLayout();
91      this.ResumeLayout(false);
92
93    }
94
95    #endregion
96
97    private System.Windows.Forms.GroupBox optionsBox;
98    private System.Windows.Forms.ComboBox classifierComboBox;
99    private System.Windows.Forms.Label label1;
100    private System.Windows.Forms.CheckBox displayDetailsCheckBox;
101
102  }
103}
Note: See TracBrowser for help on using the repository browser.