Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/TimeSeriesPrognosisSolutionView.Designer.cs @ 7183

Last change on this file since 7183 was 7183, checked in by gkronber, 12 years ago

#1081 implemented remaining metrics for time series prognosis solutions, added estimation limits fixed training and validation best solution analyzers, implemented overfitting analyzer.

File size: 5.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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 TimeSeriesPrognosisSolutionView {
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.horizonTextBox = new System.Windows.Forms.TextBox();
48      this.label1 = new System.Windows.Forms.Label();
49      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
50      this.splitContainer.Panel1.SuspendLayout();
51      this.splitContainer.Panel2.SuspendLayout();
52      this.splitContainer.SuspendLayout();
53      this.itemsGroupBox.SuspendLayout();
54      this.detailsGroupBox.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // splitContainer
58      //
59      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60                  | System.Windows.Forms.AnchorStyles.Left)
61                  | System.Windows.Forms.AnchorStyles.Right)));
62      this.splitContainer.Dock = System.Windows.Forms.DockStyle.None;
63      this.splitContainer.Location = new System.Drawing.Point(3, 45);
64      this.splitContainer.Size = new System.Drawing.Size(526, 335);
65      //
66      // itemsGroupBox
67      //
68      this.itemsGroupBox.Controls.Add(this.horizonTextBox);
69      this.itemsGroupBox.Controls.Add(this.label1);
70      this.itemsGroupBox.Text = "Time Series Prognosis Solution";
71      this.itemsGroupBox.Controls.SetChildIndex(this.label1, 0);
72      this.itemsGroupBox.Controls.SetChildIndex(this.horizonTextBox, 0);
73      this.itemsGroupBox.Controls.SetChildIndex(this.splitContainer, 0);
74      //
75      // itemsListView
76      //
77      this.itemsListView.Size = new System.Drawing.Size(244, 153);
78      //
79      // detailsGroupBox
80      //
81      this.detailsGroupBox.Size = new System.Drawing.Size(266, 161);
82      //
83      // addButton
84      //
85      this.toolTip.SetToolTip(this.addButton, "Add");
86      //
87      // removeButton
88      //
89      this.toolTip.SetToolTip(this.removeButton, "Remove");
90      //
91      // viewHost
92      //
93      this.viewHost.Size = new System.Drawing.Size(254, 136);
94      //
95      // horizonTextBox
96      //
97      this.horizonTextBox.Location = new System.Drawing.Point(66, 19);
98      this.horizonTextBox.Name = "horizonTextBox";
99      this.horizonTextBox.Size = new System.Drawing.Size(100, 20);
100      this.horizonTextBox.TabIndex = 1;
101      this.horizonTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.horizonTextBox_KeyDown);
102      this.horizonTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.horizonTextBox_Validating);
103      this.horizonTextBox.Validated += new System.EventHandler(this.horizonTextBox_Validated);
104      //
105      // label1
106      //
107      this.label1.AutoSize = true;
108      this.label1.Location = new System.Drawing.Point(6, 22);
109      this.label1.Name = "label1";
110      this.label1.Size = new System.Drawing.Size(46, 13);
111      this.label1.TabIndex = 2;
112      this.label1.Text = "Horizon:";
113      //
114      // TimeSeriesPrognosisSolutionView
115      //
116      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
117      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
118      this.Name = "TimeSeriesPrognosisSolutionView";
119      this.splitContainer.Panel1.ResumeLayout(false);
120      this.splitContainer.Panel2.ResumeLayout(false);
121      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
122      this.splitContainer.ResumeLayout(false);
123      this.itemsGroupBox.ResumeLayout(false);
124      this.itemsGroupBox.PerformLayout();
125      this.detailsGroupBox.ResumeLayout(false);
126      this.ResumeLayout(false);
127
128    }
129
130    #endregion
131
132    private System.Windows.Forms.TextBox horizonTextBox;
133    private System.Windows.Forms.Label label1;
134
135  }
136}
Note: See TracBrowser for help on using the repository browser.