#region License Information /* HeuristicLab * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.Problems.DynamicalSystemsModelling { partial class SolutionView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); this.updateButton = new System.Windows.Forms.Button(); this.forecastTextbox = new System.Windows.Forms.TextBox(); this.forecastLabel = new System.Windows.Forms.Label(); this.startLabel = new System.Windows.Forms.Label(); this.episodeStartTextbox = new System.Windows.Forms.TextBox(); this.endLabel = new System.Windows.Forms.Label(); this.episodeEndTextbox = new System.Windows.Forms.TextBox(); this.trackBar = new System.Windows.Forms.TrackBar(); this.errorLabel = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.trackBar)).BeginInit(); this.SuspendLayout(); // // tableLayoutPanel // this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tableLayoutPanel.AutoScroll = true; this.tableLayoutPanel.ColumnCount = 1; this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel.Location = new System.Drawing.Point(0, 109); this.tableLayoutPanel.Name = "tableLayoutPanel"; this.tableLayoutPanel.RowCount = 2; this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); this.tableLayoutPanel.Size = new System.Drawing.Size(629, 344); this.tableLayoutPanel.TabIndex = 5; // // updateButton // this.updateButton.Location = new System.Drawing.Point(350, 2); this.updateButton.Name = "updateButton"; this.updateButton.Size = new System.Drawing.Size(75, 23); this.updateButton.TabIndex = 3; this.updateButton.Text = "Update"; this.updateButton.UseVisualStyleBackColor = true; this.updateButton.Click += new System.EventHandler(this.updateButton_Click); // // forecastTextbox // this.forecastTextbox.Location = new System.Drawing.Point(244, 4); this.forecastTextbox.Name = "forecastTextbox"; this.forecastTextbox.Size = new System.Drawing.Size(100, 20); this.forecastTextbox.TabIndex = 2; this.forecastTextbox.Text = "1"; // // forecastLabel // this.forecastLabel.AutoSize = true; this.forecastLabel.Location = new System.Drawing.Point(187, 7); this.forecastLabel.Name = "forecastLabel"; this.forecastLabel.Size = new System.Drawing.Size(51, 13); this.forecastLabel.TabIndex = 8; this.forecastLabel.Text = "Forecast:"; // // startLabel // this.startLabel.AutoSize = true; this.startLabel.Location = new System.Drawing.Point(4, 6); this.startLabel.Name = "startLabel"; this.startLabel.Size = new System.Drawing.Size(71, 13); this.startLabel.TabIndex = 6; this.startLabel.Text = "Episode start:"; // // episodeStartTextbox // this.episodeStartTextbox.Location = new System.Drawing.Point(81, 4); this.episodeStartTextbox.Name = "episodeStartTextbox"; this.episodeStartTextbox.Size = new System.Drawing.Size(100, 20); this.episodeStartTextbox.TabIndex = 0; this.episodeStartTextbox.Text = "0"; this.episodeStartTextbox.Validating += new System.ComponentModel.CancelEventHandler(this.episodeStartTextbox_Validating); this.episodeStartTextbox.Validated += new System.EventHandler(this.episodeStartTextbox_Validated); // // endLabel // this.endLabel.AutoSize = true; this.endLabel.Location = new System.Drawing.Point(4, 35); this.endLabel.Name = "endLabel"; this.endLabel.Size = new System.Drawing.Size(69, 13); this.endLabel.TabIndex = 7; this.endLabel.Text = "Episode end:"; // // episodeEndTextbox // this.episodeEndTextbox.Location = new System.Drawing.Point(81, 32); this.episodeEndTextbox.Name = "episodeEndTextbox"; this.episodeEndTextbox.Size = new System.Drawing.Size(100, 20); this.episodeEndTextbox.TabIndex = 1; this.episodeEndTextbox.Text = "10"; // // trackBar // this.trackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.trackBar.Location = new System.Drawing.Point(40, 58); this.trackBar.Name = "trackBar"; this.trackBar.Size = new System.Drawing.Size(586, 45); this.trackBar.TabIndex = 4; this.trackBar.ValueChanged += new System.EventHandler(this.trackBar_Validated); // // errorLabel // this.errorLabel.AutoSize = true; this.errorLabel.Location = new System.Drawing.Point(190, 35); this.errorLabel.Name = "errorLabel"; this.errorLabel.Size = new System.Drawing.Size(48, 13); this.errorLabel.TabIndex = 9; this.errorLabel.Text = "SNMSE:"; // // SolutionView // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; this.Controls.Add(this.errorLabel); this.Controls.Add(this.trackBar); this.Controls.Add(this.endLabel); this.Controls.Add(this.episodeEndTextbox); this.Controls.Add(this.startLabel); this.Controls.Add(this.episodeStartTextbox); this.Controls.Add(this.forecastLabel); this.Controls.Add(this.forecastTextbox); this.Controls.Add(this.updateButton); this.Controls.Add(this.tableLayoutPanel); this.Name = "SolutionView"; this.Size = new System.Drawing.Size(629, 456); ((System.ComponentModel.ISupportInitialize)(this.trackBar)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; private System.Windows.Forms.Button updateButton; private System.Windows.Forms.TextBox forecastTextbox; private System.Windows.Forms.Label forecastLabel; private System.Windows.Forms.Label startLabel; private System.Windows.Forms.TextBox episodeStartTextbox; private System.Windows.Forms.Label endLabel; private System.Windows.Forms.TextBox episodeEndTextbox; private System.Windows.Forms.TrackBar trackBar; private System.Windows.Forms.Label errorLabel; } }