Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10539 was 10539, checked in by rstoll, 10 years ago

Added License notice

File size: 8.2 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 {
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      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
57      this.contextMenuCell.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // rowsTextBox
61      //
62      this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
63      this.rowsTextBox.Enabled = false;
64      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
65      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
66      this.rowsTextBox.ReadOnly = true;
67      this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
68      //
69      // columnsTextBox
70      //
71      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
72      this.columnsTextBox.Enabled = false;
73      this.columnsTextBox.ReadOnly = true;
74      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
75      //
76      // statisticsTextBox
77      //
78      this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
79      //
80      // btnApplySort
81      //
82      this.btnApplySort.Location = new System.Drawing.Point(241, 19);
83      this.btnApplySort.Name = "btnApplySort";
84      this.btnApplySort.Size = new System.Drawing.Size(75, 23);
85      this.btnApplySort.TabIndex = 7;
86      this.btnApplySort.Text = "Apply Sort";
87      this.btnApplySort.UseVisualStyleBackColor = true;
88      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
89      //
90      // contextMenuCell
91      //
92      this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
93            this.replaceValueToolStripMenuItem});
94      this.contextMenuCell.Name = "contextMenuCell";
95      this.contextMenuCell.Size = new System.Drawing.Size(153, 48);
96      //
97      // replaceValueToolStripMenuItem
98      //
99      this.replaceValueToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
100            this.averageToolStripMenuItem,
101            this.medianToolStripMenuItem,
102            this.randomToolStripMenuItem,
103            this.mostCommonToolStripMenuItem,
104            this.interpolationToolStripMenuItem});
105      this.replaceValueToolStripMenuItem.Name = "replaceValueToolStripMenuItem";
106      this.replaceValueToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
107      this.replaceValueToolStripMenuItem.Text = "Replace Value";
108      //
109      // averageToolStripMenuItem
110      //
111      this.averageToolStripMenuItem.Name = "averageToolStripMenuItem";
112      this.averageToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
113      this.averageToolStripMenuItem.Text = "Average";
114      this.averageToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithAverage_Click);
115      //
116      // medianToolStripMenuItem
117      //
118      this.medianToolStripMenuItem.Name = "medianToolStripMenuItem";
119      this.medianToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
120      this.medianToolStripMenuItem.Text = "Median";
121      this.medianToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMedian_Click);
122      //
123      // randomToolStripMenuItem
124      //
125      this.randomToolStripMenuItem.Name = "randomToolStripMenuItem";
126      this.randomToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
127      this.randomToolStripMenuItem.Text = "Random";
128      this.randomToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithRandom_Click);
129      //
130      // mostCommonToolStripMenuItem
131      //
132      this.mostCommonToolStripMenuItem.Name = "mostCommonToolStripMenuItem";
133      this.mostCommonToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
134      this.mostCommonToolStripMenuItem.Text = "Most Common";
135      this.mostCommonToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMostCommon_Click);
136      //
137      // interpolationToolStripMenuItem
138      //
139      this.interpolationToolStripMenuItem.Name = "interpolationToolStripMenuItem";
140      this.interpolationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
141      this.interpolationToolStripMenuItem.Text = "Interpolation";
142      this.interpolationToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithInterpolation_Click);
143      //
144      // DataGridContentView
145      //
146      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
147      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
148      this.Controls.Add(this.btnApplySort);
149      this.Name = "DataGridContentView";
150      this.Size = new System.Drawing.Size(528, 404);
151      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
152      this.Controls.SetChildIndex(this.rowsLabel, 0);
153      this.Controls.SetChildIndex(this.columnsLabel, 0);
154      this.Controls.SetChildIndex(this.rowsTextBox, 0);
155      this.Controls.SetChildIndex(this.columnsTextBox, 0);
156      this.Controls.SetChildIndex(this.btnApplySort, 0);
157      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
158      this.contextMenuCell.ResumeLayout(false);
159      this.ResumeLayout(false);
160      this.PerformLayout();
161
162    }
163
164    #endregion
165
166    private System.Windows.Forms.Button btnApplySort;
167    private System.Windows.Forms.ContextMenuStrip contextMenuCell;
168    private System.Windows.Forms.ToolStripMenuItem replaceValueToolStripMenuItem;
169    private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem;
170    private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem;
171    private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem;
172    private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem;
173    private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem;
174  }
175}
Note: See TracBrowser for help on using the repository browser.