Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10844 was 10771, checked in by aesterer, 10 years ago

Changed content icons. Copied data table view and removed title.

File size: 2.7 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.allInOneCheckBox = new System.Windows.Forms.CheckBox();
28      this.optionsBox.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // optionsBox
32      //
33      this.optionsBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
34      this.optionsBox.Controls.Add(this.allInOneCheckBox);
35      this.optionsBox.Location = new System.Drawing.Point(4, 263);
36      this.optionsBox.Name = "optionsBox";
37      this.optionsBox.Size = new System.Drawing.Size(152, 134);
38      this.optionsBox.TabIndex = 7;
39      this.optionsBox.TabStop = false;
40      this.optionsBox.Text = "Options";
41      //
42      // allInOneCheckBox
43      //
44      this.allInOneCheckBox.AutoSize = true;
45      this.allInOneCheckBox.Location = new System.Drawing.Point(6, 19);
46      this.allInOneCheckBox.Name = "allInOneCheckBox";
47      this.allInOneCheckBox.Size = new System.Drawing.Size(69, 17);
48      this.allInOneCheckBox.TabIndex = 0;
49      this.allInOneCheckBox.Text = "All in one";
50      this.allInOneCheckBox.UseVisualStyleBackColor = true;
51      this.allInOneCheckBox.CheckedChanged += new System.EventHandler(this.allInOneCheckBox_CheckedChanged);
52      //
53      // HistogramView
54      //
55      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
56      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
57      this.Controls.Add(this.optionsBox);
58      this.Name = "HistogramView";
59      this.Controls.SetChildIndex(this.optionsBox, 0);
60      this.optionsBox.ResumeLayout(false);
61      this.optionsBox.PerformLayout();
62      this.ResumeLayout(false);
63
64    }
65
66    #endregion
67
68    private System.Windows.Forms.GroupBox optionsBox;
69    private System.Windows.Forms.CheckBox allInOneCheckBox;
70
71  }
72}
Note: See TracBrowser for help on using the repository browser.