Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13321 was 13289, checked in by mkommend, 8 years ago

#2486: Merged r12983, r12986, r13252 and r13271 into stable.

File size: 16.3 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
[12009]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10539]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
[10558]22namespace HeuristicLab.DataPreprocessing.Views {
[10236]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() {
[10380]47      this.components = new System.ComponentModel.Container();
[10253]48      this.btnApplySort = new System.Windows.Forms.Button();
[10380]49      this.contextMenuCell = new System.Windows.Forms.ContextMenuStrip(this.components);
[10768]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();
[10812]56      this.smoothingToolStripMenuItem_Column = new System.Windows.Forms.ToolStripMenuItem();
[10768]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();
[10762]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);
[13289]65      this.addRowButton = new System.Windows.Forms.Button();
66      this.addColumnButton = new System.Windows.Forms.Button();
67      this.renameColumnsButton = new System.Windows.Forms.Button();
[10243]68      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[10380]69      this.contextMenuCell.SuspendLayout();
[10243]70      this.SuspendLayout();
71      //
72      // rowsTextBox
73      //
[10317]74      this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
[10243]75      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
76      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
[10317]77      this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
[10243]78      //
79      // columnsTextBox
80      //
[10317]81      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
82      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
[10243]83      //
[10253]84      // statisticsTextBox
85      //
[13289]86      this.statisticsTextBox.Location = new System.Drawing.Point(3, 387);
87      this.statisticsTextBox.Size = new System.Drawing.Size(421, 13);
[10253]88      //
89      // btnApplySort
90      //
[13289]91      this.btnApplySort.Location = new System.Drawing.Point(234, 0);
[10253]92      this.btnApplySort.Name = "btnApplySort";
[13289]93      this.btnApplySort.Size = new System.Drawing.Size(104, 23);
[10253]94      this.btnApplySort.TabIndex = 7;
95      this.btnApplySort.Text = "Apply Sort";
[10762]96      this.toolTip.SetToolTip(this.btnApplySort, "The current sorting is applied on the data itself.");
[10253]97      this.btnApplySort.UseVisualStyleBackColor = true;
98      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
99      //
[10380]100      // contextMenuCell
101      //
102      this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
[10768]103            this.replaceValueOverColumnToolStripMenuItem,
104            this.replaceValueOverSelectionToolStripMenuItem});
[10380]105      this.contextMenuCell.Name = "contextMenuCell";
[13289]106      this.contextMenuCell.Size = new System.Drawing.Size(225, 48);
[10380]107      //
[10768]108      // replaceValueOverColumnToolStripMenuItem
[10380]109      //
[10768]110      this.replaceValueOverColumnToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
111            this.averageToolStripMenuItem_Column,
112            this.medianToolStripMenuItem_Column,
113            this.randomToolStripMenuItem_Column,
114            this.mostCommonToolStripMenuItem_Column,
[10809]115            this.interpolationToolStripMenuItem_Column,
[10812]116            this.smoothingToolStripMenuItem_Column});
[10768]117      this.replaceValueOverColumnToolStripMenuItem.Name = "replaceValueOverColumnToolStripMenuItem";
118      this.replaceValueOverColumnToolStripMenuItem.Size = new System.Drawing.Size(224, 22);
119      this.replaceValueOverColumnToolStripMenuItem.Text = "Replace Value over Column";
[10380]120      //
[10768]121      // averageToolStripMenuItem_Column
[10380]122      //
[10768]123      this.averageToolStripMenuItem_Column.Name = "averageToolStripMenuItem_Column";
124      this.averageToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
125      this.averageToolStripMenuItem_Column.Text = "Average";
126      this.averageToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithAverage_Column_Click);
[10380]127      //
[10768]128      // medianToolStripMenuItem_Column
[10380]129      //
[10768]130      this.medianToolStripMenuItem_Column.Name = "medianToolStripMenuItem_Column";
131      this.medianToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
132      this.medianToolStripMenuItem_Column.Text = "Median";
133      this.medianToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithMedian_Column_Click);
[10380]134      //
[10768]135      // randomToolStripMenuItem_Column
[10380]136      //
[10768]137      this.randomToolStripMenuItem_Column.Name = "randomToolStripMenuItem_Column";
138      this.randomToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
139      this.randomToolStripMenuItem_Column.Text = "Random";
140      this.randomToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithRandom_Column_Click);
[10380]141      //
[10768]142      // mostCommonToolStripMenuItem_Column
[10380]143      //
[10768]144      this.mostCommonToolStripMenuItem_Column.Name = "mostCommonToolStripMenuItem_Column";
145      this.mostCommonToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
146      this.mostCommonToolStripMenuItem_Column.Text = "Most Common";
147      this.mostCommonToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithMostCommon_Column_Click);
[10380]148      //
[10768]149      // interpolationToolStripMenuItem_Column
[10380]150      //
[10768]151      this.interpolationToolStripMenuItem_Column.Name = "interpolationToolStripMenuItem_Column";
152      this.interpolationToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
153      this.interpolationToolStripMenuItem_Column.Text = "Interpolation";
154      this.interpolationToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithInterpolation_Column_Click);
[10380]155      //
[13289]156      // smoothingToolStripMenuItem_Column
[10809]157      //
[13289]158      this.smoothingToolStripMenuItem_Column.Name = "smoothingToolStripMenuItem_Column";
[10812]159      this.smoothingToolStripMenuItem_Column.Size = new System.Drawing.Size(155, 22);
160      this.smoothingToolStripMenuItem_Column.Text = "Smoothing";
161      this.smoothingToolStripMenuItem_Column.Click += new System.EventHandler(this.ReplaceWithSmoothing_Selection_Click);
[10809]162      //
[10768]163      // replaceValueOverSelectionToolStripMenuItem
164      //
165      this.replaceValueOverSelectionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
166            this.averageToolStripMenuItem_Selection,
167            this.medianToolStripMenuItem_Selection,
168            this.randomToolStripMenuItem_Selection,
[10809]169            this.mostCommonToolStripMenuItem_Selection});
[10768]170      this.replaceValueOverSelectionToolStripMenuItem.Name = "replaceValueOverSelectionToolStripMenuItem";
171      this.replaceValueOverSelectionToolStripMenuItem.Size = new System.Drawing.Size(224, 22);
172      this.replaceValueOverSelectionToolStripMenuItem.Text = "Replace Value over Selection";
173      //
174      // averageToolStripMenuItem_Selection
175      //
176      this.averageToolStripMenuItem_Selection.Name = "averageToolStripMenuItem_Selection";
177      this.averageToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
178      this.averageToolStripMenuItem_Selection.Text = "Average";
179      this.averageToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithAverage_Selection_Click);
180      //
181      // medianToolStripMenuItem_Selection
182      //
183      this.medianToolStripMenuItem_Selection.Name = "medianToolStripMenuItem_Selection";
184      this.medianToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
185      this.medianToolStripMenuItem_Selection.Text = "Median";
186      this.medianToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithMedian_Selection_Click);
187      //
188      // randomToolStripMenuItem_Selection
189      //
190      this.randomToolStripMenuItem_Selection.Name = "randomToolStripMenuItem_Selection";
191      this.randomToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
192      this.randomToolStripMenuItem_Selection.Text = "Random";
193      this.randomToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithRandom_Selection_Click);
194      //
195      // mostCommonToolStripMenuItem_Selection
196      //
197      this.mostCommonToolStripMenuItem_Selection.Name = "mostCommonToolStripMenuItem_Selection";
198      this.mostCommonToolStripMenuItem_Selection.Size = new System.Drawing.Size(155, 22);
199      this.mostCommonToolStripMenuItem_Selection.Text = "Most Common";
200      this.mostCommonToolStripMenuItem_Selection.Click += new System.EventHandler(this.ReplaceWithMostCommon_Selection_Click);
201      //
[10762]202      // btnSearch
203      //
[13289]204      this.btnSearch.Location = new System.Drawing.Point(173, 0);
[10762]205      this.btnSearch.Name = "btnSearch";
[13289]206      this.btnSearch.Size = new System.Drawing.Size(55, 23);
[10762]207      this.btnSearch.TabIndex = 8;
208      this.btnSearch.Text = "Search";
209      this.toolTip.SetToolTip(this.btnSearch, "Opens the Search dialog");
210      this.btnSearch.UseVisualStyleBackColor = true;
[10764]211      this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
[10762]212      //
213      // btnReplace
214      //
[13289]215      this.btnReplace.Location = new System.Drawing.Point(173, 26);
[10762]216      this.btnReplace.Name = "btnReplace";
217      this.btnReplace.Size = new System.Drawing.Size(55, 23);
218      this.btnReplace.TabIndex = 9;
219      this.btnReplace.Text = "Replace";
220      this.toolTip.SetToolTip(this.btnReplace, "Opens the Search & Replace dialog");
221      this.btnReplace.UseVisualStyleBackColor = true;
222      this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
223      //
[13289]224      // addRowButton
225      //
226      this.addRowButton.Location = new System.Drawing.Point(344, 26);
227      this.addRowButton.Name = "addRowButton";
228      this.addRowButton.Size = new System.Drawing.Size(76, 23);
229      this.addRowButton.TabIndex = 10;
230      this.addRowButton.Text = "Add Row";
231      this.addRowButton.UseVisualStyleBackColor = true;
232      this.addRowButton.Click += new System.EventHandler(this.addRowButton_Click);
233      //
234      // addColumnButton
235      //
236      this.addColumnButton.Location = new System.Drawing.Point(344, 0);
237      this.addColumnButton.Name = "addColumnButton";
238      this.addColumnButton.Size = new System.Drawing.Size(76, 23);
239      this.addColumnButton.TabIndex = 10;
240      this.addColumnButton.Text = "Add Column";
241      this.addColumnButton.UseVisualStyleBackColor = true;
242      this.addColumnButton.Click += new System.EventHandler(this.addColumnButton_Click);
243      //
244      // renameColumnsButton
245      //
246      this.renameColumnsButton.Location = new System.Drawing.Point(234, 26);
247      this.renameColumnsButton.Name = "renameColumnsButton";
248      this.renameColumnsButton.Size = new System.Drawing.Size(104, 23);
249      this.renameColumnsButton.TabIndex = 11;
250      this.renameColumnsButton.Text = "Rename Columns";
251      this.renameColumnsButton.UseVisualStyleBackColor = true;
252      this.renameColumnsButton.Click += new System.EventHandler(this.renameColumnsButton_Click);
253      //
[10243]254      // DataGridContentView
255      //
256      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[10236]257      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[13289]258      this.Controls.Add(this.renameColumnsButton);
259      this.Controls.Add(this.addColumnButton);
260      this.Controls.Add(this.addRowButton);
[10762]261      this.Controls.Add(this.btnReplace);
262      this.Controls.Add(this.btnSearch);
[10253]263      this.Controls.Add(this.btnApplySort);
[10243]264      this.Name = "DataGridContentView";
[13289]265      this.Size = new System.Drawing.Size(430, 403);
266      this.Controls.SetChildIndex(this.btnApplySort, 0);
267      this.Controls.SetChildIndex(this.btnSearch, 0);
268      this.Controls.SetChildIndex(this.btnReplace, 0);
269      this.Controls.SetChildIndex(this.addRowButton, 0);
270      this.Controls.SetChildIndex(this.addColumnButton, 0);
271      this.Controls.SetChildIndex(this.renameColumnsButton, 0);
[10243]272      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
273      this.Controls.SetChildIndex(this.rowsLabel, 0);
274      this.Controls.SetChildIndex(this.columnsLabel, 0);
275      this.Controls.SetChildIndex(this.rowsTextBox, 0);
276      this.Controls.SetChildIndex(this.columnsTextBox, 0);
277      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[10380]278      this.contextMenuCell.ResumeLayout(false);
[10243]279      this.ResumeLayout(false);
280      this.PerformLayout();
281
[10236]282    }
283
284    #endregion
[10253]285
286    private System.Windows.Forms.Button btnApplySort;
[10380]287    private System.Windows.Forms.ContextMenuStrip contextMenuCell;
[10768]288    private System.Windows.Forms.ToolStripMenuItem replaceValueOverColumnToolStripMenuItem;
289    private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Column;
290    private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Column;
291    private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Column;
292    private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Column;
293    private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem_Column;
294    private System.Windows.Forms.ToolStripMenuItem replaceValueOverSelectionToolStripMenuItem;
295    private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Selection;
296    private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Selection;
297    private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Selection;
298    private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Selection;
[10762]299    private System.Windows.Forms.Button btnSearch;
300    private System.Windows.Forms.Button btnReplace;
301    private System.Windows.Forms.ToolTip toolTip;
[10812]302    private System.Windows.Forms.ToolStripMenuItem smoothingToolStripMenuItem_Column;
[13289]303    private System.Windows.Forms.Button addRowButton;
304    private System.Windows.Forms.Button addColumnButton;
305    private System.Windows.Forms.Button renameColumnsButton;
[10236]306  }
307}
Note: See TracBrowser for help on using the repository browser.