Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/DataAnalysisImportTypeDialog.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: 21.9 KB
Line 
1
2namespace HeuristicLab.Problems.Instances.DataAnalysis.Views {
3  partial class DataAnalysisImportTypeDialog {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Windows Form Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.components = new System.ComponentModel.Container();
28      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataAnalysisImportTypeDialog));
29      this.ShuffleDataCheckbox = new System.Windows.Forms.CheckBox();
30      this.OkButton = new System.Windows.Forms.Button();
31      this.TrainingTestTrackBar = new System.Windows.Forms.TrackBar();
32      this.TestLabel = new System.Windows.Forms.Label();
33      this.TrainingLabel = new System.Windows.Forms.Label();
34      this.CancelButton = new System.Windows.Forms.Button();
35      this.OpenFileButton = new System.Windows.Forms.Button();
36      this.ProblemFileLabel = new System.Windows.Forms.Label();
37      this.ProblemTextBox = new System.Windows.Forms.TextBox();
38      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
39      this.DateTimeFormatComboBox = new System.Windows.Forms.ComboBox();
40      this.DecimalSeparatorComboBox = new System.Windows.Forms.ComboBox();
41      this.DateTimeFormatLabel = new System.Windows.Forms.Label();
42      this.DecimalSeperatorLabel = new System.Windows.Forms.Label();
43      this.SeparatorLabel = new System.Windows.Forms.Label();
44      this.SeparatorComboBox = new System.Windows.Forms.ComboBox();
45      this.CSVSettingsGroupBox = new System.Windows.Forms.GroupBox();
46      this.DateTimeFormatInfoLabel = new System.Windows.Forms.Label();
47      this.DecimalSeparatorInfoLabel = new System.Windows.Forms.Label();
48      this.SeparatorInfoLabel = new System.Windows.Forms.Label();
49      this.ProblemDataSettingsGroupBox = new System.Windows.Forms.GroupBox();
50      this.ErrorTextBox = new System.Windows.Forms.TextBox();
51      this.ShuffelInfoLabel = new System.Windows.Forms.Label();
52      this.PreviewLabel = new System.Windows.Forms.Label();
53      this.PreviewDatasetMatrix = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
54      this.ToolTip = new System.Windows.Forms.ToolTip(this.components);
55      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).BeginInit();
56      this.CSVSettingsGroupBox.SuspendLayout();
57      this.ProblemDataSettingsGroupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // ShuffleDataCheckbox
61      //
62      this.ShuffleDataCheckbox.AutoSize = true;
63      this.ShuffleDataCheckbox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
64      this.ShuffleDataCheckbox.Location = new System.Drawing.Point(9, 20);
65      this.ShuffleDataCheckbox.Name = "ShuffleDataCheckbox";
66      this.ShuffleDataCheckbox.Size = new System.Drawing.Size(91, 17);
67      this.ShuffleDataCheckbox.TabIndex = 1;
68      this.ShuffleDataCheckbox.Text = "Shuffle Data?";
69      this.ShuffleDataCheckbox.UseVisualStyleBackColor = true;
70      //
71      // OkButton
72      //
73      this.OkButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
74      this.OkButton.DialogResult = System.Windows.Forms.DialogResult.OK;
75      this.OkButton.Enabled = false;
76      this.OkButton.Location = new System.Drawing.Point(87, 407);
77      this.OkButton.Name = "OkButton";
78      this.OkButton.Size = new System.Drawing.Size(75, 23);
79      this.OkButton.TabIndex = 2;
80      this.OkButton.Text = "&Ok";
81      this.OkButton.UseVisualStyleBackColor = true;
82      //
83      // TrainingTestTrackBar
84      //
85      this.TrainingTestTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86                  | System.Windows.Forms.AnchorStyles.Right)));
87      this.TrainingTestTrackBar.Location = new System.Drawing.Point(6, 43);
88      this.TrainingTestTrackBar.Maximum = 100;
89      this.TrainingTestTrackBar.Minimum = 1;
90      this.TrainingTestTrackBar.Name = "TrainingTestTrackBar";
91      this.TrainingTestTrackBar.Size = new System.Drawing.Size(435, 45);
92      this.TrainingTestTrackBar.TabIndex = 4;
93      this.TrainingTestTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
94      this.TrainingTestTrackBar.Value = 66;
95      this.TrainingTestTrackBar.ValueChanged += new System.EventHandler(this.TrainingTestTrackBar_ValueChanged);
96      //
97      // TestLabel
98      //
99      this.TestLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
100      this.TestLabel.AutoSize = true;
101      this.TestLabel.Location = new System.Drawing.Point(303, 68);
102      this.TestLabel.Name = "TestLabel";
103      this.TestLabel.Size = new System.Drawing.Size(57, 13);
104      this.TestLabel.TabIndex = 6;
105      this.TestLabel.Text = "Test: 34 %";
106      //
107      // TrainingLabel
108      //
109      this.TrainingLabel.AutoSize = true;
110      this.TrainingLabel.Location = new System.Drawing.Point(76, 68);
111      this.TrainingLabel.Name = "TrainingLabel";
112      this.TrainingLabel.Size = new System.Drawing.Size(74, 13);
113      this.TrainingLabel.TabIndex = 5;
114      this.TrainingLabel.Text = "Training: 66 %";
115      //
116      // CancelButton
117      //
118      this.CancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
119      this.CancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
120      this.CancelButton.Location = new System.Drawing.Point(318, 407);
121      this.CancelButton.Name = "CancelButton";
122      this.CancelButton.Size = new System.Drawing.Size(75, 23);
123      this.CancelButton.TabIndex = 3;
124      this.CancelButton.Text = "&Cancel";
125      this.CancelButton.UseVisualStyleBackColor = true;
126      //
127      // OpenFileButton
128      //
129      this.OpenFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
130      this.OpenFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
131      this.OpenFileButton.Location = new System.Drawing.Point(429, 3);
132      this.OpenFileButton.Name = "OpenFileButton";
133      this.OpenFileButton.Size = new System.Drawing.Size(24, 24);
134      this.OpenFileButton.TabIndex = 8;
135      this.OpenFileButton.UseVisualStyleBackColor = true;
136      this.OpenFileButton.Click += new System.EventHandler(this.OpenFileButtonClick);
137      //
138      // ProblemFileLabel
139      //
140      this.ProblemFileLabel.AutoSize = true;
141      this.ProblemFileLabel.Location = new System.Drawing.Point(18, 9);
142      this.ProblemFileLabel.Name = "ProblemFileLabel";
143      this.ProblemFileLabel.Size = new System.Drawing.Size(67, 13);
144      this.ProblemFileLabel.TabIndex = 6;
145      this.ProblemFileLabel.Text = "Problem File:";
146      //
147      // ProblemTextBox
148      //
149      this.ProblemTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
150                  | System.Windows.Forms.AnchorStyles.Right)));
151      this.ProblemTextBox.Location = new System.Drawing.Point(91, 6);
152      this.ProblemTextBox.Name = "ProblemTextBox";
153      this.ProblemTextBox.ReadOnly = true;
154      this.ProblemTextBox.Size = new System.Drawing.Size(332, 20);
155      this.ProblemTextBox.TabIndex = 9;
156      //
157      // openFileDialog
158      //
159      this.openFileDialog.Filter = "CSV files (*.csv)|*.csv|Text files (*.txt)|*.txt|All files (*.*)|*.*";
160      //
161      // DateTimeFormatComboBox
162      //
163      this.DateTimeFormatComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
164                  | System.Windows.Forms.AnchorStyles.Right)));
165      this.DateTimeFormatComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
166      this.DateTimeFormatComboBox.FormattingEnabled = true;
167      this.DateTimeFormatComboBox.Location = new System.Drawing.Point(111, 73);
168      this.DateTimeFormatComboBox.Name = "DateTimeFormatComboBox";
169      this.DateTimeFormatComboBox.Size = new System.Drawing.Size(300, 21);
170      this.DateTimeFormatComboBox.TabIndex = 15;
171      this.DateTimeFormatComboBox.SelectionChangeCommitted += new System.EventHandler(this.CSVFormatComboBoxSelectionChangeCommitted);
172      //
173      // DecimalSeparatorComboBox
174      //
175      this.DecimalSeparatorComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
176                  | System.Windows.Forms.AnchorStyles.Right)));
177      this.DecimalSeparatorComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
178      this.DecimalSeparatorComboBox.FormattingEnabled = true;
179      this.DecimalSeparatorComboBox.Location = new System.Drawing.Point(111, 46);
180      this.DecimalSeparatorComboBox.Name = "DecimalSeparatorComboBox";
181      this.DecimalSeparatorComboBox.Size = new System.Drawing.Size(300, 21);
182      this.DecimalSeparatorComboBox.TabIndex = 14;
183      this.DecimalSeparatorComboBox.SelectionChangeCommitted += new System.EventHandler(this.CSVFormatComboBoxSelectionChangeCommitted);
184      //
185      // DateTimeFormatLabel
186      //
187      this.DateTimeFormatLabel.AutoSize = true;
188      this.DateTimeFormatLabel.Location = new System.Drawing.Point(6, 76);
189      this.DateTimeFormatLabel.Name = "DateTimeFormatLabel";
190      this.DateTimeFormatLabel.Size = new System.Drawing.Size(91, 13);
191      this.DateTimeFormatLabel.TabIndex = 13;
192      this.DateTimeFormatLabel.Text = "DateTime Format:";
193      //
194      // DecimalSeperatorLabel
195      //
196      this.DecimalSeperatorLabel.AutoSize = true;
197      this.DecimalSeperatorLabel.Location = new System.Drawing.Point(6, 49);
198      this.DecimalSeperatorLabel.Name = "DecimalSeperatorLabel";
199      this.DecimalSeperatorLabel.Size = new System.Drawing.Size(97, 13);
200      this.DecimalSeperatorLabel.TabIndex = 12;
201      this.DecimalSeperatorLabel.Text = "Decimal Separator:";
202      //
203      // SeparatorLabel
204      //
205      this.SeparatorLabel.AutoSize = true;
206      this.SeparatorLabel.Location = new System.Drawing.Point(6, 22);
207      this.SeparatorLabel.Name = "SeparatorLabel";
208      this.SeparatorLabel.Size = new System.Drawing.Size(56, 13);
209      this.SeparatorLabel.TabIndex = 11;
210      this.SeparatorLabel.Text = "Separator:";
211      //
212      // SeparatorComboBox
213      //
214      this.SeparatorComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
215                  | System.Windows.Forms.AnchorStyles.Right)));
216      this.SeparatorComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
217      this.SeparatorComboBox.FormattingEnabled = true;
218      this.SeparatorComboBox.Location = new System.Drawing.Point(111, 19);
219      this.SeparatorComboBox.Name = "SeparatorComboBox";
220      this.SeparatorComboBox.Size = new System.Drawing.Size(300, 21);
221      this.SeparatorComboBox.TabIndex = 10;
222      this.SeparatorComboBox.SelectionChangeCommitted += new System.EventHandler(this.CSVFormatComboBoxSelectionChangeCommitted);
223      //
224      // CSVSettingsGroupBox
225      //
226      this.CSVSettingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
227                  | System.Windows.Forms.AnchorStyles.Right)));
228      this.CSVSettingsGroupBox.Controls.Add(this.DateTimeFormatInfoLabel);
229      this.CSVSettingsGroupBox.Controls.Add(this.DecimalSeparatorInfoLabel);
230      this.CSVSettingsGroupBox.Controls.Add(this.SeparatorInfoLabel);
231      this.CSVSettingsGroupBox.Controls.Add(this.SeparatorComboBox);
232      this.CSVSettingsGroupBox.Controls.Add(this.DateTimeFormatComboBox);
233      this.CSVSettingsGroupBox.Controls.Add(this.SeparatorLabel);
234      this.CSVSettingsGroupBox.Controls.Add(this.DecimalSeparatorComboBox);
235      this.CSVSettingsGroupBox.Controls.Add(this.DecimalSeperatorLabel);
236      this.CSVSettingsGroupBox.Controls.Add(this.DateTimeFormatLabel);
237      this.CSVSettingsGroupBox.Location = new System.Drawing.Point(12, 32);
238      this.CSVSettingsGroupBox.Name = "CSVSettingsGroupBox";
239      this.CSVSettingsGroupBox.Size = new System.Drawing.Size(447, 105);
240      this.CSVSettingsGroupBox.TabIndex = 16;
241      this.CSVSettingsGroupBox.TabStop = false;
242      this.CSVSettingsGroupBox.Text = "CSV Settings";
243      //
244      // DateTimeFormatInfoLabel
245      //
246      this.DateTimeFormatInfoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
247      this.DateTimeFormatInfoLabel.Location = new System.Drawing.Point(421, 76);
248      this.DateTimeFormatInfoLabel.Name = "DateTime Format Info";
249      this.DateTimeFormatInfoLabel.Size = new System.Drawing.Size(16, 16);
250      this.DateTimeFormatInfoLabel.TabIndex = 23;
251      this.DateTimeFormatInfoLabel.Tag = "Select the date time format used in the csv file";
252      this.DateTimeFormatInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
253      this.DateTimeFormatInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
254      //
255      // DecimalSeparatorInfoLabel
256      //
257      this.DecimalSeparatorInfoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
258      this.DecimalSeparatorInfoLabel.Location = new System.Drawing.Point(421, 49);
259      this.DecimalSeparatorInfoLabel.Name = "Decimal Separator Info";
260      this.DecimalSeparatorInfoLabel.Size = new System.Drawing.Size(16, 16);
261      this.DecimalSeparatorInfoLabel.TabIndex = 22;
262      this.DecimalSeparatorInfoLabel.Tag = "Select the decimal separator used to for double values";
263      this.DecimalSeparatorInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
264      this.DecimalSeparatorInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
265      //
266      // SeparatorInfoLabel
267      //
268      this.SeparatorInfoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
269      this.SeparatorInfoLabel.Location = new System.Drawing.Point(421, 22);
270      this.SeparatorInfoLabel.Name = "Separator Info";
271      this.SeparatorInfoLabel.Size = new System.Drawing.Size(16, 16);
272      this.SeparatorInfoLabel.TabIndex = 21;
273      this.SeparatorInfoLabel.Tag = "Select the separator used to separate columns in the csv file.";
274      this.SeparatorInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
275      this.SeparatorInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
276      //
277      // ProblemDataSettingsGroupBox
278      //
279      this.ProblemDataSettingsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
280                  | System.Windows.Forms.AnchorStyles.Left)
281                  | System.Windows.Forms.AnchorStyles.Right)));
282      this.ProblemDataSettingsGroupBox.Controls.Add(this.ErrorTextBox);
283      this.ProblemDataSettingsGroupBox.Controls.Add(this.ShuffelInfoLabel);
284      this.ProblemDataSettingsGroupBox.Controls.Add(this.PreviewLabel);
285      this.ProblemDataSettingsGroupBox.Controls.Add(this.TestLabel);
286      this.ProblemDataSettingsGroupBox.Controls.Add(this.PreviewDatasetMatrix);
287      this.ProblemDataSettingsGroupBox.Controls.Add(this.TrainingLabel);
288      this.ProblemDataSettingsGroupBox.Controls.Add(this.TrainingTestTrackBar);
289      this.ProblemDataSettingsGroupBox.Controls.Add(this.ShuffleDataCheckbox);
290      this.ProblemDataSettingsGroupBox.Location = new System.Drawing.Point(12, 143);
291      this.ProblemDataSettingsGroupBox.Name = "ProblemDataSettingsGroupBox";
292      this.ProblemDataSettingsGroupBox.Size = new System.Drawing.Size(447, 258);
293      this.ProblemDataSettingsGroupBox.TabIndex = 17;
294      this.ProblemDataSettingsGroupBox.TabStop = false;
295      this.ProblemDataSettingsGroupBox.Text = "ProblemData Settings";
296      //
297      // ErrorTextBox
298      //
299      this.ErrorTextBox.Location = new System.Drawing.Point(6, 15);
300      this.ErrorTextBox.Multiline = true;
301      this.ErrorTextBox.Name = "ErrorTextBox";
302      this.ErrorTextBox.Size = new System.Drawing.Size(435, 73);
303      this.ErrorTextBox.TabIndex = 0;
304      this.ErrorTextBox.Visible = false;
305      //
306      // ShuffelInfoLabel
307      //
308      this.ShuffelInfoLabel.Location = new System.Drawing.Point(111, 20);
309      this.ShuffelInfoLabel.Name = "Shuffle Info";
310      this.ShuffelInfoLabel.Size = new System.Drawing.Size(16, 16);
311      this.ShuffelInfoLabel.TabIndex = 8;
312      this.ShuffelInfoLabel.Tag = "Check, if the importat data should be shuffled";
313      this.ShuffelInfoLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Information;
314      this.ShuffelInfoLabel.DoubleClick += new System.EventHandler(this.ControlToolTip_DoubleClick);
315      //
316      // PreviewLabel
317      //
318      this.PreviewLabel.AutoSize = true;
319      this.PreviewLabel.Location = new System.Drawing.Point(9, 89);
320      this.PreviewLabel.Name = "PreviewLabel";
321      this.PreviewLabel.Size = new System.Drawing.Size(45, 13);
322      this.PreviewLabel.TabIndex = 7;
323      this.PreviewLabel.Text = "Preview";
324      //
325      // PreviewDatasetMatrix
326      //
327      this.PreviewDatasetMatrix.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
328                  | System.Windows.Forms.AnchorStyles.Left)
329                  | System.Windows.Forms.AnchorStyles.Right)));
330      this.PreviewDatasetMatrix.Caption = "Dataset Preview";
331      this.PreviewDatasetMatrix.Content = null;
332      this.PreviewDatasetMatrix.Location = new System.Drawing.Point(6, 108);
333      this.PreviewDatasetMatrix.Name = "PreviewDatasetMatrix";
334      this.PreviewDatasetMatrix.ReadOnly = true;
335      this.PreviewDatasetMatrix.ShowRowsAndColumnsTextBox = false;
336      this.PreviewDatasetMatrix.ShowStatisticalInformation = false;
337      this.PreviewDatasetMatrix.Size = new System.Drawing.Size(435, 144);
338      this.PreviewDatasetMatrix.TabIndex = 0;
339      //
340      // DataAnalysisImportTypeDialog
341      //
342      this.AcceptButton = this.OkButton;
343      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
344      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
345      this.ClientSize = new System.Drawing.Size(471, 442);
346      this.ControlBox = false;
347      this.Controls.Add(this.ProblemDataSettingsGroupBox);
348      this.Controls.Add(this.CSVSettingsGroupBox);
349      this.Controls.Add(this.ProblemTextBox);
350      this.Controls.Add(this.OpenFileButton);
351      this.Controls.Add(this.ProblemFileLabel);
352      this.Controls.Add(this.CancelButton);
353      this.Controls.Add(this.OkButton);
354      this.MaximizeBox = false;
355      this.MinimizeBox = false;
356      this.Name = "DataAnalysisImportTypeDialog";
357      this.ShowIcon = false;
358      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
359      this.Text = "CSV Import";
360      ((System.ComponentModel.ISupportInitialize)(this.TrainingTestTrackBar)).EndInit();
361      this.CSVSettingsGroupBox.ResumeLayout(false);
362      this.CSVSettingsGroupBox.PerformLayout();
363      this.ProblemDataSettingsGroupBox.ResumeLayout(false);
364      this.ProblemDataSettingsGroupBox.PerformLayout();
365      this.ResumeLayout(false);
366      this.PerformLayout();
367
368    }
369
370    #endregion
371
372    protected System.Windows.Forms.CheckBox ShuffleDataCheckbox;
373    protected System.Windows.Forms.Button OkButton;
374    protected System.Windows.Forms.TrackBar TrainingTestTrackBar;
375    protected System.Windows.Forms.Label TestLabel;
376    protected System.Windows.Forms.Label TrainingLabel;
377    protected System.Windows.Forms.Button CancelButton;
378    protected System.Windows.Forms.OpenFileDialog openFileDialog;
379    protected System.Windows.Forms.Label ProblemFileLabel;
380    protected System.Windows.Forms.Button OpenFileButton;
381    protected System.Windows.Forms.TextBox ProblemTextBox;
382    protected System.Windows.Forms.ComboBox DateTimeFormatComboBox;
383    protected System.Windows.Forms.ComboBox DecimalSeparatorComboBox;
384    protected System.Windows.Forms.Label DateTimeFormatLabel;
385    protected System.Windows.Forms.Label DecimalSeperatorLabel;
386    protected System.Windows.Forms.Label SeparatorLabel;
387    protected System.Windows.Forms.ComboBox SeparatorComboBox;
388    protected System.Windows.Forms.GroupBox CSVSettingsGroupBox;
389    protected System.Windows.Forms.GroupBox ProblemDataSettingsGroupBox;
390    protected System.Windows.Forms.TextBox ErrorTextBox;
391    protected HeuristicLab.Data.Views.StringConvertibleMatrixView PreviewDatasetMatrix;
392    protected System.Windows.Forms.Label PreviewLabel;
393    protected System.Windows.Forms.Label SeparatorInfoLabel;
394    protected System.Windows.Forms.Label DateTimeFormatInfoLabel;
395    protected System.Windows.Forms.Label DecimalSeparatorInfoLabel;
396    protected System.Windows.Forms.Label ShuffelInfoLabel;
397    protected System.Windows.Forms.ToolTip ToolTip;
398  }
399}
Note: See TracBrowser for help on using the repository browser.