-
Notifications
You must be signed in to change notification settings - Fork 9
/
ProgressForm.Designer.cs
99 lines (93 loc) · 4.12 KB
/
ProgressForm.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 Titanfall2_SkinTool
{
partial class ProgressForm
{
/// <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.TitleLabel = new System.Windows.Forms.Label();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.ProgressBarText = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// TitleLabel
//
this.TitleLabel.Font = new System.Drawing.Font("Segoe UI", 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.TitleLabel.Location = new System.Drawing.Point(-6, 9);
this.TitleLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.TitleLabel.Name = "TitleLabel";
this.TitleLabel.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.TitleLabel.Size = new System.Drawing.Size(624, 40);
this.TitleLabel.TabIndex = 0;
this.TitleLabel.Text = "Generating";
this.TitleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(19, 79);
this.progressBar.Margin = new System.Windows.Forms.Padding(4);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(588, 31);
this.progressBar.TabIndex = 1;
//
// ProgressBarText
//
this.ProgressBarText.AutoSize = true;
this.ProgressBarText.Location = new System.Drawing.Point(28, 134);
this.ProgressBarText.Name = "ProgressBarText";
this.ProgressBarText.Size = new System.Drawing.Size(53, 20);
this.ProgressBarText.TabIndex = 2;
this.ProgressBarText.Text = "label1";
//
// ProgressForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(638, 194);
this.ControlBox = false;
this.Controls.Add(this.ProgressBarText);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.TitleLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(638, 194);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(638, 194);
this.Name = "ProgressForm";
this.Opacity = 0.9D;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ProgressForm_FormClosing);
this.Load += new System.EventHandler(this.ProgressMessage_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label TitleLabel;
private System.Windows.Forms.ProgressBar progressBar;
private System.Windows.Forms.Label ProgressBarText;
}
}