[13693] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2016 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.Clients.OKB.RunCreation.Views {
|
---|
| 23 | partial class SingleObjectiveOKBSolutionView {
|
---|
| 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 && (components != null)) {
|
---|
| 35 | 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.refreshButton = new System.Windows.Forms.Button();
|
---|
| 48 | this.uploadButton = new System.Windows.Forms.Button();
|
---|
| 49 | this.solutionGroupBox = new System.Windows.Forms.GroupBox();
|
---|
| 50 | this.qualityTextBox = new System.Windows.Forms.TextBox();
|
---|
| 51 | this.qualityLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.solutionViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 53 | this.solutionGroupBox.SuspendLayout();
|
---|
| 54 | this.SuspendLayout();
|
---|
| 55 | //
|
---|
| 56 | // refreshButton
|
---|
| 57 | //
|
---|
| 58 | this.refreshButton.Location = new System.Drawing.Point(3, 3);
|
---|
| 59 | this.refreshButton.Name = "refreshButton";
|
---|
| 60 | this.refreshButton.Size = new System.Drawing.Size(26, 23);
|
---|
| 61 | this.refreshButton.TabIndex = 0;
|
---|
| 62 | this.refreshButton.Text = "Refresh";
|
---|
| 63 | this.refreshButton.UseVisualStyleBackColor = true;
|
---|
| 64 | this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
|
---|
| 65 | //
|
---|
| 66 | // uploadButton
|
---|
| 67 | //
|
---|
| 68 | this.uploadButton.Location = new System.Drawing.Point(35, 3);
|
---|
| 69 | this.uploadButton.Name = "uploadButton";
|
---|
| 70 | this.uploadButton.Size = new System.Drawing.Size(26, 23);
|
---|
| 71 | this.uploadButton.TabIndex = 0;
|
---|
| 72 | this.uploadButton.Text = "Upload";
|
---|
| 73 | this.uploadButton.UseVisualStyleBackColor = true;
|
---|
| 74 | this.uploadButton.Click += new System.EventHandler(this.uploadButton_Click);
|
---|
| 75 | //
|
---|
| 76 | // solutionGroupBox
|
---|
| 77 | //
|
---|
| 78 | this.solutionGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 79 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 80 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 81 | this.solutionGroupBox.Controls.Add(this.solutionViewHost);
|
---|
| 82 | this.solutionGroupBox.Controls.Add(this.qualityTextBox);
|
---|
| 83 | this.solutionGroupBox.Controls.Add(this.qualityLabel);
|
---|
| 84 | this.solutionGroupBox.Location = new System.Drawing.Point(3, 32);
|
---|
| 85 | this.solutionGroupBox.Name = "solutionGroupBox";
|
---|
| 86 | this.solutionGroupBox.Size = new System.Drawing.Size(703, 452);
|
---|
| 87 | this.solutionGroupBox.TabIndex = 3;
|
---|
| 88 | this.solutionGroupBox.TabStop = false;
|
---|
| 89 | this.solutionGroupBox.Text = "Solution";
|
---|
| 90 | //
|
---|
| 91 | // qualityTextBox
|
---|
| 92 | //
|
---|
| 93 | this.qualityTextBox.Location = new System.Drawing.Point(58, 19);
|
---|
| 94 | this.qualityTextBox.Name = "qualityTextBox";
|
---|
| 95 | this.qualityTextBox.ReadOnly = true;
|
---|
| 96 | this.qualityTextBox.Size = new System.Drawing.Size(229, 20);
|
---|
| 97 | this.qualityTextBox.TabIndex = 4;
|
---|
| 98 | //
|
---|
| 99 | // qualityLabel
|
---|
| 100 | //
|
---|
| 101 | this.qualityLabel.AutoSize = true;
|
---|
| 102 | this.qualityLabel.Location = new System.Drawing.Point(10, 22);
|
---|
| 103 | this.qualityLabel.Name = "qualityLabel";
|
---|
| 104 | this.qualityLabel.Size = new System.Drawing.Size(42, 13);
|
---|
| 105 | this.qualityLabel.TabIndex = 3;
|
---|
| 106 | this.qualityLabel.Text = "Quality:";
|
---|
| 107 | //
|
---|
| 108 | // solutionViewHost
|
---|
| 109 | //
|
---|
| 110 | this.solutionViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 111 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 112 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 113 | this.solutionViewHost.Caption = "View";
|
---|
| 114 | this.solutionViewHost.Content = null;
|
---|
| 115 | this.solutionViewHost.Enabled = false;
|
---|
| 116 | this.solutionViewHost.Location = new System.Drawing.Point(6, 45);
|
---|
| 117 | this.solutionViewHost.Name = "solutionViewHost";
|
---|
| 118 | this.solutionViewHost.ReadOnly = false;
|
---|
| 119 | this.solutionViewHost.Size = new System.Drawing.Size(691, 401);
|
---|
| 120 | this.solutionViewHost.TabIndex = 5;
|
---|
| 121 | this.solutionViewHost.ViewsLabelVisible = true;
|
---|
| 122 | this.solutionViewHost.ViewType = null;
|
---|
| 123 | //
|
---|
| 124 | // SingleObjectiveOKBSolutionView
|
---|
| 125 | //
|
---|
| 126 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 127 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 128 | this.Controls.Add(this.solutionGroupBox);
|
---|
| 129 | this.Controls.Add(this.uploadButton);
|
---|
| 130 | this.Controls.Add(this.refreshButton);
|
---|
| 131 | this.Name = "SingleObjectiveOKBSolutionView";
|
---|
| 132 | this.Size = new System.Drawing.Size(709, 487);
|
---|
| 133 | this.solutionGroupBox.ResumeLayout(false);
|
---|
| 134 | this.solutionGroupBox.PerformLayout();
|
---|
| 135 | this.ResumeLayout(false);
|
---|
| 136 |
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | #endregion
|
---|
| 140 |
|
---|
| 141 | private System.Windows.Forms.Button refreshButton;
|
---|
| 142 | private System.Windows.Forms.Button uploadButton;
|
---|
| 143 | private System.Windows.Forms.GroupBox solutionGroupBox;
|
---|
| 144 | private MainForm.WindowsForms.ViewHost solutionViewHost;
|
---|
| 145 | private System.Windows.Forms.TextBox qualityTextBox;
|
---|
| 146 | private System.Windows.Forms.Label qualityLabel;
|
---|
| 147 | }
|
---|
| 148 | }
|
---|