Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.DataPreprocessing.Views/3.4/HistogramView.Designer.cs @ 16662

Last change on this file since 16662 was 16662, checked in by gkronber, 5 years ago

#2925: merged all changes from trunk to branch (up to r16659)

File size: 9.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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.components = new System.ComponentModel.Container();
48      this.optionsBox = new System.Windows.Forms.GroupBox();
49      this.groupingTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
50      this.variableLabel = new System.Windows.Forms.Label();
51      this.orderLabel = new System.Windows.Forms.Label();
52      this.aggregationLabel = new System.Windows.Forms.Label();
53      this.orderComboBox = new System.Windows.Forms.ComboBox();
54      this.groupingComboBox = new System.Windows.Forms.ComboBox();
55      this.aggregationComboBox = new System.Windows.Forms.ComboBox();
56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
57      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
58      this.splitContainer.Panel1.SuspendLayout();
59      this.splitContainer.SuspendLayout();
60      this.optionsBox.SuspendLayout();
61      this.groupingTableLayoutPanel.SuspendLayout();
62      this.SuspendLayout();
63      //
64      // sizeGroupBox
65      //
66      this.sizeGroupBox.Location = new System.Drawing.Point(0, 258);
67      //
68      // splitContainer
69      //
70      //
71      // splitContainer.Panel1
72      //
73      this.splitContainer.Panel1.Controls.Add(this.optionsBox);
74      //
75      // optionsBox
76      //
77      this.optionsBox.Controls.Add(this.groupingTableLayoutPanel);
78      this.optionsBox.Dock = System.Windows.Forms.DockStyle.Bottom;
79      this.optionsBox.Location = new System.Drawing.Point(0, 302);
80      this.optionsBox.Name = "optionsBox";
81      this.optionsBox.Size = new System.Drawing.Size(180, 101);
82      this.optionsBox.TabIndex = 7;
83      this.optionsBox.TabStop = false;
84      this.optionsBox.Text = "Grouping Options";
85      //
86      // groupingTableLayoutPanel
87      //
88      this.groupingTableLayoutPanel.ColumnCount = 2;
89      this.groupingTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
90      this.groupingTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
91      this.groupingTableLayoutPanel.Controls.Add(this.variableLabel, 0, 0);
92      this.groupingTableLayoutPanel.Controls.Add(this.orderLabel, 0, 2);
93      this.groupingTableLayoutPanel.Controls.Add(this.aggregationLabel, 0, 1);
94      this.groupingTableLayoutPanel.Controls.Add(this.orderComboBox, 1, 2);
95      this.groupingTableLayoutPanel.Controls.Add(this.groupingComboBox, 1, 0);
96      this.groupingTableLayoutPanel.Controls.Add(this.aggregationComboBox, 1, 1);
97      this.groupingTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
98      this.groupingTableLayoutPanel.Location = new System.Drawing.Point(3, 16);
99      this.groupingTableLayoutPanel.Name = "groupingTableLayoutPanel";
100      this.groupingTableLayoutPanel.RowCount = 3;
101      this.groupingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
102      this.groupingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
103      this.groupingTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
104      this.groupingTableLayoutPanel.Size = new System.Drawing.Size(174, 82);
105      this.groupingTableLayoutPanel.TabIndex = 3;
106      //
107      // variableLabel
108      //
109      this.variableLabel.AutoSize = true;
110      this.variableLabel.Dock = System.Windows.Forms.DockStyle.Fill;
111      this.variableLabel.Location = new System.Drawing.Point(3, 0);
112      this.variableLabel.Name = "variableLabel";
113      this.variableLabel.Size = new System.Drawing.Size(48, 27);
114      this.variableLabel.TabIndex = 2;
115      this.variableLabel.Text = "Variable:";
116      this.variableLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
117      //
118      // orderLabel
119      //
120      this.orderLabel.AutoSize = true;
121      this.orderLabel.Dock = System.Windows.Forms.DockStyle.Fill;
122      this.orderLabel.Location = new System.Drawing.Point(3, 54);
123      this.orderLabel.Name = "orderLabel";
124      this.orderLabel.Size = new System.Drawing.Size(48, 28);
125      this.orderLabel.TabIndex = 2;
126      this.orderLabel.Text = "Order:";
127      this.orderLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
128      this.toolTip.SetToolTip(this.orderLabel, "Order of Legend Entries");
129      //
130      // aggregationLabel
131      //
132      this.aggregationLabel.AutoSize = true;
133      this.aggregationLabel.Dock = System.Windows.Forms.DockStyle.Fill;
134      this.aggregationLabel.Location = new System.Drawing.Point(3, 27);
135      this.aggregationLabel.Name = "aggregationLabel";
136      this.aggregationLabel.Size = new System.Drawing.Size(48, 27);
137      this.aggregationLabel.TabIndex = 2;
138      this.aggregationLabel.Text = "Aggr.:";
139      this.aggregationLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
140      this.toolTip.SetToolTip(this.aggregationLabel, "Aggregation");
141      //
142      // orderComboBox
143      //
144      this.orderComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
145      this.orderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
146      this.orderComboBox.FormattingEnabled = true;
147      this.orderComboBox.Location = new System.Drawing.Point(57, 57);
148      this.orderComboBox.Name = "orderComboBox";
149      this.orderComboBox.Size = new System.Drawing.Size(114, 21);
150      this.orderComboBox.TabIndex = 1;
151      this.orderComboBox.SelectedIndexChanged += new System.EventHandler(this.orderComboBox_SelectedIndexChanged);
152      //
153      // groupingComboBox
154      //
155      this.groupingComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
156      this.groupingComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
157      this.groupingComboBox.FormattingEnabled = true;
158      this.groupingComboBox.Location = new System.Drawing.Point(57, 3);
159      this.groupingComboBox.Name = "groupingComboBox";
160      this.groupingComboBox.Size = new System.Drawing.Size(114, 21);
161      this.groupingComboBox.TabIndex = 1;
162      this.groupingComboBox.SelectedIndexChanged += new System.EventHandler(this.classifierComboBox_SelectedIndexChanged);
163      //
164      // aggregationComboBox
165      //
166      this.aggregationComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
167      this.aggregationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
168      this.aggregationComboBox.FormattingEnabled = true;
169      this.aggregationComboBox.Location = new System.Drawing.Point(57, 30);
170      this.aggregationComboBox.Name = "aggregationComboBox";
171      this.aggregationComboBox.Size = new System.Drawing.Size(114, 21);
172      this.aggregationComboBox.TabIndex = 1;
173      this.aggregationComboBox.SelectedIndexChanged += new System.EventHandler(this.aggregationComboBox_SelectedIndexChanged);
174      //
175      // HistogramView
176      //
177      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
178      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
179      this.Margin = new System.Windows.Forms.Padding(4);
180      this.Name = "HistogramView";
181      this.splitContainer.Panel1.ResumeLayout(false);
182      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
183      this.splitContainer.ResumeLayout(false);
184      this.optionsBox.ResumeLayout(false);
185      this.groupingTableLayoutPanel.ResumeLayout(false);
186      this.groupingTableLayoutPanel.PerformLayout();
187      this.ResumeLayout(false);
188
189    }
190
191    #endregion
192
193    private System.Windows.Forms.GroupBox optionsBox;
194    private System.Windows.Forms.ComboBox groupingComboBox;
195    private System.Windows.Forms.Label variableLabel;
196    private System.Windows.Forms.Label aggregationLabel;
197    private System.Windows.Forms.ComboBox aggregationComboBox;
198    private System.Windows.Forms.TableLayoutPanel groupingTableLayoutPanel;
199    private System.Windows.Forms.Label orderLabel;
200    private System.Windows.Forms.ComboBox orderComboBox;
201    private System.Windows.Forms.ToolTip toolTip;
202  }
203}
Note: See TracBrowser for help on using the repository browser.