-
Notifications
You must be signed in to change notification settings - Fork 0
/
WelcomePage.Designer.cs
126 lines (120 loc) · 6.19 KB
/
WelcomePage.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
namespace hands_viewer.cs
{
partial class WelcomePage
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WelcomePage));
this.Stop = new System.Windows.Forms.Button();
this.ChallengeMode = new System.Windows.Forms.Button();
this.welcomeText = new System.Windows.Forms.Label();
this.practiceMode = new System.Windows.Forms.Button();
this.onlineMode = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// Stop
//
this.Stop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Stop.Location = new System.Drawing.Point(1349, 12);
this.Stop.Name = "Stop";
this.Stop.Size = new System.Drawing.Size(46, 35);
this.Stop.TabIndex = 3;
this.Stop.Text = "Exit";
this.Stop.UseVisualStyleBackColor = true;
this.Stop.Click += new System.EventHandler(this.Stop_Click);
//
// ChallengeMode
//
this.ChallengeMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ChallengeMode.ForeColor = System.Drawing.Color.Maroon;
this.ChallengeMode.Location = new System.Drawing.Point(1168, 400);
this.ChallengeMode.Name = "ChallengeMode";
this.ChallengeMode.Size = new System.Drawing.Size(200, 50);
this.ChallengeMode.TabIndex = 4;
this.ChallengeMode.Text = "Challenge Mode";
this.ChallengeMode.UseVisualStyleBackColor = true;
this.ChallengeMode.Click += new System.EventHandler(this.ChallengeMode_Click);
//
// welcomeText
//
this.welcomeText.Anchor = System.Windows.Forms.AnchorStyles.None;
this.welcomeText.BackColor = System.Drawing.Color.Transparent;
this.welcomeText.Font = new System.Drawing.Font("Harlow Solid Italic", 90F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.welcomeText.ForeColor = System.Drawing.Color.Maroon;
this.welcomeText.Location = new System.Drawing.Point(695, 0);
this.welcomeText.Name = "welcomeText";
this.welcomeText.Size = new System.Drawing.Size(648, 259);
this.welcomeText.TabIndex = 5;
this.welcomeText.Text = "Sign-Along";
this.welcomeText.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// practiceMode
//
this.practiceMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.practiceMode.ForeColor = System.Drawing.Color.Maroon;
this.practiceMode.Location = new System.Drawing.Point(1168, 479);
this.practiceMode.Name = "practiceMode";
this.practiceMode.Size = new System.Drawing.Size(200, 50);
this.practiceMode.TabIndex = 6;
this.practiceMode.Text = "Practice Mode";
this.practiceMode.UseVisualStyleBackColor = true;
//
// onlineMode
//
this.onlineMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.onlineMode.ForeColor = System.Drawing.Color.Maroon;
this.onlineMode.Location = new System.Drawing.Point(1168, 552);
this.onlineMode.Name = "onlineMode";
this.onlineMode.Size = new System.Drawing.Size(200, 50);
this.onlineMode.TabIndex = 7;
this.onlineMode.Text = "Online Mode";
this.onlineMode.UseVisualStyleBackColor = true;
//
// WelcomePage
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(1407, 860);
this.Controls.Add(this.onlineMode);
this.Controls.Add(this.practiceMode);
this.Controls.Add(this.welcomeText);
this.Controls.Add(this.ChallengeMode);
this.Controls.Add(this.Stop);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "WelcomePage";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "WelcomePage";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button Stop;
private System.Windows.Forms.Button ChallengeMode;
private System.Windows.Forms.Label welcomeText;
private System.Windows.Forms.Button practiceMode;
private System.Windows.Forms.Button onlineMode;
}
}