Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.0/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.Designer.cs @ 4384

Last change on this file since 4384 was 278, checked in by gkronber, 16 years ago

merged changesets r166 r168 r195:196 r209 from the trunk into the stable branch

File size: 8.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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.StructureIdentification {
23  partial class StructIdProblemInjectorView {
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.importInstanceButton = new System.Windows.Forms.Button();
48      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
49      this.tabControl = new System.Windows.Forms.TabControl();
50      this.dataTabPage = new System.Windows.Forms.TabPage();
51      this.variableInfosTabPage = new System.Windows.Forms.TabPage();
52      this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView();
53      this.descriptionTabPage = new System.Windows.Forms.TabPage();
54      this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView();
55      this.datasetView = new HeuristicLab.DataAnalysis.DatasetView();
56      this.tabControl.SuspendLayout();
57      this.dataTabPage.SuspendLayout();
58      this.variableInfosTabPage.SuspendLayout();
59      this.descriptionTabPage.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // importInstanceButton
63      //
64      this.importInstanceButton.Location = new System.Drawing.Point(6, 6);
65      this.importInstanceButton.Name = "importInstanceButton";
66      this.importInstanceButton.Size = new System.Drawing.Size(129, 21);
67      this.importInstanceButton.TabIndex = 6;
68      this.importInstanceButton.Text = "&Import...";
69      this.importInstanceButton.UseVisualStyleBackColor = true;
70      this.importInstanceButton.Click += new System.EventHandler(this.importInstanceButton_Click);
71      //
72      // openFileDialog
73      //
74      this.openFileDialog.DefaultExt = "txt";
75      this.openFileDialog.FileName = "txt";
76      this.openFileDialog.Filter = "Text files|*.txt|All files|*.*";
77      this.openFileDialog.Title = "Import StructId File";
78      //
79      // tabControl
80      //
81      this.tabControl.Controls.Add(this.dataTabPage);
82      this.tabControl.Controls.Add(this.variableInfosTabPage);
83      this.tabControl.Controls.Add(this.descriptionTabPage);
84      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.tabControl.Location = new System.Drawing.Point(0, 0);
86      this.tabControl.Name = "tabControl";
87      this.tabControl.SelectedIndex = 0;
88      this.tabControl.Size = new System.Drawing.Size(507, 451);
89      this.tabControl.TabIndex = 0;
90      //
91      // dataTabPage
92      //
93      this.dataTabPage.Controls.Add(this.datasetView);
94      this.dataTabPage.Controls.Add(this.importInstanceButton);
95      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
96      this.dataTabPage.Name = "dataTabPage";
97      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
98      this.dataTabPage.Size = new System.Drawing.Size(499, 425);
99      this.dataTabPage.TabIndex = 0;
100      this.dataTabPage.Text = "Data";
101      this.dataTabPage.UseVisualStyleBackColor = true;
102      //
103      // variableInfosTabPage
104      //
105      this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
106      this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
107      this.variableInfosTabPage.Name = "variableInfosTabPage";
108      this.variableInfosTabPage.Padding = new System.Windows.Forms.Padding(3);
109      this.variableInfosTabPage.Size = new System.Drawing.Size(499, 425);
110      this.variableInfosTabPage.TabIndex = 1;
111      this.variableInfosTabPage.Text = "Variable Infos";
112      this.variableInfosTabPage.UseVisualStyleBackColor = true;
113      //
114      // operatorBaseVariableInfosView
115      //
116      this.operatorBaseVariableInfosView.Caption = "Operator";
117      this.operatorBaseVariableInfosView.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
119      this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
120      this.operatorBaseVariableInfosView.Operator = null;
121      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(493, 419);
122      this.operatorBaseVariableInfosView.TabIndex = 0;
123      //
124      // descriptionTabPage
125      //
126      this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
127      this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
128      this.descriptionTabPage.Name = "descriptionTabPage";
129      this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
130      this.descriptionTabPage.Size = new System.Drawing.Size(499, 425);
131      this.descriptionTabPage.TabIndex = 2;
132      this.descriptionTabPage.Text = "Description";
133      this.descriptionTabPage.UseVisualStyleBackColor = true;
134      //
135      // operatorBaseDescriptionView
136      //
137      this.operatorBaseDescriptionView.Caption = "Operator";
138      this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
139      this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
140      this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
141      this.operatorBaseDescriptionView.Operator = null;
142      this.operatorBaseDescriptionView.Size = new System.Drawing.Size(493, 419);
143      this.operatorBaseDescriptionView.TabIndex = 0;
144      //
145      // datasetView
146      //
147      this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
148                  | System.Windows.Forms.AnchorStyles.Left)
149                  | System.Windows.Forms.AnchorStyles.Right)));
150      this.datasetView.Caption = "View";
151      this.datasetView.Location = new System.Drawing.Point(6, 33);
152      this.datasetView.Name = "datasetView";
153      this.datasetView.Size = new System.Drawing.Size(487, 386);
154      this.datasetView.TabIndex = 7;
155      //
156      // StructIdProblemInjectorView
157      //
158      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
159      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
160      this.Controls.Add(this.tabControl);
161      this.Name = "StructIdProblemInjectorView";
162      this.Size = new System.Drawing.Size(507, 451);
163      this.tabControl.ResumeLayout(false);
164      this.dataTabPage.ResumeLayout(false);
165      this.variableInfosTabPage.ResumeLayout(false);
166      this.descriptionTabPage.ResumeLayout(false);
167      this.ResumeLayout(false);
168
169    }
170
171    #endregion
172
173    private System.Windows.Forms.Button importInstanceButton;
174    private System.Windows.Forms.OpenFileDialog openFileDialog;
175    private System.Windows.Forms.TabControl tabControl;
176    private System.Windows.Forms.TabPage dataTabPage;
177    private System.Windows.Forms.TabPage variableInfosTabPage;
178    private HeuristicLab.Core.OperatorBaseVariableInfosView operatorBaseVariableInfosView;
179    private System.Windows.Forms.TabPage descriptionTabPage;
180    private HeuristicLab.Core.OperatorBaseDescriptionView operatorBaseDescriptionView;
181    private HeuristicLab.DataAnalysis.DatasetView datasetView;
182  }
183}
Note: See TracBrowser for help on using the repository browser.