Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core.Views/3.3/CreateParameterDialog.Designer.cs @ 17074

Last change on this file since 17074 was 15584, checked in by swagner, 6 years ago

#2640: Updated year of copyrights in license headers on stable

File size: 7.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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 (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form 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.cancelButton = new System.Windows.Forms.Button();
48      this.okButton = new System.Windows.Forms.Button();
49      this.nameLabel = new System.Windows.Forms.Label();
50      this.nameTextBox = new System.Windows.Forms.TextBox();
51      this.descriptionLabel = new System.Windows.Forms.Label();
52      this.descriptionTextBox = new System.Windows.Forms.TextBox();
53      this.parameterTypeSelector = new HeuristicLab.Core.Views.TypeSelector();
54      this.SuspendLayout();
55      //
56      // cancelButton
57      //
58      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
59      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
60      this.cancelButton.Location = new System.Drawing.Point(455, 527);
61      this.cancelButton.Name = "cancelButton";
62      this.cancelButton.Size = new System.Drawing.Size(75, 23);
63      this.cancelButton.TabIndex = 6;
64      this.cancelButton.Text = "&Cancel";
65      this.cancelButton.UseVisualStyleBackColor = true;
66      //
67      // okButton
68      //
69      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
70      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
71      this.okButton.Enabled = false;
72      this.okButton.Location = new System.Drawing.Point(374, 527);
73      this.okButton.Name = "okButton";
74      this.okButton.Size = new System.Drawing.Size(75, 23);
75      this.okButton.TabIndex = 5;
76      this.okButton.Text = "&OK";
77      this.okButton.UseVisualStyleBackColor = true;
78      //
79      // nameLabel
80      //
81      this.nameLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
82      this.nameLabel.AutoSize = true;
83      this.nameLabel.Location = new System.Drawing.Point(9, 396);
84      this.nameLabel.Name = "nameLabel";
85      this.nameLabel.Size = new System.Drawing.Size(38, 13);
86      this.nameLabel.TabIndex = 1;
87      this.nameLabel.Text = "&Name:";
88      //
89      // nameTextBox
90      //
91      this.nameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
92                  | System.Windows.Forms.AnchorStyles.Right)));
93      this.nameTextBox.Location = new System.Drawing.Point(78, 393);
94      this.nameTextBox.Name = "nameTextBox";
95      this.nameTextBox.Size = new System.Drawing.Size(452, 20);
96      this.nameTextBox.TabIndex = 2;
97      //
98      // descriptionLabel
99      //
100      this.descriptionLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
101      this.descriptionLabel.AutoSize = true;
102      this.descriptionLabel.Location = new System.Drawing.Point(9, 422);
103      this.descriptionLabel.Name = "descriptionLabel";
104      this.descriptionLabel.Size = new System.Drawing.Size(63, 13);
105      this.descriptionLabel.TabIndex = 3;
106      this.descriptionLabel.Text = "&Description:";
107      //
108      // descriptionTextBox
109      //
110      this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.descriptionTextBox.Location = new System.Drawing.Point(78, 419);
113      this.descriptionTextBox.Multiline = true;
114      this.descriptionTextBox.Name = "descriptionTextBox";
115      this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
116      this.descriptionTextBox.Size = new System.Drawing.Size(452, 102);
117      this.descriptionTextBox.TabIndex = 4;
118      //
119      // parameterTypeSelector
120      //
121      this.parameterTypeSelector.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
122                  | System.Windows.Forms.AnchorStyles.Left)
123                  | System.Windows.Forms.AnchorStyles.Right)));
124      this.parameterTypeSelector.Caption = "Available Parameters";
125      this.parameterTypeSelector.Location = new System.Drawing.Point(12, 12);
126      this.parameterTypeSelector.Name = "parameterTypeSelector";
127      this.parameterTypeSelector.Size = new System.Drawing.Size(518, 375);
128      this.parameterTypeSelector.TabIndex = 0;
129      this.parameterTypeSelector.SelectedTypeChanged += new System.EventHandler(this.parameterTypeSelector_SelectedTypeChanged);
130      //
131      // CreateParameterDialog
132      //
133      this.AcceptButton = this.okButton;
134      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
135      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
136      this.CancelButton = this.cancelButton;
137      this.ClientSize = new System.Drawing.Size(542, 562);
138      this.Controls.Add(this.parameterTypeSelector);
139      this.Controls.Add(this.descriptionTextBox);
140      this.Controls.Add(this.nameTextBox);
141      this.Controls.Add(this.descriptionLabel);
142      this.Controls.Add(this.nameLabel);
143      this.Controls.Add(this.cancelButton);
144      this.Controls.Add(this.okButton);
145      this.MaximizeBox = false;
146      this.MinimizeBox = false;
147      this.Name = "CreateParameterDialog";
148      this.ShowIcon = false;
149      this.ShowInTaskbar = false;
150      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
151      this.Text = "Create Parameter";
152      this.ResumeLayout(false);
153      this.PerformLayout();
154
155    }
156
157    #endregion
158
159    protected System.Windows.Forms.Button cancelButton;
160    protected System.Windows.Forms.Button okButton;
161    protected System.Windows.Forms.Label nameLabel;
162    protected System.Windows.Forms.TextBox nameTextBox;
163    protected System.Windows.Forms.Label descriptionLabel;
164    protected System.Windows.Forms.TextBox descriptionTextBox;
165    protected TypeSelector parameterTypeSelector;
166  }
167}
Note: See TracBrowser for help on using the repository browser.