-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFullScreenForm.Designer.cs
94 lines (88 loc) · 3.86 KB
/
FullScreenForm.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
namespace Bomb
{
partial class FullScreenForm
{
/// <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.components = new System.ComponentModel.Container();
this.explode_lbl = new System.Windows.Forms.Label();
this.countdown_lbl = new System.Windows.Forms.Label();
this.timer = new System.Windows.Forms.Timer(this.components);
this.shaker = new System.ComponentModel.BackgroundWorker();
this.SuspendLayout();
//
// explode_lbl
//
this.explode_lbl.Dock = System.Windows.Forms.DockStyle.Top;
this.explode_lbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 100F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
this.explode_lbl.ForeColor = System.Drawing.Color.White;
this.explode_lbl.Location = new System.Drawing.Point(0, 0);
this.explode_lbl.Name = "explode_lbl";
this.explode_lbl.Size = new System.Drawing.Size(800, 321);
this.explode_lbl.TabIndex = 0;
this.explode_lbl.Text = "Explode";
this.explode_lbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// countdown_lbl
//
this.countdown_lbl.Dock = System.Windows.Forms.DockStyle.Bottom;
this.countdown_lbl.ForeColor = System.Drawing.Color.White;
this.countdown_lbl.Location = new System.Drawing.Point(0, 358);
this.countdown_lbl.Name = "countdown_lbl";
this.countdown_lbl.Size = new System.Drawing.Size(800, 122);
this.countdown_lbl.TabIndex = 1;
this.countdown_lbl.Text = "label2";
this.countdown_lbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// timer
//
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// shaker
//
this.shaker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
//
// FullScreenForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Red;
this.ClientSize = new System.Drawing.Size(800, 480);
this.Controls.Add(this.countdown_lbl);
this.Controls.Add(this.explode_lbl);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "FullScreenForm";
this.Text = "Bomb";
this.TopMost = true;
this.Load += new System.EventHandler(this.FullScreenForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label explode_lbl;
private System.Windows.Forms.Label countdown_lbl;
private System.Windows.Forms.Timer timer;
private System.ComponentModel.BackgroundWorker shaker;
}
}