Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/26/18 17:09:19 (6 years ago)
Author:
pfleck
Message:

#2906 Removed obsolete transformation related code for SymReg. Small UI changes for transformed solutions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/RegressionSolutionView.cs

    r15856 r15864  
    2222using System.Linq;
    2323using System.Windows.Forms;
     24using HeuristicLab.Common.Resources;
    2425using HeuristicLab.Core;
    2526using HeuristicLab.MainForm;
     
    3132    public RegressionSolutionView() {
    3233      InitializeComponent();
     34      TransformButton.Image = VSImageLibrary.Event;
    3335      flowLayoutPanel.Controls.Add(TransformButton);
    3436    }
     
    4143    protected override void SetEnabledStateOfControls() {
    4244      base.SetEnabledStateOfControls();
     45      TransformButton.Enabled = Content != null;
    4346      TransformButton.Visible = Content != null && Content.ProblemData.Transformations.Any();
    4447    }
Note: See TracChangeset for help on using the changeset viewer.