Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10626 was 10558, checked in by pfleck, 10 years ago
  • removed unnecessary references and using
  • added missing license header
  • formatted code according to HL standards
File size: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DataPreprocessing.Views {
23  partial class HistogramView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.groupBoxAttributs = new System.Windows.Forms.GroupBox();
48      this.variablesListBox = new System.Windows.Forms.CheckedListBox();
49      this.groupBoxOptions = new System.Windows.Forms.GroupBox();
50      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
51      this.groupBoxAttributs.SuspendLayout();
52      this.SuspendLayout();
53      //
54      // groupBoxAttributs
55      //
56      this.groupBoxAttributs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57            | System.Windows.Forms.AnchorStyles.Left)));
58      this.groupBoxAttributs.Controls.Add(this.variablesListBox);
59      this.groupBoxAttributs.Location = new System.Drawing.Point(3, 4);
60      this.groupBoxAttributs.Name = "groupBoxAttributs";
61      this.groupBoxAttributs.Size = new System.Drawing.Size(153, 252);
62      this.groupBoxAttributs.TabIndex = 3;
63      this.groupBoxAttributs.TabStop = false;
64      this.groupBoxAttributs.Text = "Attributes";
65      //
66      // variablesListBox
67      //
68      this.variablesListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
69            | System.Windows.Forms.AnchorStyles.Left)
70            | System.Windows.Forms.AnchorStyles.Right)));
71      this.variablesListBox.FormattingEnabled = true;
72      this.variablesListBox.Location = new System.Drawing.Point(6, 19);
73      this.variablesListBox.Name = "variablesListBox";
74      this.variablesListBox.Size = new System.Drawing.Size(141, 229);
75      this.variablesListBox.TabIndex = 1;
76      this.variablesListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.variablesListBox_ItemCheck);
77      //
78      // groupBoxOptions
79      //
80      this.groupBoxOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
81      this.groupBoxOptions.Location = new System.Drawing.Point(4, 262);
82      this.groupBoxOptions.Name = "groupBoxOptions";
83      this.groupBoxOptions.Size = new System.Drawing.Size(152, 138);
84      this.groupBoxOptions.TabIndex = 4;
85      this.groupBoxOptions.TabStop = false;
86      this.groupBoxOptions.Text = "Options";
87      //
88      // viewHost
89      //
90      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
91            | System.Windows.Forms.AnchorStyles.Left)
92            | System.Windows.Forms.AnchorStyles.Right)));
93      this.viewHost.Caption = "View";
94      this.viewHost.Content = null;
95      this.viewHost.Enabled = false;
96      this.viewHost.Location = new System.Drawing.Point(163, 4);
97      this.viewHost.Name = "viewHost";
98      this.viewHost.ReadOnly = false;
99      this.viewHost.Size = new System.Drawing.Size(524, 396);
100      this.viewHost.TabIndex = 5;
101      this.viewHost.ViewsLabelVisible = true;
102      this.viewHost.ViewType = null;
103      //
104      // HistogramView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
108      this.Controls.Add(this.viewHost);
109      this.Controls.Add(this.groupBoxOptions);
110      this.Controls.Add(this.groupBoxAttributs);
111      this.Name = "HistogramView";
112      this.Size = new System.Drawing.Size(690, 403);
113      this.groupBoxAttributs.ResumeLayout(false);
114      this.ResumeLayout(false);
115
116    }
117
118    #endregion
119
120    private System.Windows.Forms.GroupBox groupBoxAttributs;
121    private System.Windows.Forms.CheckedListBox variablesListBox;
122    private System.Windows.Forms.GroupBox groupBoxOptions;
123    private MainForm.WindowsForms.ViewHost viewHost;
124  }
125}
Note: See TracBrowser for help on using the repository browser.