forked from V-Modder/SharpUpdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SharpUpdateDownloadForm.Designer.cs
99 lines (93 loc) · 4.29 KB
/
SharpUpdateDownloadForm.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
namespace SharpUpdate
{
partial class SharpUpdateDownloadForm
{
/// <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.lblDownloading = new System.Windows.Forms.Label();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.lblProgress = new System.Windows.Forms.Label();
this.progressBarAll = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// lblDownloading
//
this.lblDownloading.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblDownloading.Location = new System.Drawing.Point(12, 21);
this.lblDownloading.Name = "lblDownloading";
this.lblDownloading.Size = new System.Drawing.Size(389, 45);
this.lblDownloading.TabIndex = 0;
this.lblDownloading.Text = "Update wird heruntergeladen...";
this.lblDownloading.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(34, 83);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(344, 23);
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.progressBar.TabIndex = 1;
//
// lblProgress
//
this.lblProgress.Font = new System.Drawing.Font("Segoe UI", 8F);
this.lblProgress.Location = new System.Drawing.Point(34, 122);
this.lblProgress.Name = "lblProgress";
this.lblProgress.Size = new System.Drawing.Size(344, 13);
this.lblProgress.TabIndex = 2;
this.lblProgress.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// progressBarAll
//
this.progressBarAll.Location = new System.Drawing.Point(34, 138);
this.progressBarAll.Name = "progressBarAll";
this.progressBarAll.Size = new System.Drawing.Size(344, 23);
this.progressBarAll.TabIndex = 3;
//
// SharpUpdateDownloadForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(413, 196);
this.Controls.Add(this.progressBarAll);
this.Controls.Add(this.lblProgress);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.lblDownloading);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SharpUpdateDownloadForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Downloading Update";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SharpUpdateDownloadForm_FormClosed);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblDownloading;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Label lblProgress;
private System.Windows.Forms.ProgressBar progressBarAll;
}
}