Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.Designer.cs @ 5832

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

Moved description from textbox to icon in NamedItemView and adapted all derived views (#1416)

File size: 4.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 LookupParameterView<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 (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.actualNameTextBox = new System.Windows.Forms.TextBox();
48      this.actualNameLabel = new System.Windows.Forms.Label();
49      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
50      this.SuspendLayout();
51      //
52      // dataTypeLabel
53      //
54      this.dataTypeLabel.TabIndex = 5;
55      //
56      // dataTypeTextBox
57      //
58      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52);
59      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
60      this.dataTypeTextBox.TabIndex = 6;
61      //
62      // nameTextBox
63      //
64      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
65      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
66      this.nameTextBox.Location = new System.Drawing.Point(80, 0);
67      this.nameTextBox.Size = new System.Drawing.Size(281, 20);
68      //
69      // infoLabel
70      //
71      this.infoLabel.Location = new System.Drawing.Point(367, 3);
72      //
73      // actualNameTextBox
74      //
75      this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
78      this.actualNameTextBox.Name = "actualNameTextBox";
79      this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
80      this.actualNameTextBox.TabIndex = 4;
81      this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
82      //
83      // actualNameLabel
84      //
85      this.actualNameLabel.AutoSize = true;
86      this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
87      this.actualNameLabel.Name = "actualNameLabel";
88      this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
89      this.actualNameLabel.TabIndex = 3;
90      this.actualNameLabel.Text = "&Actual Name:";
91      //
92      // LookupParameterView
93      //
94      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
95      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
96      this.Controls.Add(this.actualNameTextBox);
97      this.Controls.Add(this.actualNameLabel);
98      this.Name = "LookupParameterView";
99      this.Size = new System.Drawing.Size(386, 76);
100      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
101      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
102      this.Controls.SetChildIndex(this.infoLabel, 0);
103      this.Controls.SetChildIndex(this.actualNameLabel, 0);
104      this.Controls.SetChildIndex(this.nameTextBox, 0);
105      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
106      this.Controls.SetChildIndex(this.nameLabel, 0);
107      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
108      this.ResumeLayout(false);
109      this.PerformLayout();
110
111    }
112
113    #endregion
114
115    protected System.Windows.Forms.TextBox actualNameTextBox;
116    protected System.Windows.Forms.Label actualNameLabel;
117  }
118}
Note: See TracBrowser for help on using the repository browser.