Changeset 10627
- Timestamp:
- 03/19/14 14:24:34 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataGridContentView.cs
r10626 r10627 155 155 if (e.Button == System.Windows.Forms.MouseButtons.Right) { 156 156 if (e.ColumnIndex == -1 || e.RowIndex == -1) { 157 contextMenu.Show(MousePosition); 157 replaceValueToolStripMenuItem.Visible = false; 158 contextMenuCell.Show(MousePosition); 158 159 } else { 159 160 if (!dataGridView.SelectedCells.Contains(dataGridView[e.ColumnIndex, e.RowIndex])) { … … 168 169 averageToolStripMenuItem.Enabled = medianToolStripMenuItem.Enabled = randomToolStripMenuItem.Enabled = !Content.DataGridLogic.AreAllStringColumns(columnIndices); 169 170 interpolationToolStripMenuItem.Enabled = interpolationToolStripMenuItem.Enabled && !Content.DataGridLogic.AreAllStringColumns(columnIndices); 171 replaceValueToolStripMenuItem.Visible = true; 170 172 contextMenuCell.Show(MousePosition); 171 173 }
Note: See TracChangeset
for help on using the changeset viewer.