[2852] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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.Parameters.Views {
|
---|
| 23 | partial class ConstrainedValueParameterView<T> {
|
---|
| 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 Component 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.valueGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[4332] | 48 | this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
|
---|
[3281] | 49 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[2852] | 50 | this.valueComboBox = new System.Windows.Forms.ComboBox();
|
---|
| 51 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 52 | this.valueGroupBox.SuspendLayout();
|
---|
| 53 | this.SuspendLayout();
|
---|
| 54 | //
|
---|
| 55 | // dataTypeTextBox
|
---|
| 56 | //
|
---|
[2917] | 57 | this.dataTypeTextBox.Location = new System.Drawing.Point(80, 52);
|
---|
[2852] | 58 | this.dataTypeTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
| 59 | //
|
---|
| 60 | // nameTextBox
|
---|
| 61 | //
|
---|
| 62 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 63 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 64 | this.nameTextBox.Location = new System.Drawing.Point(80, 0);
|
---|
| 65 | this.nameTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
| 66 | //
|
---|
| 67 | // descriptionTextBox
|
---|
| 68 | //
|
---|
| 69 | this.descriptionTextBox.Location = new System.Drawing.Point(80, 26);
|
---|
[2917] | 70 | this.descriptionTextBox.Size = new System.Drawing.Size(306, 20);
|
---|
[2852] | 71 | //
|
---|
| 72 | // valueGroupBox
|
---|
| 73 | //
|
---|
| 74 | this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 75 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 76 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 77 | this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
|
---|
[2852] | 78 | this.valueGroupBox.Controls.Add(this.viewHost);
|
---|
| 79 | this.valueGroupBox.Controls.Add(this.valueComboBox);
|
---|
[2917] | 80 | this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
|
---|
[2852] | 81 | this.valueGroupBox.Name = "valueGroupBox";
|
---|
[2917] | 82 | this.valueGroupBox.Size = new System.Drawing.Size(386, 237);
|
---|
[2852] | 83 | this.valueGroupBox.TabIndex = 6;
|
---|
| 84 | this.valueGroupBox.TabStop = false;
|
---|
[2924] | 85 | this.valueGroupBox.Text = "Value";
|
---|
[2852] | 86 | //
|
---|
[4332] | 87 | // showInRunCheckBox
|
---|
| 88 | //
|
---|
| 89 | this.showInRunCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 90 | this.showInRunCheckBox.AutoSize = true;
|
---|
| 91 | this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
|
---|
| 92 | this.showInRunCheckBox.Checked = true;
|
---|
| 93 | this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
|
---|
| 94 | this.showInRunCheckBox.Location = new System.Drawing.Point(290, 21);
|
---|
| 95 | this.showInRunCheckBox.Name = "showInRunCheckBox";
|
---|
| 96 | this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
|
---|
| 97 | this.showInRunCheckBox.TabIndex = 1;
|
---|
| 98 | this.showInRunCheckBox.Text = "&Show in Run:";
|
---|
| 99 | this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
|
---|
| 100 | this.showInRunCheckBox.UseVisualStyleBackColor = true;
|
---|
| 101 | this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
|
---|
| 102 | //
|
---|
[2852] | 103 | // viewHost
|
---|
| 104 | //
|
---|
| 105 | this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 106 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 107 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[4332] | 108 | this.viewHost.Caption = "View";
|
---|
[2852] | 109 | this.viewHost.Content = null;
|
---|
| 110 | this.viewHost.Location = new System.Drawing.Point(6, 46);
|
---|
| 111 | this.viewHost.Name = "viewHost";
|
---|
[4332] | 112 | this.viewHost.ReadOnly = false;
|
---|
[2917] | 113 | this.viewHost.Size = new System.Drawing.Size(374, 185);
|
---|
[4332] | 114 | this.viewHost.TabIndex = 2;
|
---|
[2852] | 115 | this.viewHost.ViewType = null;
|
---|
| 116 | //
|
---|
| 117 | // valueComboBox
|
---|
| 118 | //
|
---|
| 119 | this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 120 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 121 | this.valueComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
---|
| 122 | this.valueComboBox.FormattingEnabled = true;
|
---|
| 123 | this.valueComboBox.Location = new System.Drawing.Point(6, 19);
|
---|
| 124 | this.valueComboBox.Name = "valueComboBox";
|
---|
[4332] | 125 | this.valueComboBox.Size = new System.Drawing.Size(278, 21);
|
---|
| 126 | this.valueComboBox.TabIndex = 0;
|
---|
[2852] | 127 | this.toolTip.SetToolTip(this.valueComboBox, "Selected Value");
|
---|
| 128 | this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged);
|
---|
| 129 | //
|
---|
| 130 | // ConstrainedValueParameterView
|
---|
| 131 | //
|
---|
| 132 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 133 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 134 | this.Controls.Add(this.valueGroupBox);
|
---|
| 135 | this.Name = "ConstrainedValueParameterView";
|
---|
| 136 | this.Size = new System.Drawing.Size(386, 315);
|
---|
| 137 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 138 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 139 | this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
|
---|
| 140 | this.Controls.SetChildIndex(this.dataTypeLabel, 0);
|
---|
| 141 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 142 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 143 | this.Controls.SetChildIndex(this.valueGroupBox, 0);
|
---|
| 144 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 145 | this.valueGroupBox.ResumeLayout(false);
|
---|
[4332] | 146 | this.valueGroupBox.PerformLayout();
|
---|
[2852] | 147 | this.ResumeLayout(false);
|
---|
| 148 | this.PerformLayout();
|
---|
| 149 |
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | #endregion
|
---|
| 153 |
|
---|
[2924] | 154 | protected System.Windows.Forms.GroupBox valueGroupBox;
|
---|
[3281] | 155 | protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
[2924] | 156 | protected System.Windows.Forms.ComboBox valueComboBox;
|
---|
[4332] | 157 | protected System.Windows.Forms.CheckBox showInRunCheckBox;
|
---|
[2852] | 158 | }
|
---|
| 159 | }
|
---|