1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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.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 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
66 | this.contextMenuCell.SuspendLayout();
|
---|
67 | this.SuspendLayout();
|
---|
68 | //
|
---|
69 | // rowsTextBox
|
---|
70 | //
|
---|
71 | this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
|
---|
72 | this.rowsTextBox.Enabled = false;
|
---|
73 | this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
74 | this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
|
---|
75 | this.rowsTextBox.ReadOnly = true;
|
---|
76 | this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
|
---|
77 | //
|
---|
78 | // columnsTextBox
|
---|
79 | //
|
---|
80 | this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
|
---|
81 | this.columnsTextBox.Enabled = false;
|
---|
82 | this.columnsTextBox.ReadOnly = true;
|
---|
83 | this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
|
---|
84 | //
|
---|
85 | // statisticsTextBox
|
---|
86 | //
|
---|
87 | this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
|
---|
88 | //
|
---|
89 | // btnApplySort
|
---|
90 | //
|
---|
91 | this.btnApplySort.Location = new System.Drawing.Point(349, 19);
|
---|
92 | this.btnApplySort.Name = "btnApplySort";
|
---|
93 | this.btnApplySort.Size = new System.Drawing.Size(75, 23);
|
---|
94 | this.btnApplySort.TabIndex = 7;
|
---|
95 | this.btnApplySort.Text = "Apply Sort";
|
---|
96 | this.toolTip.SetToolTip(this.btnApplySort, "The current sorting is applied on the data itself.");
|
---|
97 | this.btnApplySort.UseVisualStyleBackColor = true;
|
---|
98 | this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
|
---|
99 | //
|
---|
100 | // contextMenuCell
|
---|
101 | //
|
---|
102 | this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
103 | this.replaceValueOverColumnToolStripMenuItem,
|
---|
104 | this.replaceValueOverSelectionToolStripMenuItem});
|
---|
105 | this.contextMenuCell.Name = "contextMenuCell";
|
---|
106 | this.contextMenuCell.Size = new System.Drawing.Size(225, 70);
|
---|
107 | //
|
---|
108 | // replaceValueOverColumnToolStripMenuItem
|
---|
109 | //
|
---|
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,
|
---|
115 | this.interpolationToolStripMenuItem_Column,
|
---|
116 | this.smoothingToolStripMenuItem_Column});
|
---|
117 | this.replaceValueOverColumnToolStripMenuItem.Name = "replaceValueOverColumnToolStripMenuItem";
|
---|
118 | this.replaceValueOverColumnToolStripMenuItem.Size = new System.Drawing.Size(224, 22);
|
---|
119 | this.replaceValueOverColumnToolStripMenuItem.Text = "Replace Value over Column";
|
---|
120 | //
|
---|
121 | // averageToolStripMenuItem_Column
|
---|
122 | //
|
---|
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);
|
---|
127 | //
|
---|
128 | // medianToolStripMenuItem_Column
|
---|
129 | //
|
---|
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);
|
---|
134 | //
|
---|
135 | // randomToolStripMenuItem_Column
|
---|
136 | //
|
---|
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);
|
---|
141 | //
|
---|
142 | // mostCommonToolStripMenuItem_Column
|
---|
143 | //
|
---|
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);
|
---|
148 | //
|
---|
149 | // interpolationToolStripMenuItem_Column
|
---|
150 | //
|
---|
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);
|
---|
155 | //
|
---|
156 | // smoothingToolStripMenuItem
|
---|
157 | //
|
---|
158 | this.smoothingToolStripMenuItem_Column.Name = "smoothingToolStripMenuItem";
|
---|
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);
|
---|
162 | //
|
---|
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,
|
---|
169 | this.mostCommonToolStripMenuItem_Selection});
|
---|
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 | //
|
---|
202 | // btnSearch
|
---|
203 | //
|
---|
204 | this.btnSearch.Location = new System.Drawing.Point(201, 19);
|
---|
205 | this.btnSearch.Name = "btnSearch";
|
---|
206 | this.btnSearch.Size = new System.Drawing.Size(53, 23);
|
---|
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;
|
---|
211 | this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
---|
212 | //
|
---|
213 | // btnReplace
|
---|
214 | //
|
---|
215 | this.btnReplace.Location = new System.Drawing.Point(260, 19);
|
---|
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 | //
|
---|
224 | // DataGridContentView
|
---|
225 | //
|
---|
226 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
227 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
228 | this.Controls.Add(this.btnReplace);
|
---|
229 | this.Controls.Add(this.btnSearch);
|
---|
230 | this.Controls.Add(this.btnApplySort);
|
---|
231 | this.Name = "DataGridContentView";
|
---|
232 | this.Size = new System.Drawing.Size(528, 404);
|
---|
233 | this.Controls.SetChildIndex(this.statisticsTextBox, 0);
|
---|
234 | this.Controls.SetChildIndex(this.rowsLabel, 0);
|
---|
235 | this.Controls.SetChildIndex(this.columnsLabel, 0);
|
---|
236 | this.Controls.SetChildIndex(this.rowsTextBox, 0);
|
---|
237 | this.Controls.SetChildIndex(this.columnsTextBox, 0);
|
---|
238 | this.Controls.SetChildIndex(this.btnApplySort, 0);
|
---|
239 | this.Controls.SetChildIndex(this.btnSearch, 0);
|
---|
240 | this.Controls.SetChildIndex(this.btnReplace, 0);
|
---|
241 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
242 | this.contextMenuCell.ResumeLayout(false);
|
---|
243 | this.ResumeLayout(false);
|
---|
244 | this.PerformLayout();
|
---|
245 |
|
---|
246 | }
|
---|
247 |
|
---|
248 | #endregion
|
---|
249 |
|
---|
250 | private System.Windows.Forms.Button btnApplySort;
|
---|
251 | private System.Windows.Forms.ContextMenuStrip contextMenuCell;
|
---|
252 | private System.Windows.Forms.ToolStripMenuItem replaceValueOverColumnToolStripMenuItem;
|
---|
253 | private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Column;
|
---|
254 | private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Column;
|
---|
255 | private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Column;
|
---|
256 | private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Column;
|
---|
257 | private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem_Column;
|
---|
258 | private System.Windows.Forms.ToolStripMenuItem replaceValueOverSelectionToolStripMenuItem;
|
---|
259 | private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem_Selection;
|
---|
260 | private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem_Selection;
|
---|
261 | private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem_Selection;
|
---|
262 | private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem_Selection;
|
---|
263 | private System.Windows.Forms.Button btnSearch;
|
---|
264 | private System.Windows.Forms.Button btnReplace;
|
---|
265 | private System.Windows.Forms.ToolTip toolTip;
|
---|
266 | private System.Windows.Forms.ToolStripMenuItem smoothingToolStripMenuItem_Column;
|
---|
267 | }
|
---|
268 | } |
---|