Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Backend.Csv/CsvExporterView.Designer.cs @ 7267

Last change on this file since 7267 was 7267, checked in by gkronber, 12 years ago

#1734 updated copyright year in all files of the DataImporter branch

File size: 4.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 CsvExporterView {
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.SuspendLayout();
52      //
53      // chbIncludeColumnNames
54      //
55      this.chbIncludeColumnNames.AutoSize = true;
56      this.chbIncludeColumnNames.Checked = true;
57      this.chbIncludeColumnNames.CheckState = System.Windows.Forms.CheckState.Checked;
58      this.chbIncludeColumnNames.Location = new System.Drawing.Point(54, 30);
59      this.chbIncludeColumnNames.Name = "chbIncludeColumnNames";
60      this.chbIncludeColumnNames.Size = new System.Drawing.Size(133, 17);
61      this.chbIncludeColumnNames.TabIndex = 3;
62      this.chbIncludeColumnNames.Text = "Include Column names";
63      this.chbIncludeColumnNames.UseVisualStyleBackColor = true;
64      //
65      // btnBrowse
66      //
67      this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
68      this.btnBrowse.Location = new System.Drawing.Point(323, 3);
69      this.btnBrowse.Name = "btnBrowse";
70      this.btnBrowse.Size = new System.Drawing.Size(75, 23);
71      this.btnBrowse.TabIndex = 17;
72      this.btnBrowse.Text = "Browse";
73      this.btnBrowse.UseVisualStyleBackColor = true;
74      this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
75      //
76      // label1
77      //
78      this.label1.AutoSize = true;
79      this.label1.Location = new System.Drawing.Point(1, 7);
80      this.label1.Name = "label1";
81      this.label1.Size = new System.Drawing.Size(49, 13);
82      this.label1.TabIndex = 16;
83      this.label1.Text = "Filename";
84      //
85      // txtFileName
86      //
87      this.txtFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
88                  | System.Windows.Forms.AnchorStyles.Right)));
89      this.txtFileName.Location = new System.Drawing.Point(54, 4);
90      this.txtFileName.Name = "txtFileName";
91      this.txtFileName.Size = new System.Drawing.Size(263, 20);
92      this.txtFileName.TabIndex = 15;
93      //
94      // CsvExporterView
95      //
96      this.Controls.Add(this.btnBrowse);
97      this.Controls.Add(this.label1);
98      this.Controls.Add(this.txtFileName);
99      this.Controls.Add(this.chbIncludeColumnNames);
100      this.Name = "CsvExporterView";
101      this.Size = new System.Drawing.Size(400, 57);
102      this.ResumeLayout(false);
103      this.PerformLayout();
104
105    }
106
107    #endregion
108
109    private System.Windows.Forms.CheckBox chbIncludeColumnNames;
110    private System.Windows.Forms.Button btnBrowse;
111    private System.Windows.Forms.Label label1;
112    private System.Windows.Forms.TextBox txtFileName;
113  }
114}
Note: See TracBrowser for help on using the repository browser.