Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/HistogramView.Designer.cs @ 13321

Last change on this file since 13321 was 12718, checked in by mkommend, 9 years ago

#2335: Merged all changes into stable.

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