#region License Information
/* HeuristicLab
* Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views {
partial class ValueChangeDialog {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing) {
if (components != null) components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
this.originalValueLabel = new System.Windows.Forms.Label();
this.oldValueTextBox = new System.Windows.Forms.TextBox();
this.newValueTextBox = new System.Windows.Forms.TextBox();
this.newValueLabel = new System.Windows.Forms.Label();
this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.variableNameLabel = new System.Windows.Forms.Label();
this.variableNamesCombo = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
this.SuspendLayout();
//
// originalValueLabel
//
this.originalValueLabel.AutoSize = true;
this.originalValueLabel.Location = new System.Drawing.Point(14, 15);
this.originalValueLabel.Name = "originalValueLabel";
this.originalValueLabel.Size = new System.Drawing.Size(72, 13);
this.originalValueLabel.TabIndex = 2;
this.originalValueLabel.Text = "Original Value";
//
// oldValueTextBox
//
this.oldValueTextBox.Location = new System.Drawing.Point(123, 12);
this.oldValueTextBox.Name = "oldValueTextBox";
this.oldValueTextBox.ReadOnly = true;
this.oldValueTextBox.Size = new System.Drawing.Size(131, 20);
this.oldValueTextBox.TabIndex = 3;
//
// newValueTextBox
//
this.newValueTextBox.Location = new System.Drawing.Point(123, 38);
this.newValueTextBox.Name = "newValueTextBox";
this.newValueTextBox.Size = new System.Drawing.Size(131, 20);
this.newValueTextBox.TabIndex = 0;
this.newValueTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
this.newValueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.newValueTextBox_Validating);
this.newValueTextBox.Validated += new System.EventHandler(this.newValueTextBox_Validated);
//
// newValueLabel
//
this.newValueLabel.AutoSize = true;
this.newValueLabel.Location = new System.Drawing.Point(14, 41);
this.newValueLabel.Name = "newValueLabel";
this.newValueLabel.Size = new System.Drawing.Size(59, 13);
this.newValueLabel.TabIndex = 5;
this.newValueLabel.Text = "New Value";
//
// errorProvider
//
this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
this.errorProvider.ContainerControl = this;
this.errorProvider.RightToLeft = true;
//
// variableNameLabel
//
this.variableNameLabel.AutoSize = true;
this.variableNameLabel.Location = new System.Drawing.Point(14, 74);
this.variableNameLabel.Name = "variableNameLabel";
this.variableNameLabel.Size = new System.Drawing.Size(76, 13);
this.variableNameLabel.TabIndex = 6;
this.variableNameLabel.Text = "Variable Name";
this.variableNameLabel.Visible = false;
//
// variableNamesCombo
//
this.variableNamesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.variableNamesCombo.FormattingEnabled = true;
this.variableNamesCombo.Location = new System.Drawing.Point(123, 71);
this.variableNamesCombo.Name = "variableNamesCombo";
this.variableNamesCombo.Size = new System.Drawing.Size(131, 21);
this.variableNamesCombo.TabIndex = 7;
this.variableNamesCombo.Visible = false;
this.variableNamesCombo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.childControl_KeyDown);
this.variableNamesCombo.Validating += new System.ComponentModel.CancelEventHandler(this.variableNamesCombo_Validating);
this.variableNamesCombo.Validated += new System.EventHandler(this.variableNamesCombo_Validated);
//
// ValueChangeDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(269, 103);
this.Controls.Add(this.variableNamesCombo);
this.Controls.Add(this.variableNameLabel);
this.Controls.Add(this.newValueLabel);
this.Controls.Add(this.newValueTextBox);
this.Controls.Add(this.oldValueTextBox);
this.Controls.Add(this.originalValueLabel);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ValueChangeDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Change Value or Weight";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ValueChangeDialog_KeyDown);
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label originalValueLabel;
private System.Windows.Forms.TextBox oldValueTextBox;
private System.Windows.Forms.TextBox newValueTextBox;
private System.Windows.Forms.Label newValueLabel;
private System.Windows.Forms.ErrorProvider errorProvider;
private System.Windows.Forms.ComboBox variableNamesCombo;
private System.Windows.Forms.Label variableNameLabel;
}
}