diff options
Diffstat (limited to 'Project Ports/Desktop.cs')
| -rw-r--r-- | Project Ports/Desktop.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Project Ports/Desktop.cs b/Project Ports/Desktop.cs index 62f8c78..68456d0 100644 --- a/Project Ports/Desktop.cs +++ b/Project Ports/Desktop.cs @@ -53,6 +53,7 @@ namespace Project_Ports #if DEBUG testWindowToolStripMenuItem.Visible = true; btnhijack2.Visible = true; + btnCrash.Visible = true; #endif dclock.Start(); desktopWatermark.Text = "Project: Ports " + Properties.Settings.Default.version + Environment.NewLine + "Working Progress"; @@ -124,5 +125,12 @@ namespace Project_Ports crash.Show(); } + + private void btnCrash_Click(object sender, EventArgs e) + { + Crash crash = new Crash(); + crash.Show(); + this.Close(); + } } } |
