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 |
|
---|
22 | namespace HeuristicLab.Clients.OKB {
|
---|
23 | partial class ProblemParameterView {
|
---|
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.aliasLabel = new System.Windows.Forms.Label();
|
---|
48 | this.aliasTextBox = new System.Windows.Forms.TextBox();
|
---|
49 | this.dataTypeLabel = new System.Windows.Forms.Label();
|
---|
50 | this.dataTypeComboBox = new System.Windows.Forms.ComboBox();
|
---|
51 | this.SuspendLayout();
|
---|
52 | //
|
---|
53 | // storeButton
|
---|
54 | //
|
---|
55 | this.toolTip.SetToolTip(this.storeButton, "Store Data");
|
---|
56 | //
|
---|
57 | // aliasLabel
|
---|
58 | //
|
---|
59 | this.aliasLabel.AutoSize = true;
|
---|
60 | this.aliasLabel.Location = new System.Drawing.Point(3, 84);
|
---|
61 | this.aliasLabel.Name = "aliasLabel";
|
---|
62 | this.aliasLabel.Size = new System.Drawing.Size(32, 13);
|
---|
63 | this.aliasLabel.TabIndex = 5;
|
---|
64 | this.aliasLabel.Text = "Alias:";
|
---|
65 | //
|
---|
66 | // aliasTextBox
|
---|
67 | //
|
---|
68 | this.aliasTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
69 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
70 | this.aliasTextBox.Location = new System.Drawing.Point(72, 81);
|
---|
71 | this.aliasTextBox.Name = "aliasTextBox";
|
---|
72 | this.aliasTextBox.Size = new System.Drawing.Size(278, 20);
|
---|
73 | this.aliasTextBox.TabIndex = 6;
|
---|
74 | this.aliasTextBox.TextChanged += new System.EventHandler(this.aliasTextBox_TextChanged);
|
---|
75 | this.aliasTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.aliasTextBox_KeyDown);
|
---|
76 | //
|
---|
77 | // dataTypeLabel
|
---|
78 | //
|
---|
79 | this.dataTypeLabel.AutoSize = true;
|
---|
80 | this.dataTypeLabel.Location = new System.Drawing.Point(3, 110);
|
---|
81 | this.dataTypeLabel.Name = "dataTypeLabel";
|
---|
82 | this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
|
---|
83 | this.dataTypeLabel.TabIndex = 7;
|
---|
84 | this.dataTypeLabel.Text = "Data Type:";
|
---|
85 | //
|
---|
86 | // dataTypeComboBox
|
---|
87 | //
|
---|
88 | this.dataTypeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
89 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
90 | this.dataTypeComboBox.FormattingEnabled = true;
|
---|
91 | this.dataTypeComboBox.Location = new System.Drawing.Point(72, 107);
|
---|
92 | this.dataTypeComboBox.Name = "dataTypeComboBox";
|
---|
93 | this.dataTypeComboBox.Size = new System.Drawing.Size(278, 21);
|
---|
94 | this.dataTypeComboBox.TabIndex = 8;
|
---|
95 | this.dataTypeComboBox.SelectedIndexChanged += new System.EventHandler(this.dataTypeComboBox_SelectedIndexChanged);
|
---|
96 | //
|
---|
97 | // ProblemParameterView
|
---|
98 | //
|
---|
99 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
100 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
101 | this.Controls.Add(this.aliasTextBox);
|
---|
102 | this.Controls.Add(this.aliasLabel);
|
---|
103 | this.Controls.Add(this.dataTypeComboBox);
|
---|
104 | this.Controls.Add(this.dataTypeLabel);
|
---|
105 | this.Name = "ProblemParameterView";
|
---|
106 | this.Size = new System.Drawing.Size(350, 147);
|
---|
107 | this.Controls.SetChildIndex(this.dataTypeLabel, 0);
|
---|
108 | this.Controls.SetChildIndex(this.dataTypeComboBox, 0);
|
---|
109 | this.Controls.SetChildIndex(this.aliasLabel, 0);
|
---|
110 | this.Controls.SetChildIndex(this.aliasTextBox, 0);
|
---|
111 | this.Controls.SetChildIndex(this.storeButton, 0);
|
---|
112 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
113 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
114 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
115 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
116 | this.ResumeLayout(false);
|
---|
117 | this.PerformLayout();
|
---|
118 |
|
---|
119 | }
|
---|
120 |
|
---|
121 | #endregion
|
---|
122 |
|
---|
123 | private System.Windows.Forms.Label aliasLabel;
|
---|
124 | private System.Windows.Forms.TextBox aliasTextBox;
|
---|
125 | private System.Windows.Forms.Label dataTypeLabel;
|
---|
126 | private System.Windows.Forms.ComboBox dataTypeComboBox;
|
---|
127 |
|
---|
128 | }
|
---|
129 | }
|
---|