aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-07-22 10:17:11 +0100
committerAlex-TIMEHACK <[email protected]>2017-07-22 10:17:11 +0100
commit294592d1bcb6886863fd1d9a4b21936e98cd7f46 (patch)
tree62a742b9a851f3e03597f7fb3b8baf2239d44fd9 /TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
parentf355abf45eef2b1a103c81df554426f848c53975 (diff)
downloadhistacom2-294592d1bcb6886863fd1d9a4b21936e98cd7f46.tar.gz
histacom2-294592d1bcb6886863fd1d9a4b21936e98cd7f46.tar.bz2
histacom2-294592d1bcb6886863fd1d9a4b21936e98cd7f46.zip
Win98 Designer Finished! At least for me...
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();
+ }
}
}