-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCsv.Designer.cs
99 lines (92 loc) · 3.8 KB
/
Csv.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
namespace RASDK.Basic.TestForms
{
partial class Csv
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.textBoxPath = new System.Windows.Forms.TextBox();
this.buttonRead = new System.Windows.Forms.Button();
this.labelReadedFile = new System.Windows.Forms.Label();
this.buttonWriteFile = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBoxPath
//
this.textBoxPath.Location = new System.Drawing.Point(27, 25);
this.textBoxPath.Name = "textBoxPath";
this.textBoxPath.Size = new System.Drawing.Size(500, 38);
this.textBoxPath.TabIndex = 0;
this.textBoxPath.Text = "C:\\target.csv";
//
// buttonRead
//
this.buttonRead.Location = new System.Drawing.Point(27, 86);
this.buttonRead.Name = "buttonRead";
this.buttonRead.Size = new System.Drawing.Size(110, 53);
this.buttonRead.TabIndex = 1;
this.buttonRead.Text = "Read";
this.buttonRead.UseVisualStyleBackColor = true;
this.buttonRead.Click += new System.EventHandler(this.buttonRead_Click);
//
// labelReadedFile
//
this.labelReadedFile.AutoSize = true;
this.labelReadedFile.Location = new System.Drawing.Point(27, 253);
this.labelReadedFile.Name = "labelReadedFile";
this.labelReadedFile.Size = new System.Drawing.Size(33, 32);
this.labelReadedFile.TabIndex = 2;
this.labelReadedFile.Text = "--";
//
// buttonWriteFile
//
this.buttonWriteFile.Location = new System.Drawing.Point(170, 86);
this.buttonWriteFile.Name = "buttonWriteFile";
this.buttonWriteFile.Size = new System.Drawing.Size(132, 53);
this.buttonWriteFile.TabIndex = 3;
this.buttonWriteFile.Text = "Write";
this.buttonWriteFile.UseVisualStyleBackColor = true;
this.buttonWriteFile.Click += new System.EventHandler(this.buttonWriteFile_Click);
//
// Csv
//
this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1016, 805);
this.Controls.Add(this.buttonWriteFile);
this.Controls.Add(this.labelReadedFile);
this.Controls.Add(this.buttonRead);
this.Controls.Add(this.textBoxPath);
this.Name = "Csv";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox textBoxPath;
private System.Windows.Forms.Button buttonRead;
private System.Windows.Forms.Label labelReadedFile;
private System.Windows.Forms.Button buttonWriteFile;
}
}