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 |
|
---|
22 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
23 | partial class VariableNodeEditDialog {
|
---|
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.variableNameLabel = new System.Windows.Forms.Label();
|
---|
54 | this.variableNamesCombo = new System.Windows.Forms.ComboBox();
|
---|
55 | this.okButton = new System.Windows.Forms.Button();
|
---|
56 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
57 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // originalValueLabel
|
---|
61 | //
|
---|
62 | this.originalValueLabel.AutoSize = true;
|
---|
63 | this.originalValueLabel.Location = new System.Drawing.Point(12, 48);
|
---|
64 | this.originalValueLabel.Name = "originalValueLabel";
|
---|
65 | this.originalValueLabel.Size = new System.Drawing.Size(72, 13);
|
---|
66 | this.originalValueLabel.TabIndex = 2;
|
---|
67 | this.originalValueLabel.Text = "Original Value";
|
---|
68 | //
|
---|
69 | // oldValueTextBox
|
---|
70 | //
|
---|
71 | this.oldValueTextBox.Location = new System.Drawing.Point(123, 45);
|
---|
72 | this.oldValueTextBox.Name = "oldValueTextBox";
|
---|
73 | this.oldValueTextBox.ReadOnly = true;
|
---|
74 | this.oldValueTextBox.Size = new System.Drawing.Size(131, 20);
|
---|
75 | this.oldValueTextBox.TabIndex = 3;
|
---|
76 | //
|
---|
77 | // newValueTextBox
|
---|
78 | //
|
---|
79 | this.newValueTextBox.Location = new System.Drawing.Point(123, 82);
|
---|
80 | this.newValueTextBox.Name = "newValueTextBox";
|
---|
81 | this.newValueTextBox.Size = new System.Drawing.Size(131, 20);
|
---|
82 | this.newValueTextBox.TabIndex = 0;
|
---|
83 | this.newValueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
|
---|
84 | this.newValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.newValueTextBox_Validating);
|
---|
85 | this.newValueTextBox.Validated += new System.EventHandler(this.newValueTextBox_Validated);
|
---|
86 | //
|
---|
87 | // newValueLabel
|
---|
88 | //
|
---|
89 | this.newValueLabel.AutoSize = true;
|
---|
90 | this.newValueLabel.Location = new System.Drawing.Point(12, 85);
|
---|
91 | this.newValueLabel.Name = "newValueLabel";
|
---|
92 | this.newValueLabel.Size = new System.Drawing.Size(59, 13);
|
---|
93 | this.newValueLabel.TabIndex = 5;
|
---|
94 | this.newValueLabel.Text = "New Value";
|
---|
95 | //
|
---|
96 | // errorProvider
|
---|
97 | //
|
---|
98 | this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
|
---|
99 | this.errorProvider.ContainerControl = this;
|
---|
100 | this.errorProvider.RightToLeft = true;
|
---|
101 | //
|
---|
102 | // variableNameLabel
|
---|
103 | //
|
---|
104 | this.variableNameLabel.AutoSize = true;
|
---|
105 | this.variableNameLabel.Location = new System.Drawing.Point(12, 12);
|
---|
106 | this.variableNameLabel.Name = "variableNameLabel";
|
---|
107 | this.variableNameLabel.Size = new System.Drawing.Size(76, 13);
|
---|
108 | this.variableNameLabel.TabIndex = 6;
|
---|
109 | this.variableNameLabel.Text = "Variable Name";
|
---|
110 | this.variableNameLabel.Visible = false;
|
---|
111 | //
|
---|
112 | // variableNamesCombo
|
---|
113 | //
|
---|
114 | this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
115 | this.variableNamesCombo.FormattingEnabled = true;
|
---|
116 | this.variableNamesCombo.Location = new System.Drawing.Point(123, 9);
|
---|
117 | this.variableNamesCombo.Name = "variableNamesCombo";
|
---|
118 | this.variableNamesCombo.Size = new System.Drawing.Size(131, 21);
|
---|
119 | this.variableNamesCombo.TabIndex = 7;
|
---|
120 | this.variableNamesCombo.Visible = false;
|
---|
121 | this.variableNamesCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
|
---|
122 | this.variableNamesCombo.Validating += new System.ComponentModel.CancelEventHandler(this.variableNamesCombo_Validating);
|
---|
123 | this.variableNamesCombo.Validated += new System.EventHandler(this.variableNamesCombo_Validated);
|
---|
124 | //
|
---|
125 | // okButton
|
---|
126 | //
|
---|
127 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
128 | this.okButton.Location = new System.Drawing.Point(15, 119);
|
---|
129 | this.okButton.Name = "okButton";
|
---|
130 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
131 | this.okButton.TabIndex = 8;
|
---|
132 | this.okButton.Text = "OK";
|
---|
133 | this.okButton.UseVisualStyleBackColor = true;
|
---|
134 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
135 | //
|
---|
136 | // cancelButton
|
---|
137 | //
|
---|
138 | this.cancelButton.CausesValidation = false;
|
---|
139 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
140 | this.cancelButton.Location = new System.Drawing.Point(179, 119);
|
---|
141 | this.cancelButton.Name = "cancelButton";
|
---|
142 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
143 | this.cancelButton.TabIndex = 9;
|
---|
144 | this.cancelButton.Text = "Cancel";
|
---|
145 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
146 | this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
|
---|
147 | //
|
---|
148 | // VariableNodeEditDialog
|
---|
149 | //
|
---|
150 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
151 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
152 | this.AutoSize = true;
|
---|
153 | this.CancelButton = this.cancelButton;
|
---|
154 | this.ClientSize = new System.Drawing.Size(269, 154);
|
---|
155 | this.ControlBox = false;
|
---|
156 | this.Controls.Add(this.cancelButton);
|
---|
157 | this.Controls.Add(this.okButton);
|
---|
158 | this.Controls.Add(this.variableNamesCombo);
|
---|
159 | this.Controls.Add(this.variableNameLabel);
|
---|
160 | this.Controls.Add(this.newValueLabel);
|
---|
161 | this.Controls.Add(this.newValueTextBox);
|
---|
162 | this.Controls.Add(this.oldValueTextBox);
|
---|
163 | this.Controls.Add(this.originalValueLabel);
|
---|
164 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
165 | this.MaximizeBox = false;
|
---|
166 | this.MinimizeBox = false;
|
---|
167 | this.Name = "VariableNodeEditDialog";
|
---|
168 | this.ShowIcon = false;
|
---|
169 | this.ShowInTaskbar = false;
|
---|
170 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
171 | this.Text = "Change Value or Weight";
|
---|
172 | this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ValueChangeDialog_KeyDown);
|
---|
173 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
174 | this.ResumeLayout(false);
|
---|
175 | this.PerformLayout();
|
---|
176 |
|
---|
177 | }
|
---|
178 |
|
---|
179 | #endregion
|
---|
180 |
|
---|
181 | private System.Windows.Forms.Label originalValueLabel;
|
---|
182 | private System.Windows.Forms.TextBox oldValueTextBox;
|
---|
183 | private System.Windows.Forms.Label newValueLabel;
|
---|
184 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
185 | private System.Windows.Forms.Label variableNameLabel;
|
---|
186 | private System.Windows.Forms.Button cancelButton;
|
---|
187 | private System.Windows.Forms.Button okButton;
|
---|
188 | public System.Windows.Forms.TextBox newValueTextBox;
|
---|
189 | public System.Windows.Forms.ComboBox variableNamesCombo;
|
---|
190 | }
|
---|
191 | }
|
---|