Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/TimeSeriesPrognosis/TimeSeriesPrognosisResultsView.Designer.cs @ 8750

Last change on this file since 8750 was 8750, checked in by mkommend, 11 years ago

#1081: Extracted prognosis results into separate class and added a view for them.

File size: 7.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.DataAnalysis.Views {
23  partial class TimeSeriesPrognosisResultsView {
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.TrainingHorizonLabel = new System.Windows.Forms.Label();
49      this.TestHorizonLabel = new System.Windows.Forms.Label();
50      this.TrainingHorizonTextBox = new System.Windows.Forms.TextBox();
51      this.TestHorizonTextBox = new System.Windows.Forms.TextBox();
52      this.TrainingHorizonErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
53      this.TestHorizonErrorProvider = new System.Windows.Forms.ErrorProvider(this.components);
54      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
55      this.splitContainer.Panel1.SuspendLayout();
56      this.splitContainer.Panel2.SuspendLayout();
57      this.splitContainer.SuspendLayout();
58      this.itemsGroupBox.SuspendLayout();
59      this.detailsGroupBox.SuspendLayout();
60      ((System.ComponentModel.ISupportInitialize)(this.TrainingHorizonErrorProvider)).BeginInit();
61      ((System.ComponentModel.ISupportInitialize)(this.TestHorizonErrorProvider)).BeginInit();
62      this.SuspendLayout();
63      //
64      // splitContainer
65      //
66      //
67      // splitContainer.Panel1
68      //
69      this.splitContainer.Panel1.Controls.Add(this.TestHorizonTextBox);
70      this.splitContainer.Panel1.Controls.Add(this.TrainingHorizonTextBox);
71      this.splitContainer.Panel1.Controls.Add(this.TrainingHorizonLabel);
72      this.splitContainer.Panel1.Controls.Add(this.TestHorizonLabel);
73      //
74      // itemsListView
75      //
76      this.itemsListView.Location = new System.Drawing.Point(3, 82);
77      this.itemsListView.Size = new System.Drawing.Size(244, 279);
78      //
79      // addButton
80      //
81      this.toolTip.SetToolTip(this.addButton, "Add");
82      //
83      // removeButton
84      //
85      this.toolTip.SetToolTip(this.removeButton, "Remove");
86      //
87      // TrainingHorizonLabel
88      //
89      this.TrainingHorizonLabel.AutoSize = true;
90      this.TrainingHorizonLabel.Location = new System.Drawing.Point(3, 34);
91      this.TrainingHorizonLabel.Name = "TrainingHorizonLabel";
92      this.TrainingHorizonLabel.Size = new System.Drawing.Size(87, 13);
93      this.TrainingHorizonLabel.TabIndex = 7;
94      this.TrainingHorizonLabel.Text = "Training Horizon:";
95      //
96      // TestHorizonLabel
97      //
98      this.TestHorizonLabel.AutoSize = true;
99      this.TestHorizonLabel.Location = new System.Drawing.Point(3, 60);
100      this.TestHorizonLabel.Name = "TestHorizonLabel";
101      this.TestHorizonLabel.Size = new System.Drawing.Size(73, 13);
102      this.TestHorizonLabel.TabIndex = 8;
103      this.TestHorizonLabel.Text = "Test Horizon: ";
104      //
105      // TrainingHorizonTextBox
106      //
107      this.TrainingHorizonTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
108            | System.Windows.Forms.AnchorStyles.Right)));
109      this.TrainingHorizonTextBox.Location = new System.Drawing.Point(96, 31);
110      this.TrainingHorizonTextBox.Name = "TrainingHorizonTextBox";
111      this.TrainingHorizonTextBox.Size = new System.Drawing.Size(151, 20);
112      this.TrainingHorizonTextBox.TabIndex = 1;
113      this.TrainingHorizonTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TrainingHorizonTextBox_KeyDown);
114      this.TrainingHorizonTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TrainingHorizonTextBox_Validating);
115      this.TrainingHorizonTextBox.Validated += new System.EventHandler(this.TrainingHorizonTextBox_Validated);
116      //
117      // TestHorizonTextBox
118      //
119      this.TestHorizonTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
120            | System.Windows.Forms.AnchorStyles.Right)));
121      this.TestHorizonTextBox.Location = new System.Drawing.Point(96, 57);
122      this.TestHorizonTextBox.Name = "TestHorizonTextBox";
123      this.TestHorizonTextBox.Size = new System.Drawing.Size(151, 20);
124      this.TestHorizonTextBox.TabIndex = 1;
125      this.TestHorizonTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TestHorizonTextBox_KeyDown);
126      this.TestHorizonTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TestHorizonTextBox_Validating);
127      this.TestHorizonTextBox.Validated += new System.EventHandler(this.TestHorizonTextBox_Validated);
128      //
129      // TrainingHorizonErrorProvider
130      //
131      this.TrainingHorizonErrorProvider.BlinkRate = 0;
132      this.TrainingHorizonErrorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
133      this.TrainingHorizonErrorProvider.ContainerControl = this;
134      //
135      // TestHorizonErrorProvider
136      //
137      this.TestHorizonErrorProvider.BlinkRate = 0;
138      this.TestHorizonErrorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
139      this.TestHorizonErrorProvider.ContainerControl = this;
140      //
141      // TimeSeriesPrognosisResultsView
142      //
143      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
144      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
145      this.Name = "TimeSeriesPrognosisResultsView";
146      this.splitContainer.Panel1.ResumeLayout(false);
147      this.splitContainer.Panel1.PerformLayout();
148      this.splitContainer.Panel2.ResumeLayout(false);
149      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
150      this.splitContainer.ResumeLayout(false);
151      this.itemsGroupBox.ResumeLayout(false);
152      this.detailsGroupBox.ResumeLayout(false);
153      ((System.ComponentModel.ISupportInitialize)(this.TrainingHorizonErrorProvider)).EndInit();
154      ((System.ComponentModel.ISupportInitialize)(this.TestHorizonErrorProvider)).EndInit();
155      this.ResumeLayout(false);
156
157    }
158
159    #endregion
160
161    private System.Windows.Forms.TextBox TestHorizonTextBox;
162    private System.Windows.Forms.TextBox TrainingHorizonTextBox;
163    private System.Windows.Forms.Label TrainingHorizonLabel;
164    private System.Windows.Forms.Label TestHorizonLabel;
165    private System.Windows.Forms.ErrorProvider TrainingHorizonErrorProvider;
166    private System.Windows.Forms.ErrorProvider TestHorizonErrorProvider;
167
168  }
169}
Note: See TracBrowser for help on using the repository browser.