1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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.DataAnalysis.MultiVariate.TimeSeriesPrognosis.Views.Symbols {
|
---|
23 | partial class MovingAverageView {
|
---|
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.minTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
48 | this.maxTimeOffsetLabel = new System.Windows.Forms.Label();
|
---|
49 | this.minTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
50 | this.maxTimeOffsetTextBox = new System.Windows.Forms.TextBox();
|
---|
51 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
52 | this.SuspendLayout();
|
---|
53 | //
|
---|
54 | // initializationGroupBox
|
---|
55 | //
|
---|
56 | this.initializationGroupBox.Location = new System.Drawing.Point(6, 131);
|
---|
57 | this.initializationGroupBox.Size = new System.Drawing.Size(396, 73);
|
---|
58 | //
|
---|
59 | // mutationGroupBox
|
---|
60 | //
|
---|
61 | this.mutationGroupBox.Location = new System.Drawing.Point(6, 210);
|
---|
62 | this.mutationGroupBox.Size = new System.Drawing.Size(396, 73);
|
---|
63 | //
|
---|
64 | // initialFrequencyLabel
|
---|
65 | //
|
---|
66 | this.initialFrequencyLabel.Location = new System.Drawing.Point(3, 56);
|
---|
67 | this.toolTip.SetToolTip(this.initialFrequencyLabel, "Relative frequency of the symbol in randomly created trees");
|
---|
68 | //
|
---|
69 | // initialFrequencyTextBox
|
---|
70 | //
|
---|
71 | this.errorProvider.SetIconAlignment(this.initialFrequencyTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
72 | this.initialFrequencyTextBox.Size = new System.Drawing.Size(285, 20);
|
---|
73 | //
|
---|
74 | // nameTextBox
|
---|
75 | //
|
---|
76 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
77 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
78 | this.nameTextBox.Size = new System.Drawing.Size(285, 20);
|
---|
79 | //
|
---|
80 | // descriptionTextBox
|
---|
81 | //
|
---|
82 | this.errorProvider.SetIconAlignment(this.descriptionTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
83 | this.descriptionTextBox.Size = new System.Drawing.Size(285, 20);
|
---|
84 | //
|
---|
85 | // minTimeOffsetLabel
|
---|
86 | //
|
---|
87 | this.minTimeOffsetLabel.Location = new System.Drawing.Point(3, 82);
|
---|
88 | this.minTimeOffsetLabel.Name = "minTimeOffsetLabel";
|
---|
89 | this.minTimeOffsetLabel.Size = new System.Drawing.Size(100, 23);
|
---|
90 | this.minTimeOffsetLabel.TabIndex = 15;
|
---|
91 | this.minTimeOffsetLabel.Text = "Min. time offset:";
|
---|
92 | //
|
---|
93 | // maxTimeOffsetLabel
|
---|
94 | //
|
---|
95 | this.maxTimeOffsetLabel.Location = new System.Drawing.Point(3, 108);
|
---|
96 | this.maxTimeOffsetLabel.Name = "maxTimeOffsetLabel";
|
---|
97 | this.maxTimeOffsetLabel.Size = new System.Drawing.Size(100, 23);
|
---|
98 | this.maxTimeOffsetLabel.TabIndex = 14;
|
---|
99 | this.maxTimeOffsetLabel.Text = "Max. time offset:";
|
---|
100 | //
|
---|
101 | // minTimeOffsetTextBox
|
---|
102 | //
|
---|
103 | this.minTimeOffsetTextBox.Location = new System.Drawing.Point(117, 79);
|
---|
104 | this.minTimeOffsetTextBox.Name = "minTimeOffsetTextBox";
|
---|
105 | this.minTimeOffsetTextBox.Size = new System.Drawing.Size(285, 20);
|
---|
106 | this.minTimeOffsetTextBox.TabIndex = 12;
|
---|
107 | this.minTimeOffsetTextBox.TextChanged += new System.EventHandler(this.minTimeOffsetTextBox_TextChanged);
|
---|
108 | //
|
---|
109 | // maxTimeOffsetTextBox
|
---|
110 | //
|
---|
111 | this.maxTimeOffsetTextBox.Location = new System.Drawing.Point(117, 105);
|
---|
112 | this.maxTimeOffsetTextBox.Name = "maxTimeOffsetTextBox";
|
---|
113 | this.maxTimeOffsetTextBox.Size = new System.Drawing.Size(285, 20);
|
---|
114 | this.maxTimeOffsetTextBox.TabIndex = 13;
|
---|
115 | this.maxTimeOffsetTextBox.TextChanged += new System.EventHandler(this.maxTimeOffsetTextBox_TextChanged);
|
---|
116 | //
|
---|
117 | // MovingAverageView
|
---|
118 | //
|
---|
119 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
120 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
121 | this.Controls.Add(this.maxTimeOffsetLabel);
|
---|
122 | this.Controls.Add(this.maxTimeOffsetTextBox);
|
---|
123 | this.Controls.Add(this.minTimeOffsetTextBox);
|
---|
124 | this.Controls.Add(this.minTimeOffsetLabel);
|
---|
125 | this.Name = "MovingAverageView";
|
---|
126 | this.Size = new System.Drawing.Size(408, 288);
|
---|
127 | this.Controls.SetChildIndex(this.initializationGroupBox, 0);
|
---|
128 | this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
|
---|
129 | this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
|
---|
130 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
131 | this.Controls.SetChildIndex(this.descriptionLabel, 0);
|
---|
132 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
133 | this.Controls.SetChildIndex(this.descriptionTextBox, 0);
|
---|
134 | this.Controls.SetChildIndex(this.mutationGroupBox, 0);
|
---|
135 | this.Controls.SetChildIndex(this.minTimeOffsetLabel, 0);
|
---|
136 | this.Controls.SetChildIndex(this.minTimeOffsetTextBox, 0);
|
---|
137 | this.Controls.SetChildIndex(this.maxTimeOffsetTextBox, 0);
|
---|
138 | this.Controls.SetChildIndex(this.maxTimeOffsetLabel, 0);
|
---|
139 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
140 | this.ResumeLayout(false);
|
---|
141 | this.PerformLayout();
|
---|
142 |
|
---|
143 | }
|
---|
144 |
|
---|
145 | #endregion
|
---|
146 |
|
---|
147 | private System.Windows.Forms.Label minTimeOffsetLabel;
|
---|
148 | private System.Windows.Forms.Label maxTimeOffsetLabel;
|
---|
149 | private System.Windows.Forms.TextBox minTimeOffsetTextBox;
|
---|
150 | private System.Windows.Forms.TextBox maxTimeOffsetTextBox;
|
---|
151 |
|
---|
152 | }
|
---|
153 | }
|
---|