-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDownloadForm.Designer.cs
113 lines (108 loc) · 3.74 KB
/
DownloadForm.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
namespace tModDownloader
{
partial class DownloadForm
{
/// <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()
{
statusLabel = new Label();
progressBar1 = new ProgressBar();
progressLabel = new Label();
label1 = new Label();
logRTB = new RichTextBox();
SuspendLayout();
//
// statusLabel
//
statusLabel.AutoSize = true;
statusLabel.Location = new Point(14, 10);
statusLabel.Margin = new Padding(4, 0, 4, 0);
statusLabel.Name = "statusLabel";
statusLabel.Size = new Size(151, 15);
statusLabel.TabIndex = 0;
statusLabel.Text = "Downloading, please wait...";
//
// progressBar1
//
progressBar1.Location = new Point(14, 29);
progressBar1.Margin = new Padding(4, 3, 4, 3);
progressBar1.Name = "progressBar1";
progressBar1.Size = new Size(505, 27);
progressBar1.TabIndex = 1;
//
// progressLabel
//
progressLabel.AutoSize = true;
progressLabel.Location = new Point(14, 59);
progressLabel.Margin = new Padding(4, 0, 4, 0);
progressLabel.Name = "progressLabel";
progressLabel.Size = new Size(75, 15);
progressLabel.TabIndex = 2;
progressLabel.Text = "Progress: 0/0";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(14, 87);
label1.Margin = new Padding(4, 0, 4, 0);
label1.Name = "label1";
label1.Size = new Size(32, 15);
label1.TabIndex = 4;
label1.Text = "Logs";
//
// logRTB
//
logRTB.Location = new Point(14, 105);
logRTB.Margin = new Padding(4, 3, 4, 3);
logRTB.Name = "logRTB";
logRTB.ReadOnly = true;
logRTB.Size = new Size(504, 115);
logRTB.TabIndex = 5;
logRTB.Text = "";
//
// DownloadForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(533, 236);
Controls.Add(logRTB);
Controls.Add(label1);
Controls.Add(progressLabel);
Controls.Add(progressBar1);
Controls.Add(statusLabel);
Margin = new Padding(4, 3, 4, 3);
MaximizeBox = false;
MinimizeBox = false;
Name = "DownloadForm";
Text = "Downloading...";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label statusLabel;
private ProgressBar progressBar1;
private Label progressLabel;
private Label label1;
private RichTextBox logRTB;
}
}