Changeset 9573
- Timestamp:
- 06/03/13 16:22:19 (11 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 9505-9506
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r9456 r9573 340 340 341 341 for (int i = minRowIndex; i <= maxRowIndex; i++) { 342 if (!dataGridView.Rows[i].Visible) continue; 343 342 344 int rowIndex = this.virtualRowIndices[i]; 343 345 if (addRowNames) { … … 515 517 protected virtual void ShowHideColumns_Click(object sender, EventArgs e) { 516 518 new StringConvertibleMatrixColumnVisibilityDialog(this.dataGridView.Columns.Cast<DataGridViewColumn>()).ShowDialog(); 519 columnsTextBox.Text = dataGridView.Columns.GetColumnCount(DataGridViewElementStates.Visible).ToString(); 517 520 } 518 521 -
stable/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionTabularView.cs
r9456 r9573 101 101 } 102 102 private void run_Changed(object sender, EventArgs e) { 103 if (suppressUpdates) return; 103 104 if (InvokeRequired) 104 105 this.Invoke(new EventHandler(run_Changed), sender, e); … … 199 200 runIndex++; 200 201 } 202 rowsTextBox.Text = dataGridView.Rows.GetRowCount(DataGridViewElementStates.Visible).ToString(); 201 203 UpdateRowHeaders(); 202 204 }
Note: See TracChangeset
for help on using the changeset viewer.