Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs @ 5809

Last change on this file since 5809 was 5445, checked in by swagner, 13 years ago

Updated year of copyrights (#1406)

File size: 9.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 ValueLookupParameterView<T> {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      this.valueGroupBox = new System.Windows.Forms.GroupBox();
37      this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
38      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
39      this.clearValueButton = new System.Windows.Forms.Button();
40      this.setValueButton = new System.Windows.Forms.Button();
41      this.actualNameTextBox = new System.Windows.Forms.TextBox();
42      this.actualNameLabel = new System.Windows.Forms.Label();
43      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
44      this.valueGroupBox.SuspendLayout();
45      this.SuspendLayout();
46      //
47      // dataTypeLabel
48      //
49      this.dataTypeLabel.Location = new System.Drawing.Point(3, 81);
50      this.dataTypeLabel.TabIndex = 6;
51      //
52      // dataTypeTextBox
53      //
54      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 78);
55      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
56      this.dataTypeTextBox.TabIndex = 7;
57      //
58      // nameTextBox
59      //
60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
62      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
63      this.nameTextBox.Size = new System.Drawing.Size(306, 20);
64      //
65      // descriptionLabel
66      //
67      this.descriptionLabel.Location = new System.Drawing.Point(3, 55);
68      this.descriptionLabel.TabIndex = 4;
69      //
70      // descriptionTextBox
71      //
72      this.descriptionTextBox.Location = new System.Drawing.Point(80, 52);
73      this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
74      this.descriptionTextBox.TabIndex = 5;
75      //
76      // valueGroupBox
77      //
78      this.valueGroupBox.AllowDrop = true;
79      this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80                  | System.Windows.Forms.AnchorStyles.Left)
81                  | System.Windows.Forms.AnchorStyles.Right)));
82      this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
83      this.valueGroupBox.Controls.Add(this.valueViewHost);
84      this.valueGroupBox.Controls.Add(this.clearValueButton);
85      this.valueGroupBox.Controls.Add(this.setValueButton);
86      this.valueGroupBox.Location = new System.Drawing.Point(0, 104);
87      this.valueGroupBox.Name = "valueGroupBox";
88      this.valueGroupBox.Size = new System.Drawing.Size(386, 211);
89      this.valueGroupBox.TabIndex = 8;
90      this.valueGroupBox.TabStop = false;
91      this.valueGroupBox.Text = "Value";
92      this.valueGroupBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragDrop);
93      this.valueGroupBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
94      this.valueGroupBox.DragOver += new System.Windows.Forms.DragEventHandler(this.valueGroupBox_DragEnterOver);
95      //
96      // showInRunCheckBox
97      //
98      this.showInRunCheckBox.AutoSize = true;
99      this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
100      this.showInRunCheckBox.Checked = true;
101      this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
102      this.showInRunCheckBox.Location = new System.Drawing.Point(66, 24);
103      this.showInRunCheckBox.Name = "showInRunCheckBox";
104      this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
105      this.showInRunCheckBox.TabIndex = 2;
106      this.showInRunCheckBox.Text = "&Show in Run:";
107      this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
108      this.showInRunCheckBox.UseVisualStyleBackColor = true;
109      this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
110      //
111      // valueViewHost
112      //
113      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
114                  | System.Windows.Forms.AnchorStyles.Left)
115                  | System.Windows.Forms.AnchorStyles.Right)));
116      this.valueViewHost.Caption = "View";
117      this.valueViewHost.Content = null;
118      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
119      this.valueViewHost.Name = "valueViewHost";
120      this.valueViewHost.ReadOnly = false;
121      this.valueViewHost.Size = new System.Drawing.Size(374, 156);
122      this.valueViewHost.TabIndex = 3;
123      this.valueViewHost.ViewType = null;
124
125      //
126      // clearValueButton
127      //
128      this.clearValueButton.Enabled = false;
129      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
130      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
131      this.clearValueButton.Name = "clearValueButton";
132      this.clearValueButton.Size = new System.Drawing.Size(24, 24);
133      this.clearValueButton.TabIndex = 1;
134      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
135      this.clearValueButton.UseVisualStyleBackColor = true;
136      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
137      //
138      // setValueButton
139      //
140      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
141      this.setValueButton.Location = new System.Drawing.Point(6, 19);
142      this.setValueButton.Name = "setValueButton";
143      this.setValueButton.Size = new System.Drawing.Size(24, 24);
144      this.setValueButton.TabIndex = 0;
145      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
146      this.setValueButton.UseVisualStyleBackColor = true;
147      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
148      //
149      // actualNameTextBox
150      //
151      this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
152                  | System.Windows.Forms.AnchorStyles.Right)));
153      this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
154      this.actualNameTextBox.Name = "actualNameTextBox";
155      this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
156      this.actualNameTextBox.TabIndex = 3;
157      this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
158      //
159      // actualNameLabel
160      //
161      this.actualNameLabel.AutoSize = true;
162      this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
163      this.actualNameLabel.Name = "actualNameLabel";
164      this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
165      this.actualNameLabel.TabIndex = 2;
166      this.actualNameLabel.Text = "&Actual Name:";
167      //
168      // ValueLookupParameterView
169      //
170      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
171      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
172      this.Controls.Add(this.actualNameTextBox);
173      this.Controls.Add(this.actualNameLabel);
174      this.Controls.Add(this.valueGroupBox);
175      this.Name = "ValueLookupParameterView";
176      this.Size = new System.Drawing.Size(386, 315);
177      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
178      this.Controls.SetChildIndex(this.descriptionLabel, 0);
179      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
180      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
181      this.Controls.SetChildIndex(this.nameTextBox, 0);
182      this.Controls.SetChildIndex(this.nameLabel, 0);
183      this.Controls.SetChildIndex(this.valueGroupBox, 0);
184      this.Controls.SetChildIndex(this.actualNameLabel, 0);
185      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
186      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
187      this.valueGroupBox.ResumeLayout(false);
188      this.valueGroupBox.PerformLayout();
189      this.ResumeLayout(false);
190      this.PerformLayout();
191
192    }
193
194    #endregion
195
196    protected System.Windows.Forms.GroupBox valueGroupBox;
197    protected HeuristicLab.MainForm.WindowsForms.ViewHost valueViewHost;
198    protected System.Windows.Forms.Button setValueButton;
199    protected System.Windows.Forms.Button clearValueButton;
200    protected System.Windows.Forms.TextBox actualNameTextBox;
201    protected System.Windows.Forms.Label actualNameLabel;
202    protected System.Windows.Forms.CheckBox showInRunCheckBox;
203  }
204}
Note: See TracBrowser for help on using the repository browser.