1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2016 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 |
|
---|
22 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
23 | partial class PreprocessingCheckedVariablesView {
|
---|
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.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
49 | this.variablesGroupBox = new System.Windows.Forms.GroupBox();
|
---|
50 | this.variablesListView = new System.Windows.Forms.ListView();
|
---|
51 | this.columnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
---|
52 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
53 | this.uncheckAllButton = new System.Windows.Forms.Button();
|
---|
54 | this.checkAllButton = new System.Windows.Forms.Button();
|
---|
55 | this.checkInputsTargetButton = new System.Windows.Forms.Button();
|
---|
56 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
57 | this.splitContainer.Panel1.SuspendLayout();
|
---|
58 | this.splitContainer.SuspendLayout();
|
---|
59 | this.variablesGroupBox.SuspendLayout();
|
---|
60 | this.SuspendLayout();
|
---|
61 | //
|
---|
62 | // splitContainer
|
---|
63 | //
|
---|
64 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
65 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
66 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
67 | this.splitContainer.Name = "splitContainer";
|
---|
68 | //
|
---|
69 | // splitContainer.Panel1
|
---|
70 | //
|
---|
71 | this.splitContainer.Panel1.Controls.Add(this.variablesGroupBox);
|
---|
72 | this.splitContainer.Size = new System.Drawing.Size(940, 698);
|
---|
73 | this.splitContainer.SplitterDistance = 180;
|
---|
74 | this.splitContainer.TabIndex = 7;
|
---|
75 | //
|
---|
76 | // variablesGroupBox
|
---|
77 | //
|
---|
78 | this.variablesGroupBox.Controls.Add(this.uncheckAllButton);
|
---|
79 | this.variablesGroupBox.Controls.Add(this.checkAllButton);
|
---|
80 | this.variablesGroupBox.Controls.Add(this.checkInputsTargetButton);
|
---|
81 | this.variablesGroupBox.Controls.Add(this.variablesListView);
|
---|
82 | this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
83 | this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
84 | this.variablesGroupBox.Name = "variablesGroupBox";
|
---|
85 | this.variablesGroupBox.Size = new System.Drawing.Size(180, 698);
|
---|
86 | this.variablesGroupBox.TabIndex = 7;
|
---|
87 | this.variablesGroupBox.TabStop = false;
|
---|
88 | this.variablesGroupBox.Text = "Variables";
|
---|
89 | //
|
---|
90 | // variablesListView
|
---|
91 | //
|
---|
92 | this.variablesListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
93 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
94 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
95 | this.variablesListView.CheckBoxes = true;
|
---|
96 | this.variablesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
---|
97 | this.columnHeader});
|
---|
98 | this.variablesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
|
---|
99 | this.variablesListView.HideSelection = false;
|
---|
100 | this.variablesListView.Location = new System.Drawing.Point(6, 49);
|
---|
101 | this.variablesListView.Name = "variablesListView";
|
---|
102 | this.variablesListView.Size = new System.Drawing.Size(168, 643);
|
---|
103 | this.variablesListView.TabIndex = 12;
|
---|
104 | this.variablesListView.UseCompatibleStateImageBehavior = false;
|
---|
105 | this.variablesListView.View = System.Windows.Forms.View.Details;
|
---|
106 | //
|
---|
107 | // columnHeader
|
---|
108 | //
|
---|
109 | this.columnHeader.Text = "";
|
---|
110 | this.columnHeader.Width = 164;
|
---|
111 | //
|
---|
112 | // uncheckAllButton
|
---|
113 | //
|
---|
114 | this.uncheckAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.None;
|
---|
115 | this.uncheckAllButton.Location = new System.Drawing.Point(66, 19);
|
---|
116 | this.uncheckAllButton.Name = "uncheckAllButton";
|
---|
117 | this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
118 | this.uncheckAllButton.TabIndex = 9;
|
---|
119 | this.toolTip.SetToolTip(this.uncheckAllButton, "Show None");
|
---|
120 | this.uncheckAllButton.UseVisualStyleBackColor = true;
|
---|
121 | this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
|
---|
122 | //
|
---|
123 | // checkAllButton
|
---|
124 | //
|
---|
125 | this.checkAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.All;
|
---|
126 | this.checkAllButton.Location = new System.Drawing.Point(6, 19);
|
---|
127 | this.checkAllButton.Name = "checkAllButton";
|
---|
128 | this.checkAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
129 | this.checkAllButton.TabIndex = 7;
|
---|
130 | this.toolTip.SetToolTip(this.checkAllButton, "Show All");
|
---|
131 | this.checkAllButton.UseVisualStyleBackColor = true;
|
---|
132 | this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
|
---|
133 | //
|
---|
134 | // checkInputsTargetButton
|
---|
135 | //
|
---|
136 | this.checkInputsTargetButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.Inputs;
|
---|
137 | this.checkInputsTargetButton.Location = new System.Drawing.Point(36, 19);
|
---|
138 | this.checkInputsTargetButton.Name = "checkInputsTargetButton";
|
---|
139 | this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
|
---|
140 | this.checkInputsTargetButton.TabIndex = 8;
|
---|
141 | this.toolTip.SetToolTip(this.checkInputsTargetButton, "Show Inputs & Target");
|
---|
142 | this.checkInputsTargetButton.UseVisualStyleBackColor = true;
|
---|
143 | this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
|
---|
144 | //
|
---|
145 | // PreprocessingCheckedVariablesView
|
---|
146 | //
|
---|
147 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
148 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
149 | this.Controls.Add(this.splitContainer);
|
---|
150 | this.Name = "PreprocessingCheckedVariablesView";
|
---|
151 | this.Size = new System.Drawing.Size(940, 698);
|
---|
152 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
153 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
154 | this.splitContainer.ResumeLayout(false);
|
---|
155 | this.variablesGroupBox.ResumeLayout(false);
|
---|
156 | this.ResumeLayout(false);
|
---|
157 |
|
---|
158 | }
|
---|
159 |
|
---|
160 | #endregion
|
---|
161 | protected System.Windows.Forms.SplitContainer splitContainer;
|
---|
162 | private System.Windows.Forms.ToolTip toolTip;
|
---|
163 | private System.Windows.Forms.ColumnHeader columnHeader;
|
---|
164 | private System.Windows.Forms.ListView variablesListView;
|
---|
165 | private System.Windows.Forms.GroupBox variablesGroupBox;
|
---|
166 | private System.Windows.Forms.Button checkInputsTargetButton;
|
---|
167 | private System.Windows.Forms.Button uncheckAllButton;
|
---|
168 | private System.Windows.Forms.Button checkAllButton;
|
---|
169 | }
|
---|
170 | }
|
---|