Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2906_Transformations/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/TransformedRegressionModelView.Designer.cs @ 15848

Last change on this file since 15848 was 15848, checked in by pfleck, 6 years ago

#2906 Added TransformedModelView, implemented "remove virtual columns"

File size: 5.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Views {
23  partial class TransformedRegressionModelView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.tabControl = new System.Windows.Forms.TabControl();
48      this.tabPageModel = new System.Windows.Forms.TabPage();
49      this.tabPageTransformations = new System.Windows.Forms.TabPage();
50      this.modelViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
51      this.transformationsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
52      this.tabControl.SuspendLayout();
53      this.tabPageModel.SuspendLayout();
54      this.tabPageTransformations.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // tabControl
58      //
59      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60            | System.Windows.Forms.AnchorStyles.Left)
61            | System.Windows.Forms.AnchorStyles.Right)));
62      this.tabControl.Controls.Add(this.tabPageModel);
63      this.tabControl.Controls.Add(this.tabPageTransformations);
64      this.tabControl.Location = new System.Drawing.Point(3, 3);
65      this.tabControl.Name = "tabControl";
66      this.tabControl.SelectedIndex = 0;
67      this.tabControl.Size = new System.Drawing.Size(494, 418);
68      this.tabControl.TabIndex = 0;
69      //
70      // tabPageModel
71      //
72      this.tabPageModel.Controls.Add(this.modelViewHost);
73      this.tabPageModel.Location = new System.Drawing.Point(4, 22);
74      this.tabPageModel.Name = "tabPageModel";
75      this.tabPageModel.Padding = new System.Windows.Forms.Padding(3);
76      this.tabPageModel.Size = new System.Drawing.Size(486, 392);
77      this.tabPageModel.TabIndex = 0;
78      this.tabPageModel.Text = "Original Model";
79      this.tabPageModel.UseVisualStyleBackColor = true;
80      //
81      // tabPageTransformations
82      //
83      this.tabPageTransformations.Controls.Add(this.transformationsViewHost);
84      this.tabPageTransformations.Location = new System.Drawing.Point(4, 22);
85      this.tabPageTransformations.Name = "tabPageTransformations";
86      this.tabPageTransformations.Padding = new System.Windows.Forms.Padding(3);
87      this.tabPageTransformations.Size = new System.Drawing.Size(486, 392);
88      this.tabPageTransformations.TabIndex = 1;
89      this.tabPageTransformations.Text = "Transformations";
90      this.tabPageTransformations.UseVisualStyleBackColor = true;
91      //
92      // modelViewHost
93      //
94      this.modelViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
95      this.modelViewHost.Location = new System.Drawing.Point(3, 3);
96      this.modelViewHost.Name = "modelViewHost";
97      this.modelViewHost.Size = new System.Drawing.Size(480, 386);
98      this.modelViewHost.TabIndex = 0;
99      //
100      // transformationsViewHost
101      //
102      this.transformationsViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
103      this.transformationsViewHost.Location = new System.Drawing.Point(3, 3);
104      this.transformationsViewHost.Name = "transformationsViewHost";
105      this.transformationsViewHost.Size = new System.Drawing.Size(480, 386);
106      this.transformationsViewHost.TabIndex = 0;
107      //
108      // TransformedRegressionModelView
109      //
110      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
111      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
112      this.Controls.Add(this.tabControl);
113      this.Name = "TransformedRegressionModelView";
114      this.Size = new System.Drawing.Size(500, 424);
115      this.tabControl.ResumeLayout(false);
116      this.tabPageModel.ResumeLayout(false);
117      this.tabPageTransformations.ResumeLayout(false);
118      this.ResumeLayout(false);
119
120    }
121
122    #endregion
123
124    private System.Windows.Forms.TabControl tabControl;
125    private System.Windows.Forms.TabPage tabPageModel;
126    private System.Windows.Forms.TabPage tabPageTransformations;
127    private HeuristicLab.MainForm.WindowsForms.ViewHost modelViewHost;
128    private HeuristicLab.MainForm.WindowsForms.ViewHost transformationsViewHost;
129  }
130}
Note: See TracBrowser for help on using the repository browser.