Free cookie consent management tool by TermsFeed Policy Generator

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

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

merged changesets r154 r160 r162 from trunk into the stable branch

File size: 11.5 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.nameLabel = new System.Windows.Forms.Label();
48      this.nameTextBox = new System.Windows.Forms.TextBox();
49      this.importInstanceButton = new System.Windows.Forms.Button();
50      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
51      this.tabControl = new System.Windows.Forms.TabControl();
52      this.dataTabPage = new System.Windows.Forms.TabPage();
53      this.variablesLabel = new System.Windows.Forms.Label();
54      this.variablesTextBox = new System.Windows.Forms.TextBox();
55      this.samplesLabel = new System.Windows.Forms.Label();
56      this.samplesTextBox = new System.Windows.Forms.TextBox();
57      this.variableInfosTabPage = new System.Windows.Forms.TabPage();
58      this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView();
59      this.descriptionTabPage = new System.Windows.Forms.TabPage();
60      this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView();
61      this.tabControl.SuspendLayout();
62      this.dataTabPage.SuspendLayout();
63      this.variableInfosTabPage.SuspendLayout();
64      this.descriptionTabPage.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // nameLabel
68      //
69      this.nameLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
70      this.nameLabel.AutoSize = true;
71      this.nameLabel.Location = new System.Drawing.Point(6, 9);
72      this.nameLabel.Name = "nameLabel";
73      this.nameLabel.Size = new System.Drawing.Size(38, 13);
74      this.nameLabel.TabIndex = 0;
75      this.nameLabel.Text = "Name:";
76      //
77      // nameTextBox
78      //
79      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
80      this.nameTextBox.Location = new System.Drawing.Point(62, 6);
81      this.nameTextBox.Name = "nameTextBox";
82      this.nameTextBox.ReadOnly = true;
83      this.nameTextBox.Size = new System.Drawing.Size(166, 20);
84      this.nameTextBox.TabIndex = 1;
85      //
86      // importInstanceButton
87      //
88      this.importInstanceButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
89      this.importInstanceButton.Location = new System.Drawing.Point(6, 105);
90      this.importInstanceButton.Name = "importInstanceButton";
91      this.importInstanceButton.Size = new System.Drawing.Size(256, 21);
92      this.importInstanceButton.TabIndex = 6;
93      this.importInstanceButton.Text = "&Import...";
94      this.importInstanceButton.UseVisualStyleBackColor = true;
95      this.importInstanceButton.Click += new System.EventHandler(this.importInstanceButton_Click);
96      //
97      // openFileDialog
98      //
99      this.openFileDialog.DefaultExt = "txt";
100      this.openFileDialog.FileName = "txt";
101      this.openFileDialog.Filter = "Text files|*.txt|All files|*.*";
102      this.openFileDialog.Title = "Import StructId File";
103      //
104      // tabControl
105      //
106      this.tabControl.Controls.Add(this.dataTabPage);
107      this.tabControl.Controls.Add(this.variableInfosTabPage);
108      this.tabControl.Controls.Add(this.descriptionTabPage);
109      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
110      this.tabControl.Location = new System.Drawing.Point(0, 0);
111      this.tabControl.Name = "tabControl";
112      this.tabControl.SelectedIndex = 0;
113      this.tabControl.Size = new System.Drawing.Size(276, 184);
114      this.tabControl.TabIndex = 0;
115      //
116      // dataTabPage
117      //
118      this.dataTabPage.Controls.Add(this.variablesLabel);
119      this.dataTabPage.Controls.Add(this.variablesTextBox);
120      this.dataTabPage.Controls.Add(this.samplesLabel);
121      this.dataTabPage.Controls.Add(this.samplesTextBox);
122      this.dataTabPage.Controls.Add(this.nameLabel);
123      this.dataTabPage.Controls.Add(this.importInstanceButton);
124      this.dataTabPage.Controls.Add(this.nameTextBox);
125      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
126      this.dataTabPage.Name = "dataTabPage";
127      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
128      this.dataTabPage.Size = new System.Drawing.Size(268, 158);
129      this.dataTabPage.TabIndex = 0;
130      this.dataTabPage.Text = "Data";
131      this.dataTabPage.UseVisualStyleBackColor = true;
132      //
133      // variablesLabel
134      //
135      this.variablesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
136      this.variablesLabel.AutoSize = true;
137      this.variablesLabel.Location = new System.Drawing.Point(6, 61);
138      this.variablesLabel.Name = "variablesLabel";
139      this.variablesLabel.Size = new System.Drawing.Size(53, 13);
140      this.variablesLabel.TabIndex = 9;
141      this.variablesLabel.Text = "Variables:";
142      //
143      // variablesTextBox
144      //
145      this.variablesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
146      this.variablesTextBox.Location = new System.Drawing.Point(62, 58);
147      this.variablesTextBox.Name = "variablesTextBox";
148      this.variablesTextBox.ReadOnly = true;
149      this.variablesTextBox.Size = new System.Drawing.Size(81, 20);
150      this.variablesTextBox.TabIndex = 10;
151      //
152      // samplesLabel
153      //
154      this.samplesLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
155      this.samplesLabel.AutoSize = true;
156      this.samplesLabel.Location = new System.Drawing.Point(6, 35);
157      this.samplesLabel.Name = "samplesLabel";
158      this.samplesLabel.Size = new System.Drawing.Size(50, 13);
159      this.samplesLabel.TabIndex = 7;
160      this.samplesLabel.Text = "Samples:";
161      //
162      // samplesTextBox
163      //
164      this.samplesTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
165      this.samplesTextBox.Location = new System.Drawing.Point(62, 32);
166      this.samplesTextBox.Name = "samplesTextBox";
167      this.samplesTextBox.ReadOnly = true;
168      this.samplesTextBox.Size = new System.Drawing.Size(81, 20);
169      this.samplesTextBox.TabIndex = 8;
170      //
171      // variableInfosTabPage
172      //
173      this.variableInfosTabPage.Controls.Add(this.operatorBaseVariableInfosView);
174      this.variableInfosTabPage.Location = new System.Drawing.Point(4, 22);
175      this.variableInfosTabPage.Name = "variableInfosTabPage";
176      this.variableInfosTabPage.Padding = new System.Windows.Forms.Padding(3);
177      this.variableInfosTabPage.Size = new System.Drawing.Size(268, 158);
178      this.variableInfosTabPage.TabIndex = 1;
179      this.variableInfosTabPage.Text = "Variable Infos";
180      this.variableInfosTabPage.UseVisualStyleBackColor = true;
181      //
182      // operatorBaseVariableInfosView
183      //
184      this.operatorBaseVariableInfosView.Caption = "Operator";
185      this.operatorBaseVariableInfosView.Dock = System.Windows.Forms.DockStyle.Fill;
186      this.operatorBaseVariableInfosView.Location = new System.Drawing.Point(3, 3);
187      this.operatorBaseVariableInfosView.Name = "operatorBaseVariableInfosView";
188      this.operatorBaseVariableInfosView.Operator = null;
189      this.operatorBaseVariableInfosView.Size = new System.Drawing.Size(262, 152);
190      this.operatorBaseVariableInfosView.TabIndex = 0;
191      //
192      // descriptionTabPage
193      //
194      this.descriptionTabPage.Controls.Add(this.operatorBaseDescriptionView);
195      this.descriptionTabPage.Location = new System.Drawing.Point(4, 22);
196      this.descriptionTabPage.Name = "descriptionTabPage";
197      this.descriptionTabPage.Padding = new System.Windows.Forms.Padding(3);
198      this.descriptionTabPage.Size = new System.Drawing.Size(268, 158);
199      this.descriptionTabPage.TabIndex = 2;
200      this.descriptionTabPage.Text = "Description";
201      this.descriptionTabPage.UseVisualStyleBackColor = true;
202      //
203      // operatorBaseDescriptionView
204      //
205      this.operatorBaseDescriptionView.Caption = "Operator";
206      this.operatorBaseDescriptionView.Dock = System.Windows.Forms.DockStyle.Fill;
207      this.operatorBaseDescriptionView.Location = new System.Drawing.Point(3, 3);
208      this.operatorBaseDescriptionView.Name = "operatorBaseDescriptionView";
209      this.operatorBaseDescriptionView.Operator = null;
210      this.operatorBaseDescriptionView.Size = new System.Drawing.Size(262, 152);
211      this.operatorBaseDescriptionView.TabIndex = 0;
212      //
213      // StructIdProblemInjectorView
214      //
215      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
216      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
217      this.Controls.Add(this.tabControl);
218      this.Name = "StructIdProblemInjectorView";
219      this.Size = new System.Drawing.Size(276, 184);
220      this.tabControl.ResumeLayout(false);
221      this.dataTabPage.ResumeLayout(false);
222      this.dataTabPage.PerformLayout();
223      this.variableInfosTabPage.ResumeLayout(false);
224      this.descriptionTabPage.ResumeLayout(false);
225      this.ResumeLayout(false);
226
227    }
228
229    #endregion
230
231    private System.Windows.Forms.Label nameLabel;
232    private System.Windows.Forms.TextBox nameTextBox;
233    private System.Windows.Forms.Button importInstanceButton;
234    private System.Windows.Forms.OpenFileDialog openFileDialog;
235    private System.Windows.Forms.TabControl tabControl;
236    private System.Windows.Forms.TabPage dataTabPage;
237    private System.Windows.Forms.TabPage variableInfosTabPage;
238    private HeuristicLab.Core.OperatorBaseVariableInfosView operatorBaseVariableInfosView;
239    private System.Windows.Forms.TabPage descriptionTabPage;
240    private HeuristicLab.Core.OperatorBaseDescriptionView operatorBaseDescriptionView;
241    private System.Windows.Forms.Label variablesLabel;
242    private System.Windows.Forms.TextBox variablesTextBox;
243    private System.Windows.Forms.Label samplesLabel;
244    private System.Windows.Forms.TextBox samplesTextBox;
245  }
246}
Note: See TracBrowser for help on using the repository browser.