#region License Information /* HeuristicLab * Copyright (C) 2002-2008 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.Constraints { partial class DoubleBoundedConstraintView { /// /// 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 && (components != null)) { components.Dispose(); } if (DoubleBoundedConstraint != null) DoubleBoundedConstraint.Changed -= new System.EventHandler(DoubleBoundedConstraint_Changed); base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.lbEnabledCheckBox = new System.Windows.Forms.CheckBox(); this.ubEnabledCheckBox = new System.Windows.Forms.CheckBox(); this.lbIncludedCheckBox = new System.Windows.Forms.CheckBox(); this.ubIncludedCheckBox = new System.Windows.Forms.CheckBox(); this.lbTextBox = new System.Windows.Forms.TextBox(); this.ubTextBox = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // lbEnabledCheckBox // this.lbEnabledCheckBox.AutoSize = true; this.lbEnabledCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.lbEnabledCheckBox.Location = new System.Drawing.Point(3, 6); this.lbEnabledCheckBox.Name = "lbEnabledCheckBox"; this.lbEnabledCheckBox.Size = new System.Drawing.Size(91, 17); this.lbEnabledCheckBox.TabIndex = 20; this.lbEnabledCheckBox.Text = "Lower bound:"; this.lbEnabledCheckBox.UseVisualStyleBackColor = true; this.lbEnabledCheckBox.CheckedChanged += new System.EventHandler(this.lbEnabledCheckBox_CheckedChanged); // // ubEnabledCheckBox // this.ubEnabledCheckBox.AutoSize = true; this.ubEnabledCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.ubEnabledCheckBox.Location = new System.Drawing.Point(3, 29); this.ubEnabledCheckBox.Name = "ubEnabledCheckBox"; this.ubEnabledCheckBox.Size = new System.Drawing.Size(91, 17); this.ubEnabledCheckBox.TabIndex = 21; this.ubEnabledCheckBox.Text = "Upper bound:"; this.ubEnabledCheckBox.UseVisualStyleBackColor = true; this.ubEnabledCheckBox.CheckedChanged += new System.EventHandler(this.ubEnabledCheckBox_CheckedChanged); // // lbIncludedCheckBox // this.lbIncludedCheckBox.AutoSize = true; this.lbIncludedCheckBox.Location = new System.Drawing.Point(189, 6); this.lbIncludedCheckBox.Name = "lbIncludedCheckBox"; this.lbIncludedCheckBox.Size = new System.Drawing.Size(73, 17); this.lbIncludedCheckBox.TabIndex = 22; this.lbIncludedCheckBox.Text = "Included?"; this.lbIncludedCheckBox.UseVisualStyleBackColor = true; this.lbIncludedCheckBox.CheckedChanged += new System.EventHandler(this.lbIncludedCheckBox_CheckedChanged); // // ubIncludedCheckBox // this.ubIncludedCheckBox.AutoSize = true; this.ubIncludedCheckBox.Location = new System.Drawing.Point(189, 29); this.ubIncludedCheckBox.Name = "ubIncludedCheckBox"; this.ubIncludedCheckBox.Size = new System.Drawing.Size(73, 17); this.ubIncludedCheckBox.TabIndex = 23; this.ubIncludedCheckBox.Text = "Included?"; this.ubIncludedCheckBox.UseVisualStyleBackColor = true; this.ubIncludedCheckBox.CheckedChanged += new System.EventHandler(this.ubIncludedCheckBox_CheckedChanged); // // lbTextBox // this.lbTextBox.Location = new System.Drawing.Point(100, 4); this.lbTextBox.Name = "lbTextBox"; this.lbTextBox.Size = new System.Drawing.Size(83, 20); this.lbTextBox.TabIndex = 24; this.lbTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.lbTextBox.Validated += new System.EventHandler(this.lbTextBox_Validated); this.lbTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.lbTextBox_Validating); // // ubTextBox // this.ubTextBox.Location = new System.Drawing.Point(100, 27); this.ubTextBox.Name = "ubTextBox"; this.ubTextBox.Size = new System.Drawing.Size(83, 20); this.ubTextBox.TabIndex = 25; this.ubTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.ubTextBox.Validated += new System.EventHandler(this.ubTextBox_Validated); this.ubTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.ubTextBox_Validating); // // DoubleBoundedConstraintView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.ubTextBox); this.Controls.Add(this.lbTextBox); this.Controls.Add(this.ubIncludedCheckBox); this.Controls.Add(this.lbIncludedCheckBox); this.Controls.Add(this.ubEnabledCheckBox); this.Controls.Add(this.lbEnabledCheckBox); this.Name = "DoubleBoundedConstraintView"; this.Size = new System.Drawing.Size(263, 51); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.CheckBox lbEnabledCheckBox; private System.Windows.Forms.CheckBox ubEnabledCheckBox; private System.Windows.Forms.CheckBox lbIncludedCheckBox; private System.Windows.Forms.CheckBox ubIncludedCheckBox; private System.Windows.Forms.TextBox lbTextBox; private System.Windows.Forms.TextBox ubTextBox; } }