Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/ItemParameterView.Designer.cs @ 2740

Last change on this file since 2740 was 2740, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • worked on parameters and operators
File size: 9.9 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.Parameters.Views {
23  partial class ItemParameterView<T> {
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 (typeSelectorDialog != null) typeSelectorDialog.Dispose();
36        if (components != null) components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.components = new System.ComponentModel.Container();
49      this.localValueGroupBox = new System.Windows.Forms.GroupBox();
50      this.localValuePanel = new System.Windows.Forms.Panel();
51      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
52      this.clearLocalValueButton = new System.Windows.Forms.Button();
53      this.setLocalValueButton = new System.Windows.Forms.Button();
54      this.actualNameTextBox = new System.Windows.Forms.TextBox();
55      this.actualNameLabel = new System.Windows.Forms.Label();
56      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
58      this.localValueGroupBox.SuspendLayout();
59      this.localValuePanel.SuspendLayout();
60      this.SuspendLayout();
61      //
62      // dataTypeLabel
63      //
64      this.dataTypeLabel.Location = new System.Drawing.Point(3, 123);
65      this.dataTypeLabel.TabIndex = 6;
66      //
67      // dataTypeTextBox
68      //
69      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 120);
70      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
71      this.dataTypeTextBox.TabIndex = 7;
72      //
73      // nameTextBox
74      //
75      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
76      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
77      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
78      this.nameTextBox.Size = new System.Drawing.Size(306, 20);
79      //
80      // descriptionLabel
81      //
82      this.descriptionLabel.Location = new System.Drawing.Point(3, 55);
83      this.descriptionLabel.TabIndex = 4;
84      //
85      // descriptionTextBox
86      //
87      this.descriptionTextBox.Location = new System.Drawing.Point(80, 52);
88      this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);
89      this.descriptionTextBox.TabIndex = 5;
90      //
91      // localValueGroupBox
92      //
93      this.localValueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94                  | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.localValueGroupBox.Controls.Add(this.localValuePanel);
97      this.localValueGroupBox.Controls.Add(this.clearLocalValueButton);
98      this.localValueGroupBox.Controls.Add(this.setLocalValueButton);
99      this.localValueGroupBox.Location = new System.Drawing.Point(0, 146);
100      this.localValueGroupBox.Name = "localValueGroupBox";
101      this.localValueGroupBox.Size = new System.Drawing.Size(386, 169);
102      this.localValueGroupBox.TabIndex = 10;
103      this.localValueGroupBox.TabStop = false;
104      this.localValueGroupBox.Text = "Local &Value:";
105      //
106      // localValuePanel
107      //
108      this.localValuePanel.AllowDrop = true;
109      this.localValuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.localValuePanel.Controls.Add(this.viewHost);
113      this.localValuePanel.Location = new System.Drawing.Point(6, 48);
114      this.localValuePanel.Name = "localValuePanel";
115      this.localValuePanel.Size = new System.Drawing.Size(374, 115);
116      this.localValuePanel.TabIndex = 0;
117      this.localValuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.localValuePanel_DragEnterOver);
118      this.localValuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.localValuePanel_DragDrop);
119      this.localValuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.localValuePanel_DragEnterOver);
120      //
121      // viewHost
122      //
123      this.viewHost.Content = null;
124      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
125      this.viewHost.Location = new System.Drawing.Point(0, 0);
126      this.viewHost.Name = "viewHost";
127      this.viewHost.Size = new System.Drawing.Size(374, 115);
128      this.viewHost.TabIndex = 0;
129      //
130      // clearLocalValueButton
131      //
132      this.clearLocalValueButton.Enabled = false;
133      this.clearLocalValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
134      this.clearLocalValueButton.Location = new System.Drawing.Point(35, 19);
135      this.clearLocalValueButton.Name = "clearLocalValueButton";
136      this.clearLocalValueButton.Size = new System.Drawing.Size(23, 23);
137      this.clearLocalValueButton.TabIndex = 9;
138      this.toolTip.SetToolTip(this.clearLocalValueButton, "Clear Value");
139      this.clearLocalValueButton.UseVisualStyleBackColor = true;
140      this.clearLocalValueButton.Click += new System.EventHandler(this.clearLocalValueButton_Click);
141      //
142      // setLocalValueButton
143      //
144      this.setLocalValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
145      this.setLocalValueButton.Location = new System.Drawing.Point(6, 19);
146      this.setLocalValueButton.Name = "setLocalValueButton";
147      this.setLocalValueButton.Size = new System.Drawing.Size(23, 23);
148      this.setLocalValueButton.TabIndex = 8;
149      this.toolTip.SetToolTip(this.setLocalValueButton, "Set Value");
150      this.setLocalValueButton.UseVisualStyleBackColor = true;
151      this.setLocalValueButton.Click += new System.EventHandler(this.setLocalValueButton_Click);
152      //
153      // actualNameTextBox
154      //
155      this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
156                  | System.Windows.Forms.AnchorStyles.Right)));
157      this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
158      this.actualNameTextBox.Name = "actualNameTextBox";
159      this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
160      this.actualNameTextBox.TabIndex = 3;
161      this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
162      //
163      // actualNameLabel
164      //
165      this.actualNameLabel.AutoSize = true;
166      this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
167      this.actualNameLabel.Name = "actualNameLabel";
168      this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
169      this.actualNameLabel.TabIndex = 2;
170      this.actualNameLabel.Text = "&Actual Name:";
171      //
172      // ItemParameterView
173      //
174      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
176      this.Controls.Add(this.localValueGroupBox);
177      this.Controls.Add(this.actualNameTextBox);
178      this.Controls.Add(this.actualNameLabel);
179      this.Name = "ItemParameterView";
180      this.Size = new System.Drawing.Size(386, 315);
181      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
182      this.Controls.SetChildIndex(this.descriptionLabel, 0);
183      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
184      this.Controls.SetChildIndex(this.actualNameLabel, 0);
185      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
186      this.Controls.SetChildIndex(this.nameTextBox, 0);
187      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
188      this.Controls.SetChildIndex(this.nameLabel, 0);
189      this.Controls.SetChildIndex(this.localValueGroupBox, 0);
190      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
191      this.localValueGroupBox.ResumeLayout(false);
192      this.localValuePanel.ResumeLayout(false);
193      this.ResumeLayout(false);
194      this.PerformLayout();
195
196    }
197
198    #endregion
199
200    protected System.Windows.Forms.GroupBox localValueGroupBox;
201    protected System.Windows.Forms.TextBox actualNameTextBox;
202    protected System.Windows.Forms.Label actualNameLabel;
203    protected System.Windows.Forms.Panel localValuePanel;
204    protected HeuristicLab.Core.Views.ViewHost viewHost;
205    protected System.Windows.Forms.Button setLocalValueButton;
206    protected System.Windows.Forms.ToolTip toolTip;
207    protected System.Windows.Forms.Button clearLocalValueButton;
208  }
209}
Note: See TracBrowser for help on using the repository browser.