Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2714 was 2714, checked in by swagner, 15 years ago

Operator architecture refactoring (#95)

  • moved parameters and parameter views into new plugins
File size: 9.5 KB
RevLine 
[2655]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
[2714]22namespace HeuristicLab.Parameters.Views {
[2664]23  partial class ItemParameterView {
[2655]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.valueGroupBox = new System.Windows.Forms.GroupBox();
50      this.valuePanel = new System.Windows.Forms.Panel();
51      this.viewHost = new HeuristicLab.Core.Views.ViewHost();
[2676]52      this.clearValueButton = new System.Windows.Forms.Button();
53      this.setValueButton = new System.Windows.Forms.Button();
[2655]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);
[2676]57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[2655]58      this.valueGroupBox.SuspendLayout();
59      this.valuePanel.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      //
[2676]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);
[2655]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      // valueGroupBox
92      //
93      this.valueGroupBox.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.valueGroupBox.Controls.Add(this.valuePanel);
97      this.valueGroupBox.Controls.Add(this.clearValueButton);
98      this.valueGroupBox.Controls.Add(this.setValueButton);
99      this.valueGroupBox.Location = new System.Drawing.Point(0, 146);
100      this.valueGroupBox.Name = "valueGroupBox";
101      this.valueGroupBox.Size = new System.Drawing.Size(386, 169);
102      this.valueGroupBox.TabIndex = 10;
103      this.valueGroupBox.TabStop = false;
104      this.valueGroupBox.Text = "&Value:";
105      //
106      // valuePanel
107      //
108      this.valuePanel.AllowDrop = true;
[2676]109      this.valuePanel.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)));
[2655]112      this.valuePanel.Controls.Add(this.viewHost);
[2676]113      this.valuePanel.Location = new System.Drawing.Point(6, 48);
[2655]114      this.valuePanel.Name = "valuePanel";
[2676]115      this.valuePanel.Size = new System.Drawing.Size(374, 115);
[2655]116      this.valuePanel.TabIndex = 0;
117      this.valuePanel.DragOver += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
118      this.valuePanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragDrop);
119      this.valuePanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.valuePanel_DragEnterOver);
120      //
121      // viewHost
122      //
123      this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
124      this.viewHost.Location = new System.Drawing.Point(0, 0);
125      this.viewHost.Name = "viewHost";
[2713]126      this.viewHost.Content = null;
[2676]127      this.viewHost.Size = new System.Drawing.Size(374, 115);
[2655]128      this.viewHost.TabIndex = 0;
129      //
[2676]130      // clearValueButton
131      //
132      this.clearValueButton.Enabled = false;
133      this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
134      this.clearValueButton.Location = new System.Drawing.Point(35, 19);
135      this.clearValueButton.Name = "clearValueButton";
136      this.clearValueButton.Size = new System.Drawing.Size(23, 23);
137      this.clearValueButton.TabIndex = 9;
138      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
139      this.clearValueButton.UseVisualStyleBackColor = true;
140      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
141      //
142      // setValueButton
143      //
144      this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
145      this.setValueButton.Location = new System.Drawing.Point(6, 19);
146      this.setValueButton.Name = "setValueButton";
147      this.setValueButton.Size = new System.Drawing.Size(23, 23);
148      this.setValueButton.TabIndex = 8;
149      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
150      this.setValueButton.UseVisualStyleBackColor = true;
151      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
152      //
[2655]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      //
[2676]172      // ItemParameterView
[2655]173      //
174      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
176      this.Controls.Add(this.valueGroupBox);
[2676]177      this.Controls.Add(this.actualNameTextBox);
[2655]178      this.Controls.Add(this.actualNameLabel);
[2676]179      this.Name = "ItemParameterView";
[2655]180      this.Size = new System.Drawing.Size(386, 315);
181      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
182      this.Controls.SetChildIndex(this.descriptionLabel, 0);
[2676]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);
[2655]187      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
[2676]188      this.Controls.SetChildIndex(this.nameLabel, 0);
[2655]189      this.Controls.SetChildIndex(this.valueGroupBox, 0);
[2676]190      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[2655]191      this.valueGroupBox.ResumeLayout(false);
192      this.valuePanel.ResumeLayout(false);
193      this.ResumeLayout(false);
194      this.PerformLayout();
195
196    }
197
198    #endregion
199
[2676]200    protected System.Windows.Forms.GroupBox valueGroupBox;
201    protected System.Windows.Forms.TextBox actualNameTextBox;
202    protected System.Windows.Forms.Label actualNameLabel;
203    protected System.Windows.Forms.Panel valuePanel;
[2714]204    protected HeuristicLab.Core.Views.ViewHost viewHost;
[2676]205    protected System.Windows.Forms.Button setValueButton;
206    protected System.Windows.Forms.ToolTip toolTip;
207    protected System.Windows.Forms.Button clearValueButton;
[2655]208  }
209}
Note: See TracBrowser for help on using the repository browser.