Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11403 was 11043, checked in by aesterer, 10 years ago

Changed comboboxes to read only

File size: 3.2 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.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
56      this.classifierComboBox.FormattingEnabled = true;
57      this.classifierComboBox.Location = new System.Drawing.Point(9, 52);
58      this.classifierComboBox.Name = "classifierComboBox";
59      this.classifierComboBox.Size = new System.Drawing.Size(121, 21);
60      this.classifierComboBox.TabIndex = 1;
61      this.classifierComboBox.SelectedIndexChanged += new System.EventHandler(this.classifierComboBox_SelectedIndexChanged);
62      //
63      // HistogramView
64      //
65      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
66      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
67      this.Controls.Add(this.optionsBox);
68      this.Name = "HistogramView";
69      this.Controls.SetChildIndex(this.optionsBox, 0);
70      this.optionsBox.ResumeLayout(false);
71      this.optionsBox.PerformLayout();
72      this.ResumeLayout(false);
73
74    }
75
76    #endregion
77
78    private System.Windows.Forms.GroupBox optionsBox;
79    private System.Windows.Forms.ComboBox classifierComboBox;
80    private System.Windows.Forms.Label label1;
81
82  }
83}
Note: See TracBrowser for help on using the repository browser.