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 |
|
---|
22 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
23 | partial class StatisticsView {
|
---|
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.lblRows = new System.Windows.Forms.Label();
|
---|
49 | this.lblColumns = new System.Windows.Forms.Label();
|
---|
50 | this.lblMissingValuesTotal = new System.Windows.Forms.Label();
|
---|
51 | this.lblNumericColumns = new System.Windows.Forms.Label();
|
---|
52 | this.lblNominalColumns = new System.Windows.Forms.Label();
|
---|
53 | this.stringMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
|
---|
54 | this.showVariablesGroupBox = new System.Windows.Forms.GroupBox();
|
---|
55 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
56 | this.lblTNumValues = new System.Windows.Forms.Label();
|
---|
57 | this.orientationGroupBox = new System.Windows.Forms.GroupBox();
|
---|
58 | this.verticalRadioButton = new System.Windows.Forms.RadioButton();
|
---|
59 | this.horizontalRadioButton = new System.Windows.Forms.RadioButton();
|
---|
60 | this.rowsTextBox = new System.Windows.Forms.TextBox();
|
---|
61 | this.columnsTextBox = new System.Windows.Forms.TextBox();
|
---|
62 | this.totalValuesTextBox = new System.Windows.Forms.TextBox();
|
---|
63 | this.overviewTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
---|
64 | this.numericColumnsTextBox = new System.Windows.Forms.TextBox();
|
---|
65 | this.nominalColumnsTextBox5 = new System.Windows.Forms.TextBox();
|
---|
66 | this.missingValuesTextBox = new System.Windows.Forms.TextBox();
|
---|
67 | this.overviewGroupBox = new System.Windows.Forms.GroupBox();
|
---|
68 | this.checkInputsTargetButton = new System.Windows.Forms.Button();
|
---|
69 | this.uncheckAllButton = new System.Windows.Forms.Button();
|
---|
70 | this.checkAllButton = new System.Windows.Forms.Button();
|
---|
71 | this.showVariablesGroupBox.SuspendLayout();
|
---|
72 | this.orientationGroupBox.SuspendLayout();
|
---|
73 | this.overviewTableLayoutPanel.SuspendLayout();
|
---|
74 | this.overviewGroupBox.SuspendLayout();
|
---|
75 | this.SuspendLayout();
|
---|
76 | //
|
---|
77 | // lblRows
|
---|
78 | //
|
---|
79 | this.lblRows.AutoSize = true;
|
---|
80 | this.lblRows.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
81 | this.lblRows.Location = new System.Drawing.Point(3, 0);
|
---|
82 | this.lblRows.Name = "lblRows";
|
---|
83 | this.lblRows.Size = new System.Drawing.Size(52, 26);
|
---|
84 | this.lblRows.TabIndex = 0;
|
---|
85 | this.lblRows.Text = "Datarows";
|
---|
86 | this.lblRows.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
87 | //
|
---|
88 | // lblColumns
|
---|
89 | //
|
---|
90 | this.lblColumns.AutoSize = true;
|
---|
91 | this.lblColumns.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
92 | this.lblColumns.Location = new System.Drawing.Point(3, 26);
|
---|
93 | this.lblColumns.Name = "lblColumns";
|
---|
94 | this.lblColumns.Size = new System.Drawing.Size(52, 26);
|
---|
95 | this.lblColumns.TabIndex = 2;
|
---|
96 | this.lblColumns.Text = "Variables";
|
---|
97 | this.lblColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
98 | //
|
---|
99 | // lblMissingValuesTotal
|
---|
100 | //
|
---|
101 | this.lblMissingValuesTotal.AutoSize = true;
|
---|
102 | this.lblMissingValuesTotal.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
103 | this.lblMissingValuesTotal.Location = new System.Drawing.Point(275, 26);
|
---|
104 | this.lblMissingValuesTotal.Name = "lblMissingValuesTotal";
|
---|
105 | this.lblMissingValuesTotal.Size = new System.Drawing.Size(77, 26);
|
---|
106 | this.lblMissingValuesTotal.TabIndex = 3;
|
---|
107 | this.lblMissingValuesTotal.Text = "Missing Values";
|
---|
108 | this.lblMissingValuesTotal.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
109 | //
|
---|
110 | // lblNumericColumns
|
---|
111 | //
|
---|
112 | this.lblNumericColumns.AutoSize = true;
|
---|
113 | this.lblNumericColumns.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
114 | this.lblNumericColumns.Location = new System.Drawing.Point(119, 0);
|
---|
115 | this.lblNumericColumns.Name = "lblNumericColumns";
|
---|
116 | this.lblNumericColumns.Size = new System.Drawing.Size(92, 26);
|
---|
117 | this.lblNumericColumns.TabIndex = 3;
|
---|
118 | this.lblNumericColumns.Text = "Numeric Variables";
|
---|
119 | this.lblNumericColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
120 | //
|
---|
121 | // lblNominalColumns
|
---|
122 | //
|
---|
123 | this.lblNominalColumns.AutoSize = true;
|
---|
124 | this.lblNominalColumns.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
125 | this.lblNominalColumns.Location = new System.Drawing.Point(119, 26);
|
---|
126 | this.lblNominalColumns.Name = "lblNominalColumns";
|
---|
127 | this.lblNominalColumns.Size = new System.Drawing.Size(92, 26);
|
---|
128 | this.lblNominalColumns.TabIndex = 3;
|
---|
129 | this.lblNominalColumns.Text = "Nominal Variables";
|
---|
130 | this.lblNominalColumns.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
131 | //
|
---|
132 | // stringMatrixView
|
---|
133 | //
|
---|
134 | this.stringMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
135 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
136 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
137 | this.stringMatrixView.Caption = "StringConvertibleMatrix View";
|
---|
138 | this.stringMatrixView.Content = null;
|
---|
139 | this.stringMatrixView.Location = new System.Drawing.Point(3, 74);
|
---|
140 | this.stringMatrixView.Name = "stringMatrixView";
|
---|
141 | this.stringMatrixView.ReadOnly = true;
|
---|
142 | this.stringMatrixView.ShowRowsAndColumnsTextBox = false;
|
---|
143 | this.stringMatrixView.ShowStatisticalInformation = true;
|
---|
144 | this.stringMatrixView.Size = new System.Drawing.Size(655, 374);
|
---|
145 | this.stringMatrixView.TabIndex = 4;
|
---|
146 | //
|
---|
147 | // showVariablesGroupBox
|
---|
148 | //
|
---|
149 | this.showVariablesGroupBox.Controls.Add(this.checkInputsTargetButton);
|
---|
150 | this.showVariablesGroupBox.Controls.Add(this.uncheckAllButton);
|
---|
151 | this.showVariablesGroupBox.Controls.Add(this.checkAllButton);
|
---|
152 | this.showVariablesGroupBox.Location = new System.Drawing.Point(458, 0);
|
---|
153 | this.showVariablesGroupBox.Name = "showVariablesGroupBox";
|
---|
154 | this.showVariablesGroupBox.Size = new System.Drawing.Size(97, 71);
|
---|
155 | this.showVariablesGroupBox.TabIndex = 16;
|
---|
156 | this.showVariablesGroupBox.TabStop = false;
|
---|
157 | this.showVariablesGroupBox.Text = "Show Variables";
|
---|
158 | //
|
---|
159 | // lblTNumValues
|
---|
160 | //
|
---|
161 | this.lblTNumValues.AutoSize = true;
|
---|
162 | this.lblTNumValues.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
163 | this.lblTNumValues.Location = new System.Drawing.Point(275, 0);
|
---|
164 | this.lblTNumValues.Name = "lblTNumValues";
|
---|
165 | this.lblTNumValues.Size = new System.Drawing.Size(77, 26);
|
---|
166 | this.lblTNumValues.TabIndex = 2;
|
---|
167 | this.lblTNumValues.Text = "Total Values";
|
---|
168 | this.lblTNumValues.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
169 | this.toolTip.SetToolTip(this.lblTNumValues, "Valid Values (excl. missing Values)");
|
---|
170 | //
|
---|
171 | // orientationGroupBox
|
---|
172 | //
|
---|
173 | this.orientationGroupBox.Controls.Add(this.verticalRadioButton);
|
---|
174 | this.orientationGroupBox.Controls.Add(this.horizontalRadioButton);
|
---|
175 | this.orientationGroupBox.Location = new System.Drawing.Point(561, 0);
|
---|
176 | this.orientationGroupBox.Name = "orientationGroupBox";
|
---|
177 | this.orientationGroupBox.Size = new System.Drawing.Size(94, 71);
|
---|
178 | this.orientationGroupBox.TabIndex = 17;
|
---|
179 | this.orientationGroupBox.TabStop = false;
|
---|
180 | this.orientationGroupBox.Text = "Orientation";
|
---|
181 | //
|
---|
182 | // verticalRadioButton
|
---|
183 | //
|
---|
184 | this.verticalRadioButton.AutoSize = true;
|
---|
185 | this.verticalRadioButton.Checked = true;
|
---|
186 | this.verticalRadioButton.Location = new System.Drawing.Point(6, 32);
|
---|
187 | this.verticalRadioButton.Name = "verticalRadioButton";
|
---|
188 | this.verticalRadioButton.Size = new System.Drawing.Size(60, 17);
|
---|
189 | this.verticalRadioButton.TabIndex = 1;
|
---|
190 | this.verticalRadioButton.TabStop = true;
|
---|
191 | this.verticalRadioButton.Text = "Vertical";
|
---|
192 | this.verticalRadioButton.UseVisualStyleBackColor = true;
|
---|
193 | this.verticalRadioButton.CheckedChanged += new System.EventHandler(this.verticalRadioButton_CheckedChanged);
|
---|
194 | //
|
---|
195 | // horizontalRadioButton
|
---|
196 | //
|
---|
197 | this.horizontalRadioButton.AutoSize = true;
|
---|
198 | this.horizontalRadioButton.Location = new System.Drawing.Point(6, 14);
|
---|
199 | this.horizontalRadioButton.Name = "horizontalRadioButton";
|
---|
200 | this.horizontalRadioButton.Size = new System.Drawing.Size(72, 17);
|
---|
201 | this.horizontalRadioButton.TabIndex = 0;
|
---|
202 | this.horizontalRadioButton.Text = "Horizontal";
|
---|
203 | this.horizontalRadioButton.UseVisualStyleBackColor = true;
|
---|
204 | this.horizontalRadioButton.CheckedChanged += new System.EventHandler(this.horizontalRadioButton_CheckedChanged);
|
---|
205 | //
|
---|
206 | // rowsTextBox
|
---|
207 | //
|
---|
208 | this.rowsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
209 | this.rowsTextBox.Location = new System.Drawing.Point(61, 3);
|
---|
210 | this.rowsTextBox.Name = "rowsTextBox";
|
---|
211 | this.rowsTextBox.ReadOnly = true;
|
---|
212 | this.rowsTextBox.Size = new System.Drawing.Size(52, 20);
|
---|
213 | this.rowsTextBox.TabIndex = 18;
|
---|
214 | this.rowsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
215 | //
|
---|
216 | // columnsTextBox
|
---|
217 | //
|
---|
218 | this.columnsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
219 | this.columnsTextBox.Location = new System.Drawing.Point(61, 29);
|
---|
220 | this.columnsTextBox.Name = "columnsTextBox";
|
---|
221 | this.columnsTextBox.ReadOnly = true;
|
---|
222 | this.columnsTextBox.Size = new System.Drawing.Size(52, 20);
|
---|
223 | this.columnsTextBox.TabIndex = 18;
|
---|
224 | this.columnsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
225 | //
|
---|
226 | // totalValuesTextBox
|
---|
227 | //
|
---|
228 | this.totalValuesTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
229 | this.totalValuesTextBox.Location = new System.Drawing.Point(358, 3);
|
---|
230 | this.totalValuesTextBox.Name = "totalValuesTextBox";
|
---|
231 | this.totalValuesTextBox.ReadOnly = true;
|
---|
232 | this.totalValuesTextBox.Size = new System.Drawing.Size(82, 20);
|
---|
233 | this.totalValuesTextBox.TabIndex = 18;
|
---|
234 | this.totalValuesTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
235 | //
|
---|
236 | // overviewTableLayoutPanel
|
---|
237 | //
|
---|
238 | this.overviewTableLayoutPanel.ColumnCount = 6;
|
---|
239 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
---|
240 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
|
---|
241 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
---|
242 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 28.57143F));
|
---|
243 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
---|
244 | this.overviewTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 42.85715F));
|
---|
245 | this.overviewTableLayoutPanel.Controls.Add(this.lblRows, 0, 0);
|
---|
246 | this.overviewTableLayoutPanel.Controls.Add(this.lblColumns, 0, 1);
|
---|
247 | this.overviewTableLayoutPanel.Controls.Add(this.columnsTextBox, 1, 1);
|
---|
248 | this.overviewTableLayoutPanel.Controls.Add(this.lblNominalColumns, 2, 1);
|
---|
249 | this.overviewTableLayoutPanel.Controls.Add(this.lblNumericColumns, 2, 0);
|
---|
250 | this.overviewTableLayoutPanel.Controls.Add(this.rowsTextBox, 1, 0);
|
---|
251 | this.overviewTableLayoutPanel.Controls.Add(this.numericColumnsTextBox, 3, 0);
|
---|
252 | this.overviewTableLayoutPanel.Controls.Add(this.nominalColumnsTextBox5, 3, 1);
|
---|
253 | this.overviewTableLayoutPanel.Controls.Add(this.missingValuesTextBox, 5, 1);
|
---|
254 | this.overviewTableLayoutPanel.Controls.Add(this.lblTNumValues, 4, 0);
|
---|
255 | this.overviewTableLayoutPanel.Controls.Add(this.totalValuesTextBox, 5, 0);
|
---|
256 | this.overviewTableLayoutPanel.Controls.Add(this.lblMissingValuesTotal, 4, 1);
|
---|
257 | this.overviewTableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
258 | this.overviewTableLayoutPanel.Location = new System.Drawing.Point(3, 16);
|
---|
259 | this.overviewTableLayoutPanel.Name = "overviewTableLayoutPanel";
|
---|
260 | this.overviewTableLayoutPanel.RowCount = 3;
|
---|
261 | this.overviewTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
---|
262 | this.overviewTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
---|
263 | this.overviewTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
---|
264 | this.overviewTableLayoutPanel.Size = new System.Drawing.Size(443, 52);
|
---|
265 | this.overviewTableLayoutPanel.TabIndex = 19;
|
---|
266 | //
|
---|
267 | // numericColumnsTextBox
|
---|
268 | //
|
---|
269 | this.numericColumnsTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
270 | this.numericColumnsTextBox.Location = new System.Drawing.Point(217, 3);
|
---|
271 | this.numericColumnsTextBox.Name = "numericColumnsTextBox";
|
---|
272 | this.numericColumnsTextBox.ReadOnly = true;
|
---|
273 | this.numericColumnsTextBox.Size = new System.Drawing.Size(52, 20);
|
---|
274 | this.numericColumnsTextBox.TabIndex = 18;
|
---|
275 | this.numericColumnsTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
276 | //
|
---|
277 | // nominalColumnsTextBox5
|
---|
278 | //
|
---|
279 | this.nominalColumnsTextBox5.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
280 | this.nominalColumnsTextBox5.Location = new System.Drawing.Point(217, 29);
|
---|
281 | this.nominalColumnsTextBox5.Name = "nominalColumnsTextBox5";
|
---|
282 | this.nominalColumnsTextBox5.ReadOnly = true;
|
---|
283 | this.nominalColumnsTextBox5.Size = new System.Drawing.Size(52, 20);
|
---|
284 | this.nominalColumnsTextBox5.TabIndex = 18;
|
---|
285 | this.nominalColumnsTextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
286 | //
|
---|
287 | // missingValuesTextBox
|
---|
288 | //
|
---|
289 | this.missingValuesTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
290 | this.missingValuesTextBox.Location = new System.Drawing.Point(358, 29);
|
---|
291 | this.missingValuesTextBox.Name = "missingValuesTextBox";
|
---|
292 | this.missingValuesTextBox.ReadOnly = true;
|
---|
293 | this.missingValuesTextBox.Size = new System.Drawing.Size(82, 20);
|
---|
294 | this.missingValuesTextBox.TabIndex = 18;
|
---|
295 | this.missingValuesTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
---|
296 | //
|
---|
297 | // overviewGroupBox
|
---|
298 | //
|
---|
299 | this.overviewGroupBox.Controls.Add(this.overviewTableLayoutPanel);
|
---|
300 | this.overviewGroupBox.Location = new System.Drawing.Point(3, 0);
|
---|
301 | this.overviewGroupBox.Name = "overviewGroupBox";
|
---|
302 | this.overviewGroupBox.Size = new System.Drawing.Size(449, 71);
|
---|
303 | this.overviewGroupBox.TabIndex = 20;
|
---|
304 | this.overviewGroupBox.TabStop = false;
|
---|
305 | this.overviewGroupBox.Text = "Overview";
|
---|
306 | //
|
---|
307 | // checkInputsTargetButton
|
---|
308 | //
|
---|
309 | this.checkInputsTargetButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.Inputs;
|
---|
310 | this.checkInputsTargetButton.Location = new System.Drawing.Point(36, 19);
|
---|
311 | this.checkInputsTargetButton.Name = "checkInputsTargetButton";
|
---|
312 | this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
|
---|
313 | this.checkInputsTargetButton.TabIndex = 14;
|
---|
314 | this.toolTip.SetToolTip(this.checkInputsTargetButton, "Show Inputs & Target");
|
---|
315 | this.checkInputsTargetButton.UseVisualStyleBackColor = true;
|
---|
316 | this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
|
---|
317 | //
|
---|
318 | // uncheckAllButton
|
---|
319 | //
|
---|
320 | this.uncheckAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.None;
|
---|
321 | this.uncheckAllButton.Location = new System.Drawing.Point(66, 19);
|
---|
322 | this.uncheckAllButton.Name = "uncheckAllButton";
|
---|
323 | this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
324 | this.uncheckAllButton.TabIndex = 12;
|
---|
325 | this.toolTip.SetToolTip(this.uncheckAllButton, "Show None");
|
---|
326 | this.uncheckAllButton.UseVisualStyleBackColor = true;
|
---|
327 | this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
|
---|
328 | //
|
---|
329 | // checkAllButton
|
---|
330 | //
|
---|
331 | this.checkAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.All;
|
---|
332 | this.checkAllButton.Location = new System.Drawing.Point(6, 19);
|
---|
333 | this.checkAllButton.Name = "checkAllButton";
|
---|
334 | this.checkAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
335 | this.checkAllButton.TabIndex = 13;
|
---|
336 | this.toolTip.SetToolTip(this.checkAllButton, "Show All");
|
---|
337 | this.checkAllButton.UseVisualStyleBackColor = true;
|
---|
338 | this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
|
---|
339 | //
|
---|
340 | // StatisticsView
|
---|
341 | //
|
---|
342 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
343 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
344 | this.Controls.Add(this.overviewGroupBox);
|
---|
345 | this.Controls.Add(this.orientationGroupBox);
|
---|
346 | this.Controls.Add(this.showVariablesGroupBox);
|
---|
347 | this.Controls.Add(this.stringMatrixView);
|
---|
348 | this.Name = "StatisticsView";
|
---|
349 | this.Size = new System.Drawing.Size(661, 451);
|
---|
350 | this.showVariablesGroupBox.ResumeLayout(false);
|
---|
351 | this.orientationGroupBox.ResumeLayout(false);
|
---|
352 | this.orientationGroupBox.PerformLayout();
|
---|
353 | this.overviewTableLayoutPanel.ResumeLayout(false);
|
---|
354 | this.overviewTableLayoutPanel.PerformLayout();
|
---|
355 | this.overviewGroupBox.ResumeLayout(false);
|
---|
356 | this.ResumeLayout(false);
|
---|
357 |
|
---|
358 | }
|
---|
359 |
|
---|
360 | #endregion
|
---|
361 |
|
---|
362 | private System.Windows.Forms.Label lblRows;
|
---|
363 | private System.Windows.Forms.Label lblColumns;
|
---|
364 | private System.Windows.Forms.Label lblMissingValuesTotal;
|
---|
365 | private System.Windows.Forms.Label lblNumericColumns;
|
---|
366 | private System.Windows.Forms.Label lblNominalColumns;
|
---|
367 | private HeuristicLab.Data.Views.StringConvertibleMatrixView stringMatrixView;
|
---|
368 | private System.Windows.Forms.GroupBox showVariablesGroupBox;
|
---|
369 | private System.Windows.Forms.Button checkInputsTargetButton;
|
---|
370 | private System.Windows.Forms.Button uncheckAllButton;
|
---|
371 | private System.Windows.Forms.Button checkAllButton;
|
---|
372 | private System.Windows.Forms.ToolTip toolTip;
|
---|
373 | private System.Windows.Forms.GroupBox orientationGroupBox;
|
---|
374 | private System.Windows.Forms.RadioButton verticalRadioButton;
|
---|
375 | private System.Windows.Forms.RadioButton horizontalRadioButton;
|
---|
376 | private System.Windows.Forms.Label lblTNumValues;
|
---|
377 | private System.Windows.Forms.TextBox rowsTextBox;
|
---|
378 | private System.Windows.Forms.TextBox columnsTextBox;
|
---|
379 | private System.Windows.Forms.TextBox totalValuesTextBox;
|
---|
380 | private System.Windows.Forms.TableLayoutPanel overviewTableLayoutPanel;
|
---|
381 | private System.Windows.Forms.TextBox numericColumnsTextBox;
|
---|
382 | private System.Windows.Forms.TextBox nominalColumnsTextBox5;
|
---|
383 | private System.Windows.Forms.TextBox missingValuesTextBox;
|
---|
384 | private System.Windows.Forms.GroupBox overviewGroupBox;
|
---|
385 | }
|
---|
386 | }
|
---|