Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisCSVImport/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/ClassificationImportTypeDialog.Designer.cs @ 8701

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

#1942:

  • add combo boxes to DataAnalysisImportTypeDialog to select csv settings
  • get branch ready
File size: 2.6 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      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).BeginInit();
28      this.SuspendLayout();
29      //
30      // TargetVariableComboBox
31      //
32      this.TargetVariableComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
33      this.TargetVariableComboBox.FormattingEnabled = true;
34      this.TargetVariableComboBox.Location = new System.Drawing.Point(109, 38);
35      this.TargetVariableComboBox.Name = "TargetVariableComboBox";
36      this.TargetVariableComboBox.Size = new System.Drawing.Size(121, 21);
37      this.TargetVariableComboBox.TabIndex = 10;
38      //
39      // ClassificationImportTypeDialog
40      //
41      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
42      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
43      this.ClientSize = new System.Drawing.Size(339, 184);
44      this.Controls.Add(this.TargetVariableComboBox);
45      this.Name = "ClassificationImportTypeDialog";
46      this.Text = "Classification CSV Import";
47      this.Controls.SetChildIndex(this.TargetVariableComboBox, 0);
48      this.Controls.SetChildIndex(this.ShuffleDataCheckbox, 0);
49      this.Controls.SetChildIndex(this.OkButton, 0);
50      this.Controls.SetChildIndex(this.CancelButton, 0);
51      this.Controls.SetChildIndex(this.ProblemFileLabel, 0);
52      this.Controls.SetChildIndex(this.OpenFileButton, 0);
53      this.Controls.SetChildIndex(this.ProblemTextBox, 0);
54      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).EndInit();
55      this.ResumeLayout(false);
56      this.PerformLayout();
57
58    }
59
60    #endregion
61
62    private System.Windows.Forms.ComboBox TargetVariableComboBox;
63
64
65  }
66}
Note: See TracBrowser for help on using the repository browser.