diff options
| author | JayXKanz666 <[email protected]> | 2017-03-27 01:56:21 +0200 |
|---|---|---|
| committer | JayXKanz666 <[email protected]> | 2017-03-27 01:56:21 +0200 |
| commit | a357d77aa7a2a35f414daa0a7737003bf2660477 (patch) | |
| tree | 16a37b1ce68466a51f56f354b98c8b95ce931a59 /TimeHACK.Main/Windows95.cs | |
| parent | 3d5745cbfcf6019dc9f864b59dd05d60bea770b3 (diff) | |
| download | histacom2-a357d77aa7a2a35f414daa0a7737003bf2660477.tar.gz histacom2-a357d77aa7a2a35f414daa0a7737003bf2660477.tar.bz2 histacom2-a357d77aa7a2a35f414daa0a7737003bf2660477.zip | |
added downloader and installer
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
| -rw-r--r-- | TimeHACK.Main/Windows95.cs | 17 |
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); } } } |
