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 DataGridContentView {
|
---|
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 Windows Form 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.btnApplySort = new System.Windows.Forms.Button();
|
---|
49 | this.contextMenuCell = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
50 | this.replaceValueOverColumnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
51 | this.averageToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
|
---|
52 | this.medianToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
|
---|
53 | this.randomToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
|
---|
54 | this.mostCommonToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
|
---|
55 | this.interpolationToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
|
---|
56 | this.replaceValueOverSelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
57 | this.averageToolStripMenuItem_Selection = new System.Windows.Forms.ToolStripMenuItem();
|
---|
58 | this.medianToolStripMenuItem_Selection = new System.Windows.Forms.ToolStripMenuItem();
|
---|
59 | this.randomToolStripMenuItem_Selection = new System.Windows.Forms.ToolStripMenuItem();
|
---|
60 | this.mostCommonToolStripMenuItem_Selection = new System.Windows.Forms.ToolStripMenuItem();
|
---|
61 | this.btnSearch = new System.Windows.Forms.Button();
|
---|
62 | this.btnReplace = new System.Windows.Forms.Button();
|
---|
63 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
64 | this.shuffleWithinPartitionsCheckBox = new System.Windows.Forms.CheckBox();
|
---|
65 | this.addRowButton = new System.Windows.Forms.Button();
|
---|
66 | this.addColumnButton = new System.Windows.Forms.Button();
|
---|
67 | this.renameColumnsButton = new System.Windows.Forms.Button();
|
---|
68 | this.showVariablesGroupBox = new System.Windows.Forms.GroupBox();
|
---|
69 | this.shuffleAllButton = new System.Windows.Forms.Button();
|
---|
70 | this.checkInputsTargetButton = new System.Windows.Forms.Button();
|
---|
71 | this.uncheckAllButton = new System.Windows.Forms.Button();
|
---|
72 | this.checkAllButton = new System.Windows.Forms.Button();
|
---|
73 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
74 | this.contextMenuCell.SuspendLayout();
|
---|
75 | this.showVariablesGroupBox.SuspendLayout();
|
---|
76 | this.SuspendLayout();
|
---|
77 | //
|
---|
78 | // rowsLabel
|
---|
79 | //
|
---|
80 | this.rowsLabel.Size = new System.Drawing.Size(55, 13);
|
---|
81 | this.rowsLabel.Text = "Datarows:";
|
---|
82 | //
|
---|
83 | // rowsTextBox
|
---|
84 | //
|
---|
85 | this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
|
---|
86 | this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
87 | this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
|
---|
88 | this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
|
---|
89 | //
|
---|
90 | // columnsTextBox
|
---|
91 | //
|
---|
92 | this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
|
---|
93 | this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
|
---|
94 | //
|
---|
95 | // columnsLabel
|
---|
96 | //
|
---|
97 | this.columnsLabel.Size = new System.Drawing.Size(53, 13);
|
---|
98 | this.columnsLabel.Text = "Variables:";
|
---|
99 | //
|
---|
100 | // statisticsTextBox
|
---|
101 | //
|
---|
102 | this.statisticsTextBox.Size = new System.Drawing.Size(421, 13);
|
---|
103 | //
|
---|
104 | // btnApplySort
|
---|
105 | //
|
---|
106 | this.btnApplySort.Location = new System.Drawing.Point(228, 0);
|
---|
107 | this.btnApplySort.Name = "btnApplySort";
|
---|
108 | this.btnApplySort.Size = new System.Drawing.Size(104, 23);
|
---|
109 | this.btnApplySort.TabIndex = 7;
|
---|
110 | this.btnApplySort.Text = "Apply Sort";
|
---|
111 | this.toolTip.SetToolTip(this.btnApplySort, "The current sorting is applied on the data itself.");
|
---|
112 | this.btnApplySort.UseVisualStyleBackColor = true;
|
---|
113 | this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
|
---|
114 | //
|
---|
115 | // contextMenuCell
|
---|
116 | //
|
---|
117 | this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
118 | this.replaceValueOverColumnToolStripMenuItem,
|
---|
119 | this.replaceValueOverSelectionToolStripMenuItem});
|
---|
120 | this.contextMenuCell.Name = "contextMenuCell";
|
---|
121 | this.contextMenuCell.Size = new System.Drawing.Size(224, 48);
|
---|
122 | //
|
---|
123 | // replaceValueOverColumnToolStripMenuItem
|
---|
124 | //
|
---|
125 | this.replaceValueOverColumnToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
126 | this.averageToolStripMenuItem_Column,
|
---|
127 | this.medianToolStripMenuItem_Column,
|
---|
128 | this.randomToolStripMenuItem_Column,
|
---|
129 | this.mostCommonToolStripMenuItem_Column,
|
---|
130 | this.interpolationToolStripMenuItem_Column});
|
---|
131 | this.replaceValueOverColumnToolStripMenuItem.Name = "replaceValueOverColumnToolStripMenuItem";
|
---|
132 | this.replaceValueOverColumnToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
|
---|
133 | this.replaceValueOverColumnToolStripMenuItem.Text = "Replace Value over Variable";
|
---|
134 | //
|
---|
135 | // averageToolStripMenuItem_Column
|
---|
136 | //
|
---|
137 | this.averageToolStripMenuItem_Column.Name = "averageToolStripMenuItem_Column";
|
---|
138 | this.averageToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
|
---|
139 | this.averageToolStripMenuItem_Column.Text = "Average";
|
---|
140 | this.averageToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithAverage_Column_Click);
|
---|
141 | //
|
---|
142 | // medianToolStripMenuItem_Column
|
---|
143 | //
|
---|
144 | this.medianToolStripMenuItem_Column.Name = "medianToolStripMenuItem_Column";
|
---|
145 | this.medianToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
|
---|
146 | this.medianToolStripMenuItem_Column.Text = "Median";
|
---|
147 | this.medianToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithMedian_Column_Click);
|
---|
148 | //
|
---|
149 | // randomToolStripMenuItem_Column
|
---|
150 | //
|
---|
151 | this.randomToolStripMenuItem_Column.Name = "randomToolStripMenuItem_Column";
|
---|
152 | this.randomToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
|
---|
153 | this.randomToolStripMenuItem_Column.Text = "Random";
|
---|
154 | this.randomToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithRandom_Column_Click);
|
---|
155 | //
|
---|
156 | // mostCommonToolStripMenuItem_Column
|
---|
157 | //
|
---|
158 | this.mostCommonToolStripMenuItem_Column.Name = "mostCommonToolStripMenuItem_Column";
|
---|
159 | this.mostCommonToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
|
---|
160 | this.mostCommonToolStripMenuItem_Column.Text = "Most Common";
|
---|
161 | this.mostCommonToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithMostCommon_Column_Click);
|
---|
162 | //
|
---|
163 | // interpolationToolStripMenuItem_Column
|
---|
164 | //
|
---|
165 | this.interpolationToolStripMenuItem_Column.Name = "interpolationToolStripMenuItem_Column";
|
---|
166 | this.interpolationToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
|
---|
167 | this.interpolationToolStripMenuItem_Column.Text = "Interpolation";
|
---|
168 | this.interpolationToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithInterpolation_Column_Click);
|
---|
169 | //
|
---|
170 | // replaceValueOverSelectionToolStripMenuItem
|
---|
171 | //
|
---|
172 | this.replaceValueOverSelectionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
173 | this.averageToolStripMenuItem_Selection,
|
---|
174 | this.medianToolStripMenuItem_Selection,
|
---|
175 | this.randomToolStripMenuItem_Selection,
|
---|
176 | this.mostCommonToolStripMenuItem_Selection});
|
---|
177 | this.replaceValueOverSelectionToolStripMenuItem.Name = "replaceValueOverSelectionToolStripMenuItem";
|
---|
178 | this.replaceValueOverSelectionToolStripMenuItem.Size = new System.Drawing.Size(223, 22);
|
---|
179 | this.replaceValueOverSelectionToolStripMenuItem.Text = "Replace Value over Selection";
|
---|
180 | //
|
---|
181 | // averageToolStripMenuItem_Selection
|
---|
182 | //
|
---|
183 | this.averageToolStripMenuItem_Selection.Name = "averageToolStripMenuItem_Selection";
|
---|
184 | this.averageToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
|
---|
185 | this.averageToolStripMenuItem_Selection.Text = "Average";
|
---|
186 | this.averageToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithAverage_Selection_Click);
|
---|
187 | //
|
---|
188 | // medianToolStripMenuItem_Selection
|
---|
189 | //
|
---|
190 | this.medianToolStripMenuItem_Selection.Name = "medianToolStripMenuItem_Selection";
|
---|
191 | this.medianToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
|
---|
192 | this.medianToolStripMenuItem_Selection.Text = "Median";
|
---|
193 | this.medianToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithMedian_Selection_Click);
|
---|
194 | //
|
---|
195 | // randomToolStripMenuItem_Selection
|
---|
196 | //
|
---|
197 | this.randomToolStripMenuItem_Selection.Name = "randomToolStripMenuItem_Selection";
|
---|
198 | this.randomToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
|
---|
199 | this.randomToolStripMenuItem_Selection.Text = "Random";
|
---|
200 | this.randomToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithRandom_Selection_Click);
|
---|
201 | //
|
---|
202 | // mostCommonToolStripMenuItem_Selection
|
---|
203 | //
|
---|
204 | this.mostCommonToolStripMenuItem_Selection.Name = "mostCommonToolStripMenuItem_Selection";
|
---|
205 | this.mostCommonToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
|
---|
206 | this.mostCommonToolStripMenuItem_Selection.Text = "Most Common";
|
---|
207 | this.mostCommonToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithMostCommon_Selection_Click);
|
---|
208 | //
|
---|
209 | // btnSearch
|
---|
210 | //
|
---|
211 | this.btnSearch.Location = new System.Drawing.Point(167, 0);
|
---|
212 | this.btnSearch.Name = "btnSearch";
|
---|
213 | this.btnSearch.Size = new System.Drawing.Size(55, 23);
|
---|
214 | this.btnSearch.TabIndex = 8;
|
---|
215 | this.btnSearch.Text = "Search";
|
---|
216 | this.toolTip.SetToolTip(this.btnSearch, "Opens the Search dialog");
|
---|
217 | this.btnSearch.UseVisualStyleBackColor = true;
|
---|
218 | this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
---|
219 | //
|
---|
220 | // btnReplace
|
---|
221 | //
|
---|
222 | this.btnReplace.Location = new System.Drawing.Point(167, 26);
|
---|
223 | this.btnReplace.Name = "btnReplace";
|
---|
224 | this.btnReplace.Size = new System.Drawing.Size(55, 23);
|
---|
225 | this.btnReplace.TabIndex = 9;
|
---|
226 | this.btnReplace.Text = "Replace";
|
---|
227 | this.toolTip.SetToolTip(this.btnReplace, "Opens the Search & Replace dialog");
|
---|
228 | this.btnReplace.UseVisualStyleBackColor = true;
|
---|
229 | this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
|
---|
230 | //
|
---|
231 | // shuffleWithinPartitionsCheckBox
|
---|
232 | //
|
---|
233 | this.shuffleWithinPartitionsCheckBox.AutoSize = true;
|
---|
234 | this.shuffleWithinPartitionsCheckBox.Location = new System.Drawing.Point(444, 30);
|
---|
235 | this.shuffleWithinPartitionsCheckBox.Name = "shuffleWithinPartitionsCheckBox";
|
---|
236 | this.shuffleWithinPartitionsCheckBox.Size = new System.Drawing.Size(102, 17);
|
---|
237 | this.shuffleWithinPartitionsCheckBox.TabIndex = 20;
|
---|
238 | this.shuffleWithinPartitionsCheckBox.Text = "Within Partitions";
|
---|
239 | this.toolTip.SetToolTip(this.shuffleWithinPartitionsCheckBox, "If checked, the Training and Test partitions are shuffled separately. Otherwise a" +
|
---|
240 | "ll data is shuffled.");
|
---|
241 | this.shuffleWithinPartitionsCheckBox.UseVisualStyleBackColor = true;
|
---|
242 | //
|
---|
243 | // addRowButton
|
---|
244 | //
|
---|
245 | this.addRowButton.Location = new System.Drawing.Point(338, 26);
|
---|
246 | this.addRowButton.Name = "addRowButton";
|
---|
247 | this.addRowButton.Size = new System.Drawing.Size(83, 23);
|
---|
248 | this.addRowButton.TabIndex = 10;
|
---|
249 | this.addRowButton.Text = "Add Datarow";
|
---|
250 | this.addRowButton.UseVisualStyleBackColor = true;
|
---|
251 | this.addRowButton.Click += new System.EventHandler(this.addRowButton_Click);
|
---|
252 | //
|
---|
253 | // addColumnButton
|
---|
254 | //
|
---|
255 | this.addColumnButton.Location = new System.Drawing.Point(338, 0);
|
---|
256 | this.addColumnButton.Name = "addColumnButton";
|
---|
257 | this.addColumnButton.Size = new System.Drawing.Size(83, 23);
|
---|
258 | this.addColumnButton.TabIndex = 10;
|
---|
259 | this.addColumnButton.Text = "Add Variable";
|
---|
260 | this.addColumnButton.UseVisualStyleBackColor = true;
|
---|
261 | this.addColumnButton.Click += new System.EventHandler(this.addColumnButton_Click);
|
---|
262 | //
|
---|
263 | // renameColumnsButton
|
---|
264 | //
|
---|
265 | this.renameColumnsButton.Location = new System.Drawing.Point(228, 26);
|
---|
266 | this.renameColumnsButton.Name = "renameColumnsButton";
|
---|
267 | this.renameColumnsButton.Size = new System.Drawing.Size(104, 23);
|
---|
268 | this.renameColumnsButton.TabIndex = 11;
|
---|
269 | this.renameColumnsButton.Text = "Rename Variables";
|
---|
270 | this.renameColumnsButton.UseVisualStyleBackColor = true;
|
---|
271 | this.renameColumnsButton.Click += new System.EventHandler(this.renameColumnsButton_Click);
|
---|
272 | //
|
---|
273 | // showVariablesGroupBox
|
---|
274 | //
|
---|
275 | this.showVariablesGroupBox.Controls.Add(this.checkInputsTargetButton);
|
---|
276 | this.showVariablesGroupBox.Controls.Add(this.uncheckAllButton);
|
---|
277 | this.showVariablesGroupBox.Controls.Add(this.checkAllButton);
|
---|
278 | this.showVariablesGroupBox.Location = new System.Drawing.Point(564, 0);
|
---|
279 | this.showVariablesGroupBox.Name = "showVariablesGroupBox";
|
---|
280 | this.showVariablesGroupBox.Size = new System.Drawing.Size(97, 49);
|
---|
281 | this.showVariablesGroupBox.TabIndex = 17;
|
---|
282 | this.showVariablesGroupBox.TabStop = false;
|
---|
283 | this.showVariablesGroupBox.Text = "Show Variables";
|
---|
284 | //
|
---|
285 | // shuffleAllButton
|
---|
286 | //
|
---|
287 | this.shuffleAllButton.Location = new System.Drawing.Point(444, 0);
|
---|
288 | this.shuffleAllButton.Name = "shuffleAllButton";
|
---|
289 | this.shuffleAllButton.Size = new System.Drawing.Size(102, 23);
|
---|
290 | this.shuffleAllButton.TabIndex = 19;
|
---|
291 | this.shuffleAllButton.Text = "Shuffle";
|
---|
292 | this.shuffleAllButton.UseVisualStyleBackColor = true;
|
---|
293 | this.shuffleAllButton.Click += new System.EventHandler(this.shuffleAllButton_Click);
|
---|
294 | //
|
---|
295 | // checkInputsTargetButton
|
---|
296 | //
|
---|
297 | this.checkInputsTargetButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.Inputs;
|
---|
298 | this.checkInputsTargetButton.Location = new System.Drawing.Point(36, 19);
|
---|
299 | this.checkInputsTargetButton.Name = "checkInputsTargetButton";
|
---|
300 | this.checkInputsTargetButton.Size = new System.Drawing.Size(24, 24);
|
---|
301 | this.checkInputsTargetButton.TabIndex = 14;
|
---|
302 | this.toolTip.SetToolTip(this.checkInputsTargetButton, "Select Inputs & Target");
|
---|
303 | this.checkInputsTargetButton.UseVisualStyleBackColor = true;
|
---|
304 | this.checkInputsTargetButton.Click += new System.EventHandler(this.checkInputsTargetButton_Click);
|
---|
305 | //
|
---|
306 | // uncheckAllButton
|
---|
307 | //
|
---|
308 | this.uncheckAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.None;
|
---|
309 | this.uncheckAllButton.Location = new System.Drawing.Point(66, 19);
|
---|
310 | this.uncheckAllButton.Name = "uncheckAllButton";
|
---|
311 | this.uncheckAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
312 | this.uncheckAllButton.TabIndex = 12;
|
---|
313 | this.toolTip.SetToolTip(this.uncheckAllButton, "Select None");
|
---|
314 | this.uncheckAllButton.UseVisualStyleBackColor = true;
|
---|
315 | this.uncheckAllButton.Click += new System.EventHandler(this.uncheckAllButton_Click);
|
---|
316 | //
|
---|
317 | // checkAllButton
|
---|
318 | //
|
---|
319 | this.checkAllButton.Image = global::HeuristicLab.DataPreprocessing.Views.PreprocessingIcons.All;
|
---|
320 | this.checkAllButton.Location = new System.Drawing.Point(6, 19);
|
---|
321 | this.checkAllButton.Name = "checkAllButton";
|
---|
322 | this.checkAllButton.Size = new System.Drawing.Size(24, 24);
|
---|
323 | this.checkAllButton.TabIndex = 13;
|
---|
324 | this.toolTip.SetToolTip(this.checkAllButton, "Select All");
|
---|
325 | this.checkAllButton.UseVisualStyleBackColor = true;
|
---|
326 | this.checkAllButton.Click += new System.EventHandler(this.checkAllButton_Click);
|
---|
327 | //
|
---|
328 | // DataGridContentView
|
---|
329 | //
|
---|
330 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
331 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
332 | this.Controls.Add(this.shuffleWithinPartitionsCheckBox);
|
---|
333 | this.Controls.Add(this.shuffleAllButton);
|
---|
334 | this.Controls.Add(this.showVariablesGroupBox);
|
---|
335 | this.Controls.Add(this.renameColumnsButton);
|
---|
336 | this.Controls.Add(this.addColumnButton);
|
---|
337 | this.Controls.Add(this.addRowButton);
|
---|
338 | this.Controls.Add(this.btnReplace);
|
---|
339 | this.Controls.Add(this.btnSearch);
|
---|
340 | this.Controls.Add(this.btnApplySort);
|
---|
341 | this.Name = "DataGridContentView";
|
---|
342 | this.Controls.SetChildIndex(this.btnApplySort, 0);
|
---|
343 | this.Controls.SetChildIndex(this.btnSearch, 0);
|
---|
344 | this.Controls.SetChildIndex(this.btnReplace, 0);
|
---|
345 | this.Controls.SetChildIndex(this.addRowButton, 0);
|
---|
346 | this.Controls.SetChildIndex(this.addColumnButton, 0);
|
---|
347 | this.Controls.SetChildIndex(this.renameColumnsButton, 0);
|
---|
348 | this.Controls.SetChildIndex(this.statisticsTextBox, 0);
|
---|
349 | this.Controls.SetChildIndex(this.rowsLabel, 0);
|
---|
350 | this.Controls.SetChildIndex(this.columnsLabel, 0);
|
---|
351 | this.Controls.SetChildIndex(this.rowsTextBox, 0);
|
---|
352 | this.Controls.SetChildIndex(this.columnsTextBox, 0);
|
---|
353 | this.Controls.SetChildIndex(this.showVariablesGroupBox, 0);
|
---|
354 | this.Controls.SetChildIndex(this.shuffleAllButton, 0);
|
---|
355 | this.Controls.SetChildIndex(this.shuffleWithinPartitionsCheckBox, 0);
|
---|
356 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
357 | this.contextMenuCell.ResumeLayout(false);
|
---|
358 | this.showVariablesGroupBox.ResumeLayout(false);
|
---|
359 | this.ResumeLayout(false);
|
---|
360 | this.PerformLayout();
|
---|
361 |
|
---|
362 | }
|
---|
363 |
|
---|
364 | #endregion
|
---|
365 |
|
---|
366 | private System.Windows.Forms.Button btnApplySort;
|
---|
367 | private System.Windows.Forms.ContextMenuStrip contextMenuCell;
|
---|
368 | private System.Windows.Forms.ToolStripMenuItem replaceValueOverColumnToolStripMenuItem;
|
---|
369 | private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Column;
|
---|
370 | private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Column;
|
---|
371 | private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Column;
|
---|
372 | private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Column;
|
---|
373 | private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem_Column;
|
---|
374 | private System.Windows.Forms.ToolStripMenuItem replaceValueOverSelectionToolStripMenuItem;
|
---|
375 | private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Selection;
|
---|
376 | private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Selection;
|
---|
377 | private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Selection;
|
---|
378 | private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Selection;
|
---|
379 | private System.Windows.Forms.Button btnSearch;
|
---|
380 | private System.Windows.Forms.Button btnReplace;
|
---|
381 | private System.Windows.Forms.ToolTip toolTip;
|
---|
382 | private System.Windows.Forms.Button addRowButton;
|
---|
383 | private System.Windows.Forms.Button addColumnButton;
|
---|
384 | private System.Windows.Forms.Button renameColumnsButton;
|
---|
385 | private System.Windows.Forms.GroupBox showVariablesGroupBox;
|
---|
386 | private System.Windows.Forms.Button checkInputsTargetButton;
|
---|
387 | private System.Windows.Forms.Button uncheckAllButton;
|
---|
388 | private System.Windows.Forms.Button checkAllButton;
|
---|
389 | private System.Windows.Forms.Button shuffleAllButton;
|
---|
390 | private System.Windows.Forms.CheckBox shuffleWithinPartitionsCheckBox;
|
---|
391 | }
|
---|
392 | } |
---|