Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeNodeInsertDialog.Designer.cs @ 10269

Last change on this file since 10269 was 10269, checked in by bburlacu, 10 years ago

#1772: Added HeuristicLab.Problems.DataAnalysis.Symbolic and HeuristicLab.Problems.DataAnalysis.Symbolic.Views and integrated some modifications from the old branch.

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