Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisSolutionView.Designer.cs @ 4754

Last change on this file since 4754 was 4754, checked in by gkronber, 13 years ago

Fixed layout problem in symbolic regression solution view. #1259

File size: 6.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
21namespace HeuristicLab.Problems.DataAnalysis.Views {
22  partial class DataAnalysisSolutionView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.dataTabPage = new System.Windows.Forms.TabPage();
47      this.dataViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
48      this.modelTabPage = new System.Windows.Forms.TabPage();
49      this.modelViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      this.tabControl = new System.Windows.Forms.TabControl();
51      this.dataTabPage.SuspendLayout();
52      this.modelTabPage.SuspendLayout();
53      this.tabControl.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // dataTabPage
57      //
58      this.dataTabPage.Controls.Add(this.dataViewHost);
59      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
60      this.dataTabPage.Name = "dataTabPage";
61      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
62      this.dataTabPage.Size = new System.Drawing.Size(372, 236);
63      this.dataTabPage.TabIndex = 1;
64      this.dataTabPage.Text = "Data";
65      this.dataTabPage.UseVisualStyleBackColor = true;
66      //
67      // dataViewHost
68      //
69      this.dataViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70                  | System.Windows.Forms.AnchorStyles.Left)
71                  | System.Windows.Forms.AnchorStyles.Right)));
72      this.dataViewHost.Caption = "DataAnalysisSolution Data View";
73      this.dataViewHost.Content = null;
74      this.dataViewHost.Enabled = false;
75      this.dataViewHost.Location = new System.Drawing.Point(6, 6);
76      this.dataViewHost.Name = "dataViewHost";
77      this.dataViewHost.ReadOnly = false;
78      this.dataViewHost.Size = new System.Drawing.Size(360, 224);
79      this.dataViewHost.TabIndex = 2;
80      this.dataViewHost.ViewType = null;
81      //
82      // modelTabPage
83      //
84      this.modelTabPage.Controls.Add(this.modelViewHost);
85      this.modelTabPage.Location = new System.Drawing.Point(4, 22);
86      this.modelTabPage.Name = "modelTabPage";
87      this.modelTabPage.Padding = new System.Windows.Forms.Padding(3);
88      this.modelTabPage.Size = new System.Drawing.Size(372, 236);
89      this.modelTabPage.TabIndex = 0;
90      this.modelTabPage.Text = "Model";
91      this.modelTabPage.UseVisualStyleBackColor = true;
92      //
93      // modelViewHost
94      //
95      this.modelViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96                  | System.Windows.Forms.AnchorStyles.Left)
97                  | System.Windows.Forms.AnchorStyles.Right)));
98      this.modelViewHost.Caption = "DataAnalysisSolution Model View";
99      this.modelViewHost.Content = null;
100      this.modelViewHost.Enabled = false;
101      this.modelViewHost.Location = new System.Drawing.Point(6, 6);
102      this.modelViewHost.Name = "modelViewHost";
103      this.modelViewHost.ReadOnly = false;
104      this.modelViewHost.Size = new System.Drawing.Size(360, 224);
105      this.modelViewHost.TabIndex = 1;
106      this.modelViewHost.ViewType = null;
107      //
108      // tabControl
109      //
110      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
111                  | System.Windows.Forms.AnchorStyles.Left)
112                  | System.Windows.Forms.AnchorStyles.Right)));
113      this.tabControl.Controls.Add(this.modelTabPage);
114      this.tabControl.Controls.Add(this.dataTabPage);
115      this.tabControl.Location = new System.Drawing.Point(3, 3);
116      this.tabControl.Name = "tabControl";
117      this.tabControl.SelectedIndex = 0;
118      this.tabControl.Size = new System.Drawing.Size(380, 262);
119      this.tabControl.TabIndex = 1;
120      //
121      // DataAnalysisSolutionView
122      //
123      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
124      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
125      this.Controls.Add(this.tabControl);
126      this.Name = "DataAnalysisSolutionView";
127      this.Size = new System.Drawing.Size(386, 268);
128      this.dataTabPage.ResumeLayout(false);
129      this.modelTabPage.ResumeLayout(false);
130      this.tabControl.ResumeLayout(false);
131      this.ResumeLayout(false);
132
133    }
134
135    #endregion
136
137    protected System.Windows.Forms.TabControl tabControl;
138    protected System.Windows.Forms.TabPage dataTabPage;
139    protected System.Windows.Forms.TabPage modelTabPage;
140    protected HeuristicLab.MainForm.WindowsForms.ViewHost dataViewHost;
141    protected HeuristicLab.MainForm.WindowsForms.ViewHost modelViewHost;
142  }
143}
Note: See TracBrowser for help on using the repository browser.