Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/04/18 17:18:02 (6 years ago)
Author:
pfleck
Message:

#2906 Refactoring

  • Moved transformation-specific parts out of existing interfaces.
  • Moved all Transformation logic to DataAnalysisTransformation.
  • Simplified (Inverse)Transformation of Dataset/ProblemData/Model/Solution.
File:
1 edited

Legend:

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

    r15870 r15884  
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.originalModelTabPage = new System.Windows.Forms.TabPage();
     47      this.trainedModelTabPage = new System.Windows.Forms.TabPage();
    4848      this.modelViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    4949      this.tabControl = new System.Windows.Forms.TabControl();
     
    5252      this.targetTransformationsTabPage = new System.Windows.Forms.TabPage();
    5353      this.targetTransformationsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    54       this.originalModelTabPage.SuspendLayout();
     54      this.trainedModelTabPage.SuspendLayout();
    5555      this.tabControl.SuspendLayout();
    5656      this.inputTransformationsTabPage.SuspendLayout();
     
    5858      this.SuspendLayout();
    5959      //
    60       // originalModelTabPage
     60      // trainedModelTabPage
    6161      //
    62       this.originalModelTabPage.Controls.Add(this.modelViewHost);
    63       this.originalModelTabPage.Location = new System.Drawing.Point(4, 22);
    64       this.originalModelTabPage.Name = "originalModelTabPage";
    65       this.originalModelTabPage.Padding = new System.Windows.Forms.Padding(3);
    66       this.originalModelTabPage.Size = new System.Drawing.Size(486, 392);
    67       this.originalModelTabPage.TabIndex = 0;
    68       this.originalModelTabPage.Text = "Original Model";
    69       this.originalModelTabPage.UseVisualStyleBackColor = true;
     62      this.trainedModelTabPage.Controls.Add(this.modelViewHost);
     63      this.trainedModelTabPage.Location = new System.Drawing.Point(4, 22);
     64      this.trainedModelTabPage.Name = "trainedModelTabPage";
     65      this.trainedModelTabPage.Padding = new System.Windows.Forms.Padding(3);
     66      this.trainedModelTabPage.Size = new System.Drawing.Size(486, 392);
     67      this.trainedModelTabPage.TabIndex = 0;
     68      this.trainedModelTabPage.Text = "Trained Model";
     69      this.trainedModelTabPage.UseVisualStyleBackColor = true;
    7070      //
    7171      // modelViewHost
     
    8888            | System.Windows.Forms.AnchorStyles.Left)
    8989            | System.Windows.Forms.AnchorStyles.Right)));
    90       this.tabControl.Controls.Add(this.originalModelTabPage);
     90      this.tabControl.Controls.Add(this.trainedModelTabPage);
    9191      this.tabControl.Controls.Add(this.inputTransformationsTabPage);
    9292      this.tabControl.Controls.Add(this.targetTransformationsTabPage);
     
    154154      this.Name = "DataAnalysisTransformationModelView";
    155155      this.Size = new System.Drawing.Size(500, 424);
    156       this.originalModelTabPage.ResumeLayout(false);
     156      this.trainedModelTabPage.ResumeLayout(false);
    157157      this.tabControl.ResumeLayout(false);
    158158      this.inputTransformationsTabPage.ResumeLayout(false);
     
    164164    #endregion
    165165
    166     private System.Windows.Forms.TabPage originalModelTabPage;
     166    private System.Windows.Forms.TabPage trainedModelTabPage;
    167167    private MainForm.WindowsForms.ViewHost modelViewHost;
    168168    private System.Windows.Forms.TabControl tabControl;
Note: See TracChangeset for help on using the changeset viewer.