From a357d77aa7a2a35f414daa0a7737003bf2660477 Mon Sep 17 00:00:00 2001 From: JayXKanz666 Date: Mon, 27 Mar 2017 01:56:21 +0200 Subject: added downloader and installer --- TimeHACK.Main/Windows95.cs | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'TimeHACK.Main/Windows95.cs') 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); } } } -- cgit v1.2.3