From 414133b35d39b84537f4375e27e3e5f206655c5a Mon Sep 17 00:00:00 2001 From: Alex-TIMEHACK Date: Fri, 18 Aug 2017 14:56:56 +0100 Subject: Quite Big revamp on Explorer Part 1 --- TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs') diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs index 9448b3a..ab7dd49 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs @@ -69,7 +69,9 @@ namespace TimeHACK.OS.Win95.Win95Apps Properties.Resources.WinClassicCalcBig, Properties.Resources.WinClassicNotepadBig, Properties.Resources.WinClassicRegedit, // 15 - Properties.Resources.WinClassicWordpad }); + Properties.Resources.WinClassicWordpad, + Properties.Resources.WinClassicTextFile, + Properties.Resources.WinClassicRtfFile}); program.BringToFront(); @@ -605,7 +607,10 @@ namespace TimeHACK.OS.Win95.Win95Apps { if (new DirectoryInfo((string)mainView.FocusedItem.Tag).Extension == null || new DirectoryInfo((string)mainView.FocusedItem.Tag).Extension == "") { // If it isn't a file - GoToDir(Path.Combine(CurrentDirectory, mainView.FocusedItem.Text)); + if (mainView.FocusedItem.Text == "C:") + GoToDir(Path.Combine(CurrentDirectory, "CDrive")); + else + GoToDir(Path.Combine(CurrentDirectory, mainView.FocusedItem.Text)); } else { // If it is a file @@ -979,5 +984,10 @@ namespace TimeHACK.OS.Win95.Win95Apps { } + + private void TextDocumentToolStripMenuItem_Click(object sender, EventArgs e) + { + + } } } -- cgit v1.2.3