Free cookie consent management tool by TermsFeed Policy Generator

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

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 5.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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, 123);
55      this.dataTypeLabel.TabIndex = 6;
56      //
57      // dataTypeTextBox
58      //
59      this.dataTypeTextBox.Location = new System.Drawing.Point(80, 120);
60      this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
61      this.dataTypeTextBox.TabIndex = 7;
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(306, 20);
69      //
70      // descriptionLabel
71      //
72      this.descriptionLabel.Location = new System.Drawing.Point(3, 55);
73      this.descriptionLabel.TabIndex = 4;
74      //
75      // descriptionTextBox
76      //
77      this.descriptionTextBox.Location = new System.Drawing.Point(80, 52);
78      this.descriptionTextBox.Size = new System.Drawing.Size(306, 62);
79      this.descriptionTextBox.TabIndex = 5;
80      //
81      // actualNameTextBox
82      //
83      this.actualNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
84                  | System.Windows.Forms.AnchorStyles.Right)));
85      this.actualNameTextBox.Location = new System.Drawing.Point(80, 26);
86      this.actualNameTextBox.Name = "actualNameTextBox";
87      this.actualNameTextBox.Size = new System.Drawing.Size(306, 20);
88      this.actualNameTextBox.TabIndex = 3;
89      this.actualNameTextBox.Validated += new System.EventHandler(this.actualNameTextBox_Validated);
90      //
91      // actualNameLabel
92      //
93      this.actualNameLabel.AutoSize = true;
94      this.actualNameLabel.Location = new System.Drawing.Point(3, 29);
95      this.actualNameLabel.Name = "actualNameLabel";
96      this.actualNameLabel.Size = new System.Drawing.Size(71, 13);
97      this.actualNameLabel.TabIndex = 2;
98      this.actualNameLabel.Text = "&Actual Name:";
99      //
100      // LookupParameterView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104      this.Controls.Add(this.actualNameTextBox);
105      this.Controls.Add(this.actualNameLabel);
106      this.Name = "LookupParameterView";
107      this.Size = new System.Drawing.Size(386, 143);
108      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
109      this.Controls.SetChildIndex(this.descriptionLabel, 0);
110      this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
111      this.Controls.SetChildIndex(this.actualNameLabel, 0);
112      this.Controls.SetChildIndex(this.dataTypeLabel, 0);
113      this.Controls.SetChildIndex(this.nameTextBox, 0);
114      this.Controls.SetChildIndex(this.actualNameTextBox, 0);
115      this.Controls.SetChildIndex(this.nameLabel, 0);
116      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
117      this.ResumeLayout(false);
118      this.PerformLayout();
119
120    }
121
122    #endregion
123
124    protected System.Windows.Forms.TextBox actualNameTextBox;
125    protected System.Windows.Forms.Label actualNameLabel;
126  }
127}
Note: See TracBrowser for help on using the repository browser.