aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/Windows95.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-26 17:58:22 -0600
committerGitHub <[email protected]>2017-03-26 17:58:22 -0600
commitf3ded1683916137c4d625565266f915492b2d4ad (patch)
tree16a37b1ce68466a51f56f354b98c8b95ce931a59 /TimeHACK.Main/Windows95.cs
parent3d5745cbfcf6019dc9f864b59dd05d60bea770b3 (diff)
parenta357d77aa7a2a35f414daa0a7737003bf2660477 (diff)
downloadhistacom2-f3ded1683916137c4d625565266f915492b2d4ad.tar.gz
histacom2-f3ded1683916137c4d625565266f915492b2d4ad.tar.bz2
histacom2-f3ded1683916137c4d625565266f915492b2d4ad.zip
Merge pull request #7 from jayxkanz666/master
added downloader and installer - There ya go buddy! :)
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
-rw-r--r--TimeHACK.Main/Windows95.cs17
1 files changed, 16 insertions, 1 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs
index 832cfbd..93cf7e0 100644
--- a/TimeHACK.Main/Windows95.cs
+++ b/TimeHACK.Main/Windows95.cs
@@ -116,7 +116,22 @@ namespace TimeHACK
{
WindowManager wm = new WindowManager();
TestApp test = new TestApp();
- wm.StartWinClassic(test, "TestApp", null, true, true);
+ wm.startWinClassic(test, "TestApp", null, true, true);
+ }
+
+ private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WinClassicDownloader opendownload = new WinClassicDownloader();
+ WindowManager wm = new WindowManager();
+ wm.startWinClassic(opendownload, "Downloader", null, false, true);
+ opendownload.appName.Text = "Downloading: Survive The Day";
+ }
+
+ private void installerTestToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WinClassicInstaller openinstaller = new WinClassicInstaller();
+ WindowManager wm = new WindowManager();
+ wm.startWinClassic(openinstaller, "Installer", null, false, true);
}
}
}