[16399] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2018 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.Problems.DynamicalSystemsModelling {
|
---|
| 23 | partial class SolutionView {
|
---|
| 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.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
---|
| 48 | this.updateButton = new System.Windows.Forms.Button();
|
---|
| 49 | this.forecastTextbox = new System.Windows.Forms.TextBox();
|
---|
| 50 | this.forecastLabel = new System.Windows.Forms.Label();
|
---|
| 51 | this.startLabel = new System.Windows.Forms.Label();
|
---|
| 52 | this.episodeStartTextbox = new System.Windows.Forms.TextBox();
|
---|
| 53 | this.endLabel = new System.Windows.Forms.Label();
|
---|
| 54 | this.episodeEndTextbox = new System.Windows.Forms.TextBox();
|
---|
| 55 | this.trackBar = new System.Windows.Forms.TrackBar();
|
---|
[16400] | 56 | this.errorLabel = new System.Windows.Forms.Label();
|
---|
[16399] | 57 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit();
|
---|
| 58 | this.SuspendLayout();
|
---|
| 59 | //
|
---|
| 60 | // tableLayoutPanel
|
---|
| 61 | //
|
---|
| 62 | this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 63 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 64 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[16400] | 65 | this.tableLayoutPanel.AutoScroll = true;
|
---|
[16399] | 66 | this.tableLayoutPanel.ColumnCount = 1;
|
---|
| 67 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
---|
| 68 | this.tableLayoutPanel.Location = new System.Drawing.Point(0, 109);
|
---|
| 69 | this.tableLayoutPanel.Name = "tableLayoutPanel";
|
---|
| 70 | this.tableLayoutPanel.RowCount = 2;
|
---|
| 71 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
---|
| 72 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
---|
| 73 | this.tableLayoutPanel.Size = new System.Drawing.Size(629, 344);
|
---|
| 74 | this.tableLayoutPanel.TabIndex = 5;
|
---|
| 75 | //
|
---|
| 76 | // updateButton
|
---|
| 77 | //
|
---|
| 78 | this.updateButton.Location = new System.Drawing.Point(350, 2);
|
---|
| 79 | this.updateButton.Name = "updateButton";
|
---|
| 80 | this.updateButton.Size = new System.Drawing.Size(75, 23);
|
---|
| 81 | this.updateButton.TabIndex = 3;
|
---|
| 82 | this.updateButton.Text = "Update";
|
---|
| 83 | this.updateButton.UseVisualStyleBackColor = true;
|
---|
| 84 | this.updateButton.Click += new System.EventHandler(this.updateButton_Click);
|
---|
| 85 | //
|
---|
| 86 | // forecastTextbox
|
---|
| 87 | //
|
---|
| 88 | this.forecastTextbox.Location = new System.Drawing.Point(244, 4);
|
---|
| 89 | this.forecastTextbox.Name = "forecastTextbox";
|
---|
| 90 | this.forecastTextbox.Size = new System.Drawing.Size(100, 20);
|
---|
| 91 | this.forecastTextbox.TabIndex = 2;
|
---|
[16597] | 92 | this.forecastTextbox.Text = "1";
|
---|
[16399] | 93 | //
|
---|
| 94 | // forecastLabel
|
---|
| 95 | //
|
---|
| 96 | this.forecastLabel.AutoSize = true;
|
---|
| 97 | this.forecastLabel.Location = new System.Drawing.Point(187, 7);
|
---|
| 98 | this.forecastLabel.Name = "forecastLabel";
|
---|
| 99 | this.forecastLabel.Size = new System.Drawing.Size(51, 13);
|
---|
| 100 | this.forecastLabel.TabIndex = 8;
|
---|
| 101 | this.forecastLabel.Text = "Forecast:";
|
---|
| 102 | //
|
---|
| 103 | // startLabel
|
---|
| 104 | //
|
---|
| 105 | this.startLabel.AutoSize = true;
|
---|
| 106 | this.startLabel.Location = new System.Drawing.Point(4, 6);
|
---|
| 107 | this.startLabel.Name = "startLabel";
|
---|
| 108 | this.startLabel.Size = new System.Drawing.Size(71, 13);
|
---|
| 109 | this.startLabel.TabIndex = 6;
|
---|
| 110 | this.startLabel.Text = "Episode start:";
|
---|
| 111 | //
|
---|
| 112 | // episodeStartTextbox
|
---|
| 113 | //
|
---|
| 114 | this.episodeStartTextbox.Location = new System.Drawing.Point(81, 4);
|
---|
| 115 | this.episodeStartTextbox.Name = "episodeStartTextbox";
|
---|
| 116 | this.episodeStartTextbox.Size = new System.Drawing.Size(100, 20);
|
---|
| 117 | this.episodeStartTextbox.TabIndex = 0;
|
---|
| 118 | this.episodeStartTextbox.Text = "0";
|
---|
| 119 | this.episodeStartTextbox.Validating += new System.ComponentModel.CancelEventHandler(this.episodeStartTextbox_Validating);
|
---|
| 120 | this.episodeStartTextbox.Validated += new System.EventHandler(this.episodeStartTextbox_Validated);
|
---|
| 121 | //
|
---|
| 122 | // endLabel
|
---|
| 123 | //
|
---|
| 124 | this.endLabel.AutoSize = true;
|
---|
| 125 | this.endLabel.Location = new System.Drawing.Point(4, 35);
|
---|
| 126 | this.endLabel.Name = "endLabel";
|
---|
| 127 | this.endLabel.Size = new System.Drawing.Size(69, 13);
|
---|
| 128 | this.endLabel.TabIndex = 7;
|
---|
| 129 | this.endLabel.Text = "Episode end:";
|
---|
| 130 | //
|
---|
| 131 | // episodeEndTextbox
|
---|
| 132 | //
|
---|
| 133 | this.episodeEndTextbox.Location = new System.Drawing.Point(81, 32);
|
---|
| 134 | this.episodeEndTextbox.Name = "episodeEndTextbox";
|
---|
| 135 | this.episodeEndTextbox.Size = new System.Drawing.Size(100, 20);
|
---|
| 136 | this.episodeEndTextbox.TabIndex = 1;
|
---|
| 137 | this.episodeEndTextbox.Text = "10";
|
---|
| 138 | //
|
---|
| 139 | // trackBar
|
---|
| 140 | //
|
---|
| 141 | this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 142 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 143 | this.trackBar.Location = new System.Drawing.Point(40, 58);
|
---|
| 144 | this.trackBar.Name = "trackBar";
|
---|
| 145 | this.trackBar.Size = new System.Drawing.Size(586, 45);
|
---|
| 146 | this.trackBar.TabIndex = 4;
|
---|
| 147 | this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_Validated);
|
---|
| 148 | //
|
---|
[16400] | 149 | // errorLabel
|
---|
| 150 | //
|
---|
| 151 | this.errorLabel.AutoSize = true;
|
---|
| 152 | this.errorLabel.Location = new System.Drawing.Point(190, 35);
|
---|
| 153 | this.errorLabel.Name = "errorLabel";
|
---|
| 154 | this.errorLabel.Size = new System.Drawing.Size(48, 13);
|
---|
| 155 | this.errorLabel.TabIndex = 9;
|
---|
| 156 | this.errorLabel.Text = "SNMSE:";
|
---|
| 157 | //
|
---|
[16399] | 158 | // SolutionView
|
---|
| 159 | //
|
---|
| 160 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[16400] | 161 | this.Controls.Add(this.errorLabel);
|
---|
[16399] | 162 | this.Controls.Add(this.trackBar);
|
---|
| 163 | this.Controls.Add(this.endLabel);
|
---|
| 164 | this.Controls.Add(this.episodeEndTextbox);
|
---|
| 165 | this.Controls.Add(this.startLabel);
|
---|
| 166 | this.Controls.Add(this.episodeStartTextbox);
|
---|
| 167 | this.Controls.Add(this.forecastLabel);
|
---|
| 168 | this.Controls.Add(this.forecastTextbox);
|
---|
| 169 | this.Controls.Add(this.updateButton);
|
---|
| 170 | this.Controls.Add(this.tableLayoutPanel);
|
---|
| 171 | this.Name = "SolutionView";
|
---|
| 172 | this.Size = new System.Drawing.Size(629, 456);
|
---|
| 173 | ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit();
|
---|
| 174 | this.ResumeLayout(false);
|
---|
| 175 | this.PerformLayout();
|
---|
| 176 |
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | #endregion
|
---|
| 180 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
|
---|
| 181 | private System.Windows.Forms.Button updateButton;
|
---|
| 182 | private System.Windows.Forms.TextBox forecastTextbox;
|
---|
| 183 | private System.Windows.Forms.Label forecastLabel;
|
---|
| 184 | private System.Windows.Forms.Label startLabel;
|
---|
| 185 | private System.Windows.Forms.TextBox episodeStartTextbox;
|
---|
| 186 | private System.Windows.Forms.Label endLabel;
|
---|
| 187 | private System.Windows.Forms.TextBox episodeEndTextbox;
|
---|
| 188 | private System.Windows.Forms.TrackBar trackBar;
|
---|
[16400] | 189 | private System.Windows.Forms.Label errorLabel;
|
---|
[16399] | 190 | }
|
---|
| 191 | }
|
---|