update
This commit is contained in:
parent
355e7f6a47
commit
5ee5d8eecb
Binary file not shown.
26
Catch the button/Main.Designer.cs
generated
26
Catch the button/Main.Designer.cs
generated
|
@ -27,6 +27,7 @@ namespace Catch_the_button {
|
||||||
this.Menu = new System.Windows.Forms.Panel();
|
this.Menu = new System.Windows.Forms.Panel();
|
||||||
this.button = new System.Windows.Forms.Label();
|
this.button = new System.Windows.Forms.Label();
|
||||||
this.stats = new System.Windows.Forms.Panel();
|
this.stats = new System.Windows.Forms.Panel();
|
||||||
|
this.milestone = new System.Windows.Forms.Label();
|
||||||
this.timeleft = new System.Windows.Forms.Label();
|
this.timeleft = new System.Windows.Forms.Label();
|
||||||
this.hp = new System.Windows.Forms.Label();
|
this.hp = new System.Windows.Forms.Label();
|
||||||
this.ptsCount = new System.Windows.Forms.Label();
|
this.ptsCount = new System.Windows.Forms.Label();
|
||||||
|
@ -44,7 +45,6 @@ namespace Catch_the_button {
|
||||||
this.label4 = new System.Windows.Forms.Label();
|
this.label4 = new System.Windows.Forms.Label();
|
||||||
this.quit = new System.Windows.Forms.Button();
|
this.quit = new System.Windows.Forms.Button();
|
||||||
this.start = new System.Windows.Forms.Button();
|
this.start = new System.Windows.Forms.Button();
|
||||||
this.milestone = new System.Windows.Forms.Label();
|
|
||||||
this.Menu.SuspendLayout();
|
this.Menu.SuspendLayout();
|
||||||
this.stats.SuspendLayout();
|
this.stats.SuspendLayout();
|
||||||
this.groupBox1.SuspendLayout();
|
this.groupBox1.SuspendLayout();
|
||||||
|
@ -87,7 +87,7 @@ namespace Catch_the_button {
|
||||||
this.button.TabIndex = 6;
|
this.button.TabIndex = 6;
|
||||||
this.button.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
this.button.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
||||||
this.button.Visible = false;
|
this.button.Visible = false;
|
||||||
this.button.Click += new System.EventHandler(this.button_Click);
|
this.button.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button_MouseDown);
|
||||||
this.button.MouseEnter += new System.EventHandler(this.button_MouseEnter);
|
this.button.MouseEnter += new System.EventHandler(this.button_MouseEnter);
|
||||||
this.button.MouseLeave += new System.EventHandler(this.button_MouseLeave);
|
this.button.MouseLeave += new System.EventHandler(this.button_MouseLeave);
|
||||||
//
|
//
|
||||||
|
@ -103,6 +103,16 @@ namespace Catch_the_button {
|
||||||
this.stats.Size = new System.Drawing.Size(955, 30);
|
this.stats.Size = new System.Drawing.Size(955, 30);
|
||||||
this.stats.TabIndex = 1002;
|
this.stats.TabIndex = 1002;
|
||||||
//
|
//
|
||||||
|
// milestone
|
||||||
|
//
|
||||||
|
this.milestone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
||||||
|
this.milestone.AutoSize = true;
|
||||||
|
this.milestone.Location = new System.Drawing.Point(569, 6);
|
||||||
|
this.milestone.Name = "milestone";
|
||||||
|
this.milestone.Size = new System.Drawing.Size(207, 19);
|
||||||
|
this.milestone.TabIndex = 1002;
|
||||||
|
this.milestone.Text = "Next Milestone in: ...";
|
||||||
|
//
|
||||||
// timeleft
|
// timeleft
|
||||||
//
|
//
|
||||||
this.timeleft.AutoSize = true;
|
this.timeleft.AutoSize = true;
|
||||||
|
@ -288,16 +298,6 @@ namespace Catch_the_button {
|
||||||
this.start.UseVisualStyleBackColor = true;
|
this.start.UseVisualStyleBackColor = true;
|
||||||
this.start.Click += new System.EventHandler(this.start_Click);
|
this.start.Click += new System.EventHandler(this.start_Click);
|
||||||
//
|
//
|
||||||
// milestone
|
|
||||||
//
|
|
||||||
this.milestone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
||||||
this.milestone.AutoSize = true;
|
|
||||||
this.milestone.Location = new System.Drawing.Point(569, 6);
|
|
||||||
this.milestone.Name = "milestone";
|
|
||||||
this.milestone.Size = new System.Drawing.Size(207, 19);
|
|
||||||
this.milestone.TabIndex = 1002;
|
|
||||||
this.milestone.Text = "Next Milestone in: ...";
|
|
||||||
//
|
|
||||||
// Main
|
// Main
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 19F);
|
||||||
|
@ -311,8 +311,8 @@ namespace Catch_the_button {
|
||||||
this.Name = "Main";
|
this.Name = "Main";
|
||||||
this.Text = "Catch the Button 2";
|
this.Text = "Catch the Button 2";
|
||||||
this.Load += new System.EventHandler(this.Form1_Load);
|
this.Load += new System.EventHandler(this.Form1_Load);
|
||||||
this.Click += new System.EventHandler(this.Form1_Click);
|
|
||||||
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Main_KeyDown);
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Main_KeyDown);
|
||||||
|
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Main_MouseDown);
|
||||||
this.Menu.ResumeLayout(false);
|
this.Menu.ResumeLayout(false);
|
||||||
this.Menu.PerformLayout();
|
this.Menu.PerformLayout();
|
||||||
this.stats.ResumeLayout(false);
|
this.stats.ResumeLayout(false);
|
||||||
|
|
|
@ -29,15 +29,6 @@ namespace Catch_the_button {
|
||||||
this.Close();
|
this.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void button_Click(object sender, EventArgs e) {
|
|
||||||
Game.Hit();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Form1_Click(object sender, EventArgs e) {
|
|
||||||
Game.Hit(obj: sender);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private void button_MouseEnter(object sender, EventArgs e) {
|
private void button_MouseEnter(object sender, EventArgs e) {
|
||||||
button.BackColor = Color.FromArgb(240, 240, 240);
|
button.BackColor = Color.FromArgb(240, 240, 240);
|
||||||
}
|
}
|
||||||
|
@ -55,5 +46,13 @@ namespace Catch_the_button {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void button_MouseDown(object sender, MouseEventArgs e) {
|
||||||
|
Game.Hit();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Main_MouseDown(object sender, MouseEventArgs e) {
|
||||||
|
Game.Hit(obj: sender);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -30,3 +30,14 @@ C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Ca
|
||||||
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.csproj.CoreCompileInputs.cache
|
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.csproj.CoreCompileInputs.cache
|
||||||
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.exe
|
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.exe
|
||||||
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.pdb
|
C:\Users\vasik\Documents\GitHub\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.pdb
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\bin\Debug\Catch the button.exe.config
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\bin\Debug\Catch the button.exe
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\bin\Debug\Catch the button.pdb
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch_the_button.Main.resources
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch_the_button.LeaderDialog.resources
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch_the_button.Properties.Resources.resources
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.csproj.GenerateResource.cache
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.exe
|
||||||
|
C:\Users\helio\Documents\Catch-the-Button-2\Catch the button\obj\Debug\Catch the button.pdb
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue