Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/TargetVariablePage.Designer.cs @ 7953

Last change on this file since 7953 was 7953, checked in by spimming, 12 years ago

#1807:

  • added file dialog to select csv problem file
  • wizard page to select target variable
  • plugin dependencies updated
File size: 4.9 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class TargetVariablePage {
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 Windows Form 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.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
27      this.label1 = new System.Windows.Forms.Label();
28      this.cmbTargetVariable = new System.Windows.Forms.ComboBox();
29      this.label2 = new System.Windows.Forms.Label();
30      this.SuspendLayout();
31      //
32      // wizardBanner
33      //
34      this.wizardBanner.Size = new System.Drawing.Size(471, 81);
35      this.wizardBanner.Subtitle = "Select the solumn which describes the expected output values.";
36      this.wizardBanner.Title = "Target Variable";
37      //
38      // stringConvertibleMatrixView
39      //
40      this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
41            | System.Windows.Forms.AnchorStyles.Left)
42            | System.Windows.Forms.AnchorStyles.Right)));
43      this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
44      this.stringConvertibleMatrixView.Content = null;
45      this.stringConvertibleMatrixView.Location = new System.Drawing.Point(6, 140);
46      this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
47      this.stringConvertibleMatrixView.ReadOnly = false;
48      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true;
49      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
50      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(462, 168);
51      this.stringConvertibleMatrixView.TabIndex = 1;
52      //
53      // label1
54      //
55      this.label1.AutoSize = true;
56      this.label1.Location = new System.Drawing.Point(3, 91);
57      this.label1.Name = "label1";
58      this.label1.Size = new System.Drawing.Size(110, 13);
59      this.label1.TabIndex = 2;
60      this.label1.Text = "Select target variable:";
61      //
62      // cmbTargetVariable
63      //
64      this.cmbTargetVariable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
65            | System.Windows.Forms.AnchorStyles.Right)));
66      this.cmbTargetVariable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
67      this.cmbTargetVariable.FormattingEnabled = true;
68      this.cmbTargetVariable.Location = new System.Drawing.Point(119, 88);
69      this.cmbTargetVariable.Name = "cmbTargetVariable";
70      this.cmbTargetVariable.Size = new System.Drawing.Size(349, 21);
71      this.cmbTargetVariable.TabIndex = 3;
72      //
73      // label2
74      //
75      this.label2.AutoSize = true;
76      this.label2.Location = new System.Drawing.Point(3, 124);
77      this.label2.Name = "label2";
78      this.label2.Size = new System.Drawing.Size(72, 13);
79      this.label2.TabIndex = 4;
80      this.label2.Text = "Preview data:";
81      //
82      // ProblemDataViewPage
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.Controls.Add(this.label2);
86      this.Controls.Add(this.cmbTargetVariable);
87      this.Controls.Add(this.label1);
88      this.Controls.Add(this.stringConvertibleMatrixView);
89      this.Name = "ProblemDataViewPage";
90      this.Size = new System.Drawing.Size(471, 311);
91      this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataViewPage_SetActive);
92      this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ProblemDataViewPage_WizardNext);
93      this.Controls.SetChildIndex(this.wizardBanner, 0);
94      this.Controls.SetChildIndex(this.stringConvertibleMatrixView, 0);
95      this.Controls.SetChildIndex(this.label1, 0);
96      this.Controls.SetChildIndex(this.cmbTargetVariable, 0);
97      this.Controls.SetChildIndex(this.label2, 0);
98      this.ResumeLayout(false);
99      this.PerformLayout();
100
101    }
102
103    #endregion
104
105    private Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
106    private System.Windows.Forms.Label label1;
107    private System.Windows.Forms.ComboBox cmbTargetVariable;
108    private System.Windows.Forms.Label label2;
109  }
110}
Note: See TracBrowser for help on using the repository browser.