Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 14:22:08 (10 years ago)
Author:
pfleck
Message:
  • Considered Transformations in Undo.
  • Renamed PDSnapshot in Snapshot.
File:
1 edited

Legend:

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

    r10786 r10814  
    2121
    2222using System;
     23using System.Windows.Forms;
     24using HeuristicLab.Data;
    2325using HeuristicLab.MainForm;
    2426using HeuristicLab.MainForm.WindowsForms;
     
    5456      bool success = transformator.ApplyTransformations(transformations);
    5557      if (success) {
     58        //foreach (var transformation in transformations)
     59        //  Content.CheckedTransformationCollection.SetItemCheckedState(transformation, false);
    5660        Content.CheckedTransformationCollection.Clear();
     61        MessageBox.Show(this, "Transformations applied.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
    5762      }
    5863    }
Note: See TracChangeset for help on using the changeset viewer.