aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs')
-rw-r--r--TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs b/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
index 0f030a4..ed376c9 100644
--- a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
+++ b/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
@@ -795,5 +795,20 @@ namespace TimeHACK.OS.Win95.Win95Apps
}
return toReturn;
}
+
+ private void pictureBox1_MouseEnter(object sender, EventArgs e)
+ {
+ btnFolderClose.Image = Properties.Resources.XCross_highlighted;
+ }
+
+ private void btnFolderClose_MouseLeave(object sender, EventArgs e)
+ {
+ btnFolderClose.Image = Properties.Resources.XCross;
+ }
+
+ private void btnFolderClose_Click(object sender, EventArgs e)
+ {
+ pnlFolders.Hide();
+ }
}
}