Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisProblemView.Designer.cs @ 3374

Last change on this file since 3374 was 3373, checked in by gkronber, 14 years ago

Refactored HeuristicLab.Problems.DataAnalysis namespace. #938 (Data types and operators for regression problems)

File size: 6.4 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
21
22namespace HeuristicLab.Problems.DataAnalysis {
23  partial class DataAnalysisProblemView {
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) {
35        if (components != null) 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.importButton = new System.Windows.Forms.Button();
48      this.tabControl = new System.Windows.Forms.TabControl();
49      this.parametersTabPage = new System.Windows.Forms.TabPage();
50      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
51      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
52      this.tabControl.SuspendLayout();
53      this.parametersTabPage.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // nameTextBox
57      //
58      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
59      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
60      this.nameTextBox.Size = new System.Drawing.Size(457, 20);
61      //
62      // descriptionTextBox
63      //
64      this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
65      //
66      // importButton
67      //
68      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
70      this.importButton.Location = new System.Drawing.Point(0, 399);
71      this.importButton.Name = "importButton";
72      this.importButton.Size = new System.Drawing.Size(529, 23);
73      this.importButton.TabIndex = 5;
74      this.importButton.Text = "&Import from CSV file";
75      this.importButton.UseVisualStyleBackColor = true;
76      this.importButton.Click += new System.EventHandler(this.importButton_Click);
77      //
78      // tabControl
79      //
80      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.tabControl.Controls.Add(this.parametersTabPage);
84      this.tabControl.Location = new System.Drawing.Point(0, 52);
85      this.tabControl.Name = "tabControl";
86      this.tabControl.SelectedIndex = 0;
87      this.tabControl.Size = new System.Drawing.Size(529, 341);
88      this.tabControl.TabIndex = 4;
89      //
90      // parametersTabPage
91      //
92      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
93      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
94      this.parametersTabPage.Name = "parametersTabPage";
95      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
96      this.parametersTabPage.Size = new System.Drawing.Size(521, 315);
97      this.parametersTabPage.TabIndex = 0;
98      this.parametersTabPage.Text = "Parameters";
99      this.parametersTabPage.UseVisualStyleBackColor = true;
100      //
101      // parameterCollectionView
102      //
103      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
104                  | System.Windows.Forms.AnchorStyles.Left)
105                  | System.Windows.Forms.AnchorStyles.Right)));
106      this.parameterCollectionView.Caption = "ParameterCollection";
107      this.parameterCollectionView.Content = null;
108      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
109      this.parameterCollectionView.Name = "parameterCollectionView";
110      this.parameterCollectionView.Size = new System.Drawing.Size(509, 303);
111      this.parameterCollectionView.TabIndex = 0;
112      //
113      // RegressionProblemView
114      //
115      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
116      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
117      this.Controls.Add(this.tabControl);
118      this.Controls.Add(this.importButton);
119      this.Name = "RegressionProblemView";
120      this.Size = new System.Drawing.Size(529, 422);
121      this.Controls.SetChildIndex(this.importButton, 0);
122      this.Controls.SetChildIndex(this.tabControl, 0);
123      this.Controls.SetChildIndex(this.nameLabel, 0);
124      this.Controls.SetChildIndex(this.descriptionLabel, 0);
125      this.Controls.SetChildIndex(this.nameTextBox, 0);
126      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
127      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
128      this.tabControl.ResumeLayout(false);
129      this.parametersTabPage.ResumeLayout(false);
130      this.ResumeLayout(false);
131      this.PerformLayout();
132
133    }
134
135    #endregion
136
137    private System.Windows.Forms.Button importButton;
138    private System.Windows.Forms.TabControl tabControl;
139    private System.Windows.Forms.TabPage parametersTabPage;
140    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
141
142  }
143}
Note: See TracBrowser for help on using the repository browser.