Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10380 was 10380, checked in by sbreuer, 10 years ago
  • context menu for replacing values by average, median, ...
File size: 7.4 KB
Line 
1namespace HeuristicLab.DataPreprocessing {
2  partial class DataGridContentView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.btnApplySort = new System.Windows.Forms.Button();
28      this.contextMenuCell = new System.Windows.Forms.ContextMenuStrip(this.components);
29      this.replaceValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
30      this.averageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
31      this.medianToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
32      this.randomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
33      this.mostCommonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
34      this.interpolationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36      this.contextMenuCell.SuspendLayout();
37      this.SuspendLayout();
38      //
39      // rowsTextBox
40      //
41      this.rowsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
42      this.rowsTextBox.Enabled = false;
43      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
44      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
45      this.rowsTextBox.ReadOnly = true;
46      this.rowsTextBox.Size = new System.Drawing.Size(71, 20);
47      //
48      // columnsTextBox
49      //
50      this.columnsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
51      this.columnsTextBox.Enabled = false;
52      this.columnsTextBox.ReadOnly = true;
53      this.columnsTextBox.Size = new System.Drawing.Size(71, 20);
54      //
55      // statisticsTextBox
56      //
57      this.statisticsTextBox.Size = new System.Drawing.Size(522, 13);
58      //
59      // btnApplySort
60      //
61      this.btnApplySort.Location = new System.Drawing.Point(241, 19);
62      this.btnApplySort.Name = "btnApplySort";
63      this.btnApplySort.Size = new System.Drawing.Size(75, 23);
64      this.btnApplySort.TabIndex = 7;
65      this.btnApplySort.Text = "Apply Sort";
66      this.btnApplySort.UseVisualStyleBackColor = true;
67      this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click);
68      //
69      // contextMenuCell
70      //
71      this.contextMenuCell.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
72            this.replaceValueToolStripMenuItem});
73      this.contextMenuCell.Name = "contextMenuCell";
74      this.contextMenuCell.Size = new System.Drawing.Size(153, 48);
75      //
76      // replaceValueToolStripMenuItem
77      //
78      this.replaceValueToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
79            this.averageToolStripMenuItem,
80            this.medianToolStripMenuItem,
81            this.randomToolStripMenuItem,
82            this.mostCommonToolStripMenuItem,
83            this.interpolationToolStripMenuItem});
84      this.replaceValueToolStripMenuItem.Name = "replaceValueToolStripMenuItem";
85      this.replaceValueToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
86      this.replaceValueToolStripMenuItem.Text = "Replace Value";
87      //
88      // averageToolStripMenuItem
89      //
90      this.averageToolStripMenuItem.Name = "averageToolStripMenuItem";
91      this.averageToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
92      this.averageToolStripMenuItem.Text = "Average";
93      this.averageToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithAverage_Click);
94      //
95      // medianToolStripMenuItem
96      //
97      this.medianToolStripMenuItem.Name = "medianToolStripMenuItem";
98      this.medianToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
99      this.medianToolStripMenuItem.Text = "Median";
100      this.medianToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMedian_Click);
101      //
102      // randomToolStripMenuItem
103      //
104      this.randomToolStripMenuItem.Name = "randomToolStripMenuItem";
105      this.randomToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
106      this.randomToolStripMenuItem.Text = "Random";
107      this.randomToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithRandom_Click);
108      //
109      // mostCommonToolStripMenuItem
110      //
111      this.mostCommonToolStripMenuItem.Name = "mostCommonToolStripMenuItem";
112      this.mostCommonToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
113      this.mostCommonToolStripMenuItem.Text = "Most Common";
114      this.mostCommonToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithMostCommon_Click);
115      //
116      // interpolationToolStripMenuItem
117      //
118      this.interpolationToolStripMenuItem.Name = "interpolationToolStripMenuItem";
119      this.interpolationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
120      this.interpolationToolStripMenuItem.Text = "Interpolation";
121      this.interpolationToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithInterpolation_Click);
122      //
123      // DataGridContentView
124      //
125      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
127      this.Controls.Add(this.btnApplySort);
128      this.Name = "DataGridContentView";
129      this.Size = new System.Drawing.Size(528, 404);
130      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
131      this.Controls.SetChildIndex(this.rowsLabel, 0);
132      this.Controls.SetChildIndex(this.columnsLabel, 0);
133      this.Controls.SetChildIndex(this.rowsTextBox, 0);
134      this.Controls.SetChildIndex(this.columnsTextBox, 0);
135      this.Controls.SetChildIndex(this.btnApplySort, 0);
136      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
137      this.contextMenuCell.ResumeLayout(false);
138      this.ResumeLayout(false);
139      this.PerformLayout();
140
141    }
142
143    #endregion
144
145    private System.Windows.Forms.Button btnApplySort;
146    private System.Windows.Forms.ContextMenuStrip contextMenuCell;
147    private System.Windows.Forms.ToolStripMenuItem replaceValueToolStripMenuItem;
148    private System.Windows.Forms.ToolStripMenuItem averageToolStripMenuItem;
149    private System.Windows.Forms.ToolStripMenuItem medianToolStripMenuItem;
150    private System.Windows.Forms.ToolStripMenuItem randomToolStripMenuItem;
151    private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem;
152    private System.Windows.Forms.ToolStripMenuItem interpolationToolStripMenuItem;
153  }
154}
Note: See TracBrowser for help on using the repository browser.