Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifier/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SymbolicExpressionTreeNodeChangeValueDialog.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: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.Encodings.SymbolicExpressionTreeEncoding.Views {
23  partial class ValueChangeDialog {
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.components = new System.ComponentModel.Container();
48      this.originalValueLabel = new System.Windows.Forms.Label();
49      this.originalValueTextBox = new System.Windows.Forms.TextBox();
50      this.newValueTextBox = new System.Windows.Forms.TextBox();
51      this.newValueLabel = new System.Windows.Forms.Label();
52      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.SuspendLayout();
55      //
56      // originalValueLabel
57      //
58      this.originalValueLabel.AutoSize = true;
59      this.originalValueLabel.Location = new System.Drawing.Point(14, 15);
60      this.originalValueLabel.Name = "originalValueLabel";
61      this.originalValueLabel.Size = new System.Drawing.Size(72, 13);
62      this.originalValueLabel.TabIndex = 2;
63      this.originalValueLabel.Text = "Original Value";
64      //
65      // originalValueTextBox
66      //
67      this.originalValueTextBox.Location = new System.Drawing.Point(91, 12);
68      this.originalValueTextBox.Name = "originalValueTextBox";
69      this.originalValueTextBox.ReadOnly = true;
70      this.originalValueTextBox.Size = new System.Drawing.Size(100, 20);
71      this.originalValueTextBox.TabIndex = 3;
72      //
73      // newValueTextBox
74      //
75      this.newValueTextBox.Location = new System.Drawing.Point(91, 38);
76      this.newValueTextBox.Name = "newValueTextBox";
77      this.newValueTextBox.Size = new System.Drawing.Size(100, 20);
78      this.newValueTextBox.TabIndex = 0;
79      this.newValueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.newValueTextBox_KeyDown);
80      this.newValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.newValueTextBox_Validating);
81      this.newValueTextBox.Validated += new System.EventHandler(this.newValueTextBox_Validated);
82      //
83      // newValueLabel
84      //
85      this.newValueLabel.AutoSize = true;
86      this.newValueLabel.Location = new System.Drawing.Point(14, 41);
87      this.newValueLabel.Name = "newValueLabel";
88      this.newValueLabel.Size = new System.Drawing.Size(59, 13);
89      this.newValueLabel.TabIndex = 5;
90      this.newValueLabel.Text = "New Value";
91      //
92      // errorProvider
93      //
94      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
95      this.errorProvider.ContainerControl = this;
96      this.errorProvider.RightToLeft = true;
97      //
98      // ValueChangeDialog
99      //
100      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
101      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
102      this.AutoSize = true;
103      this.ClientSize = new System.Drawing.Size(209, 71);
104      this.Controls.Add(this.newValueLabel);
105      this.Controls.Add(this.newValueTextBox);
106      this.Controls.Add(this.originalValueTextBox);
107      this.Controls.Add(this.originalValueLabel);
108      this.MaximizeBox = false;
109      this.MinimizeBox = false;
110      this.Name = "ValueChangeDialog";
111      this.ShowIcon = false;
112      this.ShowInTaskbar = false;
113      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
114      this.Text = "Change Value or Weight";
115      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
116      this.ResumeLayout(false);
117      this.PerformLayout();
118
119    }
120
121    #endregion
122
123    private System.Windows.Forms.Label originalValueLabel;
124    private System.Windows.Forms.TextBox originalValueTextBox;
125    private System.Windows.Forms.TextBox newValueTextBox;
126    private System.Windows.Forms.Label newValueLabel;
127    private System.Windows.Forms.ErrorProvider errorProvider;
128  }
129}
Note: See TracBrowser for help on using the repository browser.