Changeset 10762 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.Designer.cs
- Timestamp:
- 04/23/14 10:48:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.Designer.cs
r10558 r10762 54 54 this.mostCommonToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 55 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); 56 59 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 57 60 this.contextMenuCell.SuspendLayout(); … … 80 83 // btnApplySort 81 84 // 82 this.btnApplySort.Location = new System.Drawing.Point( 241, 19);85 this.btnApplySort.Location = new System.Drawing.Point(349, 19); 83 86 this.btnApplySort.Name = "btnApplySort"; 84 87 this.btnApplySort.Size = new System.Drawing.Size(75, 23); 85 88 this.btnApplySort.TabIndex = 7; 86 89 this.btnApplySort.Text = "Apply Sort"; 90 this.toolTip.SetToolTip(this.btnApplySort, "The current sorting is applied on the data itself."); 87 91 this.btnApplySort.UseVisualStyleBackColor = true; 88 92 this.btnApplySort.Click += new System.EventHandler(this.btnApplySort_Click); … … 93 97 this.replaceValueToolStripMenuItem}); 94 98 this.contextMenuCell.Name = "contextMenuCell"; 95 this.contextMenuCell.Size = new System.Drawing.Size(1 53, 48);99 this.contextMenuCell.Size = new System.Drawing.Size(148, 26); 96 100 // 97 101 // replaceValueToolStripMenuItem … … 104 108 this.interpolationToolStripMenuItem}); 105 109 this.replaceValueToolStripMenuItem.Name = "replaceValueToolStripMenuItem"; 106 this.replaceValueToolStripMenuItem.Size = new System.Drawing.Size(1 52, 22);110 this.replaceValueToolStripMenuItem.Size = new System.Drawing.Size(147, 22); 107 111 this.replaceValueToolStripMenuItem.Text = "Replace Value"; 108 112 // … … 142 146 this.interpolationToolStripMenuItem.Click += new System.EventHandler(this.ReplaceWithInterpolation_Click); 143 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 // 144 170 // DataGridContentView 145 171 // 146 172 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 147 173 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 174 this.Controls.Add(this.btnReplace); 175 this.Controls.Add(this.btnSearch); 148 176 this.Controls.Add(this.btnApplySort); 149 177 this.Name = "DataGridContentView"; … … 155 183 this.Controls.SetChildIndex(this.columnsTextBox, 0); 156 184 this.Controls.SetChildIndex(this.btnApplySort, 0); 185 this.Controls.SetChildIndex(this.btnSearch, 0); 186 this.Controls.SetChildIndex(this.btnReplace, 0); 157 187 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); 158 188 this.contextMenuCell.ResumeLayout(false); … … 172 202 private System.Windows.Forms.ToolStripMenuItem mostCommonToolStripMenuItem; 173 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; 174 207 } 175 208 }
Note: See TracChangeset
for help on using the changeset viewer.