Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification.TimeSeries/OffspringSelectionGpEditor.Designer.cs @ 1253

Last change on this file since 1253 was 1253, checked in by gkronber, 15 years ago

Added separate editors for StandardGP and OffspringSelectionGP variants for time series forecasting. #224 (Simple frontend for GP for non-expert users (similar to HeurisicLab.SGA))

File size: 3.0 KB
Line 
1namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
2  partial class OffspringSelectionGpEditor {
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.autoregressionCheckbox = new System.Windows.Forms.CheckBox();
27      this.label1 = new System.Windows.Forms.Label();
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      // autoregressionCheckbox
40      //
41      this.autoregressionCheckbox.Anchor = System.Windows.Forms.AnchorStyles.None;
42      this.autoregressionCheckbox.AutoSize = true;
43      this.autoregressionCheckbox.Location = new System.Drawing.Point(218, 267);
44      this.autoregressionCheckbox.Name = "autoregressionCheckbox";
45      this.autoregressionCheckbox.Size = new System.Drawing.Size(135, 17);
46      this.autoregressionCheckbox.TabIndex = 18;
47      this.autoregressionCheckbox.Text = "Autoregression allowed";
48      this.autoregressionCheckbox.UseVisualStyleBackColor = true;
49      //
50      // label1
51      //
52      this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
53      this.label1.AutoSize = true;
54      this.label1.Location = new System.Drawing.Point(65, 268);
55      this.label1.Name = "label1";
56      this.label1.Size = new System.Drawing.Size(127, 13);
57      this.label1.TabIndex = 19;
58      this.label1.Text = "Autoregressive modelling:";
59      //
60      // OffspringSelectionGpEditor
61      //
62      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64      this.Name = "OffspringSelectionGpEditor";
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.CheckBox autoregressionCheckbox;
75    private System.Windows.Forms.Label label1;
76  }
77}
Note: See TracBrowser for help on using the repository browser.