Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisCSVImport/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/RegressionImportTypeDialog.Designer.cs @ 8715

Last change on this file since 8715 was 8715, checked in by sforsten, 12 years ago

#1942:

  • added csv import dialog for regression
  • improved existing dialog (tool tip, design, preview of dataset)
File size: 5.4 KB
Line 
1namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
2  partial class RegressionImportTypeDialog {
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.TargetVariableComboBox = new System.Windows.Forms.ComboBox();
27      this.TargetVariableLabel = new System.Windows.Forms.Label();
28      this.TargetVariableInfoLabel = new System.Windows.Forms.Label();
29      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).BeginInit();
30      this.CSVSettingsGroupBox.SuspendLayout();
31      this.ProblemDataSettingsGroupBox.SuspendLayout();
32      this.SuspendLayout();
33      //
34      // ProblemDataSettingsGroupBox
35      //
36      this.ProblemDataSettingsGroupBox.Controls.Add(this.TargetVariableInfoLabel);
37      this.ProblemDataSettingsGroupBox.Controls.Add(this.TargetVariableLabel);
38      this.ProblemDataSettingsGroupBox.Controls.Add(this.TargetVariableComboBox);
39      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.PreviewLabel, 0);
40      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.ShuffelInfoLabel, 0);
41      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TargetVariableComboBox, 0);
42      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.ShuffleDataCheckbox, 0);
43      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TargetVariableLabel, 0);
44      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TargetVariableInfoLabel, 0);
45      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TrainingTestTrackBar, 0);
46      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TrainingLabel, 0);
47      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.PreviewDatasetMatrix, 0);
48      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.TestLabel, 0);
49      this.ProblemDataSettingsGroupBox.Controls.SetChildIndex(this.ErrorTextBox, 0);
50      //
51      // TargetVariableComboBox
52      //
53      this.TargetVariableComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
54                  | System.Windows.Forms.AnchorStyles.Right)));
55      this.TargetVariableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
56      this.TargetVariableComboBox.FormattingEnabled = true;
57      this.TargetVariableComboBox.Location = new System.Drawing.Point(230, 19);
58      this.TargetVariableComboBox.Name = "TargetVariableComboBox";
59      this.TargetVariableComboBox.Size = new System.Drawing.Size(181, 21);
60      this.TargetVariableComboBox.TabIndex = 10;
61      //
62      // TargetVariableLabel
63      //
64      this.TargetVariableLabel.AutoSize = true;
65      this.TargetVariableLabel.Location = new System.Drawing.Point(142, 22);
66      this.TargetVariableLabel.Name = "TargetVariableLabel";
67      this.TargetVariableLabel.Size = new System.Drawing.Size(82, 13);
68      this.TargetVariableLabel.TabIndex = 20;
69      this.TargetVariableLabel.Text = "Target Variable:";
70      //
71      // TargetVariableinfoLabel
72      //
73      this.TargetVariableInfoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
74      this.TargetVariableInfoLabel.Location = new System.Drawing.Point(421, 22);
75      this.TargetVariableInfoLabel.Name = "Target Variable Info";
76      this.TargetVariableInfoLabel.Size = new System.Drawing.Size(16, 16);
77      this.TargetVariableInfoLabel.TabIndex = 21;
78      this.TargetVariableInfoLabel.Tag = "Select the target variable of the csv file.";
79      this.TargetVariableInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
80      this.TargetVariableInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
81      //
82      // RegressionImportTypeDialog
83      //
84      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
85      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
86      this.ClientSize = new System.Drawing.Size(471, 442);
87      this.Name = "RegressionImportTypeDialog";
88      this.Text = "Classification CSV Import";
89      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).EndInit();
90      this.CSVSettingsGroupBox.ResumeLayout(false);
91      this.CSVSettingsGroupBox.PerformLayout();
92      this.ProblemDataSettingsGroupBox.ResumeLayout(false);
93      this.ProblemDataSettingsGroupBox.PerformLayout();
94      this.ResumeLayout(false);
95      this.PerformLayout();
96
97    }
98
99    #endregion
100
101    private System.Windows.Forms.ComboBox TargetVariableComboBox;
102    private System.Windows.Forms.Label TargetVariableLabel;
103    protected System.Windows.Forms.Label TargetVariableInfoLabel;
104
105
106  }
107}
Note: See TracBrowser for help on using the repository browser.