Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/DataAnalysisImportTypeDialog.Designer.cs @ 9623

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

#2070: Corrected anchors of error textbox in DataAnalysisImportDialog.

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