Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/ClassificationImportTypeDialog.Designer.cs @ 8877

Last change on this file since 8877 was 8877, checked in by mkommend, 11 years ago

#1942: Reintegrated branch for CSV import.

File size: 5.2 KB
Line 
1namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
2  partial class ClassificationImportTypeDialog {
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.Location = new System.Drawing.Point(421, 21);
74      this.TargetVariableInfoLabel.Name = "Target Variable Info";
75      this.TargetVariableInfoLabel.Size = new System.Drawing.Size(16, 16);
76      this.TargetVariableInfoLabel.TabIndex = 21;
77      this.TargetVariableInfoLabel.Tag = "Select the target variable of the csv file.";
78      this.TargetVariableInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
79      this.TargetVariableInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
80      //
81      // ClassificationImportTypeDialog
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
85      this.ClientSize = new System.Drawing.Size(471, 442);
86      this.Name = "ClassificationImportTypeDialog";
87      this.Text = "Classification CSV Import";
88      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).EndInit();
89      this.CSVSettingsGroupBox.ResumeLayout(false);
90      this.CSVSettingsGroupBox.PerformLayout();
91      this.ProblemDataSettingsGroupBox.ResumeLayout(false);
92      this.ProblemDataSettingsGroupBox.PerformLayout();
93      this.ResumeLayout(false);
94      this.PerformLayout();
95
96    }
97
98    #endregion
99
100    private System.Windows.Forms.ComboBox TargetVariableComboBox;
101    private System.Windows.Forms.Label TargetVariableLabel;
102    protected System.Windows.Forms.Label TargetVariableInfoLabel;
103
104
105  }
106}
Note: See TracBrowser for help on using the repository browser.