diff options
| author | lempamo <[email protected]> | 2017-07-31 11:08:49 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-31 11:08:49 -0400 |
| commit | 93702450a4d0a1830807e985acccc616f3bf1b62 (patch) | |
| tree | 39a554d4ac131d100ce794af6914a8d5d7e84adf /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | 547f5382301c4b0957e886739e45389702b5c678 (diff) | |
| download | histacom2-93702450a4d0a1830807e985acccc616f3bf1b62.tar.gz histacom2-93702450a4d0a1830807e985acccc616f3bf1b62.tar.bz2 histacom2-93702450a4d0a1830807e985acccc616f3bf1b62.zip | |
fixed up taskbar things
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index 5d02b16..7e4938a 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -129,14 +129,14 @@ namespace TimeHACK.OS.Win95 // Update the Desktop icons - DesktopController.RefreshDesktopIcons(new ListViewItem[] { new System.Windows.Forms.ListViewItem("My Computer", 0), - new System.Windows.Forms.ListViewItem("Network Neighborhood", 5), - new System.Windows.Forms.ListViewItem("Inbox", 3), - new System.Windows.Forms.ListViewItem("Recycle Bin", 7), - new System.Windows.Forms.ListViewItem("Internet Explorer", 2), - new System.Windows.Forms.ListViewItem("Online Services", 1), - new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4), - new System.Windows.Forms.ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); + DesktopController.RefreshDesktopIcons(new ListViewItem[] { new ListViewItem("My Computer", 0), + new ListViewItem("Network Neighborhood", 5), + new ListViewItem("Inbox", 3), + new ListViewItem("Recycle Bin", 7), + new ListViewItem("Internet Explorer", 2), + new ListViewItem("Online Services", 1), + new ListViewItem("Set Up The Microsoft Network", 4), + new ListViewItem("Outlook Express", 6) }, ref desktopicons, Path.Combine(ProfileWindowsDirectory, "Desktop")); } private void fontLoad() @@ -172,12 +172,6 @@ namespace TimeHACK.OS.Win95 #endregion //Region - // Give Year Code - NYI - private void taskbartime_Click(object sender, EventArgs e) - { - - } - // Set the Clock private void clockTimer_Tick(object sender, EventArgs e) { @@ -441,9 +435,9 @@ namespace TimeHACK.OS.Win95 private void MSDOSPromptToolStripMenuItem1_Click (object sender, EventArgs e) { WinClassicTerminal msdos = new WinClassicTerminal(false); - WinClassic app = wm.StartWin95(msdos, "MS-DOS Prompt", Properties.Resources.MS_DOS, true, true, false); + WinClassic app = wm.StartWin95(msdos, "MS-DOS Prompt", Properties.Resources.MSDOSPromptToolStripMenuItem1_Image, true, true, false); - AddTaskBarItem(app, app.Tag.ToString(), "MS-DOS Prompt", Properties.Resources.MS_DOS); + AddTaskBarItem(app, app.Tag.ToString(), "MS-DOS Prompt", Properties.Resources.MSDOSPromptToolStripMenuItem1_Image); app.BringToFront(); startmenu.Hide(); } @@ -575,7 +569,7 @@ namespace TimeHACK.OS.Win95 private void MinsweeperToolStripMenuItem_Click(object sender, EventArgs e) { WinClassic app = wm.StartWin95(new WinClassicMinesweeper(), "Minesweeper", Properties.Resources.WinClassicMinesweeper, false, false); - AddTaskBarItem(app, app.Tag.ToString(), "Calculator", Properties.Resources.WinClassicCalc); + AddTaskBarItem(app, app.Tag.ToString(), "Minesweeper", Properties.Resources.WinClassicMinesweeper); nonimportantapps.Add(app); nonimportantapps[nonimportantapps.Count - 1].BringToFront(); |
