diff options
| author | lempamo <[email protected]> | 2017-03-26 09:26:07 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-03-26 09:26:07 -0400 |
| commit | 95f36943e6763cfc4e3c9cbdff86752b1bc913a6 (patch) | |
| tree | 16120c9572d90d807113e2bfe18dc70263144671 /TimeHACK.Main/Windows95.cs | |
| parent | f43f1cc9a789c27cf999ec2f62e21c9bfdfeb3c5 (diff) | |
| download | histacom2-95f36943e6763cfc4e3c9cbdff86752b1bc913a6.tar.gz histacom2-95f36943e6763cfc4e3c9cbdff86752b1bc913a6.tar.bz2 histacom2-95f36943e6763cfc4e3c9cbdff86752b1bc913a6.zip | |
improved a few things here and there
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
| -rw-r--r-- | TimeHACK.Main/Windows95.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs index 5d266ec..8d5e1bd 100644 --- a/TimeHACK.Main/Windows95.cs +++ b/TimeHACK.Main/Windows95.cs @@ -38,6 +38,8 @@ namespace TimeHACK // Set the StartMenu seperator startmenuitems.Items.Insert(6, new ToolStripSeparator()); + + this.SendToBack(); } #region StartMenu @@ -87,7 +89,7 @@ namespace TimeHACK // Set the Clock private void clockTimer_Tick(object sender, EventArgs e) { - taskbartime.Text = DateTime.Now.ToString("hh:mm tt"); + taskbartime.Text = DateTime.Now.ToString("h:mm tt"); } // On Desktop MouseDown @@ -98,6 +100,7 @@ namespace TimeHACK rightclickbackproperties.Show(); rightclickbackproperties.BringToFront(); rightclickbackproperties.Location = MousePosition; + startmenu.Hide(); } // If @@ -117,6 +120,8 @@ namespace TimeHACK { WinClassicNotepad notepad = new WinClassicNotepad(); notepad.Show(); + notepad.BringToFront(); + startmenu.Hide(); } private void desktopicons_SelectedIndexChanged(object sender, EventArgs e) |
