- Timestamp:
- 05/12/08 08:00:33 (17 years ago)
- Location:
- trunk/sources/HeuristicLab.DataAnalysis
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataAnalysis/DatasetView.cs
r232 r233 72 72 dataGridView.Columns[i].SortMode = DataGridViewColumnSortMode.NotSortable; 73 73 dataGridView.Columns[i].Name = GetColumnName(i); 74 dataGridView.Columns[i].ContextMenuStrip = contextMenuStrip;75 74 } 76 75 dataGridView.SelectionMode = DataGridViewSelectionMode.ColumnHeaderSelect; … … 105 104 double result; 106 105 return element != null && double.TryParse(element, out result); 107 }108 109 private void exportButton_Click(object sender, EventArgs e) {110 throw new NotImplementedException();111 106 } 112 107 -
trunk/sources/HeuristicLab.DataAnalysis/DatasetView.designer.cs
r232 r233 53 53 this.nameLabel = new System.Windows.Forms.Label(); 54 54 this.nameTextBox = new System.Windows.Forms.TextBox(); 55 this.exportButton = new System.Windows.Forms.Button();56 55 this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); 57 56 this.scaleValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); … … 85 84 | System.Windows.Forms.AnchorStyles.Right))); 86 85 this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 87 this.dataGridView.Location = new System.Drawing.Point(3, 84); 86 this.dataGridView.ContextMenuStrip = this.contextMenuStrip; 87 this.dataGridView.Location = new System.Drawing.Point(3, 55); 88 88 this.dataGridView.Name = "dataGridView"; 89 this.dataGridView.Size = new System.Drawing.Size(554, 4 56);89 this.dataGridView.Size = new System.Drawing.Size(554, 485); 90 90 this.dataGridView.TabIndex = 3; 91 91 this.dataGridView.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.dataGridView_CellValidating); … … 126 126 this.nameTextBox.TabIndex = 7; 127 127 // 128 // exportButton129 //130 this.exportButton.Location = new System.Drawing.Point(6, 55);131 this.exportButton.Name = "exportButton";132 this.exportButton.Size = new System.Drawing.Size(75, 23);133 this.exportButton.TabIndex = 11;134 this.exportButton.Text = "Export ...";135 this.exportButton.UseVisualStyleBackColor = true;136 this.exportButton.Click += new System.EventHandler(this.exportButton_Click);137 //138 128 // contextMenuStrip 139 129 // … … 163 153 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 164 154 this.Controls.Add(this.nameTextBox); 165 this.Controls.Add(this.exportButton);166 155 this.Controls.Add(this.nameLabel); 167 156 this.Controls.Add(this.columnsLabel); … … 188 177 private System.Windows.Forms.Label nameLabel; 189 178 private System.Windows.Forms.TextBox nameTextBox; 190 private System.Windows.Forms.Button exportButton;191 179 private System.Windows.Forms.ContextMenuStrip contextMenuStrip; 192 180 private System.Windows.Forms.ToolStripMenuItem scaleValuesToolStripMenuItem;
Note: See TracChangeset
for help on using the changeset viewer.