Free cookie consent management tool by TermsFeed Policy Generator

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

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

Revised line chart and added histogram

File size: 4.6 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.groupBoxAttributs = new System.Windows.Forms.GroupBox();
27      this.variablesListBox = new System.Windows.Forms.CheckedListBox();
28      this.groupBoxOptions = new System.Windows.Forms.GroupBox();
29      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
30      this.groupBoxAttributs.SuspendLayout();
31      this.SuspendLayout();
32      //
33      // groupBoxAttributs
34      //
35      this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
36            | System.Windows.Forms.AnchorStyles.Left)));
37      this.groupBoxAttributs.Controls.Add(this.variablesListBox);
38      this.groupBoxAttributs.Location = new System.Drawing.Point(3, 4);
39      this.groupBoxAttributs.Name = "groupBoxAttributs";
40      this.groupBoxAttributs.Size = new System.Drawing.Size(153, 252);
41      this.groupBoxAttributs.TabIndex = 3;
42      this.groupBoxAttributs.TabStop = false;
43      this.groupBoxAttributs.Text = "Attributes";
44      //
45      // variablesListBox
46      //
47      this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
48            | System.Windows.Forms.AnchorStyles.Left)
49            | System.Windows.Forms.AnchorStyles.Right)));
50      this.variablesListBox.FormattingEnabled = true;
51      this.variablesListBox.Location = new System.Drawing.Point(6, 19);
52      this.variablesListBox.Name = "variablesListBox";
53      this.variablesListBox.Size = new System.Drawing.Size(141, 229);
54      this.variablesListBox.TabIndex = 1;
55      this.variablesListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.variablesListBox_ItemCheck);
56      //
57      // groupBoxOptions
58      //
59      this.groupBoxOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
60      this.groupBoxOptions.Location = new System.Drawing.Point(4, 262);
61      this.groupBoxOptions.Name = "groupBoxOptions";
62      this.groupBoxOptions.Size = new System.Drawing.Size(152, 138);
63      this.groupBoxOptions.TabIndex = 4;
64      this.groupBoxOptions.TabStop = false;
65      this.groupBoxOptions.Text = "Options";
66      //
67      // viewHost
68      //
69      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70            | System.Windows.Forms.AnchorStyles.Left)
71            | System.Windows.Forms.AnchorStyles.Right)));
72      this.viewHost.Caption = "View";
73      this.viewHost.Content = null;
74      this.viewHost.Enabled = false;
75      this.viewHost.Location = new System.Drawing.Point(163, 4);
76      this.viewHost.Name = "viewHost";
77      this.viewHost.ReadOnly = false;
78      this.viewHost.Size = new System.Drawing.Size(524, 396);
79      this.viewHost.TabIndex = 5;
80      this.viewHost.ViewsLabelVisible = true;
81      this.viewHost.ViewType = null;
82      //
83      // HistogramView
84      //
85      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
86      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
87      this.Controls.Add(this.viewHost);
88      this.Controls.Add(this.groupBoxOptions);
89      this.Controls.Add(this.groupBoxAttributs);
90      this.Name = "HistogramView";
91      this.Size = new System.Drawing.Size(690, 403);
92      this.groupBoxAttributs.ResumeLayout(false);
93      this.ResumeLayout(false);
94
95    }
96
97    #endregion
98
99    private System.Windows.Forms.GroupBox groupBoxAttributs;
100    private System.Windows.Forms.CheckedListBox variablesListBox;
101    private System.Windows.Forms.GroupBox groupBoxOptions;
102    private MainForm.WindowsForms.ViewHost viewHost;
103  }
104}
Note: See TracBrowser for help on using the repository browser.