Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/18 15:46:12 (6 years ago)
Author:
pfleck
Message:

#2906 Added PreprocessingTransformation as a custom view-model for transformations in preprocessing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2906_Transformations/HeuristicLab.DataPreprocessing.Views/3.4/TransformationView.cs

    r15856 r15865  
    4343      if (Content == null) {
    4444        transformationListView.Content = null;
     45        transformationListView.PreprocessingData = null;
    4546      } else {
    46         transformationListView.Content = Content.CheckedTransformationList;
     47        transformationListView.Content = Content.TransformationList;
    4748        transformationListView.PreprocessingData = Content.PreprocessingData;
    4849        CheckFilters();
     
    7879
    7980      if (success) {
    80         //Content.CheckedTransformationList.Clear();
     81        //Content.TransformationList.Clear();
    8182        MessageBox.Show(this, "Transformations applied.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
    8283      } else {
Note: See TracChangeset for help on using the changeset viewer.