Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Problems.DynamicalSystemsModelling/3.3/SolutionView.Designer.cs @ 16399

Last change on this file since 16399 was 16399, checked in by gkronber, 5 years ago

#2925: solution class and solution view

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