Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.Designer.cs @ 15242

Last change on this file since 15242 was 15242, checked in by pfleck, 7 years ago

#2709 merged to stable

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