Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Csv/CsvImporterView.Designer.cs @ 13301

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

#1734: Updated copyright information in all DataImporter classes.

File size: 5.4 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.DataImporter.Backend.Csv {
23  partial class CsvImporterView {
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.chbIncludeColumnNames = new System.Windows.Forms.CheckBox();
48      this.btnBrowse = new System.Windows.Forms.Button();
49      this.label1 = new System.Windows.Forms.Label();
50      this.txtFileName = new System.Windows.Forms.TextBox();
51      this.label2 = new System.Windows.Forms.Label();
52      this.txtDelimiter = new System.Windows.Forms.TextBox();
53      this.SuspendLayout();
54      //
55      // chbIncludeColumnNames
56      //
57      this.chbIncludeColumnNames.AutoSize = true;
58      this.chbIncludeColumnNames.Checked = true;
59      this.chbIncludeColumnNames.CheckState = System.Windows.Forms.CheckState.Checked;
60      this.chbIncludeColumnNames.Location = new System.Drawing.Point(54, 56);
61      this.chbIncludeColumnNames.Name = "chbIncludeColumnNames";
62      this.chbIncludeColumnNames.Size = new System.Drawing.Size(151, 17);
63      this.chbIncludeColumnNames.TabIndex = 3;
64      this.chbIncludeColumnNames.Text = "Column names in first row?";
65      this.chbIncludeColumnNames.UseVisualStyleBackColor = true;
66      //
67      // btnBrowse
68      //
69      this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
70      this.btnBrowse.Location = new System.Drawing.Point(323, 3);
71      this.btnBrowse.Name = "btnBrowse";
72      this.btnBrowse.Size = new System.Drawing.Size(75, 23);
73      this.btnBrowse.TabIndex = 17;
74      this.btnBrowse.Text = "Browse";
75      this.btnBrowse.UseVisualStyleBackColor = true;
76      this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
77      //
78      // label1
79      //
80      this.label1.AutoSize = true;
81      this.label1.Location = new System.Drawing.Point(1, 7);
82      this.label1.Name = "label1";
83      this.label1.Size = new System.Drawing.Size(49, 13);
84      this.label1.TabIndex = 16;
85      this.label1.Text = "Filename";
86      //
87      // txtFileName
88      //
89      this.txtFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
90                  | System.Windows.Forms.AnchorStyles.Right)));
91      this.txtFileName.Location = new System.Drawing.Point(54, 4);
92      this.txtFileName.Name = "txtFileName";
93      this.txtFileName.Size = new System.Drawing.Size(263, 20);
94      this.txtFileName.TabIndex = 15;
95      //
96      // label2
97      //
98      this.label2.AutoSize = true;
99      this.label2.Location = new System.Drawing.Point(1, 33);
100      this.label2.Name = "label2";
101      this.label2.Size = new System.Drawing.Size(47, 13);
102      this.label2.TabIndex = 21;
103      this.label2.Text = "Delimiter";
104      //
105      // txtDelimiter
106      //
107      this.txtDelimiter.Location = new System.Drawing.Point(54, 30);
108      this.txtDelimiter.MaxLength = 1;
109      this.txtDelimiter.Name = "txtDelimiter";
110      this.txtDelimiter.Size = new System.Drawing.Size(66, 20);
111      this.txtDelimiter.TabIndex = 20;
112      //
113      // CsvImporterView
114      //
115      this.Controls.Add(this.label2);
116      this.Controls.Add(this.txtDelimiter);
117      this.Controls.Add(this.btnBrowse);
118      this.Controls.Add(this.label1);
119      this.Controls.Add(this.txtFileName);
120      this.Controls.Add(this.chbIncludeColumnNames);
121      this.Name = "CsvImporterView";
122      this.Size = new System.Drawing.Size(400, 83);
123      this.ResumeLayout(false);
124      this.PerformLayout();
125
126    }
127
128    #endregion
129
130    private System.Windows.Forms.CheckBox chbIncludeColumnNames;
131    private System.Windows.Forms.Button btnBrowse;
132    private System.Windows.Forms.Label label1;
133    private System.Windows.Forms.TextBox txtFileName;
134    private System.Windows.Forms.Label label2;
135    private System.Windows.Forms.TextBox txtDelimiter;
136  }
137}
Note: See TracBrowser for help on using the repository browser.