-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmHome.Designer.cs
134 lines (128 loc) · 6.57 KB
/
frmHome.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
namespace SpaceInvaders
{
partial class frmHome
{
/// <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.btnPlay = new System.Windows.Forms.Button();
this.btnSettings = new System.Windows.Forms.Button();
this.btnAbout = new System.Windows.Forms.Button();
this.btnQuit = new System.Windows.Forms.Button();
this.picTitle = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.picTitle)).BeginInit();
this.SuspendLayout();
//
// btnPlay
//
this.btnPlay.BackColor = System.Drawing.Color.White;
this.btnPlay.Font = new System.Drawing.Font("Perpetua Titling MT", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnPlay.Location = new System.Drawing.Point(345, 211);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(246, 61);
this.btnPlay.TabIndex = 8;
this.btnPlay.Text = "PLAY";
this.btnPlay.UseVisualStyleBackColor = false;
this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
this.btnPlay.MouseEnter += new System.EventHandler(this.btnPlay_MouseEnter);
this.btnPlay.MouseLeave += new System.EventHandler(this.btnPlay_MouseLeave);
//
// btnSettings
//
this.btnSettings.BackColor = System.Drawing.Color.White;
this.btnSettings.Font = new System.Drawing.Font("Perpetua Titling MT", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSettings.Location = new System.Drawing.Point(345, 308);
this.btnSettings.Name = "btnSettings";
this.btnSettings.Size = new System.Drawing.Size(246, 61);
this.btnSettings.TabIndex = 9;
this.btnSettings.Text = "SETTINGS";
this.btnSettings.UseVisualStyleBackColor = false;
this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click);
this.btnSettings.MouseEnter += new System.EventHandler(this.btnSettings_MouseEnter);
this.btnSettings.MouseLeave += new System.EventHandler(this.btnSettings_MouseLeave);
//
// btnAbout
//
this.btnAbout.BackColor = System.Drawing.Color.White;
this.btnAbout.Font = new System.Drawing.Font("Perpetua Titling MT", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAbout.Location = new System.Drawing.Point(345, 413);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(246, 61);
this.btnAbout.TabIndex = 10;
this.btnAbout.Text = "ABOUT";
this.btnAbout.UseVisualStyleBackColor = false;
this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
this.btnAbout.MouseEnter += new System.EventHandler(this.btnAbout_MouseEnter);
this.btnAbout.MouseLeave += new System.EventHandler(this.btnAbout_MouseLeave);
//
// btnQuit
//
this.btnQuit.BackColor = System.Drawing.Color.White;
this.btnQuit.Font = new System.Drawing.Font("Perpetua Titling MT", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnQuit.Location = new System.Drawing.Point(345, 521);
this.btnQuit.Name = "btnQuit";
this.btnQuit.Size = new System.Drawing.Size(246, 61);
this.btnQuit.TabIndex = 11;
this.btnQuit.Text = "QUIT";
this.btnQuit.UseVisualStyleBackColor = false;
this.btnQuit.Click += new System.EventHandler(this.btnQuit_Click);
this.btnQuit.MouseEnter += new System.EventHandler(this.btnQuit_MouseEnter);
this.btnQuit.MouseLeave += new System.EventHandler(this.btnQuit_MouseLeave);
//
// picTitle
//
this.picTitle.BackColor = System.Drawing.Color.Transparent;
this.picTitle.BackgroundImage = global::SpaceInvaders.Properties.Resources.space_invaders;
this.picTitle.Location = new System.Drawing.Point(69, -286);
this.picTitle.Name = "picTitle";
this.picTitle.Size = new System.Drawing.Size(683, 502);
this.picTitle.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.picTitle.TabIndex = 13;
this.picTitle.TabStop = false;
//
// frmHome
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Maroon;
this.BackgroundImage = global::SpaceInvaders.Properties.Resources.pixel;
this.ClientSize = new System.Drawing.Size(909, 611);
this.Controls.Add(this.picTitle);
this.Controls.Add(this.btnQuit);
this.Controls.Add(this.btnAbout);
this.Controls.Add(this.btnSettings);
this.Controls.Add(this.btnPlay);
this.Name = "frmHome";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Home";
((System.ComponentModel.ISupportInitialize)(this.picTitle)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnPlay;
private System.Windows.Forms.Button btnSettings;
private System.Windows.Forms.Button btnAbout;
private System.Windows.Forms.Button btnQuit;
private System.Windows.Forms.PictureBox picTitle;
}
}