[3226] | 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.Optimization.Views {
|
---|
| 23 | partial class ResultView {
|
---|
| 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.dataTypeLabel = new System.Windows.Forms.Label();
|
---|
| 48 | this.dataTypeTextBox = new System.Windows.Forms.TextBox();
|
---|
| 49 | this.valueGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 50 | this.valuePanel = new System.Windows.Forms.Panel();
|
---|
[3281] | 51 | this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[3226] | 52 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 53 | this.valueGroupBox.SuspendLayout();
|
---|
| 54 | this.valuePanel.SuspendLayout();
|
---|
| 55 | this.SuspendLayout();
|
---|
| 56 | //
|
---|
| 57 | // nameTextBox
|
---|
| 58 | //
|
---|
| 59 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 60 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 61 | this.nameTextBox.Size = new System.Drawing.Size(287, 20);
|
---|
| 62 | //
|
---|
| 63 | // descriptionTextBox
|
---|
| 64 | //
|
---|
| 65 | this.descriptionTextBox.Size = new System.Drawing.Size(287, 20);
|
---|
| 66 | //
|
---|
| 67 | // dataTypeLabel
|
---|
| 68 | //
|
---|
| 69 | this.dataTypeLabel.AutoSize = true;
|
---|
| 70 | this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
|
---|
| 71 | this.dataTypeLabel.Name = "dataTypeLabel";
|
---|
| 72 | this.dataTypeLabel.Size = new System.Drawing.Size(60, 13);
|
---|
| 73 | this.dataTypeLabel.TabIndex = 4;
|
---|
| 74 | this.dataTypeLabel.Text = "Data &Type:";
|
---|
| 75 | //
|
---|
| 76 | // dataTypeTextBox
|
---|
| 77 | //
|
---|
| 78 | this.dataTypeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 79 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 80 | this.dataTypeTextBox.Location = new System.Drawing.Point(72, 52);
|
---|
| 81 | this.dataTypeTextBox.Name = "dataTypeTextBox";
|
---|
| 82 | this.dataTypeTextBox.ReadOnly = true;
|
---|
| 83 | this.dataTypeTextBox.Size = new System.Drawing.Size(287, 20);
|
---|
| 84 | this.dataTypeTextBox.TabIndex = 5;
|
---|
| 85 | //
|
---|
| 86 | // valueGroupBox
|
---|
| 87 | //
|
---|
| 88 | this.valueGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 89 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 90 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 91 | this.valueGroupBox.Controls.Add(this.valuePanel);
|
---|
| 92 | this.valueGroupBox.Location = new System.Drawing.Point(0, 78);
|
---|
| 93 | this.valueGroupBox.Name = "valueGroupBox";
|
---|
| 94 | this.valueGroupBox.Size = new System.Drawing.Size(359, 196);
|
---|
| 95 | this.valueGroupBox.TabIndex = 7;
|
---|
| 96 | this.valueGroupBox.TabStop = false;
|
---|
| 97 | this.valueGroupBox.Text = "Value";
|
---|
| 98 | //
|
---|
| 99 | // valuePanel
|
---|
| 100 | //
|
---|
| 101 | this.valuePanel.AllowDrop = true;
|
---|
| 102 | this.valuePanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 103 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 104 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 105 | this.valuePanel.Controls.Add(this.viewHost);
|
---|
| 106 | this.valuePanel.Location = new System.Drawing.Point(6, 19);
|
---|
| 107 | this.valuePanel.Name = "valuePanel";
|
---|
| 108 | this.valuePanel.Size = new System.Drawing.Size(347, 171);
|
---|
| 109 | this.valuePanel.TabIndex = 2;
|
---|
| 110 | //
|
---|
| 111 | // viewHost
|
---|
| 112 | //
|
---|
| 113 | this.viewHost.Content = null;
|
---|
| 114 | this.viewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 115 | this.viewHost.Location = new System.Drawing.Point(0, 0);
|
---|
| 116 | this.viewHost.Name = "viewHost";
|
---|
| 117 | this.viewHost.Size = new System.Drawing.Size(347, 171);
|
---|
| 118 | this.viewHost.TabIndex = 0;
|
---|
| 119 | this.viewHost.ViewType = null;
|
---|
| 120 | //
|
---|
| 121 | // ResultView
|
---|
| 122 | //
|
---|
| 123 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 124 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 125 | this.Controls.Add(this.valueGroupBox);
|
---|
| 126 | this.Controls.Add(this.dataTypeLabel);
|
---|
| 127 | this.Controls.Add(this.dataTypeTextBox);
|
---|
| 128 | this.Name = "ResultView";
|
---|
| 129 | this.Size = new System.Drawing.Size(359, 274);
|
---|
| 130 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
| 131 | this.Controls.SetChildIndex(this.dataTypeTextBox, 0);
|
---|
| 132 | this.Controls.SetChildIndex(this.dataTypeLabel, 0);
|
---|
| 133 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
| 134 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 135 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 136 | this.Controls.SetChildIndex(this.valueGroupBox, 0);
|
---|
| 137 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 138 | this.valueGroupBox.ResumeLayout(false);
|
---|
| 139 | this.valuePanel.ResumeLayout(false);
|
---|
| 140 | this.ResumeLayout(false);
|
---|
| 141 | this.PerformLayout();
|
---|
| 142 |
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | #endregion
|
---|
| 146 |
|
---|
| 147 | private System.Windows.Forms.Label dataTypeLabel;
|
---|
| 148 | private System.Windows.Forms.TextBox dataTypeTextBox;
|
---|
| 149 | private System.Windows.Forms.GroupBox valueGroupBox;
|
---|
[3281] | 150 | private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
|
---|
[3226] | 151 | private System.Windows.Forms.Panel valuePanel;
|
---|
| 152 | }
|
---|
| 153 | }
|
---|