1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2014 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.RunCreation {
|
---|
23 | partial class OKBProblemView {
|
---|
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.problemComboBox = new System.Windows.Forms.ComboBox();
|
---|
48 | this.problemLabel = new System.Windows.Forms.Label();
|
---|
49 | this.refreshButton = new System.Windows.Forms.Button();
|
---|
50 | this.cloneProblemButton = new System.Windows.Forms.Button();
|
---|
51 | this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
|
---|
52 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
53 | this.SuspendLayout();
|
---|
54 | //
|
---|
55 | // nameTextBox
|
---|
56 | //
|
---|
57 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
58 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
59 | this.nameTextBox.Location = new System.Drawing.Point(72, 27);
|
---|
60 | this.nameTextBox.Size = new System.Drawing.Size(604, 20);
|
---|
61 | this.nameTextBox.TabIndex = 5;
|
---|
62 | //
|
---|
63 | // nameLabel
|
---|
64 | //
|
---|
65 | this.nameLabel.Location = new System.Drawing.Point(3, 30);
|
---|
66 | this.nameLabel.TabIndex = 4;
|
---|
67 | //
|
---|
68 | // infoLabel
|
---|
69 | //
|
---|
70 | this.infoLabel.Location = new System.Drawing.Point(687, 30);
|
---|
71 | this.infoLabel.TabIndex = 6;
|
---|
72 | //
|
---|
73 | // problemComboBox
|
---|
74 | //
|
---|
75 | this.problemComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
77 | this.problemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
78 | this.problemComboBox.FormattingEnabled = true;
|
---|
79 | this.problemComboBox.Location = new System.Drawing.Point(72, 0);
|
---|
80 | this.problemComboBox.Name = "problemComboBox";
|
---|
81 | this.problemComboBox.Size = new System.Drawing.Size(574, 21);
|
---|
82 | this.problemComboBox.TabIndex = 1;
|
---|
83 | this.problemComboBox.SelectedValueChanged += new System.EventHandler(this.problemComboBox_SelectedValueChanged);
|
---|
84 | //
|
---|
85 | // problemLabel
|
---|
86 | //
|
---|
87 | this.problemLabel.AutoSize = true;
|
---|
88 | this.problemLabel.Location = new System.Drawing.Point(3, 3);
|
---|
89 | this.problemLabel.Name = "problemLabel";
|
---|
90 | this.problemLabel.Size = new System.Drawing.Size(48, 13);
|
---|
91 | this.problemLabel.TabIndex = 0;
|
---|
92 | this.problemLabel.Text = "&Problem:";
|
---|
93 | //
|
---|
94 | // refreshButton
|
---|
95 | //
|
---|
96 | this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
97 | this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
|
---|
98 | this.refreshButton.Location = new System.Drawing.Point(682, -1);
|
---|
99 | this.refreshButton.Name = "refreshButton";
|
---|
100 | this.refreshButton.Size = new System.Drawing.Size(24, 24);
|
---|
101 | this.refreshButton.TabIndex = 3;
|
---|
102 | this.toolTip.SetToolTip(this.refreshButton, "Refresh Problems");
|
---|
103 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
104 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
105 | //
|
---|
106 | // cloneProblemButton
|
---|
107 | //
|
---|
108 | this.cloneProblemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
109 | this.cloneProblemButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Clone;
|
---|
110 | this.cloneProblemButton.Location = new System.Drawing.Point(652, -1);
|
---|
111 | this.cloneProblemButton.Name = "cloneProblemButton";
|
---|
112 | this.cloneProblemButton.Size = new System.Drawing.Size(24, 24);
|
---|
113 | this.cloneProblemButton.TabIndex = 2;
|
---|
114 | this.toolTip.SetToolTip(this.cloneProblemButton, "Clone Problem");
|
---|
115 | this.cloneProblemButton.UseVisualStyleBackColor = true;
|
---|
116 | this.cloneProblemButton.Click += new System.EventHandler(this.cloneProblemButton_Click);
|
---|
117 | //
|
---|
118 | // parameterCollectionView
|
---|
119 | //
|
---|
120 | this.parameterCollectionView.AllowEditingOfHiddenParameters = false;
|
---|
121 | this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
122 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
123 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
124 | this.parameterCollectionView.Caption = "ParameterCollection View";
|
---|
125 | this.parameterCollectionView.Content = null;
|
---|
126 | this.parameterCollectionView.Location = new System.Drawing.Point(0, 53);
|
---|
127 | this.parameterCollectionView.Name = "parameterCollectionView";
|
---|
128 | this.parameterCollectionView.ReadOnly = false;
|
---|
129 | this.parameterCollectionView.Size = new System.Drawing.Size(706, 340);
|
---|
130 | this.parameterCollectionView.TabIndex = 7;
|
---|
131 | //
|
---|
132 | // OKBProblemView
|
---|
133 | //
|
---|
134 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
135 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
136 | this.Controls.Add(this.problemComboBox);
|
---|
137 | this.Controls.Add(this.parameterCollectionView);
|
---|
138 | this.Controls.Add(this.problemLabel);
|
---|
139 | this.Controls.Add(this.cloneProblemButton);
|
---|
140 | this.Controls.Add(this.refreshButton);
|
---|
141 | this.Name = "OKBProblemView";
|
---|
142 | this.Size = new System.Drawing.Size(706, 393);
|
---|
143 | this.Controls.SetChildIndex(this.refreshButton, 0);
|
---|
144 | this.Controls.SetChildIndex(this.cloneProblemButton, 0);
|
---|
145 | this.Controls.SetChildIndex(this.problemLabel, 0);
|
---|
146 | this.Controls.SetChildIndex(this.parameterCollectionView, 0);
|
---|
147 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
148 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
149 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
150 | this.Controls.SetChildIndex(this.problemComboBox, 0);
|
---|
151 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
152 | this.ResumeLayout(false);
|
---|
153 | this.PerformLayout();
|
---|
154 |
|
---|
155 | }
|
---|
156 |
|
---|
157 | #endregion
|
---|
158 |
|
---|
159 | private System.Windows.Forms.ComboBox problemComboBox;
|
---|
160 | private System.Windows.Forms.Label problemLabel;
|
---|
161 | private System.Windows.Forms.Button refreshButton;
|
---|
162 | private System.Windows.Forms.Button cloneProblemButton;
|
---|
163 | private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
|
---|
164 |
|
---|
165 |
|
---|
166 | }
|
---|
167 | }
|
---|