diff options
| author | TheUltimateHacker <[email protected]> | 2015-03-10 18:31:11 -0400 |
|---|---|---|
| committer | TheUltimateHacker <[email protected]> | 2015-03-10 18:31:11 -0400 |
| commit | a2361f8ea1ab017c39a1ce9d0ba86da2e9903ba0 (patch) | |
| tree | ab57dd88f7c5a89c61f83eebb91ed5a9054ac410 /ShiftOS/File Skimmer.vb | |
| parent | 583b06b4be4ab3be9f33887e052f0d9de8e5404d (diff) | |
| download | shiftos-a2361f8ea1ab017c39a1ce9d0ba86da2e9903ba0.tar.gz shiftos-a2361f8ea1ab017c39a1ce9d0ba86da2e9903ba0.tar.bz2 shiftos-a2361f8ea1ab017c39a1ce9d0ba86da2e9903ba0.zip | |
Shift Desktop Icons - 0 CP
Yes, I added the ability to customize the Desktop Icons in the Shifter.
This is very basic, and I tried my best to allow older skins to be
converted to enable these abilities. Don't worry though, the title was
just a creative title and no upgrades were added to the Shiftorium. I
also added the ability to delete files from the desktop.
Diffstat (limited to 'ShiftOS/File Skimmer.vb')
| -rw-r--r-- | ShiftOS/File Skimmer.vb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ShiftOS/File Skimmer.vb b/ShiftOS/File Skimmer.vb index d5f8db9..56fccc8 100644 --- a/ShiftOS/File Skimmer.vb +++ b/ShiftOS/File Skimmer.vb @@ -93,9 +93,13 @@ Public Class File_Skimmer End Sub Private Sub closebutton_Click(sender As Object, e As EventArgs) Handles closebutton.Click + ShiftOSDesktop.refreshIcons() Me.Close() End Sub + Private Sub Me_Close(sender As Object, e As EventArgs) Handles MyBase.FormClosing + ShiftOSDesktop.refreshIcons() + End Sub Private Sub closebutton_MouseEnter(sender As Object, e As EventArgs) Handles closebutton.MouseEnter, closebutton.MouseUp closebutton.BackgroundImage = Skins.closebtnhover End Sub @@ -935,4 +939,6 @@ Public Class File_Skimmer Private Sub DeleteToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles DeleteToolStripMenuItem.Click btndeletefile_Click() End Sub + + End Class
\ No newline at end of file |
