diff options
28 files changed, 454 insertions, 1148 deletions
diff --git a/Histacom2.Engine/Histacom2.Engine.csproj b/Histacom2.Engine/Histacom2.Engine.csproj index ec3fad8..f41ee36 100644 --- a/Histacom2.Engine/Histacom2.Engine.csproj +++ b/Histacom2.Engine/Histacom2.Engine.csproj @@ -138,13 +138,12 @@ <EmbeddedResource Include="Template\WinXP.resx"> <DependentUpon>WinXP.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="UI\ClassicLabel.resx"> - <DependentUpon>ClassicLabel.cs</DependentUpon> - </EmbeddedResource> </ItemGroup> <ItemGroup> <Content Include="Resources\chord.wav" /> <Content Include="Resources\Icon128x.ico" /> + <None Include="Resources\WinBadXPStart.wav" /> + <None Include="Resources\WinXPWallpaper.png" /> <Content Include="Resources\WinXP\Window\WinXP_Bottom.png" /> <Content Include="Resources\WinXP\Window\WinXP_Close.png" /> <Content Include="Resources\WinXP\Window\WinXP_LBCorner.png" /> diff --git a/Histacom2.Engine/Properties/Resources.Designer.cs b/Histacom2.Engine/Properties/Resources.Designer.cs index 949a91c..cef46fa 100644 --- a/Histacom2.Engine/Properties/Resources.Designer.cs +++ b/Histacom2.Engine/Properties/Resources.Designer.cs @@ -287,6 +287,15 @@ namespace Histacom2.Engine.Properties { } /// <summary> + /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. + /// </summary> + public static System.IO.UnmanagedMemoryStream WinBadXPStart { + get { + return ResourceManager.GetStream("WinBadXPStart", resourceCulture); + } + } + + /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> public static System.Drawing.Bitmap WinClassicBottomLeft { @@ -535,5 +544,15 @@ namespace Histacom2.Engine.Properties { return ((System.Drawing.Bitmap)(obj)); } } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPWallpaper { + get { + object obj = ResourceManager.GetObject("WinXPWallpaper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } } } diff --git a/Histacom2.Engine/Properties/Resources.resx b/Histacom2.Engine/Properties/Resources.resx index a6faf66..61982fa 100644 --- a/Histacom2.Engine/Properties/Resources.resx +++ b/Histacom2.Engine/Properties/Resources.resx @@ -265,4 +265,10 @@ <data name="WinXP_TopRight" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\resources\winxp\window\winxp_trcorner.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="WinBadXPStart" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinBadXPStart.wav;System.IO.MemoryStream, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </data> + <data name="WinXPWallpaper" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinXPWallpaper.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> </root>
\ No newline at end of file diff --git a/Histacom2.Engine/Resources/WinBadXPStart.wav b/Histacom2.Engine/Resources/WinBadXPStart.wav Binary files differnew file mode 100644 index 0000000..73d2768 --- /dev/null +++ b/Histacom2.Engine/Resources/WinBadXPStart.wav diff --git a/Histacom2.Engine/Resources/WinXPWallpaper.png b/Histacom2.Engine/Resources/WinXPWallpaper.png Binary files differnew file mode 100644 index 0000000..627f8b7 --- /dev/null +++ b/Histacom2.Engine/Resources/WinXPWallpaper.png diff --git a/Histacom2.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs index 48fec8a..3c54aaf 100644 --- a/Histacom2.Engine/SaveSystem.cs +++ b/Histacom2.Engine/SaveSystem.cs @@ -129,7 +129,13 @@ namespace Histacom2.Engine save.ExperiencedStories = new List<string>(); if (DevMode == true) { - if (ProfileName == "98") + if (ProfileName == "xpbad") + { + save.CurrentOS = "xpbad"; + save.ThemeName = "badxp"; + currentTheme = new BadXPTheme(); + } + else if (ProfileName == "98") { save.CurrentOS = "98"; save.ThemeName = "default98"; @@ -717,6 +723,9 @@ namespace Histacom2.Engine case "insidepc": currentTheme = new InsideComputerTheme(); break; + case "badxp": + currentTheme = new BadXPTheme(); + break; } } } diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs index 2d4633f..fa3d334 100644 --- a/Histacom2.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -166,4 +166,15 @@ namespace Histacom2.Engine themeName = "insidepc"; } } + + public class BadXPTheme: Theme + { + public BadXPTheme() + { + startSound = Properties.Resources.WinBadXPStart; + + defaultWallpaper = Properties.Resources.WinXPWallpaper; + themeName = "badxp"; + } + } } diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index 552f19a..f6bc36d 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -650,6 +650,19 @@ <ItemGroup> <Content Include="Icon128x.ico" /> <Content Include="Resources\12padams_EULA.txt" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomRight.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomCenter.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomLeft.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomCenter2.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomRight2.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuBottomLeft2.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuRightGradient.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuRight.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuLeftGradient.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuLeft.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuTopCenter.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuTopRight.png" /> + <None Include="Resources\WinClassic\WinXPStartMenuTopLeft.png" /> <None Include="Resources\WinClassic\WinXPTaskbarTime.png" /> <None Include="Resources\WinClassic\WinXPTaskbarStart.png" /> <None Include="Resources\WinClassic\WinXPTaskbarBG.png" /> diff --git a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs index 31b9bbc..7713f56 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.Designer.cs @@ -40,65 +40,18 @@ namespace Histacom2.OS.WinXPBad this.taskbarItems = new System.Windows.Forms.Panel(); this.startbutton = new System.Windows.Forms.PictureBox(); this.startmenu = new System.Windows.Forms.Panel(); - this.startmenuitems = new System.Windows.Forms.MenuStrip(); - this.ProgramsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AccessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CommunicationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.InternetConnectionWizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NetMeetingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MultimediaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CDPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SoundRecorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.VolumeControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WindowsMediaPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SystemToolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DiskDefragmenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ScanDiskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AddressBookToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.CalculatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HyperTerminalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ImagingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.NotePadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.OnlineRegistrationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PaintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PhoneDialerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WordPadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StartUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.AOLInternetFREETrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ATTWorldNetSignupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SetupCompuServe30ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SetupWOWFromCompuServeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MSDOSPromptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.EmptyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.InternetExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.MSDOSPromptToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.OutlookExpressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WindowsExplorerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); - this.GuessTheNumberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.StartRunnerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ErrorBlasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SkindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.WebChatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TimeDistorterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.downloaderTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.installerTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.storyTest1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ControlPanelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PrintersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.TaskbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.FilesOrFoldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ComputerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.OnTheInternetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.PeopleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.RunToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.SuspendToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ShutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.ossidestartmenu = new System.Windows.Forms.Panel(); - this.osimage = new System.Windows.Forms.PictureBox(); + this.pictureBox11 = new System.Windows.Forms.PictureBox(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); + this.pictureBox9 = new System.Windows.Forms.PictureBox(); + this.pictureBox8 = new System.Windows.Forms.PictureBox(); + this.pictureBox7 = new System.Windows.Forms.PictureBox(); + this.pictureBox6 = new System.Windows.Forms.PictureBox(); + this.pictureBox5 = new System.Windows.Forms.PictureBox(); + this.pictureBox4 = new System.Windows.Forms.PictureBox(); + this.panel3 = new System.Windows.Forms.Panel(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.clockTimer = new System.Windows.Forms.Timer(this.components); this.desktopImages = new System.Windows.Forms.ImageList(this.components); this.desktopicons = new System.Windows.Forms.ListView(); @@ -109,15 +62,26 @@ namespace Histacom2.OS.WinXPBad this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.PropertiesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.desktopupdate = new System.Windows.Forms.Timer(this.components); + this.pictureBox12 = new System.Windows.Forms.PictureBox(); this.panel1.SuspendLayout(); this.taskbar.SuspendLayout(); this.clockPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit(); this.startmenu.SuspendLayout(); - this.startmenuitems.SuspendLayout(); - this.ossidestartmenu.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.osimage)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); + this.panel3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.rightclickbackproperties.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit(); this.SuspendLayout(); // // panel1 @@ -126,9 +90,9 @@ namespace Histacom2.OS.WinXPBad | System.Windows.Forms.AnchorStyles.Right))); this.panel1.AutoSize = true; this.panel1.Controls.Add(this.panel2); - this.panel1.Location = new System.Drawing.Point(0, 451); + this.panel1.Location = new System.Drawing.Point(0, 571); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(640, 29); + this.panel1.Size = new System.Drawing.Size(800, 29); this.panel1.TabIndex = 0; // // panel2 @@ -146,17 +110,18 @@ namespace Histacom2.OS.WinXPBad this.taskbar.Controls.Add(this.taskbarItems); this.taskbar.Controls.Add(this.startbutton); this.taskbar.Dock = System.Windows.Forms.DockStyle.Bottom; - this.taskbar.Location = new System.Drawing.Point(0, 450); + this.taskbar.Location = new System.Drawing.Point(0, 570); this.taskbar.Name = "taskbar"; - this.taskbar.Size = new System.Drawing.Size(640, 30); + this.taskbar.Size = new System.Drawing.Size(800, 30); this.taskbar.TabIndex = 2; // // clockPanel // this.clockPanel.BackgroundImage = global::Histacom2.Properties.Resources.WinXPTaskbarTime; + this.clockPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.clockPanel.Controls.Add(this.taskbartime); this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; - this.clockPanel.Location = new System.Drawing.Point(575, 0); + this.clockPanel.Location = new System.Drawing.Point(735, 0); this.clockPanel.Name = "clockPanel"; this.clockPanel.Size = new System.Drawing.Size(65, 30); this.clockPanel.TabIndex = 4; @@ -196,720 +161,144 @@ namespace Histacom2.OS.WinXPBad // startmenu // this.startmenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.startmenu.BackColor = System.Drawing.Color.Silver; - this.startmenu.Controls.Add(this.startmenuitems); - this.startmenu.Controls.Add(this.ossidestartmenu); - this.startmenu.Location = new System.Drawing.Point(0, 160); + this.startmenu.BackColor = System.Drawing.Color.White; + this.startmenu.Controls.Add(this.pictureBox12); + this.startmenu.Controls.Add(this.pictureBox11); + this.startmenu.Controls.Add(this.pictureBox10); + this.startmenu.Controls.Add(this.pictureBox9); + this.startmenu.Controls.Add(this.pictureBox8); + this.startmenu.Controls.Add(this.pictureBox7); + this.startmenu.Controls.Add(this.pictureBox6); + this.startmenu.Controls.Add(this.pictureBox5); + this.startmenu.Controls.Add(this.pictureBox4); + this.startmenu.Controls.Add(this.panel3); + this.startmenu.Location = new System.Drawing.Point(0, 133); this.startmenu.Name = "startmenu"; - this.startmenu.Size = new System.Drawing.Size(161, 295); + this.startmenu.Size = new System.Drawing.Size(380, 438); this.startmenu.TabIndex = 3; // - // startmenuitems - // - this.startmenuitems.AutoSize = false; - this.startmenuitems.BackColor = System.Drawing.Color.Silver; - this.startmenuitems.Dock = System.Windows.Forms.DockStyle.None; - this.startmenuitems.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.ProgramsToolStripMenuItem, - this.DocumentsToolStripMenuItem, - this.SettingsToolStripMenuItem, - this.FindToolStripMenuItem, - this.HelpToolStripMenuItem, - this.RunToolStripMenuItem, - this.SuspendToolStripMenuItem, - this.ShutdownToolStripMenuItem}); - this.startmenuitems.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow; - this.startmenuitems.Location = new System.Drawing.Point(22, 2); - this.startmenuitems.Margin = new System.Windows.Forms.Padding(0, 0, 5, 0); - this.startmenuitems.Name = "startmenuitems"; - this.startmenuitems.Padding = new System.Windows.Forms.Padding(6, 2, 0, 0); - this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; - this.startmenuitems.Size = new System.Drawing.Size(137, 309); - this.startmenuitems.TabIndex = 0; - this.startmenuitems.Text = "StartMenu"; - // - // ProgramsToolStripMenuItem - // - this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ProgramsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ProgramsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.AccessoriesToolStripMenuItem, - this.StartUpToolStripMenuItem, - this.MSDOSPromptToolStripMenuItem, - this.InternetExplorerToolStripMenuItem, - this.MSDOSPromptToolStripMenuItem1, - this.OutlookExpressToolStripMenuItem, - this.WindowsExplorerToolStripMenuItem1, - this.GuessTheNumberToolStripMenuItem, - this.StartRunnerToolStripMenuItem, - this.ErrorBlasterToolStripMenuItem, - this.SkindowsToolStripMenuItem, - this.WebChatToolStripMenuItem, - this.TimeDistorterToolStripMenuItem}); - this.ProgramsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicPrograms; - this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; - this.ProgramsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.ProgramsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.ProgramsToolStripMenuItem.Text = "Programs"; - // - // AccessoriesToolStripMenuItem - // - this.AccessoriesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AccessoriesToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AccessoriesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.CommunicationsToolStripMenuItem, - this.MultimediaToolStripMenuItem, - this.SystemToolsToolStripMenuItem, - this.AddressBookToolStripMenuItem, - this.CalculatorToolStripMenuItem, - this.HyperTerminalToolStripMenuItem, - this.ImagingToolStripMenuItem, - this.NotePadToolStripMenuItem, - this.OnlineRegistrationToolStripMenuItem, - this.PaintToolStripMenuItem, - this.PhoneDialerToolStripMenuItem, - this.WordPadToolStripMenuItem}); - this.AccessoriesToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.AccessoriesToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem"; - this.AccessoriesToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.AccessoriesToolStripMenuItem.Text = "Accessories"; - // - // CommunicationsToolStripMenuItem - // - this.CommunicationsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CommunicationsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CommunicationsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.InternetConnectionWizardToolStripMenuItem, - this.NetMeetingToolStripMenuItem}); - this.CommunicationsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.CommunicationsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem"; - this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.CommunicationsToolStripMenuItem.Text = "Communications"; - // - // InternetConnectionWizardToolStripMenuItem - // - this.InternetConnectionWizardToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetConnectionWizardToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.InternetConnectionWizardToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image"))); - this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.InternetConnectionWizardToolStripMenuItem.Name = "InternetConnectionWizardToolStripMenuItem"; - this.InternetConnectionWizardToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.InternetConnectionWizardToolStripMenuItem.Text = "Internet Connection Wizard"; - this.InternetConnectionWizardToolStripMenuItem.Click += new System.EventHandler(this.temp_for_std); - // - // NetMeetingToolStripMenuItem - // - this.NetMeetingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NetMeetingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.NetMeetingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image"))); - this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.NetMeetingToolStripMenuItem.Name = "NetMeetingToolStripMenuItem"; - this.NetMeetingToolStripMenuItem.Size = new System.Drawing.Size(219, 22); - this.NetMeetingToolStripMenuItem.Text = "NetMeeting"; - this.NetMeetingToolStripMenuItem.Click += new System.EventHandler(this.WebChatToolStripMenuItem_Click); - // - // MultimediaToolStripMenuItem - // - this.MultimediaToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MultimediaToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MultimediaToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.CDPlayerToolStripMenuItem, - this.SoundRecorderToolStripMenuItem, - this.VolumeControlToolStripMenuItem, - this.WindowsMediaPlayerToolStripMenuItem}); - this.MultimediaToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.MultimediaToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem"; - this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.MultimediaToolStripMenuItem.Text = "Multimedia"; - // - // CDPlayerToolStripMenuItem - // - this.CDPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CDPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CDPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image"))); - this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CDPlayerToolStripMenuItem.Name = "CDPlayerToolStripMenuItem"; - this.CDPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.CDPlayerToolStripMenuItem.Text = "CD Player"; - // - // SoundRecorderToolStripMenuItem - // - this.SoundRecorderToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SoundRecorderToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SoundRecorderToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image"))); - this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SoundRecorderToolStripMenuItem.Name = "SoundRecorderToolStripMenuItem"; - this.SoundRecorderToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.SoundRecorderToolStripMenuItem.Text = "Sound Recorder"; - // - // VolumeControlToolStripMenuItem - // - this.VolumeControlToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.VolumeControlToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.VolumeControlToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image"))); - this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.VolumeControlToolStripMenuItem.Name = "VolumeControlToolStripMenuItem"; - this.VolumeControlToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.VolumeControlToolStripMenuItem.Text = "Volume Control"; - // - // WindowsMediaPlayerToolStripMenuItem - // - this.WindowsMediaPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WindowsMediaPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WindowsMediaPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image"))); - this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WindowsMediaPlayerToolStripMenuItem.Name = "WindowsMediaPlayerToolStripMenuItem"; - this.WindowsMediaPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); - this.WindowsMediaPlayerToolStripMenuItem.Text = "Windows Media Player"; - // - // SystemToolsToolStripMenuItem - // - this.SystemToolsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SystemToolsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SystemToolsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SystemToolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.DiskDefragmenterToolStripMenuItem, - this.ScanDiskToolStripMenuItem}); - this.SystemToolsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.SystemToolsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SystemToolsToolStripMenuItem.Name = "SystemToolsToolStripMenuItem"; - this.SystemToolsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.SystemToolsToolStripMenuItem.Text = "System Tools"; - // - // DiskDefragmenterToolStripMenuItem - // - this.DiskDefragmenterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DiskDefragmenterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.DiskDefragmenterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.DiskDefragmenterToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("DiskDefragmenterToolStripMenuItem.Image"))); - this.DiskDefragmenterToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.DiskDefragmenterToolStripMenuItem.Name = "DiskDefragmenterToolStripMenuItem"; - this.DiskDefragmenterToolStripMenuItem.Size = new System.Drawing.Size(172, 22); - this.DiskDefragmenterToolStripMenuItem.Text = "Disk Defragmenter"; - // - // ScanDiskToolStripMenuItem - // - this.ScanDiskToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ScanDiskToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ScanDiskToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ScanDiskToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ScanDiskToolStripMenuItem.Image"))); - this.ScanDiskToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ScanDiskToolStripMenuItem.Name = "ScanDiskToolStripMenuItem"; - this.ScanDiskToolStripMenuItem.Size = new System.Drawing.Size(172, 22); - this.ScanDiskToolStripMenuItem.Text = "ScanDisk"; - // - // AddressBookToolStripMenuItem - // - this.AddressBookToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AddressBookToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AddressBookToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AddressBookToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("AddressBookToolStripMenuItem.Image"))); - this.AddressBookToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AddressBookToolStripMenuItem.Name = "AddressBookToolStripMenuItem"; - this.AddressBookToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.AddressBookToolStripMenuItem.Text = "Address Book"; - this.AddressBookToolStripMenuItem.Click += new System.EventHandler(this.AddressBookToolStripMenuItem_Click); - // - // CalculatorToolStripMenuItem - // - this.CalculatorToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CalculatorToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.CalculatorToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image"))); - this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.CalculatorToolStripMenuItem.Name = "CalculatorToolStripMenuItem"; - this.CalculatorToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.CalculatorToolStripMenuItem.Text = "Calculator"; - // - // HyperTerminalToolStripMenuItem - // - this.HyperTerminalToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HyperTerminalToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.HyperTerminalToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.HyperTerminalToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFolderSmall; - this.HyperTerminalToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem"; - this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.HyperTerminalToolStripMenuItem.Text = "HyperTerminal"; - // - // ImagingToolStripMenuItem - // - this.ImagingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ImagingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ImagingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image"))); - this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ImagingToolStripMenuItem.Name = "ImagingToolStripMenuItem"; - this.ImagingToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.ImagingToolStripMenuItem.Text = "Imaging"; - // - // NotePadToolStripMenuItem - // - this.NotePadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NotePadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.NotePadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image"))); - this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.NotePadToolStripMenuItem.Name = "NotePadToolStripMenuItem"; - this.NotePadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.NotePadToolStripMenuItem.Text = "Notepad"; - this.NotePadToolStripMenuItem.Click += new System.EventHandler(this.NotePadToolStripMenuItem_Click); - // - // OnlineRegistrationToolStripMenuItem - // - this.OnlineRegistrationToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OnlineRegistrationToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.OnlineRegistrationToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image"))); - this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OnlineRegistrationToolStripMenuItem.Name = "OnlineRegistrationToolStripMenuItem"; - this.OnlineRegistrationToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.OnlineRegistrationToolStripMenuItem.Text = "Online Registration"; - // - // PaintToolStripMenuItem - // - this.PaintToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PaintToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.PaintToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image"))); - this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PaintToolStripMenuItem.Name = "PaintToolStripMenuItem"; - this.PaintToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.PaintToolStripMenuItem.Text = "Paintbrush"; - // - // PhoneDialerToolStripMenuItem - // - this.PhoneDialerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PhoneDialerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.PhoneDialerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image"))); - this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PhoneDialerToolStripMenuItem.Name = "PhoneDialerToolStripMenuItem"; - this.PhoneDialerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.PhoneDialerToolStripMenuItem.Text = "Phone Dialer"; - // - // WordPadToolStripMenuItem - // - this.WordPadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WordPadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WordPadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image"))); - this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WordPadToolStripMenuItem.Name = "WordPadToolStripMenuItem"; - this.WordPadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.WordPadToolStripMenuItem.Text = "WordPad"; - this.WordPadToolStripMenuItem.Click += new System.EventHandler(this.WordPadToolStripMenuItem_Click); - // - // StartUpToolStripMenuItem - // - this.StartUpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartUpToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.StartUpToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.AOLInternetFREETrialToolStripMenuItem, - this.ATTWorldNetSignupToolStripMenuItem, - this.SetupCompuServe30ToolStripMenuItem, - this.SetupWOWFromCompuServeToolStripMenuItem}); - this.StartUpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.StartUpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem"; - this.StartUpToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.StartUpToolStripMenuItem.Text = "Online Services"; - // - // AOLInternetFREETrialToolStripMenuItem - // - this.AOLInternetFREETrialToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AOLInternetFREETrialToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.AOLInternetFREETrialToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem"; - this.AOLInternetFREETrialToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.AOLInternetFREETrialToolStripMenuItem.Text = "AOL & Internet FREE Trial!"; - // - // ATTWorldNetSignupToolStripMenuItem - // - this.ATTWorldNetSignupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ATTWorldNetSignupToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ATTWorldNetSignupToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem"; - this.ATTWorldNetSignupToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.ATTWorldNetSignupToolStripMenuItem.Text = "AT&T WorldNet Signup"; - // - // SetupCompuServe30ToolStripMenuItem - // - this.SetupCompuServe30ToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupCompuServe30ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SetupCompuServe30ToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem"; - this.SetupCompuServe30ToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.SetupCompuServe30ToolStripMenuItem.Text = "Setup CompuServe 3.0"; - // - // SetupWOWFromCompuServeToolStripMenuItem - // - this.SetupWOWFromCompuServeToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem"; - this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22); - this.SetupWOWFromCompuServeToolStripMenuItem.Text = "Setup WOW! from CompuServe"; - // - // MSDOSPromptToolStripMenuItem - // - this.MSDOSPromptToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MSDOSPromptToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.EmptyToolStripMenuItem}); - this.MSDOSPromptToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; - this.MSDOSPromptToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem"; - this.MSDOSPromptToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.MSDOSPromptToolStripMenuItem.Text = "StartUp"; - // - // EmptyToolStripMenuItem - // - this.EmptyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.EmptyToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.EmptyToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem"; - this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22); - this.EmptyToolStripMenuItem.Text = "(Empty)"; - // - // InternetExplorerToolStripMenuItem - // - this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetExplorerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.InternetExplorerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image"))); - this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.InternetExplorerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.InternetExplorerToolStripMenuItem.Name = "InternetExplorerToolStripMenuItem"; - this.InternetExplorerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.InternetExplorerToolStripMenuItem.Text = "Internet Explorer"; - this.InternetExplorerToolStripMenuItem.Click += new System.EventHandler(this.InternetExplorerToolStripMenuItem_Click); - // - // MSDOSPromptToolStripMenuItem1 - // - this.MSDOSPromptToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.MSDOSPromptToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image"))); - this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.MSDOSPromptToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.MSDOSPromptToolStripMenuItem1.Name = "MSDOSPromptToolStripMenuItem1"; - this.MSDOSPromptToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); - this.MSDOSPromptToolStripMenuItem1.Text = "MS-DOS Prompt"; - this.MSDOSPromptToolStripMenuItem1.Click += new System.EventHandler(this.MSDOSPromptToolStripMenuItem1_Click); - // - // OutlookExpressToolStripMenuItem - // - this.OutlookExpressToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OutlookExpressToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.OutlookExpressToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image"))); - this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.OutlookExpressToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OutlookExpressToolStripMenuItem.Name = "OutlookExpressToolStripMenuItem"; - this.OutlookExpressToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.OutlookExpressToolStripMenuItem.Text = "Outlook Express"; - // - // WindowsExplorerToolStripMenuItem1 - // - this.WindowsExplorerToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.WindowsExplorerToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WindowsExplorerToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image"))); - this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.WindowsExplorerToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.WindowsExplorerToolStripMenuItem1.Name = "WindowsExplorerToolStripMenuItem1"; - this.WindowsExplorerToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); - this.WindowsExplorerToolStripMenuItem1.Text = "Windows Explorer"; - this.WindowsExplorerToolStripMenuItem1.Click += new System.EventHandler(this.WindowsExplorerToolStripMenuItem1_Click); - // - // GuessTheNumberToolStripMenuItem - // - this.GuessTheNumberToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.GuessTheNumberToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.GuessTheNumberToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem"; - this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.GuessTheNumberToolStripMenuItem.Text = "Guess The Number"; - this.GuessTheNumberToolStripMenuItem.Visible = false; - // - // StartRunnerToolStripMenuItem - // - this.StartRunnerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartRunnerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.StartRunnerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem"; - this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.StartRunnerToolStripMenuItem.Text = "Start Runner"; - this.StartRunnerToolStripMenuItem.Visible = false; - // - // ErrorBlasterToolStripMenuItem - // - this.ErrorBlasterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ErrorBlasterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.ErrorBlasterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem"; - this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.ErrorBlasterToolStripMenuItem.Text = "Error Blaster"; - this.ErrorBlasterToolStripMenuItem.Visible = false; - // - // SkindowsToolStripMenuItem - // - this.SkindowsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SkindowsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.SkindowsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem"; - this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.SkindowsToolStripMenuItem.Text = "Skindows 95"; - this.SkindowsToolStripMenuItem.Visible = false; - // - // WebChatToolStripMenuItem - // - this.WebChatToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WebChatToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.WebChatToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem"; - this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.WebChatToolStripMenuItem.Text = "Web Chat"; - this.WebChatToolStripMenuItem.Visible = false; - // - // TimeDistorterToolStripMenuItem - // - this.TimeDistorterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.TimeDistorterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.TimeDistorterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem"; - this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); - this.TimeDistorterToolStripMenuItem.Text = "Time Distorter"; - this.TimeDistorterToolStripMenuItem.Visible = false; - this.TimeDistorterToolStripMenuItem.Click += new System.EventHandler(this.TimeDistorterToolStripMenuItem_Click); - // - // DocumentsToolStripMenuItem - // - this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DocumentsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.downloaderTestToolStripMenuItem, - this.installerTestToolStripMenuItem, - this.storyTest1ToolStripMenuItem}); - this.DocumentsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicDocuments; - this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; - this.DocumentsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.DocumentsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.DocumentsToolStripMenuItem.Text = "Documents"; - // - // downloaderTestToolStripMenuItem - // - this.downloaderTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.downloaderTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("downloaderTestToolStripMenuItem.BackgroundImage"))); - this.downloaderTestToolStripMenuItem.Name = "downloaderTestToolStripMenuItem"; - this.downloaderTestToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.downloaderTestToolStripMenuItem.Text = "DownloaderTest"; - this.downloaderTestToolStripMenuItem.Click += new System.EventHandler(this.downloaderTestToolStripMenuItem_Click); - // - // installerTestToolStripMenuItem - // - this.installerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.installerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("installerTestToolStripMenuItem.BackgroundImage"))); - this.installerTestToolStripMenuItem.Name = "installerTestToolStripMenuItem"; - this.installerTestToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.installerTestToolStripMenuItem.Text = "InstallerTest"; - this.installerTestToolStripMenuItem.Click += new System.EventHandler(this.installerTestToolStripMenuItem_Click); - // - // storyTest1ToolStripMenuItem - // - this.storyTest1ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; - this.storyTest1ToolStripMenuItem.Name = "storyTest1ToolStripMenuItem"; - this.storyTest1ToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.storyTest1ToolStripMenuItem.Text = "StoryTest1"; - this.storyTest1ToolStripMenuItem.Click += new System.EventHandler(this.storyTest1ToolStripMenuItem_Click); - // - // SettingsToolStripMenuItem - // - this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SettingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.ControlPanelToolStripMenuItem, - this.PrintersToolStripMenuItem, - this.TaskbarToolStripMenuItem}); - this.SettingsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSettings; - this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; - this.SettingsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.SettingsToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.SettingsToolStripMenuItem.Text = "Settings"; - // - // ControlPanelToolStripMenuItem - // - this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage"))); - this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem"; - this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.ControlPanelToolStripMenuItem.Text = "Control Panel"; - // - // PrintersToolStripMenuItem - // - this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage"))); - this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem"; - this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.PrintersToolStripMenuItem.Text = "Printers"; - // - // TaskbarToolStripMenuItem - // - this.TaskbarToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.TaskbarToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaskbarToolStripMenuItem.BackgroundImage"))); - this.TaskbarToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.TaskbarToolStripMenuItem.Name = "TaskbarToolStripMenuItem"; - this.TaskbarToolStripMenuItem.Size = new System.Drawing.Size(152, 22); - this.TaskbarToolStripMenuItem.Text = "Taskbar"; - // - // FindToolStripMenuItem - // - this.FindToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.FindToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FindToolStripMenuItem.BackgroundImage"))); - this.FindToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.FilesOrFoldersToolStripMenuItem, - this.ComputerToolStripMenuItem, - this.OnTheInternetToolStripMenuItem, - this.PeopleToolStripMenuItem}); - this.FindToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFind; - this.FindToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FindToolStripMenuItem.Name = "FindToolStripMenuItem"; - this.FindToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.FindToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.FindToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.FindToolStripMenuItem.Text = "Find"; - // - // FilesOrFoldersToolStripMenuItem - // - this.FilesOrFoldersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.FilesOrFoldersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FilesOrFoldersToolStripMenuItem.BackgroundImage"))); - this.FilesOrFoldersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.FilesOrFoldersToolStripMenuItem.Name = "FilesOrFoldersToolStripMenuItem"; - this.FilesOrFoldersToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.FilesOrFoldersToolStripMenuItem.Text = "Files or Folders..."; - // - // ComputerToolStripMenuItem - // - this.ComputerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ComputerToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ComputerToolStripMenuItem.BackgroundImage"))); - this.ComputerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ComputerToolStripMenuItem.Name = "ComputerToolStripMenuItem"; - this.ComputerToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.ComputerToolStripMenuItem.Text = "Computer..."; - // - // OnTheInternetToolStripMenuItem - // - this.OnTheInternetToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OnTheInternetToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("OnTheInternetToolStripMenuItem.BackgroundImage"))); - this.OnTheInternetToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.OnTheInternetToolStripMenuItem.Name = "OnTheInternetToolStripMenuItem"; - this.OnTheInternetToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.OnTheInternetToolStripMenuItem.Text = "On the Internet..."; - // - // PeopleToolStripMenuItem - // - this.PeopleToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PeopleToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PeopleToolStripMenuItem.BackgroundImage"))); - this.PeopleToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.PeopleToolStripMenuItem.Name = "PeopleToolStripMenuItem"; - this.PeopleToolStripMenuItem.Size = new System.Drawing.Size(163, 22); - this.PeopleToolStripMenuItem.Text = "People..."; - // - // HelpToolStripMenuItem - // - this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HelpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicHelp; - this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; - this.HelpToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.HelpToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.HelpToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.HelpToolStripMenuItem.Text = "Help"; - // - // RunToolStripMenuItem - // - this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.RunToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicRun; - this.RunToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.RunToolStripMenuItem.Name = "RunToolStripMenuItem"; - this.RunToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.RunToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; - this.RunToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.RunToolStripMenuItem.Text = "Run..."; - // - // SuspendToolStripMenuItem - // - this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SuspendToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSuspend; - this.SuspendToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem"; - this.SuspendToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.SuspendToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.SuspendToolStripMenuItem.Text = "Suspend"; - // - // ShutdownToolStripMenuItem - // - this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ShutdownToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicShutdown; - this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; - this.ShutdownToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); - this.ShutdownToolStripMenuItem.Size = new System.Drawing.Size(130, 36); - this.ShutdownToolStripMenuItem.Text = "Shut Down..."; - this.ShutdownToolStripMenuItem.Click += new System.EventHandler(this.ShutdownToolStripMenuItem_Click); - // - // ossidestartmenu - // - this.ossidestartmenu.Controls.Add(this.osimage); - this.ossidestartmenu.Location = new System.Drawing.Point(0, 0); - this.ossidestartmenu.Name = "ossidestartmenu"; - this.ossidestartmenu.Size = new System.Drawing.Size(21, 297); - this.ossidestartmenu.TabIndex = 4; - // - // osimage - // - this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.osimage.Image = global::Histacom2.Properties.Resources.Win98SideBar; - this.osimage.Location = new System.Drawing.Point(0, 0); - this.osimage.Name = "osimage"; - this.osimage.Size = new System.Drawing.Size(21, 297); - this.osimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.osimage.TabIndex = 0; - this.osimage.TabStop = false; + // pictureBox11 + // + this.pictureBox11.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft; + this.pictureBox11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox11.Location = new System.Drawing.Point(2, 396); + this.pictureBox11.Name = "pictureBox11"; + this.pictureBox11.Size = new System.Drawing.Size(188, 1); + this.pictureBox11.TabIndex = 8; + this.pictureBox11.TabStop = false; + // + // pictureBox10 + // + this.pictureBox10.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter2; + this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox10.Location = new System.Drawing.Point(2, 397); + this.pictureBox10.Name = "pictureBox10"; + this.pictureBox10.Size = new System.Drawing.Size(376, 41); + this.pictureBox10.TabIndex = 7; + this.pictureBox10.TabStop = false; + // + // pictureBox9 + // + this.pictureBox9.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomRight2; + this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox9.Location = new System.Drawing.Point(378, 397); + this.pictureBox9.Name = "pictureBox9"; + this.pictureBox9.Size = new System.Drawing.Size(2, 41); + this.pictureBox9.TabIndex = 6; + this.pictureBox9.TabStop = false; + // + // pictureBox8 + // + this.pictureBox8.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomLeft2; + this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox8.Location = new System.Drawing.Point(0, 397); + this.pictureBox8.Name = "pictureBox8"; + this.pictureBox8.Size = new System.Drawing.Size(2, 41); + this.pictureBox8.TabIndex = 5; + this.pictureBox8.TabStop = false; + // + // pictureBox7 + // + this.pictureBox7.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuRightGradient; + this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox7.Location = new System.Drawing.Point(190, 63); + this.pictureBox7.Name = "pictureBox7"; + this.pictureBox7.Size = new System.Drawing.Size(188, 3); + this.pictureBox7.TabIndex = 4; + this.pictureBox7.TabStop = false; + // + // pictureBox6 + // + this.pictureBox6.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuRight; + this.pictureBox6.Location = new System.Drawing.Point(378, 63); + this.pictureBox6.Name = "pictureBox6"; + this.pictureBox6.Size = new System.Drawing.Size(2, 334); + this.pictureBox6.TabIndex = 3; + this.pictureBox6.TabStop = false; + // + // pictureBox5 + // + this.pictureBox5.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuLeftGradient; + this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox5.Location = new System.Drawing.Point(2, 63); + this.pictureBox5.Name = "pictureBox5"; + this.pictureBox5.Size = new System.Drawing.Size(188, 3); + this.pictureBox5.TabIndex = 2; + this.pictureBox5.TabStop = false; + // + // pictureBox4 + // + this.pictureBox4.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuLeft; + this.pictureBox4.Location = new System.Drawing.Point(0, 63); + this.pictureBox4.Name = "pictureBox4"; + this.pictureBox4.Size = new System.Drawing.Size(2, 334); + this.pictureBox4.TabIndex = 1; + this.pictureBox4.TabStop = false; + // + // panel3 + // + this.panel3.Controls.Add(this.pictureBox3); + this.panel3.Controls.Add(this.pictureBox2); + this.panel3.Controls.Add(this.pictureBox1); + this.panel3.Dock = System.Windows.Forms.DockStyle.Top; + this.panel3.Location = new System.Drawing.Point(0, 0); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(380, 63); + this.panel3.TabIndex = 0; + // + // pictureBox3 + // + this.pictureBox3.BackColor = System.Drawing.Color.Blue; + this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopCenter; + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Fill; + this.pictureBox3.Location = new System.Drawing.Point(8, 0); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(364, 63); + this.pictureBox3.TabIndex = 2; + this.pictureBox3.TabStop = false; + // + // pictureBox2 + // + this.pictureBox2.BackColor = System.Drawing.Color.SkyBlue; + this.pictureBox2.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopRight; + this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Right; + this.pictureBox2.Location = new System.Drawing.Point(372, 0); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(8, 63); + this.pictureBox2.TabIndex = 1; + this.pictureBox2.TabStop = false; + // + // pictureBox1 + // + this.pictureBox1.BackColor = System.Drawing.Color.SkyBlue; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuTopLeft; + this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(8, 63); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; // // clockTimer // @@ -943,7 +332,7 @@ namespace Histacom2.OS.WinXPBad this.desktopicons.LargeImageList = this.desktopImages; this.desktopicons.Location = new System.Drawing.Point(0, 0); this.desktopicons.Name = "desktopicons"; - this.desktopicons.Size = new System.Drawing.Size(640, 480); + this.desktopicons.Size = new System.Drawing.Size(800, 600); this.desktopicons.TabIndex = 6; this.desktopicons.UseCompatibleStateImageBehavior = false; this.desktopicons.DoubleClick += new System.EventHandler(this.desktopicons_DoubleClick); @@ -1006,12 +395,22 @@ namespace Histacom2.OS.WinXPBad this.desktopupdate.Interval = 5000; this.desktopupdate.Tick += new System.EventHandler(this.desktopupdate_Tick); // + // pictureBox12 + // + this.pictureBox12.BackgroundImage = global::Histacom2.Properties.Resources.WinXPStartMenuBottomCenter; + this.pictureBox12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox12.Location = new System.Drawing.Point(189, 396); + this.pictureBox12.Name = "pictureBox12"; + this.pictureBox12.Size = new System.Drawing.Size(1, 1); + this.pictureBox12.TabIndex = 9; + this.pictureBox12.TabStop = false; + // // WindowsXPBad // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Teal; - this.ClientSize = new System.Drawing.Size(640, 480); + this.BackColor = System.Drawing.Color.DodgerBlue; + this.ClientSize = new System.Drawing.Size(800, 600); this.Controls.Add(this.startmenu); this.Controls.Add(this.taskbar); this.Controls.Add(this.panel1); @@ -1028,11 +427,20 @@ namespace Histacom2.OS.WinXPBad this.clockPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit(); this.startmenu.ResumeLayout(false); - this.startmenuitems.ResumeLayout(false); - this.startmenuitems.PerformLayout(); - this.ossidestartmenu.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.osimage)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); + this.panel3.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.rightclickbackproperties.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); @@ -1046,62 +454,6 @@ namespace Histacom2.OS.WinXPBad internal System.Windows.Forms.PictureBox startbutton; internal System.Windows.Forms.Label taskbartime; internal System.Windows.Forms.Panel startmenu; - internal System.Windows.Forms.MenuStrip startmenuitems; - internal System.Windows.Forms.ToolStripMenuItem ProgramsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AccessoriesToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CommunicationsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem InternetConnectionWizardToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem NetMeetingToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MultimediaToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CDPlayerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SoundRecorderToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem VolumeControlToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WindowsMediaPlayerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SystemToolsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem DiskDefragmenterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ScanDiskToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AddressBookToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem CalculatorToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem HyperTerminalToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ImagingToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem NotePadToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem OnlineRegistrationToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PaintToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PhoneDialerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WordPadToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem StartUpToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem AOLInternetFREETrialToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ATTWorldNetSignupToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SetupCompuServe30ToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SetupWOWFromCompuServeToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem EmptyToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem InternetExplorerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem1; - internal System.Windows.Forms.ToolStripMenuItem OutlookExpressToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WindowsExplorerToolStripMenuItem1; - internal System.Windows.Forms.ToolStripMenuItem GuessTheNumberToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem StartRunnerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ErrorBlasterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SkindowsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem WebChatToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem TimeDistorterToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem DocumentsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SettingsToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ControlPanelToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PrintersToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem TaskbarToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem FindToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem FilesOrFoldersToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem ComputerToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem OnTheInternetToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem PeopleToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem HelpToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem RunToolStripMenuItem; - internal System.Windows.Forms.Panel ossidestartmenu; - internal System.Windows.Forms.PictureBox osimage; - internal System.Windows.Forms.ToolStripMenuItem ShutdownToolStripMenuItem; - internal System.Windows.Forms.ToolStripMenuItem SuspendToolStripMenuItem; private System.Windows.Forms.Panel clockPanel; private System.Windows.Forms.Timer clockTimer; private System.Windows.Forms.ImageList desktopImages; @@ -1112,11 +464,21 @@ namespace Histacom2.OS.WinXPBad internal System.Windows.Forms.ToolStripMenuItem TextDocumentToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem PropertiesToolStripMenuItem1; internal System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95)); - private System.Windows.Forms.ToolStripMenuItem downloaderTestToolStripMenuItem; - private System.Windows.Forms.ToolStripMenuItem installerTestToolStripMenuItem; private System.Windows.Forms.Panel taskbarItems; - private System.Windows.Forms.ToolStripMenuItem storyTest1ToolStripMenuItem; private System.Windows.Forms.Timer desktopupdate; private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.PictureBox pictureBox4; + private System.Windows.Forms.PictureBox pictureBox5; + private System.Windows.Forms.PictureBox pictureBox6; + private System.Windows.Forms.PictureBox pictureBox7; + private System.Windows.Forms.PictureBox pictureBox8; + private System.Windows.Forms.PictureBox pictureBox9; + private System.Windows.Forms.PictureBox pictureBox10; + private System.Windows.Forms.PictureBox pictureBox11; + private System.Windows.Forms.PictureBox pictureBox12; } }
\ No newline at end of file diff --git a/Histacom2/OS/WinXPBad/WinXPBad.cs b/Histacom2/OS/WinXPBad/WinXPBad.cs index 91feba3..4968684 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.cs +++ b/Histacom2/OS/WinXPBad/WinXPBad.cs @@ -37,39 +37,8 @@ namespace Histacom2.OS.WinXPBad public WindowsXPBad() { InitializeComponent(); - startmenu.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - ProgramsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - AccessoriesToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - CommunicationsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - MultimediaToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - SystemToolsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - StartUpToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - MSDOSPromptToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - DocumentsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - SettingsToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); - FindToolStripMenuItem.DropDown.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); SetStyle(ControlStyles.SupportsTransparentBackColor, true); BackgroundImage = currentTheme.defaultWallpaper; - foreach (ToolStripMenuItem item in startmenuitems.Items) - { - item.MouseEnter += new EventHandler(MenuItem_MouseEnter); - item.MouseLeave += new EventHandler(MenuItem_MouseLeave); - } - foreach (ToolStripMenuItem item in ProgramsToolStripMenuItem.DropDown.Items) - { - item.MouseEnter += new EventHandler(MenuItem_MouseEnter); - item.MouseLeave += new EventHandler(MenuItem_MouseLeave); - } - } - - private void MenuItem_MouseEnter(object sender, EventArgs e) - { - //((ToolStripMenuItem)sender).ForeColor = Color.White; - } - - private void MenuItem_MouseLeave(object sender, EventArgs e) - { - //((ToolStripMenuItem)sender).ForeColor = Color.Black; } // When New Game is clicked in TitleScreen.cs @@ -102,9 +71,6 @@ namespace Histacom2.OS.WinXPBad // Start the ClockTimer clockTimer.Start(); - // Set the StartMenu seperator - startmenuitems.Items.Insert(6, new ToolStripSeparator()); - //nonimportantapps.Capacity = 100; this.SendToBack(); @@ -129,14 +95,6 @@ namespace Histacom2.OS.WinXPBad private void fontLoad() { this.taskbartime.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.ProgramsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.DocumentsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.SettingsToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.FindToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.HelpToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.RunToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.SuspendToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); - this.ShutdownToolStripMenuItem.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); this.desktopicons.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); } diff --git a/Histacom2/OS/WinXPBad/WinXPBad.resx b/Histacom2/OS/WinXPBad/WinXPBad.resx index 9161525..f997f6a 100644 --- a/Histacom2/OS/WinXPBad/WinXPBad.resx +++ b/Histacom2/OS/WinXPBad/WinXPBad.resx @@ -117,263 +117,6 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> - <metadata name="startmenuitems.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> - <value>17, 17</value> - </metadata> - <metadata name="startmenuitems.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> - <value>17, 17</value> - </metadata> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="InternetConnectionWizardToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAALRJREFUOE+N - kgEOwCAIA3m6T/NnG6UwBZ1bk6pTemIy2am1dlX70VlR3Hu/IBE1wr5/BOEQymFZLRvIHMZtGjUjEHOG - mIdS214UkGi92qM5zDnCENfYn+0AQvAxC2/nHsNe+HgLwCbEmW1HmLOOZtYuAB0SJKAsivAPgBXpOgNQ - PPwCyDcF4M0TAIZw84CUgq1TF2xvhP+oACBCAoBW9dg6szWLzeUZs9Y/7mQNVMCjOPywyA3MF+cOKQF9 - RAAAAABJRU5ErkJggg== -</value> - </data> - <data name="NetMeetingToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAKpJREFUOE/N - UskNgDAMy+gdrZsVO3cL/HhgySKJD/WB/BdjjNXpZ9wFu+R+QwTmnDAtY5UsbErOGuiIIKmBoJYwwEJ7 - QZbEk066qCHbo8R0Qj0OPbA1vrxpCKxSm3dPIYWtwMNED28Fp5Ai7lWwe17DFNKwFRBHmKj2EDCZ4eEF - pxeIdj+AnH33gtIeGO11jAJQw20X+5nAG7SE5GykuTO1V5yGHur3LyFyAZP8TrljsWNAAAAAAElFTkSu - QmCC -</value> - </data> - <data name="CDPlayerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcwxstlzQAAALVJREFU - OE+dj4ERwyAMAxmd0diMImMZYaC9q3xOIJaeUP5Q936r1tpz+wgi4ATR3Huxbq1FC4ihHWDDEWM4A9jD - ukJczzBqRl8AD+iVMgB1B7j5BGATpqgJ4XfbeTi8vt8ANnCAn2JvnZuH4RvADKgx5MnHfAHm/bMB0j8A - KnueAEjX+Bs+1RcAiBBITWYUACEjssIQAFAOmzmissoAKF9FARvkFqYAySACxvh7WEXQWP4IlvIBh1rl - tmCAq4kAAAAASUVORK5CYII= -</value> - </data> - <data name="SoundRecorderToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcZhHn9oQAAAJ9JREFU - OE+VkAEOxCAIBH26P6s/8zrgeqTS05uEKMouaNnQR/zPdZVeazWDsZ6DuHfv3lqz8JsDJKYrgRiyKZYz - ieFOpxhiscxH6sIojuMLCV669lD8nYAQi1CosxusE7DCoQG44L6SyPL4hBic2ftJnhMQQsVvWHH8SPLs - E3dME/aZwYnRfBIholB3I00xE1amIDLBscmu8Bdm4NuMUj70z1LCUTedOwAAAABJRU5ErkJggg== -</value> - </data> - <data name="VolumeControlToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcbanecjQAAAItJREFU - OE+VjgEOhCAMBHk6T+Nn2iFuXEEtTLLBbNu5K6LWeuzkOruhXCXWvwWttd9cv74miLrHu1TASyQAHSr0 - /chh4PiBz/iO9W+B/mpUj6hPBbxEEtChQt+PHAbOKBCpgGUl6qlLBbxkFKgn9P3IYeCMApEKWFaEd1uC - t6QC3iyxPgsCDVYTlHICH5QKXtIjRNoAAAAASUVORK5CYII= -</value> - </data> - <data name="WindowsMediaPlayerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 - JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCgUfVCd0wAAAHpJREFU - OE+djgsOgDAIQzn6bubRlF+zOZV1vqRBGK0IS2vthHK0ZjQBHdcBhcllc9t7UJnsvSSM4tKWM03cAvLM - Ve3YwNBPuqYCJONxVbGvCnABSx2QfwJjK0c03wHYzjq1RICB7WRsf10AeU9dQPAasCu19YAEww2JXJGJ - 13tFDjjJAAAAAElFTkSuQmCC -</value> - </data> - <data name="DiskDefragmenterToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAMFJREFUOE+V - kAsShDAIQzk6R/Nm3SSU2g/uaJxMi5Bnq81yt0b38pCbnz03hGDtEaYq0HVdraF9QBiORoAyXIFKyAhO - IG6m8P+TRDDMPV4JkBDWGkSNYe0JcS8AGoArAEPYDcjQAcgheL9CCVkAU1iP3sd9887L8akDkE//OoMo - ByhSkxYAl3x0EgTg6QTk3FZ/B6TRpLSiHoAOpXWVR8D4wgYopMad7KAPgJQGIh3WMbEu/+CFNEhAhKPu - /qQXQbMf8nZYxbrHLzUAAAAASUVORK5CYII= -</value> - </data> - <data name="ScanDiskToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vwAADr8BOAVTJAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACmSURBVDhPnZFR - EsQgCEM9ukfzZl0CREmrO7uNw0ghL360ndR7v7L9X4BfBxDeVVrOmsaLQqd1DKowK7QmYwxvza4hC66H - UpiV6IJlm+UQOnvxvg7aBAPkIWpY87rICtpkX/4SX5MgmkvnxzD4JIC3BCUGzZCEfWb9I4D3M2gDp3xY - oXsQ9vRAYAJVbYNqAARf2M+aQa3Hr2QAdmH5TTPoDVz1BW7tA7ajvYP7sMmIAAAAAElFTkSuQmCC -</value> - </data> - <data name="AddressBookToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAG1JREFUOE/N - j1sOgCAQAzk6N/exdqRsAuqH0THNrm2DWP5DrXVxyQ5mWRc6FLO/Wa5WYBKyZyLfn9EBoMJwl65vwA4p - e+EGDkXneJ8coODcM+TSvV9wwmfu5C8jPOZA7YCMleT0KAu68kN9TikrCNOnE4xyRLMAAAAASUVORK5C - YII= -</value> - </data> - <data name="CalculatorToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAABzSURBVDhPxZBR - DsAgCEM9ukfzZowW9UdFmUtG8mR0UtiSiFwxFSPYkbO8gb31gXahDBOdb9MhsHCoUzsJ4J0WdNRiFaUU - 36BtgIsrXAPEcGHHsAFF+4yT/M8GCP4Pa2z5iw26EEUNMNyc4rAXxw1T8RxJD2E2VfJhfZIbAAAAAElF - TkSuQmCC -</value> - </data> - <data name="ImagingToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAH9JREFUOE+l - jgESgCAIBHk6T/NnxjFCVlBKzJyhc7sTEXH/FzmYqJSLYHdCAc40AMaOqQmGBJMKmOVx7B6UeUGgsMQk - +jV4RQDYAri1dsKTBPMqcBilG/z5BwZbIgkmFNxhl0ww7trdESDo2K7dTJBGOrZrNxLszENQiQvq4X4A - JbFDpxtWNlIAAAAASUVORK5CYII= -</value> - </data> - <data name="NotePadToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACFSURBVDhPpZNB - DsAgCAR9uk/zZ1S0i6CoDTUZQ5EdTk1EtFAPX0dkFoU0aivnTOnFrZVkCZvGjjpXSuki02c7F9g0gzdP - YD7mIDMGW3gV6KEdPOMJjOmECltBYLsIxHJjCg9BYDufIejXFYQ17Q1LwG7YIyTA4Tok0PwStB/LE0Dy - BSJKDySVfIiSNKD1AAAAAElFTkSuQmCC -</value> - </data> - <data name="OnlineRegistrationToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vwAADr8BOAVTJAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACzSURBVDhPhZJR - EsUgCAN7dI7mzawRl1KLU2fygMimfryr9/6rcUY53FVmluDWmpoxFveViQSZuU4h72GMyMwm5AF2DPnA - QPTM9FIOCTiMBarSI1712qeZwwbkkApejBuqLLK8h7Cb5T8HGI8QBLPq8+wdzr722FUNL7+gEsuE06MI - qELk6T7DOhNcwTNAcuMJAZYAdQgiJAIk/kAZdr8OmCHD+5UWeRkBfKgEduUAYL/r1w0ie5EGNPvMCQAA - AABJRU5ErkJggg== -</value> - </data> - <data name="PaintToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAADBSURBVDhPhZAB - GoUgCIM9ukfrZj02mBJhb32U5v6JjpfmuGP0pQ8PAg4h0/6jbKj1xgcDniYEMGTDGpR0CLCJAIPnfV2X - 5lve4hTMXbirjVETQHQQtaX23LFN9mIRXtMCh14BIirctm/yiyGNkB7mHvxXAgTj/Os4jegzmHeVQ3KA - TWlAq7UUQOgUYE3KxCDMXd5drEGnADfz/Qj6d4QC569ZukoKUwfrq3ugewmgnmgP5eCztGaVFK0HnJUB - VdEYP35ybB/eOVN7AAAAAElFTkSuQmCC -</value> - </data> - <data name="PhoneDialerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAK5JREFUOE+V - kAESwyAIBH06T/Nnlju8FNFJ7c0w0sBuTVqNWRu15uh3sDzGXleiDJsZlnleiyTwloXgzGLVUTIfcqH3 - zhO/UZrlG20S/RNg9JLodSSUAD045gR/JUj0vsoeM/SEkRAosVBhQTgPgvy1lfVWBazw8KGxsiiDGdbr - gKfAWwJIFp3AuFF8WPAUaOBPwuJJSwuomjNmWcqiF/CBczbRLVjziP4Fay7A1j6MmatnPf0QdQAAAABJ - RU5ErkJggg== -</value> - </data> - <data name="WordPadToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACMSURBVDhPnZAB - DsAgCAN9Ok/zZ4yiEINsMkkKRNezWWNmlZSM84wabVwyEX3ODNLCZXWiyUrsgEr13h2gZlmvAGZGKQAX - VRlAzfcJIAB+/gMiM5smIMbMBLO8uUMqCcxsOzww4/AIiGZ7eR4OQBYZ2uIGswOyWj72ArQMyOoVsMY+ - aQNok1HVambm9gBAYeI/oBSQZwAAAABJRU5ErkJggg== -</value> - </data> - <data name="InternetExplorerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJVJREFUOE+VkQsSxCAMQj16bu4GFU3YdO2+Gaqi0F/7j96zfqKHqYiuByYBFfYJ - 1okT9uuef4slmG9gWjdzN4Wnf9bRT1RhaCN+KriGieyvkjr8Rl7AMMbywE0zCBiIBS9Awbn7tUD29xME - Q0rM8IHhPbziKRhMU0pqjVIfcgHAfB2oiugnuEnG/EkZ/4fLZEksutHaB6sGQO/gf7MbAAAAAElFTkSu - QmCC -</value> - </data> - <data name="MSDOSPromptToolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAALtJREFUOE91TwESBCEI6un9vBPRYqljhtEIyUZhzTkXKo8J1ZI4P3xjlAjsqpoN - upcBf0zA6+7r8QAxA9170IEPm6l7PWu9A1CLwNaVpSfWNEKLWCECDnkvAdFtMgBDLeHFaNaXEpQu22B9 - NsFA96i2yQlo00wejQG9VfuSCQ0IXAFAVAb468AVwJB3AHpsBFKn2uYkemh9hllezf4KcDKwtqkBpX5j - Dyj5DRIeDDh3wD3c5AYkh2QwOMYPtAJqglssjE8AAAAASUVORK5CYII= -</value> - </data> - <data name="OutlookExpressToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJVJREFUOE+VkIESgCAIQ/10/pwasJrlkb27nUZsoqPHPbWNlYHCN9gKMTc7O31I - gIa0PM2EE32ErE9WNQEw1y6azbZGvkFAhnBcKMmwrQnCVI0MofA+a6UniIDYqKTx7JhBDeVaQd5fVT9m - M4JvowbwzjNlu4C5DVBgVyll4Zo8AzrK0gfo6ZBSFq7J6g0+ePWj8EPDD0i7RXV30HOWAAAAAElFTkSu - QmCC -</value> - </data> - <data name="WindowsExplorerToolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wgAADsIBFShKgAAAAJJJREFUOE+tkYEOgCAIRP10/tzk4FISZ7ZuuzDwnq4KJSL1aR/txc21llBfQVbh - EZJZZ5C+nEoEcIN0QDyxLVGzm6WAsMYTvRSSAqaw2jRBloApbJUBhLVub4ABqwMY1poCuEYzhPWjRkgK - 6EP7A+obqOc2EzIBeELmtqNFDECI9R3gYmPhCPH+qX6HfAJAQ7iUCwlxft5LSoDNAAAAAElFTkSuQmCC -</value> - </data> - <data name="downloaderTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="installerTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="ControlPanelToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="PrintersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="TaskbarToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="FindToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="FilesOrFoldersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="ComputerToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="OnTheInternetToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> - <data name="PeopleToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wAAADsABataJCQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw - 4AAABIQCQUtXaBsAAAAASUVORK5CYII= -</value> - </data> <metadata name="clockTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>153, 17</value> </metadata> @@ -385,7 +128,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq - ggAAAk1TRnQBSQFMAgEBDAEAAcABAQHAAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA + ggAAAk1TRnQBSQFMAgEBDAEAARgBAgEYAQIBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA AwABgAMAAQEBAAEgBwABAf8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/ @@ -955,6 +698,7 @@ <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <value>63</value> </metadata> + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value> AAABAAUAEBAAAAAAIABoBAAAVgAAACAgAAAAACAAqBAAAL4EAAAwMAAAAAAgAKglAABmFQAAQEAAAAAA diff --git a/Histacom2/Properties/Resources.resx b/Histacom2/Properties/Resources.resx index 4fbf3b4..7db7ddf 100644 --- a/Histacom2/Properties/Resources.resx +++ b/Histacom2/Properties/Resources.resx @@ -1960,6 +1960,45 @@ <data name="WinClassicInstallSidebar" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\WinClassic\WinClassicInstallSidebar.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="WinXPStartMenuBottomCenter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomCenter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuBottomCenter2" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomCenter2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuBottomLeft" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuBottomLeft2" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomLeft2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuBottomRight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuBottomRight2" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuBottomRight2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuLeft" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuLeftGradient" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuLeftGradient.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuRight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuRightGradient" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuRightGradient.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuTopCenter" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuTopCenter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuTopLeft" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuTopLeft.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinXPStartMenuTopRight" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinXPStartMenuTopRight.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> <data name="WinXPTaskbarBG" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\WinClassic\WinXPTaskbarBG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> diff --git a/Histacom2/Properties/Resources1.Designer.cs b/Histacom2/Properties/Resources1.Designer.cs index 16d362c..4a3cf7a 100644 --- a/Histacom2/Properties/Resources1.Designer.cs +++ b/Histacom2/Properties/Resources1.Designer.cs @@ -2046,6 +2046,136 @@ namespace Histacom2.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomCenter { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomCenter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomCenter2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomCenter2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomLeft2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomLeft2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuBottomRight2 { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuBottomRight2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuLeftGradient { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuLeftGradient", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuRightGradient { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuRightGradient", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuTopCenter { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopCenter", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuTopLeft { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopLeft", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + public static System.Drawing.Bitmap WinXPStartMenuTopRight { + get { + object obj = ResourceManager.GetObject("WinXPStartMenuTopRight", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> public static System.Drawing.Bitmap WinXPTaskbarBG { get { object obj = ResourceManager.GetObject("WinXPTaskbarBG", resourceCulture); diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png Binary files differnew file mode 100644 index 0000000..18dc206 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png Binary files differnew file mode 100644 index 0000000..10fb3bf --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomCenter2.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png Binary files differnew file mode 100644 index 0000000..5430c02 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png Binary files differnew file mode 100644 index 0000000..9579756 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomLeft2.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png Binary files differnew file mode 100644 index 0000000..c4e30f1 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png Binary files differnew file mode 100644 index 0000000..2df1891 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuBottomRight2.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png Binary files differnew file mode 100644 index 0000000..5dca1f2 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuLeft.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png b/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png Binary files differnew file mode 100644 index 0000000..1bcf1bf --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuLeftGradient.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png Binary files differnew file mode 100644 index 0000000..b687a0d --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuRight.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png b/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png Binary files differnew file mode 100644 index 0000000..9c67cc2 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuRightGradient.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png Binary files differnew file mode 100644 index 0000000..521c3d4 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuTopCenter.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png Binary files differnew file mode 100644 index 0000000..7b24763 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuTopLeft.png diff --git a/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png b/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png Binary files differnew file mode 100644 index 0000000..604d062 --- /dev/null +++ b/Histacom2/Resources/WinClassic/WinXPStartMenuTopRight.png diff --git a/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png b/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png Binary files differindex 5a88844..c8489c8 100644 --- a/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png +++ b/Histacom2/Resources/WinClassic/WinXPTaskbarTime.png diff --git a/Histacom2/TitleScreen.cs b/Histacom2/TitleScreen.cs index 37539d9..f9c6896 100644 --- a/Histacom2/TitleScreen.cs +++ b/Histacom2/TitleScreen.cs @@ -11,6 +11,7 @@ using Histacom2.SaveDialogs; using System.Runtime.InteropServices; using System.Reflection; using System.ComponentModel; +using Histacom2.OS.WinXPBad; namespace Histacom2 { @@ -20,6 +21,7 @@ namespace Histacom2 public static Windows95 frm95; public static Windows98 frm98; + public static WindowsXPBad frmBadXP; public static string username; public static string progress = "95"; @@ -90,6 +92,20 @@ namespace Histacom2 Hide(); break; + case "xpbad": + frmBadXP = new WindowsXPBad(); + frmBadXP.TopMost = true; + frmBadXP.FormBorderStyle = FormBorderStyle.None; + frmBadXP.WindowState = FormWindowState.Maximized; + //if (vm_mode.Checked == true) + //{ + // frm98.Size = new Size(Convert.ToInt32(VM_Width.Text), Convert.ToInt32(VM_Height.Text)); + // frm98.FormBorderStyle = FormBorderStyle.Fixed3D; + //} + frmBadXP.Show(); + Hide(); + + break; default: MessageBox.Show("WARNING! It looks like this save is corrupt!"); MessageBox.Show("We will now open the Save troubleshooter"); |
