Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 12:38:07 (10 years ago)
Author:
pfleck
Message:
  • Current Transformations from GUI stored in TransformationContent.
  • Corrected namespace from Transformation interfaces.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/TransformationView.cs

    r10712 r10772  
    2222using HeuristicLab.MainForm;
    2323using HeuristicLab.MainForm.WindowsForms;
     24using HeuristicLab.Problems.DataAnalysis.Transformations;
    2425
    2526namespace HeuristicLab.DataPreprocessing.Views {
     
    3637      set { base.Content = value; }
    3738    }
     39
     40    protected override void OnContentChanged() {
     41      base.OnContentChanged();
     42      if (Content == null) {
     43        transformationCollectionView.Content = null;
     44      } else {
     45        transformationCollectionView.Content = Content.CheckedTransformationCollection;
     46      }
     47    }
    3848  }
    3949}
Note: See TracChangeset for help on using the changeset viewer.