diff options
| author | Andrew <alee14498@gmail.com> | 2018-08-28 11:33:13 -0400 |
|---|---|---|
| committer | Andrew <alee14498@gmail.com> | 2018-08-28 11:33:13 -0400 |
| commit | 50140904b0a1ce88da86941b17d819aabfa2a891 (patch) | |
| tree | 588e2c07888389addb0e974f1d5b1e1b8fbaf383 /Project Ports/Desktop.cs | |
| parent | 4994f5bdf38868e3518bd0311a0b9b3838006557 (diff) | |
| download | Project-Silicon-50140904b0a1ce88da86941b17d819aabfa2a891.tar.gz Project-Silicon-50140904b0a1ce88da86941b17d819aabfa2a891.tar.bz2 Project-Silicon-50140904b0a1ce88da86941b17d819aabfa2a891.zip | |
Added a "start hijack 2" button
Diffstat (limited to 'Project Ports/Desktop.cs')
| -rw-r--r-- | Project Ports/Desktop.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Project Ports/Desktop.cs b/Project Ports/Desktop.cs index 2742742..62f8c78 100644 --- a/Project Ports/Desktop.cs +++ b/Project Ports/Desktop.cs @@ -52,13 +52,13 @@ namespace Project_Ports { #if DEBUG testWindowToolStripMenuItem.Visible = true; + btnhijack2.Visible = true; #endif dclock.Start(); desktopWatermark.Text = "Project: Ports " + Properties.Settings.Default.version + Environment.NewLine + "Working Progress"; appMenu.Hide(); } - private void appButton_Click(object sender, EventArgs e) { @@ -109,5 +109,20 @@ namespace Project_Ports { appMenu.Hide(); } + + private void btnhijack2_Click(object sender, EventArgs e) + { + appMenu.Hide(); + Thread.Sleep(5000); + appButton.Enabled = false; + Thread.Sleep(2000); + dclock.Stop(); + ltime.Text = "66:66 AM"; + appButton.Text = "HIJACKED"; + Thread.Sleep(5000); + Crash crash = new Crash(); + crash.Show(); + + } } } |
