Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/CreateParameterDialog.Designer.cs @ 2792

Last change on this file since 2792 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: 10.4 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.Core.Views {
23  partial class CreateParameterDialog {
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 Windows Form 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.cancelButton = new System.Windows.Forms.Button();
50      this.okButton = new System.Windows.Forms.Button();
51      this.nameLabel = new System.Windows.Forms.Label();
52      this.nameTextBox = new System.Windows.Forms.TextBox();
53      this.descriptionLabel = new System.Windows.Forms.Label();
54      this.descriptionTextBox = new System.Windows.Forms.TextBox();
55      this.dataTypeLabel = new System.Windows.Forms.Label();
56      this.dataTypeTextBox = new System.Windows.Forms.TextBox();
57      this.setDataTypeButton = new System.Windows.Forms.Button();
58      this.parameterTypeSelector = new HeuristicLab.Core.Views.TypeSelector();
59      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
60      this.SuspendLayout();
61      //
62      // cancelButton
63      //
64      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
65      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
66      this.cancelButton.Location = new System.Drawing.Point(455, 450);
67      this.cancelButton.Name = "cancelButton";
68      this.cancelButton.Size = new System.Drawing.Size(75, 23);
69      this.cancelButton.TabIndex = 9;
70      this.cancelButton.Text = "&Cancel";
71      this.cancelButton.UseVisualStyleBackColor = true;
72      //
73      // okButton
74      //
75      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
76      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
77      this.okButton.Enabled = false;
78      this.okButton.Location = new System.Drawing.Point(374, 450);
79      this.okButton.Name = "okButton";
80      this.okButton.Size = new System.Drawing.Size(75, 23);
81      this.okButton.TabIndex = 8;
82      this.okButton.Text = "&OK";
83      this.okButton.UseVisualStyleBackColor = true;
84      //
85      // nameLabel
86      //
87      this.nameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
88      this.nameLabel.AutoSize = true;
89      this.nameLabel.Location = new System.Drawing.Point(9, 289);
90      this.nameLabel.Name = "nameLabel";
91      this.nameLabel.Size = new System.Drawing.Size(38, 13);
92      this.nameLabel.TabIndex = 1;
93      this.nameLabel.Text = "&Name:";
94      //
95      // nameTextBox
96      //
97      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
98                  | System.Windows.Forms.AnchorStyles.Right)));
99      this.nameTextBox.Location = new System.Drawing.Point(78, 286);
100      this.nameTextBox.Name = "nameTextBox";
101      this.nameTextBox.Size = new System.Drawing.Size(452, 20);
102      this.nameTextBox.TabIndex = 2;
103      //
104      // descriptionLabel
105      //
106      this.descriptionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
107      this.descriptionLabel.AutoSize = true;
108      this.descriptionLabel.Location = new System.Drawing.Point(9, 315);
109      this.descriptionLabel.Name = "descriptionLabel";
110      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
111      this.descriptionLabel.TabIndex = 3;
112      this.descriptionLabel.Text = "&Description:";
113      //
114      // descriptionTextBox
115      //
116      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
117                  | System.Windows.Forms.AnchorStyles.Right)));
118      this.descriptionTextBox.Location = new System.Drawing.Point(78, 312);
119      this.descriptionTextBox.Multiline = true;
120      this.descriptionTextBox.Name = "descriptionTextBox";
121      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
122      this.descriptionTextBox.Size = new System.Drawing.Size(452, 103);
123      this.descriptionTextBox.TabIndex = 4;
124      //
125      // dataTypeLabel
126      //
127      this.dataTypeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
128      this.dataTypeLabel.AutoSize = true;
129      this.dataTypeLabel.Location = new System.Drawing.Point(9, 426);
130      this.dataTypeLabel.Name = "dataTypeLabel";
131      this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
132      this.dataTypeLabel.TabIndex = 5;
133      this.dataTypeLabel.Text = "Data &Type:";
134      //
135      // dataTypeTextBox
136      //
137      this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
138                  | System.Windows.Forms.AnchorStyles.Right)));
139      this.dataTypeTextBox.Enabled = false;
140      this.dataTypeTextBox.Location = new System.Drawing.Point(78, 423);
141      this.dataTypeTextBox.Name = "dataTypeTextBox";
142      this.dataTypeTextBox.ReadOnly = true;
143      this.dataTypeTextBox.Size = new System.Drawing.Size(423, 20);
144      this.dataTypeTextBox.TabIndex = 6;
145      //
146      // setDataTypeButton
147      //
148      this.setDataTypeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
149      this.setDataTypeButton.Enabled = false;
150      this.setDataTypeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
151      this.setDataTypeButton.Location = new System.Drawing.Point(507, 421);
152      this.setDataTypeButton.Name = "setDataTypeButton";
153      this.setDataTypeButton.Size = new System.Drawing.Size(23, 23);
154      this.setDataTypeButton.TabIndex = 7;
155      this.toolTip.SetToolTip(this.setDataTypeButton, "Set Data Type");
156      this.setDataTypeButton.UseVisualStyleBackColor = true;
157      this.setDataTypeButton.Click += new System.EventHandler(this.setDataTypeButton_Click);
158      //
159      // parameterTypeSelector
160      //
161      this.parameterTypeSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
162                  | System.Windows.Forms.AnchorStyles.Left)
163                  | System.Windows.Forms.AnchorStyles.Right)));
164      this.parameterTypeSelector.Caption = "Available &Parameters";
165      this.parameterTypeSelector.Location = new System.Drawing.Point(12, 12);
166      this.parameterTypeSelector.Name = "parameterTypeSelector";
167      this.parameterTypeSelector.Size = new System.Drawing.Size(518, 268);
168      this.parameterTypeSelector.TabIndex = 0;
169      this.parameterTypeSelector.SelectedTypeChanged += new System.EventHandler(this.parameterTypeSelector_SelectedTypeChanged);
170      //
171      // CreateParameterDialog
172      //
173      this.AcceptButton = this.okButton;
174      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
176      this.CancelButton = this.cancelButton;
177      this.ClientSize = new System.Drawing.Size(542, 485);
178      this.Controls.Add(this.setDataTypeButton);
179      this.Controls.Add(this.parameterTypeSelector);
180      this.Controls.Add(this.descriptionTextBox);
181      this.Controls.Add(this.dataTypeTextBox);
182      this.Controls.Add(this.nameTextBox);
183      this.Controls.Add(this.dataTypeLabel);
184      this.Controls.Add(this.descriptionLabel);
185      this.Controls.Add(this.nameLabel);
186      this.Controls.Add(this.cancelButton);
187      this.Controls.Add(this.okButton);
188      this.MaximizeBox = false;
189      this.MinimizeBox = false;
190      this.Name = "CreateParameterDialog";
191      this.ShowIcon = false;
192      this.ShowInTaskbar = false;
193      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
194      this.Text = "Create Parameter";
195      this.Load += new System.EventHandler(this.CreateParameterDialog_Load);
196      this.ResumeLayout(false);
197      this.PerformLayout();
198
199    }
200
201    #endregion
202
203    protected System.Windows.Forms.Button cancelButton;
204    protected System.Windows.Forms.Button okButton;
205    protected System.Windows.Forms.Label nameLabel;
206    protected System.Windows.Forms.TextBox nameTextBox;
207    protected System.Windows.Forms.Label descriptionLabel;
208    protected System.Windows.Forms.TextBox descriptionTextBox;
209    protected TypeSelector parameterTypeSelector;
210    protected System.Windows.Forms.Label dataTypeLabel;
211    protected System.Windows.Forms.TextBox dataTypeTextBox;
212    protected System.Windows.Forms.Button setDataTypeButton;
213    protected System.Windows.Forms.ToolTip toolTip;
214  }
215}
Note: See TracBrowser for help on using the repository browser.