-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
98 lines (91 loc) · 3.82 KB
/
Form1.Designer.cs
File metadata and controls
98 lines (91 loc) · 3.82 KB
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
namespace Zip_Move
{
partial class Form1
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.labelInput = new System.Windows.Forms.Label();
this.labelOutput = new System.Windows.Forms.Label();
this.textBoxInput = new System.Windows.Forms.TextBox();
this.textBoxOutput = new System.Windows.Forms.TextBox();
this.buttonStart = new System.Windows.Forms.Button();
this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
this.SuspendLayout();
//
// labelInput
//
resources.ApplyResources(this.labelInput, "labelInput");
this.labelInput.Name = "labelInput";
//
// labelOutput
//
resources.ApplyResources(this.labelOutput, "labelOutput");
this.labelOutput.Name = "labelOutput";
//
// textBoxInput
//
resources.ApplyResources(this.textBoxInput, "textBoxInput");
this.textBoxInput.Name = "textBoxInput";
this.textBoxInput.ReadOnly = true;
this.textBoxInput.Click += new System.EventHandler(this.textBoxInput_Click);
//
// textBoxOutput
//
resources.ApplyResources(this.textBoxOutput, "textBoxOutput");
this.textBoxOutput.Name = "textBoxOutput";
this.textBoxOutput.ReadOnly = true;
this.textBoxOutput.Click += new System.EventHandler(this.textBoxOutput_Click);
//
// buttonStart
//
resources.ApplyResources(this.buttonStart, "buttonStart");
this.buttonStart.Name = "buttonStart";
this.buttonStart.UseVisualStyleBackColor = true;
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
//
// Form1
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.buttonStart);
this.Controls.Add(this.textBoxOutput);
this.Controls.Add(this.textBoxInput);
this.Controls.Add(this.labelOutput);
this.Controls.Add(this.labelInput);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label labelInput;
private System.Windows.Forms.Label labelOutput;
private System.Windows.Forms.TextBox textBoxInput;
private System.Windows.Forms.TextBox textBoxOutput;
private System.Windows.Forms.Button buttonStart;
private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog;
}
}