diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-08-18 14:56:56 +0100 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-08-18 14:56:56 +0100 |
| commit | 414133b35d39b84537f4375e27e3e5f206655c5a (patch) | |
| tree | a7faf10e39c8fa34cad39a7b1261d793ba4bbee9 /TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs | |
| parent | 3399ab978ca11faee44803d2b7c5f0f06855504a (diff) | |
| download | histacom2-414133b35d39b84537f4375e27e3e5f206655c5a.tar.gz histacom2-414133b35d39b84537f4375e27e3e5f206655c5a.tar.bz2 histacom2-414133b35d39b84537f4375e27e3e5f206655c5a.zip | |
Quite Big revamp on Explorer Part 1
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs | 14 |
1 files changed, 12 insertions, 2 deletions
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) + { + + } } } |
