Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifier/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/SymbolicExpressionTreeNodeInsertDialog.Designer.cs @ 8388

Last change on this file since 8388 was 8388, checked in by bburlacu, 12 years ago

#1763: Rebranched the TreeSimplifier project to fix merging errors. Added functionality to insert symbols into the tree, fixed bug when deleting tree nodes.

File size: 7.4 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
2  partial class InsertNodeDialog {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.nodeSymbolLabel = new System.Windows.Forms.Label();
28      this.allowedSymbolsCombo = new System.Windows.Forms.ComboBox();
29      this.variableWeightLabel = new System.Windows.Forms.Label();
30      this.variableNameLabel = new System.Windows.Forms.Label();
31      this.variableNamesCombo = new System.Windows.Forms.ComboBox();
32      this.variableWeightTextBox = new System.Windows.Forms.TextBox();
33      this.constantValueTextBox = new System.Windows.Forms.TextBox();
34      this.constantValueLabel = new System.Windows.Forms.Label();
35      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
36      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
37      this.SuspendLayout();
38      //
39      // nodeSymbolLabel
40      //
41      this.nodeSymbolLabel.AutoSize = true;
42      this.nodeSymbolLabel.Location = new System.Drawing.Point(13, 13);
43      this.nodeSymbolLabel.Name = "nodeSymbolLabel";
44      this.nodeSymbolLabel.Size = new System.Drawing.Size(41, 13);
45      this.nodeSymbolLabel.TabIndex = 0;
46      this.nodeSymbolLabel.Text = "Symbol";
47      //
48      // allowedSymbolsCombo
49      //
50      this.allowedSymbolsCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
51      this.allowedSymbolsCombo.FormattingEnabled = true;
52      this.allowedSymbolsCombo.Location = new System.Drawing.Point(120, 10);
53      this.allowedSymbolsCombo.Name = "allowedSymbolsCombo";
54      this.allowedSymbolsCombo.Size = new System.Drawing.Size(108, 21);
55      this.allowedSymbolsCombo.TabIndex = 1;
56      this.allowedSymbolsCombo.SelectedIndexChanged += new System.EventHandler(this.allowedSymbolsCombo_SelectedIndexChanged);
57      this.allowedSymbolsCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
58      //
59      // variableWeightLabel
60      //
61      this.variableWeightLabel.AutoSize = true;
62      this.variableWeightLabel.Location = new System.Drawing.Point(13, 44);
63      this.variableWeightLabel.Name = "variableWeightLabel";
64      this.variableWeightLabel.Size = new System.Drawing.Size(41, 13);
65      this.variableWeightLabel.TabIndex = 2;
66      this.variableWeightLabel.Text = "Weight";
67      this.variableWeightLabel.Visible = false;
68      //
69      // variableNameLabel
70      //
71      this.variableNameLabel.AutoSize = true;
72      this.variableNameLabel.Location = new System.Drawing.Point(13, 77);
73      this.variableNameLabel.Name = "variableNameLabel";
74      this.variableNameLabel.Size = new System.Drawing.Size(35, 13);
75      this.variableNameLabel.TabIndex = 3;
76      this.variableNameLabel.Text = "Name";
77      this.variableNameLabel.Visible = false;
78      //
79      // variableNamesCombo
80      //
81      this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
82      this.variableNamesCombo.FormattingEnabled = true;
83      this.variableNamesCombo.Location = new System.Drawing.Point(120, 74);
84      this.variableNamesCombo.Name = "variableNamesCombo";
85      this.variableNamesCombo.Size = new System.Drawing.Size(108, 21);
86      this.variableNamesCombo.TabIndex = 5;
87      this.variableNamesCombo.Visible = false;
88      //
89      // variableWeightTextBox
90      //
91      this.variableWeightTextBox.Location = new System.Drawing.Point(120, 41);
92      this.variableWeightTextBox.Name = "variableWeightTextBox";
93      this.variableWeightTextBox.Size = new System.Drawing.Size(108, 20);
94      this.variableWeightTextBox.TabIndex = 6;
95      this.variableWeightTextBox.Text = "0.0";
96      this.variableWeightTextBox.Visible = false;
97      this.variableWeightTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.variableWeightTextBox_Validating);
98      //
99      // constantValueTextBox
100      //
101      this.constantValueTextBox.Location = new System.Drawing.Point(120, 41);
102      this.constantValueTextBox.Name = "constantValueTextBox";
103      this.constantValueTextBox.Size = new System.Drawing.Size(108, 20);
104      this.constantValueTextBox.TabIndex = 7;
105      this.constantValueTextBox.Text = "0.0";
106      this.constantValueTextBox.Visible = false;
107      this.constantValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.constantValueTextBox_Validating);
108      //
109      // constantValueLabel
110      //
111      this.constantValueLabel.AutoSize = true;
112      this.constantValueLabel.Location = new System.Drawing.Point(13, 44);
113      this.constantValueLabel.Name = "constantValueLabel";
114      this.constantValueLabel.Size = new System.Drawing.Size(34, 13);
115      this.constantValueLabel.TabIndex = 8;
116      this.constantValueLabel.Text = "Value";
117      this.constantValueLabel.Visible = false;
118      //
119      // errorProvider
120      //
121      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
122      this.errorProvider.ContainerControl = this;
123      this.errorProvider.RightToLeft = true;
124      //
125      // InsertNodeDialog
126      //
127      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
128      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
129      this.ClientSize = new System.Drawing.Size(240, 107);
130      this.Controls.Add(this.constantValueLabel);
131      this.Controls.Add(this.constantValueTextBox);
132      this.Controls.Add(this.variableWeightTextBox);
133      this.Controls.Add(this.variableNamesCombo);
134      this.Controls.Add(this.variableNameLabel);
135      this.Controls.Add(this.variableWeightLabel);
136      this.Controls.Add(this.allowedSymbolsCombo);
137      this.Controls.Add(this.nodeSymbolLabel);
138      this.Name = "InsertNodeDialog";
139      this.Text = "SymbolicExpressionTreeNodeInsertDialog";
140      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.insertNodeDialog_KeyDown);
141      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
142      this.ResumeLayout(false);
143      this.PerformLayout();
144
145    }
146
147    #endregion
148
149    private System.Windows.Forms.Label nodeSymbolLabel;
150    private System.Windows.Forms.ComboBox allowedSymbolsCombo;
151    private System.Windows.Forms.Label variableWeightLabel;
152    private System.Windows.Forms.Label variableNameLabel;
153    private System.Windows.Forms.Label constantValueLabel;
154    private System.Windows.Forms.ErrorProvider errorProvider;
155    internal System.Windows.Forms.TextBox constantValueTextBox;
156    internal System.Windows.Forms.TextBox variableWeightTextBox;
157    internal System.Windows.Forms.ComboBox variableNamesCombo;
158  }
159}
Note: See TracBrowser for help on using the repository browser.