diff options
| author | IBMPCDOS5 <[email protected]> | 2017-06-02 10:28:03 -0500 |
|---|---|---|
| committer | IBMPCDOS5 <[email protected]> | 2017-06-02 10:28:03 -0500 |
| commit | 1b6c41b0a471ba27a8c9bacf1ecf1c01d144f319 (patch) | |
| tree | 3e9be0a6bb6acdbc0227483badc48e63a4f0467d /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs | |
| parent | b08c213ecf4e04b4989d1c42749238b8b7970501 (diff) | |
| download | histacom2-1b6c41b0a471ba27a8c9bacf1ecf1c01d144f319.tar.gz histacom2-1b6c41b0a471ba27a8c9bacf1ecf1c01d144f319.tar.bz2 histacom2-1b6c41b0a471ba27a8c9bacf1ecf1c01d144f319.zip | |
Lots of changes
Revamped Alex's Wibdows Explorer, added an about page, and minor start
menu changes, (Changing NotePad to Notepad, Shutdown... to Shut Down...)
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs index 573c9d7..e8f97a0 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs @@ -126,7 +126,7 @@ namespace TimeHACK.OS.Win95.Win95Apps dirLbl.Text = currentDirectory; CheckLbl(); } catch (Exception ex) { - wm.startInfobox95("Windows Explorer", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); + wm.startInfobox95("Exploring - C:", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); ((Form)this.TopLevelControl).Close(); } } @@ -586,5 +586,11 @@ namespace TimeHACK.OS.Win95.Win95Apps { ((Form)this.TopLevelControl).Close(); } + + private void AboutWindows95ToolStripMenuItem_Click(object sender, EventArgs e) + { + WindowManager wm = new WindowManager(); + wm.startAboutBox95("Windows 95", "Microsoft Windows 95 Rev B", Properties.Resources.WinClassicAbout95); + } } } |
