Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.Designer.cs

Last change on this file was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 7.2 KB
RevLine 
[14381]1#region License Information
2/* HeuristicLab
[17181]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[14381]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 PreprocessingChartView {
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.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
[15242]48      this.sizeGroupBox = new System.Windows.Forms.GroupBox();
49      this.columnsNumericUpDown = new System.Windows.Forms.NumericUpDown();
50      this.columnsLabel = new System.Windows.Forms.Label();
51      this.scrollPanel = new System.Windows.Forms.Panel();
[14381]52      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
53      this.splitContainer.Panel1.SuspendLayout();
54      this.splitContainer.Panel2.SuspendLayout();
55      this.splitContainer.SuspendLayout();
[15242]56      this.sizeGroupBox.SuspendLayout();
57      ((System.ComponentModel.ISupportInitialize)(this.columnsNumericUpDown)).BeginInit();
58      this.scrollPanel.SuspendLayout();
[14381]59      this.SuspendLayout();
60      //
61      // splitContainer
62      //
63      //
[15242]64      // splitContainer.Panel1
[14381]65      //
[15242]66      this.splitContainer.Panel1.Controls.Add(this.sizeGroupBox);
[14381]67      //
[15242]68      // splitContainer.Panel2
[14381]69      //
[15242]70      this.splitContainer.Panel2.Controls.Add(this.scrollPanel);
71      this.splitContainer.Panel2.Resize += new System.EventHandler(this.splitContainer_Panel2_Resize);
[14381]72      //
73      // tableLayoutPanel
74      //
[15242]75      this.tableLayoutPanel.AutoSize = true;
76      this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
[14381]77      this.tableLayoutPanel.ColumnCount = 1;
78      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
79      this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
80      this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
81      this.tableLayoutPanel.Name = "tableLayoutPanel";
82      this.tableLayoutPanel.RowCount = 1;
83      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
84      this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
[15242]85      this.tableLayoutPanel.Size = new System.Drawing.Size(0, 0);
[14381]86      this.tableLayoutPanel.TabIndex = 0;
87      this.tableLayoutPanel.Layout += new System.Windows.Forms.LayoutEventHandler(this.tableLayoutPanel_Layout);
88      //
[15242]89      // sizeGroupBox
90      //
91      this.sizeGroupBox.Controls.Add(this.columnsNumericUpDown);
92      this.sizeGroupBox.Controls.Add(this.columnsLabel);
93      this.sizeGroupBox.Dock = System.Windows.Forms.DockStyle.Bottom;
94      this.sizeGroupBox.Location = new System.Drawing.Point(0, 359);
95      this.sizeGroupBox.Name = "sizeGroupBox";
96      this.sizeGroupBox.Size = new System.Drawing.Size(180, 44);
97      this.sizeGroupBox.TabIndex = 8;
98      this.sizeGroupBox.TabStop = false;
99      this.sizeGroupBox.Text = "Chart Size";
100      //
101      // columnsNumericUpDown
102      //
103      this.columnsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
104            | System.Windows.Forms.AnchorStyles.Right)));
105      this.columnsNumericUpDown.Location = new System.Drawing.Point(88, 14);
106      this.columnsNumericUpDown.Minimum = new decimal(new int[] {
107            1,
108            0,
109            0,
110            0});
111      this.columnsNumericUpDown.Name = "columnsNumericUpDown";
112      this.columnsNumericUpDown.Size = new System.Drawing.Size(86, 20);
113      this.columnsNumericUpDown.TabIndex = 3;
114      this.columnsNumericUpDown.Value = new decimal(new int[] {
115            3,
116            0,
117            0,
118            0});
119      this.columnsNumericUpDown.ValueChanged += new System.EventHandler(this.columnsNumericUpDown_ValueChanged);
120      //
121      // columnsLabel
122      //
123      this.columnsLabel.AutoSize = true;
124      this.columnsLabel.Location = new System.Drawing.Point(6, 16);
125      this.columnsLabel.Name = "columnsLabel";
126      this.columnsLabel.Size = new System.Drawing.Size(76, 13);
127      this.columnsLabel.TabIndex = 1;
128      this.columnsLabel.Text = "Max. Columns:";
129      //
130      // scrollPanel
131      //
132      this.scrollPanel.AutoScroll = true;
133      this.scrollPanel.Controls.Add(this.tableLayoutPanel);
134      this.scrollPanel.Dock = System.Windows.Forms.DockStyle.Fill;
135      this.scrollPanel.Location = new System.Drawing.Point(0, 0);
136      this.scrollPanel.Name = "scrollPanel";
137      this.scrollPanel.Size = new System.Drawing.Size(470, 403);
138      this.scrollPanel.TabIndex = 1;
139      //
[14381]140      // PreprocessingChartView
141      //
142      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
143      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
144      this.Name = "PreprocessingChartView";
145      this.splitContainer.Panel1.ResumeLayout(false);
146      this.splitContainer.Panel2.ResumeLayout(false);
147      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
148      this.splitContainer.ResumeLayout(false);
[15242]149      this.sizeGroupBox.ResumeLayout(false);
150      this.sizeGroupBox.PerformLayout();
151      ((System.ComponentModel.ISupportInitialize)(this.columnsNumericUpDown)).EndInit();
152      this.scrollPanel.ResumeLayout(false);
153      this.scrollPanel.PerformLayout();
[14381]154      this.ResumeLayout(false);
155
156    }
157
158    #endregion
159
[15242]160    protected System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
161    private System.Windows.Forms.NumericUpDown columnsNumericUpDown;
162    private System.Windows.Forms.Label columnsLabel;
163    private System.Windows.Forms.Panel scrollPanel;
164    protected System.Windows.Forms.GroupBox sizeGroupBox;
[14381]165  }
166}
Note: See TracBrowser for help on using the repository browser.