Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-MoveOperators/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/DataAnalysisImportTypeDialog.Designer.cs @ 11694

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

#1942: training has now at least one sample

File size: 6.1 KB
Line 
1namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
2  partial class DataAnalysisImportTypeDialog {
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.ShuffelDataCheckbox = new System.Windows.Forms.CheckBox();
27      this.OkButton = new System.Windows.Forms.Button();
28      this.CancelButton = new System.Windows.Forms.Button();
29      this.TrainingTestTrackBar = new System.Windows.Forms.TrackBar();
30      this.TrainingTestGroupBox = new System.Windows.Forms.GroupBox();
31      this.TestLabel = new System.Windows.Forms.Label();
32      this.TrainingLabel = new System.Windows.Forms.Label();
33      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).BeginInit();
34      this.TrainingTestGroupBox.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // ShuffelDataCheckbox
38      //
39      this.ShuffelDataCheckbox.AutoSize = true;
40      this.ShuffelDataCheckbox.Location = new System.Drawing.Point(18, 12);
41      this.ShuffelDataCheckbox.Name = "ShuffelDataCheckbox";
42      this.ShuffelDataCheckbox.Size = new System.Drawing.Size(91, 17);
43      this.ShuffelDataCheckbox.TabIndex = 1;
44      this.ShuffelDataCheckbox.Text = "Shuffel Data?";
45      this.ShuffelDataCheckbox.UseVisualStyleBackColor = true;
46      //
47      // OkButton
48      //
49      this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
50      this.OkButton.Location = new System.Drawing.Point(18, 121);
51      this.OkButton.Name = "OkButton";
52      this.OkButton.Size = new System.Drawing.Size(75, 23);
53      this.OkButton.TabIndex = 2;
54      this.OkButton.Text = "&Ok";
55      this.OkButton.UseVisualStyleBackColor = true;
56      //
57      // CancelButton
58      //
59      this.CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
60      this.CancelButton.Location = new System.Drawing.Point(142, 121);
61      this.CancelButton.Name = "CancelButton";
62      this.CancelButton.Size = new System.Drawing.Size(75, 23);
63      this.CancelButton.TabIndex = 3;
64      this.CancelButton.Text = "&Cancel";
65      this.CancelButton.UseVisualStyleBackColor = true;
66      //
67      // TrainingTestTrackBar
68      //
69      this.TrainingTestTrackBar.Location = new System.Drawing.Point(6, 19);
70      this.TrainingTestTrackBar.Maximum = 100;
71      this.TrainingTestTrackBar.Minimum = 1;
72      this.TrainingTestTrackBar.Name = "TrainingTestTrackBar";
73      this.TrainingTestTrackBar.Size = new System.Drawing.Size(210, 45);
74      this.TrainingTestTrackBar.TabIndex = 4;
75      this.TrainingTestTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
76      this.TrainingTestTrackBar.Value = 66;
77      this.TrainingTestTrackBar.ValueChanged += new System.EventHandler(this.TrainingTestTrackBar_ValueChanged);
78      //
79      // TrainingTestGroupBox
80      //
81      this.TrainingTestGroupBox.Controls.Add(this.TestLabel);
82      this.TrainingTestGroupBox.Controls.Add(this.TrainingLabel);
83      this.TrainingTestGroupBox.Controls.Add(this.TrainingTestTrackBar);
84      this.TrainingTestGroupBox.Location = new System.Drawing.Point(4, 35);
85      this.TrainingTestGroupBox.Name = "TrainingTestGroupBox";
86      this.TrainingTestGroupBox.Size = new System.Drawing.Size(222, 80);
87      this.TrainingTestGroupBox.TabIndex = 5;
88      this.TrainingTestGroupBox.TabStop = false;
89      this.TrainingTestGroupBox.Text = "Training/Test";
90      //
91      // TestLabel
92      //
93      this.TestLabel.AutoSize = true;
94      this.TestLabel.Location = new System.Drawing.Point(108, 51);
95      this.TestLabel.Name = "TestLabel";
96      this.TestLabel.Size = new System.Drawing.Size(57, 13);
97      this.TestLabel.TabIndex = 6;
98      this.TestLabel.Text = "Test: 34 %";
99      //
100      // TrainingLabel
101      //
102      this.TrainingLabel.AutoSize = true;
103      this.TrainingLabel.Location = new System.Drawing.Point(11, 51);
104      this.TrainingLabel.Name = "TrainingLabel";
105      this.TrainingLabel.Size = new System.Drawing.Size(74, 13);
106      this.TrainingLabel.TabIndex = 5;
107      this.TrainingLabel.Text = "Training: 66 %";
108      //
109      // DataAnalysisImportTypeDialog
110      //
111      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
112      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113      this.ClientSize = new System.Drawing.Size(229, 151);
114      this.Controls.Add(this.CancelButton);
115      this.Controls.Add(this.OkButton);
116      this.Controls.Add(this.ShuffelDataCheckbox);
117      this.Controls.Add(this.TrainingTestGroupBox);
118      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
119      this.Name = "DataAnalysisImportTypeDialog";
120      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
121      this.Text = "DataAnalysisImportTypeDialog";
122      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).EndInit();
123      this.TrainingTestGroupBox.ResumeLayout(false);
124      this.TrainingTestGroupBox.PerformLayout();
125      this.ResumeLayout(false);
126      this.PerformLayout();
127
128    }
129
130    #endregion
131
132    protected System.Windows.Forms.CheckBox ShuffelDataCheckbox;
133    protected System.Windows.Forms.Button OkButton;
134    protected System.Windows.Forms.Button CancelButton;
135    private System.Windows.Forms.TrackBar TrainingTestTrackBar;
136    private System.Windows.Forms.GroupBox TrainingTestGroupBox;
137    private System.Windows.Forms.Label TestLabel;
138    private System.Windows.Forms.Label TrainingLabel;
139
140  }
141}
Note: See TracBrowser for help on using the repository browser.