Free cookie consent management tool by TermsFeed Policy Generator

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

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

Changed some more parameters to be hidden per default and corrected wrong layout in some parameter views (#1377)

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