Changeset 12395 for branches/HiveStatistics/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
- Timestamp:
- 05/20/15 16:41:14 (10 years ago)
- Location:
- branches/HiveStatistics/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Data.Views/3.3
- Property svn:mergeinfo changed
/stable/HeuristicLab.Data.Views/3.3 merged: 12008-12009 /trunk/sources/HeuristicLab.Data.Views/3.3 merged: 11623,12012,12037,12077,12151
- Property svn:mergeinfo changed
-
branches/HiveStatistics/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs
r11205 r12395 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 123 123 } 124 124 125 pr ivatevoid UpdateData() {125 protected virtual void UpdateData() { 126 126 rowsTextBox.Text = Content.Rows.ToString(); 127 127 rowsTextBox.Enabled = true; … … 281 281 dataGridView.Rows[e.RowIndex].ErrorText = string.Empty; 282 282 } 283 pr ivatevoid dataGridView_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e) {283 protected virtual void dataGridView_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e) { 284 284 if (Content != null && e.RowIndex < Content.Rows && e.ColumnIndex < Content.Columns) { 285 285 int rowIndex = virtualRowIndices[e.RowIndex];
Note: See TracChangeset
for help on using the changeset viewer.