[106] | 1 | namespace HeuristicLab.TestFunctions {
|
---|
| 2 | partial class TestFunctionInjectorView {
|
---|
| 3 | /// <summary>
|
---|
| 4 | /// Required designer variable.
|
---|
| 5 | /// </summary>
|
---|
| 6 | private System.ComponentModel.IContainer components = null;
|
---|
| 7 |
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Clean up any resources being used.
|
---|
| 10 | /// </summary>
|
---|
| 11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 12 | protected override void Dispose(bool disposing) {
|
---|
| 13 | if (disposing && (components != null)) {
|
---|
| 14 | components.Dispose();
|
---|
| 15 | }
|
---|
| 16 | base.Dispose(disposing);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | #region Component Designer generated code
|
---|
| 20 |
|
---|
| 21 | /// <summary>
|
---|
| 22 | /// Required method for Designer support - do not modify
|
---|
| 23 | /// the contents of this method with the code editor.
|
---|
| 24 | /// </summary>
|
---|
| 25 | private void InitializeComponent() {
|
---|
| 26 | this.DimensionLabel = new System.Windows.Forms.Label();
|
---|
| 27 | this.MinimumLabel = new System.Windows.Forms.Label();
|
---|
| 28 | this.maximumLabel = new System.Windows.Forms.Label();
|
---|
| 29 | this.maximizationCheckBox = new System.Windows.Forms.CheckBox();
|
---|
| 30 | this.dimensionTextBox = new System.Windows.Forms.TextBox();
|
---|
[109] | 31 | this.lowerBoundTextBox = new System.Windows.Forms.TextBox();
|
---|
| 32 | this.upperBoundTextBox = new System.Windows.Forms.TextBox();
|
---|
[106] | 33 | this.SuspendLayout();
|
---|
| 34 | //
|
---|
| 35 | // DimensionLabel
|
---|
| 36 | //
|
---|
| 37 | this.DimensionLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 38 | this.DimensionLabel.AutoSize = true;
|
---|
[109] | 39 | this.DimensionLabel.Location = new System.Drawing.Point(3, 29);
|
---|
[106] | 40 | this.DimensionLabel.Name = "DimensionLabel";
|
---|
| 41 | this.DimensionLabel.Size = new System.Drawing.Size(59, 13);
|
---|
| 42 | this.DimensionLabel.TabIndex = 1;
|
---|
| 43 | this.DimensionLabel.Text = "Dimension:";
|
---|
| 44 | //
|
---|
| 45 | // MinimumLabel
|
---|
| 46 | //
|
---|
| 47 | this.MinimumLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 48 | this.MinimumLabel.AutoSize = true;
|
---|
[109] | 49 | this.MinimumLabel.Location = new System.Drawing.Point(3, 55);
|
---|
[106] | 50 | this.MinimumLabel.Name = "MinimumLabel";
|
---|
[109] | 51 | this.MinimumLabel.Size = new System.Drawing.Size(73, 13);
|
---|
[106] | 52 | this.MinimumLabel.TabIndex = 3;
|
---|
[109] | 53 | this.MinimumLabel.Text = "Lower Bound:";
|
---|
[106] | 54 | //
|
---|
| 55 | // maximumLabel
|
---|
| 56 | //
|
---|
| 57 | this.maximumLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 58 | this.maximumLabel.AutoSize = true;
|
---|
[109] | 59 | this.maximumLabel.Location = new System.Drawing.Point(3, 81);
|
---|
[106] | 60 | this.maximumLabel.Name = "maximumLabel";
|
---|
[109] | 61 | this.maximumLabel.Size = new System.Drawing.Size(73, 13);
|
---|
[106] | 62 | this.maximumLabel.TabIndex = 5;
|
---|
[109] | 63 | this.maximumLabel.Text = "Upper Bound:";
|
---|
[106] | 64 | //
|
---|
| 65 | // maximizationCheckBox
|
---|
| 66 | //
|
---|
| 67 | this.maximizationCheckBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 68 | this.maximizationCheckBox.AutoSize = true;
|
---|
[109] | 69 | this.maximizationCheckBox.Location = new System.Drawing.Point(83, 3);
|
---|
[106] | 70 | this.maximizationCheckBox.Name = "maximizationCheckBox";
|
---|
| 71 | this.maximizationCheckBox.Size = new System.Drawing.Size(86, 17);
|
---|
| 72 | this.maximizationCheckBox.TabIndex = 0;
|
---|
| 73 | this.maximizationCheckBox.Text = "Maximization";
|
---|
| 74 | this.maximizationCheckBox.UseVisualStyleBackColor = true;
|
---|
| 75 | //
|
---|
| 76 | // dimensionTextBox
|
---|
| 77 | //
|
---|
| 78 | this.dimensionTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
[109] | 79 | this.dimensionTextBox.Location = new System.Drawing.Point(82, 26);
|
---|
[106] | 80 | this.dimensionTextBox.Name = "dimensionTextBox";
|
---|
| 81 | this.dimensionTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 82 | this.dimensionTextBox.TabIndex = 2;
|
---|
| 83 | //
|
---|
[109] | 84 | // lowerBoundTextBox
|
---|
[106] | 85 | //
|
---|
[109] | 86 | this.lowerBoundTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 87 | this.lowerBoundTextBox.Location = new System.Drawing.Point(82, 52);
|
---|
| 88 | this.lowerBoundTextBox.Name = "lowerBoundTextBox";
|
---|
| 89 | this.lowerBoundTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 90 | this.lowerBoundTextBox.TabIndex = 4;
|
---|
[106] | 91 | //
|
---|
[109] | 92 | // upperBoundTextBox
|
---|
[106] | 93 | //
|
---|
[109] | 94 | this.upperBoundTextBox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
| 95 | this.upperBoundTextBox.Location = new System.Drawing.Point(82, 78);
|
---|
| 96 | this.upperBoundTextBox.Name = "upperBoundTextBox";
|
---|
| 97 | this.upperBoundTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
| 98 | this.upperBoundTextBox.TabIndex = 6;
|
---|
[106] | 99 | //
|
---|
| 100 | // TestFunctionInjectorView
|
---|
| 101 | //
|
---|
| 102 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 103 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[109] | 104 | this.Controls.Add(this.upperBoundTextBox);
|
---|
| 105 | this.Controls.Add(this.lowerBoundTextBox);
|
---|
[106] | 106 | this.Controls.Add(this.dimensionTextBox);
|
---|
| 107 | this.Controls.Add(this.maximizationCheckBox);
|
---|
| 108 | this.Controls.Add(this.maximumLabel);
|
---|
| 109 | this.Controls.Add(this.MinimumLabel);
|
---|
| 110 | this.Controls.Add(this.DimensionLabel);
|
---|
| 111 | this.Name = "TestFunctionInjectorView";
|
---|
[109] | 112 | this.Size = new System.Drawing.Size(186, 101);
|
---|
[106] | 113 | this.ResumeLayout(false);
|
---|
| 114 | this.PerformLayout();
|
---|
| 115 |
|
---|
| 116 | }
|
---|
| 117 |
|
---|
| 118 | #endregion
|
---|
| 119 |
|
---|
| 120 | private System.Windows.Forms.Label DimensionLabel;
|
---|
| 121 | private System.Windows.Forms.Label MinimumLabel;
|
---|
| 122 | private System.Windows.Forms.Label maximumLabel;
|
---|
| 123 | private System.Windows.Forms.CheckBox maximizationCheckBox;
|
---|
| 124 | private System.Windows.Forms.TextBox dimensionTextBox;
|
---|
[109] | 125 | private System.Windows.Forms.TextBox lowerBoundTextBox;
|
---|
| 126 | private System.Windows.Forms.TextBox upperBoundTextBox;
|
---|
[106] | 127 | }
|
---|
| 128 | }
|
---|