1 | namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
|
---|
2 | partial class StandardGpEditor {
|
---|
3 | /// <summary>
|
---|
4 | /// Required designer variable.
|
---|
5 | /// </summary>
|
---|
6 | private System.ComponentModel.IContainer components = null;
|
---|
7 |
|
---|
8 | /// <summary>
|
---|
9 | /// Clean up any resources being used.
|
---|
10 | /// </summary>
|
---|
11 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
12 | protected override void Dispose(bool disposing) {
|
---|
13 | if (disposing && (components != null)) {
|
---|
14 | components.Dispose();
|
---|
15 | }
|
---|
16 | base.Dispose(disposing);
|
---|
17 | }
|
---|
18 |
|
---|
19 | #region Component Designer generated code
|
---|
20 |
|
---|
21 | /// <summary>
|
---|
22 | /// Required method for Designer support - do not modify
|
---|
23 | /// the contents of this method with the code editor.
|
---|
24 | /// </summary>
|
---|
25 | private void InitializeComponent() {
|
---|
26 | this.label1 = new System.Windows.Forms.Label();
|
---|
27 | this.autoregressionCheckbox = new System.Windows.Forms.CheckBox();
|
---|
28 | this.tabControl.SuspendLayout();
|
---|
29 | this.parametersTabPage.SuspendLayout();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // parametersTabPage
|
---|
33 | //
|
---|
34 | this.parametersTabPage.Controls.Add(this.label1);
|
---|
35 | this.parametersTabPage.Controls.Add(this.autoregressionCheckbox);
|
---|
36 | this.parametersTabPage.Controls.SetChildIndex(this.autoregressionCheckbox, 0);
|
---|
37 | this.parametersTabPage.Controls.SetChildIndex(this.label1, 0);
|
---|
38 | //
|
---|
39 | // label1
|
---|
40 | //
|
---|
41 | this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
42 | this.label1.AutoSize = true;
|
---|
43 | this.label1.Location = new System.Drawing.Point(65, 235);
|
---|
44 | this.label1.Name = "label1";
|
---|
45 | this.label1.Size = new System.Drawing.Size(127, 13);
|
---|
46 | this.label1.TabIndex = 21;
|
---|
47 | this.label1.Text = "Autoregressive modelling:";
|
---|
48 | //
|
---|
49 | // autoregressionCheckbox
|
---|
50 | //
|
---|
51 | this.autoregressionCheckbox.Anchor = System.Windows.Forms.AnchorStyles.None;
|
---|
52 | this.autoregressionCheckbox.AutoSize = true;
|
---|
53 | this.autoregressionCheckbox.Location = new System.Drawing.Point(218, 234);
|
---|
54 | this.autoregressionCheckbox.Name = "autoregressionCheckbox";
|
---|
55 | this.autoregressionCheckbox.Size = new System.Drawing.Size(135, 17);
|
---|
56 | this.autoregressionCheckbox.TabIndex = 20;
|
---|
57 | this.autoregressionCheckbox.Text = "Autoregression allowed";
|
---|
58 | this.autoregressionCheckbox.UseVisualStyleBackColor = true;
|
---|
59 | //
|
---|
60 | // StandardGpEditor
|
---|
61 | //
|
---|
62 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
63 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
64 | this.Name = "StandardGpEditor";
|
---|
65 | this.tabControl.ResumeLayout(false);
|
---|
66 | this.parametersTabPage.ResumeLayout(false);
|
---|
67 | this.parametersTabPage.PerformLayout();
|
---|
68 | this.ResumeLayout(false);
|
---|
69 |
|
---|
70 | }
|
---|
71 |
|
---|
72 | #endregion
|
---|
73 |
|
---|
74 | private System.Windows.Forms.Label label1;
|
---|
75 | private System.Windows.Forms.CheckBox autoregressionCheckbox;
|
---|
76 | }
|
---|
77 | }
|
---|