Free cookie consent management tool by TermsFeed Policy Generator

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

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

Location:
branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views
Files:
3 edited

Legend:

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

    r15856 r15864  
    1919 */
    2020#endregion
     21
    2122
    2223
     
    4647    /// </summary>
    4748    private void InitializeComponent() {
     49      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegressionSolutionView));
    4850      this.TransformButton = new System.Windows.Forms.Button();
    4951      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
     
    7274      // TransformButton
    7375      //
     76      this.TransformButton.AutoSize = true;
     77      this.TransformButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
    7478      this.TransformButton.Location = new System.Drawing.Point(117, 3);
    7579      this.TransformButton.Name = "TransformButton";
    76       this.TransformButton.Size = new System.Drawing.Size(75, 23);
     80      this.TransformButton.Size = new System.Drawing.Size(108, 23);
    7781      this.TransformButton.TabIndex = 1;
    78       this.TransformButton.Text = "Reverse Transformations";
     82      this.TransformButton.Text = "Transform Back";
     83      this.TransformButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     84      this.toolTip.SetToolTip(this.TransformButton, "TODO: Backtransform model based on the stored transformations.");
    7985      this.TransformButton.UseVisualStyleBackColor = true;
    8086      this.TransformButton.Click += new System.EventHandler(this.transformButton_Click);
  • 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    }
  • branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/TransformedRegressionSolutionView.cs

    r15862 r15864  
    2525namespace HeuristicLab.Problems.DataAnalysis.Views {
    2626  [View("Transformation Solution View")]
    27   [Content(typeof(TransformedRegressionSolution), true)]
     27  [Content(typeof(TransformedRegressionSolution), false)]
    2828  public partial class TransformedRegressionSolutionView : RegressionSolutionView {
    2929
Note: See TracChangeset for help on using the changeset viewer.