-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.Designer.cs
More file actions
129 lines (124 loc) · 4.74 KB
/
Form2.Designer.cs
File metadata and controls
129 lines (124 loc) · 4.74 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
namespace HeavenTasteBakery
{
partial class Form2
{
/// <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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
progressBar1 = new ProgressBar();
timer1 = new System.Windows.Forms.Timer(components);
label1 = new Label();
label2 = new Label();
label3 = new Label();
pictureBox1 = new PictureBox();
((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
SuspendLayout();
//
// progressBar1
//
progressBar1.Location = new Point(-1, 677);
progressBar1.Name = "progressBar1";
progressBar1.Size = new Size(1276, 35);
progressBar1.TabIndex = 0;
//
// timer1
//
timer1.Interval = 10;
timer1.Tick += timer1_Tick;
//
// label1
//
label1.AutoSize = true;
label1.BackColor = Color.White;
label1.Font = new Font("Segoe UI Black", 12F, FontStyle.Bold, GraphicsUnit.Point, 0);
label1.Location = new Point(0, 645);
label1.Name = "label1";
label1.Size = new Size(138, 32);
label1.TabIndex = 1;
label1.Text = "Loading ...";
//
// label2
//
label2.AutoSize = true;
label2.BackColor = Color.White;
label2.ForeColor = Color.LimeGreen;
label2.Location = new Point(1213, 652);
label2.Name = "label2";
label2.Size = new Size(59, 25);
label2.TabIndex = 2;
label2.Text = "label2";
//
// label3
//
label3.AutoSize = true;
label3.Font = new Font("Maiandra GD", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
label3.ForeColor = Color.Transparent;
label3.Location = new Point(1162, 89);
label3.Name = "label3";
label3.Size = new Size(103, 24);
label3.TabIndex = 7;
label3.Text = "HT Bakery";
//
// pictureBox1
//
pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");
pictureBox1.Location = new Point(1154, -1);
pictureBox1.Name = "pictureBox1";
pictureBox1.Size = new Size(115, 114);
pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
pictureBox1.TabIndex = 6;
pictureBox1.TabStop = false;
//
// Form2
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.LightCoral;
BackgroundImage = (Image)resources.GetObject("$this.BackgroundImage");
BackgroundImageLayout = ImageLayout.Stretch;
ClientSize = new Size(1281, 711);
Controls.Add(label3);
Controls.Add(pictureBox1);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(progressBar1);
DoubleBuffered = true;
Name = "Form2";
StartPosition = FormStartPosition.CenterScreen;
Text = "Form2";
Load += Form2_Load;
((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private ProgressBar progressBar1;
private System.Windows.Forms.Timer timer1;
private Label label1;
private Label label2;
private Label label3;
private PictureBox pictureBox1;
}
}