Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.Designer.cs @ 10762

Last change on this file since 10762 was 10762, checked in by rstoll, 10 years ago
  • Renamed FindAndReplace to SearchAndReplace
  • Added "Search" and "Replace" buttons to DataGrid
File size: 9.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.replaceValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.averageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
52      this.medianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
53      this.randomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
54      this.mostCommonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
55      this.interpolationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
56      this.btnSearch = new System.Windows.Forms.Button();
57      this.btnReplace = new System.Windows.Forms.Button();
58      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
60      this.contextMenuCell.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // rowsTextBox
64      //
65      this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
66      this.rowsTextBox.Enabled = false;
67      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
68      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
69      this.rowsTextBox.ReadOnly = true;
70      this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
71      //
72      // columnsTextBox
73      //
74      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
75      this.columnsTextBox.Enabled = false;
76      this.columnsTextBox.ReadOnly = true;
77      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
78      //
79      // statisticsTextBox
80      //
81      this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
82      //
83      // btnApplySort
84      //
85      this.btnApplySort.Location = new System.Drawing.Point(349, 19);
86      this.btnApplySort.Name = "btnApplySort";
87      this.btnApplySort.Size = new System.Drawing.Size(75, 23);
88      this.btnApplySort.TabIndex = 7;
89      this.btnApplySort.Text = "Apply Sort";
90      this.toolTip.SetToolTip(this.btnApplySort, "The current sorting is applied on the data itself.");
91      this.btnApplySort.UseVisualStyleBackColor = true;
92      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
93      //
94      // contextMenuCell
95      //
96      this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
97            this.replaceValueToolStripMenuItem});
98      this.contextMenuCell.Name = "contextMenuCell";
99      this.contextMenuCell.Size = new System.Drawing.Size(148, 26);
100      //
101      // replaceValueToolStripMenuItem
102      //
103      this.replaceValueToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
104            this.averageToolStripMenuItem,
105            this.medianToolStripMenuItem,
106            this.randomToolStripMenuItem,
107            this.mostCommonToolStripMenuItem,
108            this.interpolationToolStripMenuItem});
109      this.replaceValueToolStripMenuItem.Name = "replaceValueToolStripMenuItem";
110      this.replaceValueToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
111      this.replaceValueToolStripMenuItem.Text = "Replace Value";
112      //
113      // averageToolStripMenuItem
114      //
115      this.averageToolStripMenuItem.Name = "averageToolStripMenuItem";
116      this.averageToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
117      this.averageToolStripMenuItem.Text = "Average";
118      this.averageToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithAverage_Click);
119      //
120      // medianToolStripMenuItem
121      //
122      this.medianToolStripMenuItem.Name = "medianToolStripMenuItem";
123      this.medianToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
124      this.medianToolStripMenuItem.Text = "Median";
125      this.medianToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMedian_Click);
126      //
127      // randomToolStripMenuItem
128      //
129      this.randomToolStripMenuItem.Name = "randomToolStripMenuItem";
130      this.randomToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
131      this.randomToolStripMenuItem.Text = "Random";
132      this.randomToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithRandom_Click);
133      //
134      // mostCommonToolStripMenuItem
135      //
136      this.mostCommonToolStripMenuItem.Name = "mostCommonToolStripMenuItem";
137      this.mostCommonToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
138      this.mostCommonToolStripMenuItem.Text = "Most Common";
139      this.mostCommonToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMostCommon_Click);
140      //
141      // interpolationToolStripMenuItem
142      //
143      this.interpolationToolStripMenuItem.Name = "interpolationToolStripMenuItem";
144      this.interpolationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
145      this.interpolationToolStripMenuItem.Text = "Interpolation";
146      this.interpolationToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithInterpolation_Click);
147      //
148      // btnSearch
149      //
150      this.btnSearch.Location = new System.Drawing.Point(201, 19);
151      this.btnSearch.Name = "btnSearch";
152      this.btnSearch.Size = new System.Drawing.Size(53, 23);
153      this.btnSearch.TabIndex = 8;
154      this.btnSearch.Text = "Search";
155      this.toolTip.SetToolTip(this.btnSearch, "Opens the Search dialog");
156      this.btnSearch.UseVisualStyleBackColor = true;
157      this.btnSearch.Click += new System.EventHandler(this.button1_Click);
158      //
159      // btnReplace
160      //
161      this.btnReplace.Location = new System.Drawing.Point(260, 19);
162      this.btnReplace.Name = "btnReplace";
163      this.btnReplace.Size = new System.Drawing.Size(55, 23);
164      this.btnReplace.TabIndex = 9;
165      this.btnReplace.Text = "Replace";
166      this.toolTip.SetToolTip(this.btnReplace, "Opens the Search & Replace dialog");
167      this.btnReplace.UseVisualStyleBackColor = true;
168      this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
169      //
170      // DataGridContentView
171      //
172      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
173      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
174      this.Controls.Add(this.btnReplace);
175      this.Controls.Add(this.btnSearch);
176      this.Controls.Add(this.btnApplySort);
177      this.Name = "DataGridContentView";
178      this.Size = new System.Drawing.Size(528, 404);
179      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
180      this.Controls.SetChildIndex(this.rowsLabel, 0);
181      this.Controls.SetChildIndex(this.columnsLabel, 0);
182      this.Controls.SetChildIndex(this.rowsTextBox, 0);
183      this.Controls.SetChildIndex(this.columnsTextBox, 0);
184      this.Controls.SetChildIndex(this.btnApplySort, 0);
185      this.Controls.SetChildIndex(this.btnSearch, 0);
186      this.Controls.SetChildIndex(this.btnReplace, 0);
187      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
188      this.contextMenuCell.ResumeLayout(false);
189      this.ResumeLayout(false);
190      this.PerformLayout();
191
192    }
193
194    #endregion
195
196    private System.Windows.Forms.Button btnApplySort;
197    private System.Windows.Forms.ContextMenuStrip contextMenuCell;
198    private System.Windows.Forms.ToolStripMenuItem replaceValueToolStripMenuItem;
199    private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem;
200    private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem;
201    private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem;
202    private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem;
203    private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem;
204    private System.Windows.Forms.Button btnSearch;
205    private System.Windows.Forms.Button btnReplace;
206    private System.Windows.Forms.ToolTip toolTip;
207  }
208}
Note: See TracBrowser for help on using the repository browser.