aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Desktop.cs
diff options
context:
space:
mode:
authorAndrew <alee14498@gmail.com>2018-08-28 14:22:58 -0400
committerAndrew <alee14498@gmail.com>2018-08-28 14:22:58 -0400
commit90e14a0932b63679c356e8bc1d42e657d7c612ad (patch)
treef7c6e6600e17dc3c3a6b8868c3e3e52c88dc6e1b /Project Ports/Desktop.cs
parent88bd278b428e85b54441342d8d94fc7c6e3c9029 (diff)
downloadProject-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.gz
Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.bz2
Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.zip
Changed crashing and added booting
Diffstat (limited to 'Project Ports/Desktop.cs')
-rw-r--r--Project Ports/Desktop.cs8
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();
+ }
}
}