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