Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/TreeEditDialogs/SymbolicExpressionTreeConstantNodeEditDialog.Designer.cs @ 17434

Last change on this file since 17434 was 17434, checked in by bburlacu, 4 years ago

#1772: Merge trunk changes and fix all errors and compilation warnings.

File size: 6.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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 ConstantNodeEditDialog {
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.oldValueTextBox = 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      this.okButton = new System.Windows.Forms.Button();
54      this.cancelButton = new System.Windows.Forms.Button();
55      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
56      this.SuspendLayout();
57      //
58      // originalValueLabel
59      //
60      this.originalValueLabel.AutoSize = true;
61      this.originalValueLabel.Location = new System.Drawing.Point(12, 9);
62      this.originalValueLabel.Name = "originalValueLabel";
63      this.originalValueLabel.Size = new System.Drawing.Size(72, 13);
64      this.originalValueLabel.TabIndex = 2;
65      this.originalValueLabel.Text = "Original Value";
66      //
67      // oldValueTextBox
68      //
69      this.oldValueTextBox.Location = new System.Drawing.Point(106, 6);
70      this.oldValueTextBox.Name = "oldValueTextBox";
71      this.oldValueTextBox.ReadOnly = true;
72      this.oldValueTextBox.Size = new System.Drawing.Size(131, 20);
73      this.oldValueTextBox.TabIndex = 3;
74      //
75      // newValueTextBox
76      //
77      this.newValueTextBox.Location = new System.Drawing.Point(106, 32);
78      this.newValueTextBox.Name = "newValueTextBox";
79      this.newValueTextBox.Size = new System.Drawing.Size(131, 20);
80      this.newValueTextBox.TabIndex = 0;
81      this.newValueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
82      this.newValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.newValueTextBox_Validating);
83      this.newValueTextBox.Validated += new System.EventHandler(this.newValueTextBox_Validated);
84      //
85      // newValueLabel
86      //
87      this.newValueLabel.AutoSize = true;
88      this.newValueLabel.Location = new System.Drawing.Point(12, 35);
89      this.newValueLabel.Name = "newValueLabel";
90      this.newValueLabel.Size = new System.Drawing.Size(59, 13);
91      this.newValueLabel.TabIndex = 5;
92      this.newValueLabel.Text = "New Value";
93      //
94      // errorProvider
95      //
96      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
97      this.errorProvider.ContainerControl = this;
98      this.errorProvider.RightToLeft = true;
99      //
100      // okButton
101      //
102      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
103      this.okButton.Location = new System.Drawing.Point(81, 66);
104      this.okButton.Name = "okButton";
105      this.okButton.Size = new System.Drawing.Size(75, 23);
106      this.okButton.TabIndex = 8;
107      this.okButton.Text = "OK";
108      this.okButton.UseVisualStyleBackColor = true;
109      this.okButton.Click += new System.EventHandler(this.okButton_Click);
110      //
111      // cancelButton
112      //
113      this.cancelButton.CausesValidation = false;
114      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
115      this.cancelButton.Location = new System.Drawing.Point(162, 66);
116      this.cancelButton.Name = "cancelButton";
117      this.cancelButton.Size = new System.Drawing.Size(75, 23);
118      this.cancelButton.TabIndex = 9;
119      this.cancelButton.Text = "Cancel";
120      this.cancelButton.UseVisualStyleBackColor = true;
121      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
122      //
123      // ConstantNodeEditDialog
124      //
125      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
126      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
127      this.AutoSize = true;
128      this.CancelButton = this.cancelButton;
129      this.ClientSize = new System.Drawing.Size(248, 101);
130      this.ControlBox = false;
131      this.Controls.Add(this.cancelButton);
132      this.Controls.Add(this.okButton);
133      this.Controls.Add(this.newValueLabel);
134      this.Controls.Add(this.newValueTextBox);
135      this.Controls.Add(this.oldValueTextBox);
136      this.Controls.Add(this.originalValueLabel);
137      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
138      this.MaximizeBox = false;
139      this.MinimizeBox = false;
140      this.Name = "ConstantNodeEditDialog";
141      this.ShowIcon = false;
142      this.ShowInTaskbar = false;
143      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
144      this.Text = "Edit constant value";
145      this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConstantNodeEditDialog_KeyDown);
146      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
147      this.ResumeLayout(false);
148      this.PerformLayout();
149
150    }
151
152    #endregion
153
154    private System.Windows.Forms.Label originalValueLabel;
155    private System.Windows.Forms.TextBox oldValueTextBox;
156    private System.Windows.Forms.Label newValueLabel;
157    private System.Windows.Forms.ErrorProvider errorProvider;
158    private System.Windows.Forms.Button cancelButton;
159    private System.Windows.Forms.Button okButton;
160    public System.Windows.Forms.TextBox newValueTextBox;
161  }
162}
Note: See TracBrowser for help on using the repository browser.