Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.Designer.cs @ 14915

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

#2709

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