Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeNodeInsertDialog.Designer.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 10.2 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.Problems.DataAnalysis.Symbolic.Views {
23  partial class InsertNodeDialog {
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 && (components != null)) {
35        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.components = new System.ComponentModel.Container();
48      this.nodeSymbolLabel = new System.Windows.Forms.Label();
49      this.allowedSymbolsCombo = new System.Windows.Forms.ComboBox();
50      this.variableWeightLabel = new System.Windows.Forms.Label();
51      this.variableNameLabel = new System.Windows.Forms.Label();
52      this.variableNamesCombo = new System.Windows.Forms.ComboBox();
53      this.variableWeightTextBox = new System.Windows.Forms.TextBox();
54      this.constantValueTextBox = new System.Windows.Forms.TextBox();
55      this.constantValueLabel = new System.Windows.Forms.Label();
56      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
57      this.okButton = new System.Windows.Forms.Button();
58      this.cancelButton = new System.Windows.Forms.Button();
59      this.variableNameTextBox = new System.Windows.Forms.TextBox();
60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
61      this.SuspendLayout();
62      //
63      // nodeSymbolLabel
64      //
65      this.nodeSymbolLabel.AutoSize = true;
66      this.nodeSymbolLabel.Location = new System.Drawing.Point(19, 13);
67      this.nodeSymbolLabel.Name = "nodeSymbolLabel";
68      this.nodeSymbolLabel.Size = new System.Drawing.Size(41, 13);
69      this.nodeSymbolLabel.TabIndex = 0;
70      this.nodeSymbolLabel.Text = "Symbol";
71      //
72      // allowedSymbolsCombo
73      //
74      this.allowedSymbolsCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
75      this.allowedSymbolsCombo.FormattingEnabled = true;
76      this.allowedSymbolsCombo.Location = new System.Drawing.Point(101, 10);
77      this.allowedSymbolsCombo.Name = "allowedSymbolsCombo";
78      this.allowedSymbolsCombo.Size = new System.Drawing.Size(127, 21);
79      this.allowedSymbolsCombo.TabIndex = 1;
80      this.allowedSymbolsCombo.SelectedIndexChanged += new System.EventHandler(this.allowedSymbolsCombo_SelectedIndexChanged);
81      this.allowedSymbolsCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
82      //
83      // variableWeightLabel
84      //
85      this.variableWeightLabel.AutoSize = true;
86      this.variableWeightLabel.Location = new System.Drawing.Point(19, 40);
87      this.variableWeightLabel.Name = "variableWeightLabel";
88      this.variableWeightLabel.Size = new System.Drawing.Size(41, 13);
89      this.variableWeightLabel.TabIndex = 2;
90      this.variableWeightLabel.Text = "Weight";
91      this.variableWeightLabel.Visible = false;
92      //
93      // variableNameLabel
94      //
95      this.variableNameLabel.AutoSize = true;
96      this.variableNameLabel.Location = new System.Drawing.Point(19, 66);
97      this.variableNameLabel.Name = "variableNameLabel";
98      this.variableNameLabel.Size = new System.Drawing.Size(35, 13);
99      this.variableNameLabel.TabIndex = 3;
100      this.variableNameLabel.Text = "Name";
101      this.variableNameLabel.Visible = false;
102      //
103      // variableNamesCombo
104      //
105      this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
106      this.variableNamesCombo.FormattingEnabled = true;
107      this.variableNamesCombo.Location = new System.Drawing.Point(101, 63);
108      this.variableNamesCombo.Name = "variableNamesCombo";
109      this.variableNamesCombo.Size = new System.Drawing.Size(127, 21);
110      this.variableNamesCombo.TabIndex = 5;
111      this.variableNamesCombo.Visible = false;
112      //
113      // variableWeightTextBox
114      //
115      this.variableWeightTextBox.Location = new System.Drawing.Point(101, 37);
116      this.variableWeightTextBox.Name = "variableWeightTextBox";
117      this.variableWeightTextBox.Size = new System.Drawing.Size(127, 20);
118      this.variableWeightTextBox.TabIndex = 6;
119      this.variableWeightTextBox.Text = "0.0";
120      this.variableWeightTextBox.Visible = false;
121      this.variableWeightTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.variableWeightTextBox_Validating);
122      //
123      // constantValueTextBox
124      //
125      this.constantValueTextBox.Location = new System.Drawing.Point(101, 37);
126      this.constantValueTextBox.Name = "constantValueTextBox";
127      this.constantValueTextBox.Size = new System.Drawing.Size(127, 20);
128      this.constantValueTextBox.TabIndex = 7;
129      this.constantValueTextBox.Text = "0.0";
130      this.constantValueTextBox.Visible = false;
131      this.constantValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.constantValueTextBox_Validating);
132      //
133      // constantValueLabel
134      //
135      this.constantValueLabel.AutoSize = true;
136      this.constantValueLabel.Location = new System.Drawing.Point(19, 40);
137      this.constantValueLabel.Name = "constantValueLabel";
138      this.constantValueLabel.Size = new System.Drawing.Size(34, 13);
139      this.constantValueLabel.TabIndex = 8;
140      this.constantValueLabel.Text = "Value";
141      this.constantValueLabel.Visible = false;
142      //
143      // errorProvider
144      //
145      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
146      this.errorProvider.ContainerControl = this;
147      this.errorProvider.RightToLeft = true;
148      //
149      // okButton
150      //
151      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
152      this.okButton.Location = new System.Drawing.Point(72, 98);
153      this.okButton.Name = "okButton";
154      this.okButton.Size = new System.Drawing.Size(75, 23);
155      this.okButton.TabIndex = 9;
156      this.okButton.Text = "OK";
157      this.okButton.UseVisualStyleBackColor = true;
158      this.okButton.Click += new System.EventHandler(this.okButton_Click);
159      //
160      // cancelButton
161      //
162      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
163      this.cancelButton.Location = new System.Drawing.Point(153, 98);
164      this.cancelButton.Name = "cancelButton";
165      this.cancelButton.Size = new System.Drawing.Size(75, 23);
166      this.cancelButton.TabIndex = 10;
167      this.cancelButton.Text = "Cancel";
168      this.cancelButton.UseVisualStyleBackColor = true;
169      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
170      //
171      // variableNameTextBox
172      //
173      this.variableNameTextBox.Location = new System.Drawing.Point(101, 63);
174      this.variableNameTextBox.Name = "variableNameTextBox";
175      this.variableNameTextBox.Size = new System.Drawing.Size(127, 20);
176      this.variableNameTextBox.TabIndex = 11;
177      this.variableNameTextBox.Visible = false;
178      //
179      // InsertNodeDialog
180      //
181      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
182      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
183      this.CancelButton = this.cancelButton;
184      this.ClientSize = new System.Drawing.Size(241, 133);
185      this.ControlBox = false;
186      this.Controls.Add(this.variableNameTextBox);
187      this.Controls.Add(this.cancelButton);
188      this.Controls.Add(this.okButton);
189      this.Controls.Add(this.constantValueLabel);
190      this.Controls.Add(this.constantValueTextBox);
191      this.Controls.Add(this.variableWeightTextBox);
192      this.Controls.Add(this.variableNamesCombo);
193      this.Controls.Add(this.variableNameLabel);
194      this.Controls.Add(this.variableWeightLabel);
195      this.Controls.Add(this.allowedSymbolsCombo);
196      this.Controls.Add(this.nodeSymbolLabel);
197      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
198      this.Name = "InsertNodeDialog";
199      this.Text = "SymbolicExpressionTreeNodeInsertDialog";
200      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.insertNodeDialog_KeyDown);
201      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
202      this.ResumeLayout(false);
203      this.PerformLayout();
204
205    }
206
207    #endregion
208
209    private System.Windows.Forms.Label nodeSymbolLabel;
210    private System.Windows.Forms.ComboBox allowedSymbolsCombo;
211    private System.Windows.Forms.Label variableWeightLabel;
212    private System.Windows.Forms.Label variableNameLabel;
213    private System.Windows.Forms.Label constantValueLabel;
214    private System.Windows.Forms.ErrorProvider errorProvider;
215    internal System.Windows.Forms.TextBox constantValueTextBox;
216    internal System.Windows.Forms.TextBox variableWeightTextBox;
217    internal System.Windows.Forms.ComboBox variableNamesCombo;
218    private System.Windows.Forms.Button cancelButton;
219    private System.Windows.Forms.Button okButton;
220    private System.Windows.Forms.TextBox variableNameTextBox;
221  }
222}
Note: See TracBrowser for help on using the repository browser.