From 95f36943e6763cfc4e3c9cbdff86752b1bc913a6 Mon Sep 17 00:00:00 2001 From: lempamo Date: Sun, 26 Mar 2017 09:26:07 -0400 Subject: improved a few things here and there --- TimeHACK.Main/Windows95.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'TimeHACK.Main/Windows95.cs') 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) -- cgit v1.2.3