- Timestamp:
- 12/18/13 15:30:35 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs
r10239 r10246 29 29 if (!dataGridView.ReadOnly) { 30 30 string errorMessage; 31 if (Content != null && !Content. Validate(e.FormattedValue.ToString(), out errorMessage, e.ColumnIndex)) {31 if (Content != null && !Content.DataGridLogic.Validate(e.FormattedValue.ToString(), out errorMessage, e.ColumnIndex)) { 32 32 e.Cancel = true; 33 33 dataGridView.Rows[e.RowIndex].ErrorText = errorMessage; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.cs
r10239 r10246 45 45 46 46 private void InitializeContents() { 47 dataGridContent = new DataGridContent( this.Content);47 dataGridContent = new DataGridContent(new DataGridLogic(this.Content)); 48 48 49 49 listViewItemItemMapping = new Dictionary<ListViewItem,IItem>();
Note: See TracChangeset
for help on using the changeset viewer.