Finished WindowManager.cs

I HOPE YOU LIKE IT HONEYFRY
This commit is contained in:
AShifter 2017-03-26 11:28:05 -06:00
parent a7128e18c3
commit f16f3a8a3d
53 changed files with 241 additions and 1151 deletions

View file

@ -100,6 +100,16 @@ internal static System.Drawing.Bitmap LeftSide {
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap nullIcon {
get {
object obj = ResourceManager.GetObject("nullIcon", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>

View file

@ -130,6 +130,9 @@
<data name="LeftSide" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\resources\winclassic\window\leftside.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="nullIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\resources\winclassic\window\nullicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="RightSide" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\resources\winclassic\window\rightside.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 B

View file

@ -1,3 +0,0 @@
[LocalizedFileNames]
settings pic start.png=@settings pic start.png,0
windows 95 sidemenustart.bmp=@windows 95 sidemenustart.bmp,0

View file

@ -44,11 +44,13 @@ private void InitializeComponent()
this.bottom = new System.Windows.Forms.Panel();
this.right = new System.Windows.Forms.Panel();
this.top = new System.Windows.Forms.Panel();
this.programIcon = new System.Windows.Forms.PictureBox();
this.program.SuspendLayout();
this.programtopbar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.programIcon)).BeginInit();
this.SuspendLayout();
//
// program
@ -81,6 +83,7 @@ private void InitializeComponent()
// programtopbar
//
this.programtopbar.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(170)))));
this.programtopbar.Controls.Add(this.programIcon);
this.programtopbar.Controls.Add(this.maximizebutton);
this.programtopbar.Controls.Add(this.minimizebutton);
this.programtopbar.Controls.Add(this.Title);
@ -90,6 +93,7 @@ private void InitializeComponent()
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(292, 18);
this.programtopbar.TabIndex = 0;
this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag);
//
// maximizebutton
//
@ -100,6 +104,7 @@ private void InitializeComponent()
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
this.maximizebutton.Click += new System.EventHandler(this.maximizebutton_Click);
//
// minimizebutton
//
@ -116,7 +121,7 @@ private void InitializeComponent()
this.Title.AutoSize = true;
this.Title.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Title.ForeColor = System.Drawing.Color.White;
this.Title.Location = new System.Drawing.Point(3, 2);
this.Title.Location = new System.Drawing.Point(23, 3);
this.Title.Name = "Title";
this.Title.Size = new System.Drawing.Size(99, 13);
this.Title.TabIndex = 3;
@ -131,6 +136,7 @@ private void InitializeComponent()
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
this.closebutton.Click += new System.EventHandler(this.closebutton_Click);
//
// toprightcorner
//
@ -208,6 +214,17 @@ private void InitializeComponent()
this.top.Size = new System.Drawing.Size(300, 4);
this.top.TabIndex = 8;
//
// programIcon
//
this.programIcon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.programIcon.ErrorImage = null;
this.programIcon.InitialImage = null;
this.programIcon.Location = new System.Drawing.Point(2, 1);
this.programIcon.Name = "programIcon";
this.programIcon.Size = new System.Drawing.Size(16, 16);
this.programIcon.TabIndex = 0;
this.programIcon.TabStop = false;
//
// WinClassic
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@ -223,6 +240,7 @@ private void InitializeComponent()
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.programIcon)).EndInit();
this.ResumeLayout(false);
}
@ -230,10 +248,7 @@ private void InitializeComponent()
#endregion
internal System.Windows.Forms.Panel program;
private System.Windows.Forms.Panel programContent;
internal System.Windows.Forms.Panel programtopbar;
internal System.Windows.Forms.PictureBox maximizebutton;
internal System.Windows.Forms.PictureBox minimizebutton;
internal System.Windows.Forms.Label Title;
internal System.Windows.Forms.PictureBox closebutton;
internal System.Windows.Forms.Panel toprightcorner;
@ -244,5 +259,9 @@ private void InitializeComponent()
internal System.Windows.Forms.Panel bottom;
internal System.Windows.Forms.Panel right;
internal System.Windows.Forms.Panel top;
public System.Windows.Forms.Panel programContent;
public System.Windows.Forms.PictureBox maximizebutton;
public System.Windows.Forms.PictureBox minimizebutton;
public System.Windows.Forms.PictureBox programIcon;
}
}

View file

@ -1,11 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace TimeHACK.Engine.Template
@ -16,5 +10,63 @@ public WinClassic()
{
InitializeComponent();
}
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd,
int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
private void programtopbar_drag(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
private void closebutton_Click(object sender, EventArgs e)
{
this.Close();
}
public Boolean max = false;
private void maximizebutton_Click(object sender, EventArgs e)
{
if (max == false)
{
this.right.Hide();
this.left.Hide();
this.bottom.Hide();
this.top.Hide();
this.bottomleftcorner.Hide();
this.bottomrightcorner.Hide();
this.topleftcorner.Hide();
this.toprightcorner.Hide();
this.Dock = DockStyle.Fill;
max = true;
maximizebutton.Image = Properties.Resources.WinClassicRestore;
}
else
{
this.right.Show();
this.left.Show();
this.bottom.Show();
this.top.Show();
this.bottomleftcorner.Show();
this.bottomrightcorner.Show();
this.topleftcorner.Show();
this.toprightcorner.Show();
this.Dock = DockStyle.None;
max = false;
maximizebutton.Image = Properties.Resources.WinClassicMax;
}
}
}
}

View file

@ -71,6 +71,7 @@
<Content Include="Resources\WinClassic\Window\BottomRight.png" />
<Content Include="Resources\WinClassic\Window\BottomSide.png" />
<Content Include="Resources\WinClassic\Window\LeftSide.png" />
<Content Include="Resources\WinClassic\Window\nullIcon.png" />
<Content Include="Resources\WinClassic\Window\RightSide.png" />
<Content Include="Resources\WinClassic\Window\TopLeft.png" />
<Content Include="Resources\WinClassic\Window\TopRight.png" />
@ -80,8 +81,6 @@
<Content Include="Resources\WinClassic\Window\WinClassicMin.png" />
<Content Include="Resources\WinClassic\Window\WinClassicRestore.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="NewFolder1\" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View file

@ -1,20 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TimeHACK.Engine.Template;
using System.Windows.Forms;
namespace TimeHACK.Engine
{
class WindowManager
public class WindowManager
{
private void startWinClassic(String title, int width, int height)
public void startWinClassic(UserControl content, String title, PictureBox icon, Boolean MaxButton, Boolean MinButton)
{
// Setup Window
WinClassic app = new WinClassic();
app.Title.Text = title;
app.Width = width + 8;
app.Height = height + 26;
app.Width = content.Width + 8;
app.Height = content.Height + 26;
content.Parent = app.programContent;
content.BringToFront();
content.Dock = DockStyle.Fill;
if (icon == null)
{
icon = app.programIcon;
icon.Image = Properties.Resources.nullIcon;
}
app.programIcon.Image = icon.Image;
// Check if Max button is enabled
if (MaxButton == false)
{
app.maximizebutton.Visible = false;
}
// Check if Min button is enabled
if (MinButton == false)
{
app.minimizebutton.Visible = false;
}
// Show the app
app.Show();
}
}
}
}

View file

@ -132,12 +132,6 @@
<Compile Include="WinClassicForms\WinClassicTemplate.Designer.cs">
<DependentUpon>WinClassicTemplate.cs</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\WinClassicTerminal.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="WinClassicForms\WinClassicTerminal.Designer.cs">
<DependentUpon>WinClassicTerminal.cs</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\WinClassicIE4.cs">
<SubType>Form</SubType>
</Compile>
@ -158,18 +152,12 @@
<Compile Include="TitleScreen.Designer.cs">
<DependentUpon>TitleScreen.cs</DependentUpon>
</Compile>
<Compile Include="WinClassicForms\WinClassicNotepad.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="WinClassicForms\WinClassicNotepad.Designer.cs">
<DependentUpon>WinClassicNotepad.cs</DependentUpon>
</Compile>
<EmbeddedResource Include="WinClassicForms\TestApp.resx">
<DependentUpon>TestApp.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicIE4.resx">
<DependentUpon>WinClassicIE4.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicTerminal.resx">
<DependentUpon>WinClassicTerminal.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Windows95.resx">
<DependentUpon>Windows95.cs</DependentUpon>
</EmbeddedResource>
@ -181,9 +169,6 @@
<EmbeddedResource Include="TitleScreen.resx">
<DependentUpon>TitleScreen.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicNotepad.resx">
<DependentUpon>WinClassicNotepad.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="WinClassicForms\WinClassicTemplate.resx">
<DependentUpon>WinClassicTemplate.cs</DependentUpon>
</EmbeddedResource>
@ -223,7 +208,6 @@
<Content Include="Resources\TitleScreen\TimeHACK_Logo.png" />
<Content Include="Resources\TitleScreen\TitleScreenBG.png" />
<None Include="Resources\LeviWindows.ttf" />
<None Include="Resources\WinClassicFont.bmp" />
<Content Include="Resources\WinClassic\16Color.png" />
<Content Include="Resources\WinClassic\256Color.png" />
<None Include="Resources\WinClassic\tada.wav" />

View file

@ -28,10 +28,34 @@ protected override void Dispose(bool disposing)
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(24, 91);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(237, 65);
this.label1.TabIndex = 0;
this.label1.Text = "If you are reading this, you are reading a window\r\nwith borders that are being re" +
"ndered by the\r\nWindowManager. All you need is 3 lines of code.\r\n\r\nTHIS IS AWESOM" +
"E!";
//
// TestApp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.label1);
this.Name = "TestApp";
this.Size = new System.Drawing.Size(292, 274);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
}
}

View file

@ -1,13 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TimeHACK.Engine;
using System.Windows.Forms;
using System.Windows.Forms;
namespace TimeHACK.WinClassicForms
{
@ -17,9 +8,6 @@ public TestApp()
{
InitializeComponent();
}
}
}

View file

@ -117,47 +117,4 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="right.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8
/DQQtXX1MTAwAAA0WgZJrWm8iAAAAABJRU5ErkJggg==
</value>
</data>
<data name="left.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8
/PT///+B5OHjpwFB1wn9nx9JYgAAAABJRU5ErkJggg==
</value>
</data>
<data name="topleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAaSURBVBhXYzh8
/DQcgTj/YQDKQZEBcY6fBgAaSCiZEc9BxAAAAABJRU5ErkJggg==
</value>
</data>
<data name="bottomleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/PT///+BJBBhcNq6+iCIAQEYGACcHRsocGQwIQAAAABJRU5ErkJggg==
</value>
</data>
<data name="bottomrightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/DQQtXX1MQABCgdIQRCIgwAMDABm/hFrLt/K7gAAAABJRU5ErkJggg==
</value>
</data>
<data name="toprightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/DQEMQDBfzBo6+oDcSDCGBwGBgAJoRsoKGRD1QAAAABJRU5ErkJggg==
</value>
</data>
</root>

View file

@ -311,19 +311,10 @@ private void InitializeComponent()
this.ToolStripMenuItem93 = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem94 = new System.Windows.Forms.ToolStripMenuItem();
this.ToolStripMenuItem95 = new System.Windows.Forms.ToolStripMenuItem();
this.programtopbar = new System.Windows.Forms.Panel();
this.maximizebutton = new System.Windows.Forms.PictureBox();
this.minimizebutton = new System.Windows.Forms.PictureBox();
this.programname = new System.Windows.Forms.Label();
this.closebutton = new System.Windows.Forms.PictureBox();
this.toprightcorner = new System.Windows.Forms.Panel();
this.bottomrightcorner = new System.Windows.Forms.Panel();
this.bottomleftcorner = new System.Windows.Forms.Panel();
this.topleftcorner = new System.Windows.Forms.Panel();
this.left = new System.Windows.Forms.Panel();
this.bottom = new System.Windows.Forms.Panel();
this.right = new System.Windows.Forms.Panel();
this.top = new System.Windows.Forms.Panel();
this.program.SuspendLayout();
this.browsingarea.SuspendLayout();
this.padamsmain.SuspendLayout();
@ -373,10 +364,6 @@ private void InitializeComponent()
this.Panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
this.MenuStrip3.SuspendLayout();
this.programtopbar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).BeginInit();
this.SuspendLayout();
//
// program
@ -387,15 +374,10 @@ private void InitializeComponent()
this.program.Controls.Add(this.Panel1);
this.program.Controls.Add(this.PictureBox1);
this.program.Controls.Add(this.MenuStrip3);
this.program.Controls.Add(this.programtopbar);
this.program.Controls.Add(this.toprightcorner);
this.program.Controls.Add(this.bottomrightcorner);
this.program.Controls.Add(this.bottomleftcorner);
this.program.Controls.Add(this.topleftcorner);
this.program.Controls.Add(this.left);
this.program.Controls.Add(this.bottom);
this.program.Controls.Add(this.right);
this.program.Controls.Add(this.top);
this.program.Dock = System.Windows.Forms.DockStyle.Fill;
this.program.Location = new System.Drawing.Point(0, 0);
this.program.Name = "program";
@ -418,9 +400,9 @@ private void InitializeComponent()
this.browsingarea.Controls.Add(this.googlemain);
this.browsingarea.Controls.Add(this.googleprototype);
this.browsingarea.Dock = System.Windows.Forms.DockStyle.Fill;
this.browsingarea.Location = new System.Drawing.Point(4, 133);
this.browsingarea.Location = new System.Drawing.Point(0, 111);
this.browsingarea.Name = "browsingarea";
this.browsingarea.Size = new System.Drawing.Size(951, 457);
this.browsingarea.Size = new System.Drawing.Size(959, 483);
this.browsingarea.TabIndex = 9;
//
// webBrowser1
@ -746,7 +728,7 @@ private void InitializeComponent()
this.Panel13.Controls.Add(this.win95background);
this.Panel13.Location = new System.Drawing.Point(46, 74);
this.Panel13.Name = "Panel13";
this.Panel13.Size = new System.Drawing.Size(6152, 118);
this.Panel13.Size = new System.Drawing.Size(6554, 118);
this.Panel13.TabIndex = 2;
//
// Previewimage
@ -757,7 +739,7 @@ private void InitializeComponent()
this.Previewimage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.Previewimage.Location = new System.Drawing.Point(246, 6);
this.Previewimage.Name = "Previewimage";
this.Previewimage.Size = new System.Drawing.Size(4735, 118);
this.Previewimage.Size = new System.Drawing.Size(5137, 118);
this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.Previewimage.TabIndex = 1;
this.Previewimage.TabStop = false;
@ -1895,7 +1877,7 @@ private void InitializeComponent()
this.Label42.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.Label42.AutoSize = true;
this.Label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Label42.Location = new System.Drawing.Point(923, 9);
this.Label42.Location = new System.Drawing.Point(990, 9);
this.Label42.Name = "Label42";
this.Label42.Size = new System.Drawing.Size(263, 18);
this.Label42.TabIndex = 5;
@ -1906,7 +1888,7 @@ private void InitializeComponent()
this.Label41.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.Label41.AutoSize = true;
this.Label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Label41.Location = new System.Drawing.Point(1023, 33);
this.Label41.Location = new System.Drawing.Point(1090, 33);
this.Label41.Name = "Label41";
this.Label41.Size = new System.Drawing.Size(71, 24);
this.Label41.TabIndex = 4;
@ -1921,14 +1903,14 @@ private void InitializeComponent()
this.TextBox8.Multiline = true;
this.TextBox8.Name = "TextBox8";
this.TextBox8.ReadOnly = true;
this.TextBox8.Size = new System.Drawing.Size(172, 5223);
this.TextBox8.Size = new System.Drawing.Size(172, 5574);
this.TextBox8.TabIndex = 3;
this.TextBox8.Text = resources.GetString("TextBox8.Text");
//
// PictureBox11
//
this.PictureBox11.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.PictureBox11.Location = new System.Drawing.Point(893, 60);
this.PictureBox11.Location = new System.Drawing.Point(960, 60);
this.PictureBox11.Name = "PictureBox11";
this.PictureBox11.Size = new System.Drawing.Size(337, 386);
this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
@ -2220,16 +2202,16 @@ private void InitializeComponent()
this.Panel14.Controls.Add(this.addressbar);
this.Panel14.Controls.Add(this.Label1);
this.Panel14.Dock = System.Windows.Forms.DockStyle.Top;
this.Panel14.Location = new System.Drawing.Point(4, 95);
this.Panel14.Location = new System.Drawing.Point(0, 73);
this.Panel14.Name = "Panel14";
this.Panel14.Size = new System.Drawing.Size(951, 38);
this.Panel14.Size = new System.Drawing.Size(959, 38);
this.Panel14.TabIndex = 13;
//
// Button8
//
this.Button8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.Button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.Button8.Location = new System.Drawing.Point(890, 5);
this.Button8.Location = new System.Drawing.Point(898, 5);
this.Button8.Name = "Button8";
this.Button8.Size = new System.Drawing.Size(55, 28);
this.Button8.TabIndex = 2;
@ -2244,7 +2226,7 @@ private void InitializeComponent()
this.addressbar.FormattingEnabled = true;
this.addressbar.Location = new System.Drawing.Point(58, 9);
this.addressbar.Name = "addressbar";
this.addressbar.Size = new System.Drawing.Size(804, 21);
this.addressbar.Size = new System.Drawing.Size(812, 21);
this.addressbar.TabIndex = 1;
this.addressbar.Text = "www.microsoft.com/internetexplorer4/welcome";
//
@ -2272,9 +2254,9 @@ private void InitializeComponent()
this.Panel1.Controls.Add(this.Button2);
this.Panel1.Controls.Add(this.Button1);
this.Panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.Panel1.Location = new System.Drawing.Point(4, 46);
this.Panel1.Location = new System.Drawing.Point(0, 24);
this.Panel1.Name = "Panel1";
this.Panel1.Size = new System.Drawing.Size(951, 49);
this.Panel1.Size = new System.Drawing.Size(959, 49);
this.Panel1.TabIndex = 7;
//
// Button30
@ -2447,9 +2429,9 @@ private void InitializeComponent()
this.ToolStripMenuItem78,
this.ToolStripMenuItem73,
this.ToolStripMenuItem88});
this.MenuStrip3.Location = new System.Drawing.Point(4, 22);
this.MenuStrip3.Location = new System.Drawing.Point(0, 0);
this.MenuStrip3.Name = "MenuStrip3";
this.MenuStrip3.Size = new System.Drawing.Size(951, 24);
this.MenuStrip3.Size = new System.Drawing.Size(959, 24);
this.MenuStrip3.TabIndex = 11;
this.MenuStrip3.Text = "MenuStrip1";
//
@ -3217,62 +3199,6 @@ private void InitializeComponent()
this.ToolStripMenuItem95.Size = new System.Drawing.Size(196, 22);
this.ToolStripMenuItem95.Text = "Send Feedback";
//
// programtopbar
//
this.programtopbar.BackColor = System.Drawing.Color.DarkBlue;
this.programtopbar.Controls.Add(this.maximizebutton);
this.programtopbar.Controls.Add(this.minimizebutton);
this.programtopbar.Controls.Add(this.programname);
this.programtopbar.Controls.Add(this.closebutton);
this.programtopbar.Dock = System.Windows.Forms.DockStyle.Top;
this.programtopbar.Location = new System.Drawing.Point(4, 4);
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(951, 18);
this.programtopbar.TabIndex = 0;
this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag);
//
// maximizebutton
//
this.maximizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.maximizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMax;
this.maximizebutton.Location = new System.Drawing.Point(915, 2);
this.maximizebutton.Name = "maximizebutton";
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
//
// minimizebutton
//
this.minimizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.minimizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMin;
this.minimizebutton.Location = new System.Drawing.Point(899, 2);
this.minimizebutton.Name = "minimizebutton";
this.minimizebutton.Size = new System.Drawing.Size(16, 14);
this.minimizebutton.TabIndex = 5;
this.minimizebutton.TabStop = false;
//
// programname
//
this.programname.AutoSize = true;
this.programname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.programname.ForeColor = System.Drawing.Color.White;
this.programname.Location = new System.Drawing.Point(3, 2);
this.programname.Name = "programname";
this.programname.Size = new System.Drawing.Size(112, 13);
this.programname.TabIndex = 3;
this.programname.Text = "Internet Explorer 4";
//
// closebutton
//
this.closebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.closebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicClose;
this.closebutton.Location = new System.Drawing.Point(932, 2);
this.closebutton.Name = "closebutton";
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
this.closebutton.Click += new System.EventHandler(this.closebutton_Click);
//
// toprightcorner
//
this.toprightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
@ -3309,44 +3235,6 @@ private void InitializeComponent()
this.topleftcorner.Size = new System.Drawing.Size(4, 4);
this.topleftcorner.TabIndex = 1;
//
// left
//
this.left.BackgroundImage = global::TimeHACK.Properties.Resources.LeftSide;
this.left.Dock = System.Windows.Forms.DockStyle.Left;
this.left.Location = new System.Drawing.Point(0, 4);
this.left.Name = "left";
this.left.Size = new System.Drawing.Size(4, 586);
this.left.TabIndex = 3;
//
// bottom
//
this.bottom.BackgroundImage = global::TimeHACK.Properties.Resources.BottomSide;
this.bottom.Cursor = System.Windows.Forms.Cursors.SizeNS;
this.bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bottom.Location = new System.Drawing.Point(0, 590);
this.bottom.Name = "bottom";
this.bottom.Size = new System.Drawing.Size(955, 4);
this.bottom.TabIndex = 5;
//
// right
//
this.right.BackgroundImage = global::TimeHACK.Properties.Resources.RightSide;
this.right.Cursor = System.Windows.Forms.Cursors.SizeWE;
this.right.Dock = System.Windows.Forms.DockStyle.Right;
this.right.Location = new System.Drawing.Point(955, 4);
this.right.Name = "right";
this.right.Size = new System.Drawing.Size(4, 590);
this.right.TabIndex = 7;
//
// top
//
this.top.BackgroundImage = global::TimeHACK.Properties.Resources.TopSide;
this.top.Dock = System.Windows.Forms.DockStyle.Top;
this.top.Location = new System.Drawing.Point(0, 0);
this.top.Name = "top";
this.top.Size = new System.Drawing.Size(959, 4);
this.top.TabIndex = 8;
//
// WinClassicIE4
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@ -3433,11 +3321,6 @@ private void InitializeComponent()
((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
this.MenuStrip3.ResumeLayout(false);
this.MenuStrip3.PerformLayout();
this.programtopbar.ResumeLayout(false);
this.programtopbar.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).EndInit();
this.ResumeLayout(false);
}
@ -3724,19 +3607,10 @@ private void InitializeComponent()
internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem93;
internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem94;
internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem95;
internal System.Windows.Forms.Panel programtopbar;
internal System.Windows.Forms.PictureBox maximizebutton;
internal System.Windows.Forms.PictureBox minimizebutton;
internal System.Windows.Forms.Label programname;
internal System.Windows.Forms.PictureBox closebutton;
internal System.Windows.Forms.Panel toprightcorner;
internal System.Windows.Forms.Panel bottomrightcorner;
internal System.Windows.Forms.Panel bottomleftcorner;
internal System.Windows.Forms.Panel topleftcorner;
internal System.Windows.Forms.Panel left;
internal System.Windows.Forms.Panel bottom;
internal System.Windows.Forms.Panel right;
internal System.Windows.Forms.Panel top;
private System.Windows.Forms.WebBrowser webBrowser1;
internal System.Windows.Forms.LinkLabel linkLabel19;
}

View file

@ -10,25 +10,6 @@ public WinClassicIE4()
{
InitializeComponent();
}
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd,
int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
private void programtopbar_drag(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
private void WinClassicIE4_Load(object sender, EventArgs e)
{
TopMost = true;

View file

@ -1,307 +0,0 @@
namespace TimeHACK
{
partial class WinClassicNotepad
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicNotepad));
this.program = new System.Windows.Forms.Panel();
this.notepadtextbox = new System.Windows.Forms.TextBox();
this.MenuStrip1 = new System.Windows.Forms.MenuStrip();
this.FileToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.EditToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.SearchToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.FormatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.programtopbar = new System.Windows.Forms.Panel();
this.maximizebutton = new System.Windows.Forms.PictureBox();
this.minimizebutton = new System.Windows.Forms.PictureBox();
this.programname = new System.Windows.Forms.Label();
this.closebutton = new System.Windows.Forms.PictureBox();
this.toprightcorner = new System.Windows.Forms.Panel();
this.bottomrightcorner = new System.Windows.Forms.Panel();
this.bottomleftcorner = new System.Windows.Forms.Panel();
this.topleftcorner = new System.Windows.Forms.Panel();
this.left = new System.Windows.Forms.Panel();
this.bottom = new System.Windows.Forms.Panel();
this.right = new System.Windows.Forms.Panel();
this.top = new System.Windows.Forms.Panel();
this.program.SuspendLayout();
this.MenuStrip1.SuspendLayout();
this.programtopbar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).BeginInit();
this.SuspendLayout();
//
// program
//
this.program.BackColor = System.Drawing.Color.Silver;
this.program.Controls.Add(this.notepadtextbox);
this.program.Controls.Add(this.MenuStrip1);
this.program.Controls.Add(this.programtopbar);
this.program.Controls.Add(this.toprightcorner);
this.program.Controls.Add(this.bottomrightcorner);
this.program.Controls.Add(this.bottomleftcorner);
this.program.Controls.Add(this.topleftcorner);
this.program.Controls.Add(this.left);
this.program.Controls.Add(this.bottom);
this.program.Controls.Add(this.right);
this.program.Controls.Add(this.top);
this.program.Dock = System.Windows.Forms.DockStyle.Fill;
this.program.Location = new System.Drawing.Point(0, 0);
this.program.Name = "program";
this.program.Size = new System.Drawing.Size(800, 520);
this.program.TabIndex = 5;
//
// notepadtextbox
//
this.notepadtextbox.Cursor = System.Windows.Forms.Cursors.Arrow;
this.notepadtextbox.Dock = System.Windows.Forms.DockStyle.Fill;
this.notepadtextbox.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.notepadtextbox.Location = new System.Drawing.Point(4, 46);
this.notepadtextbox.Multiline = true;
this.notepadtextbox.Name = "notepadtextbox";
this.notepadtextbox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.notepadtextbox.Size = new System.Drawing.Size(792, 470);
this.notepadtextbox.TabIndex = 1;
//
// MenuStrip1
//
this.MenuStrip1.BackColor = System.Drawing.Color.Silver;
this.MenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FileToolStripMenuItem1,
this.EditToolStripMenuItem1,
this.SearchToolStripMenuItem1,
this.FormatToolStripMenuItem});
this.MenuStrip1.Location = new System.Drawing.Point(4, 22);
this.MenuStrip1.Name = "MenuStrip1";
this.MenuStrip1.Size = new System.Drawing.Size(792, 24);
this.MenuStrip1.TabIndex = 2;
this.MenuStrip1.Text = "MenuStrip1";
//
// FileToolStripMenuItem1
//
this.FileToolStripMenuItem1.Name = "FileToolStripMenuItem1";
this.FileToolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
this.FileToolStripMenuItem1.Text = "File";
//
// EditToolStripMenuItem1
//
this.EditToolStripMenuItem1.Name = "EditToolStripMenuItem1";
this.EditToolStripMenuItem1.Size = new System.Drawing.Size(39, 20);
this.EditToolStripMenuItem1.Text = "Edit";
//
// SearchToolStripMenuItem1
//
this.SearchToolStripMenuItem1.Name = "SearchToolStripMenuItem1";
this.SearchToolStripMenuItem1.Size = new System.Drawing.Size(54, 20);
this.SearchToolStripMenuItem1.Text = "Search";
//
// FormatToolStripMenuItem
//
this.FormatToolStripMenuItem.Name = "FormatToolStripMenuItem";
this.FormatToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.FormatToolStripMenuItem.Text = "Help";
//
// programtopbar
//
this.programtopbar.BackColor = System.Drawing.Color.DarkBlue;
this.programtopbar.Controls.Add(this.maximizebutton);
this.programtopbar.Controls.Add(this.minimizebutton);
this.programtopbar.Controls.Add(this.programname);
this.programtopbar.Controls.Add(this.closebutton);
this.programtopbar.Dock = System.Windows.Forms.DockStyle.Top;
this.programtopbar.Location = new System.Drawing.Point(4, 4);
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(792, 18);
this.programtopbar.TabIndex = 0;
this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag);
//
// maximizebutton
//
this.maximizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.maximizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMax;
this.maximizebutton.Location = new System.Drawing.Point(757, 2);
this.maximizebutton.Name = "maximizebutton";
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
//
// minimizebutton
//
this.minimizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.minimizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMin;
this.minimizebutton.Location = new System.Drawing.Point(741, 2);
this.minimizebutton.Name = "minimizebutton";
this.minimizebutton.Size = new System.Drawing.Size(16, 14);
this.minimizebutton.TabIndex = 5;
this.minimizebutton.TabStop = false;
//
// programname
//
this.programname.AutoSize = true;
this.programname.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.programname.ForeColor = System.Drawing.Color.White;
this.programname.Location = new System.Drawing.Point(3, 1);
this.programname.Name = "programname";
this.programname.Size = new System.Drawing.Size(55, 13);
this.programname.TabIndex = 3;
this.programname.Text = "Notepad";
//
// closebutton
//
this.closebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.closebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicClose;
this.closebutton.Location = new System.Drawing.Point(775, 2);
this.closebutton.Name = "closebutton";
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
this.closebutton.Click += new System.EventHandler(this.closebutton_Click);
//
// toprightcorner
//
this.toprightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.toprightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toprightcorner.BackgroundImage")));
this.toprightcorner.Location = new System.Drawing.Point(796, 0);
this.toprightcorner.Name = "toprightcorner";
this.toprightcorner.Size = new System.Drawing.Size(4, 4);
this.toprightcorner.TabIndex = 6;
//
// bottomrightcorner
//
this.bottomrightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bottomrightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomrightcorner.BackgroundImage")));
this.bottomrightcorner.Cursor = System.Windows.Forms.Cursors.SizeNWSE;
this.bottomrightcorner.Location = new System.Drawing.Point(796, 516);
this.bottomrightcorner.Name = "bottomrightcorner";
this.bottomrightcorner.Size = new System.Drawing.Size(4, 4);
this.bottomrightcorner.TabIndex = 4;
//
// bottomleftcorner
//
this.bottomleftcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.bottomleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomleftcorner.BackgroundImage")));
this.bottomleftcorner.Location = new System.Drawing.Point(0, 516);
this.bottomleftcorner.Name = "bottomleftcorner";
this.bottomleftcorner.Size = new System.Drawing.Size(4, 4);
this.bottomleftcorner.TabIndex = 2;
//
// topleftcorner
//
this.topleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("topleftcorner.BackgroundImage")));
this.topleftcorner.Location = new System.Drawing.Point(0, 0);
this.topleftcorner.Name = "topleftcorner";
this.topleftcorner.Size = new System.Drawing.Size(4, 4);
this.topleftcorner.TabIndex = 1;
//
// left
//
this.left.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("left.BackgroundImage")));
this.left.Dock = System.Windows.Forms.DockStyle.Left;
this.left.Location = new System.Drawing.Point(0, 4);
this.left.Name = "left";
this.left.Size = new System.Drawing.Size(4, 512);
this.left.TabIndex = 3;
//
// bottom
//
this.bottom.BackgroundImage = global::TimeHACK.Properties.Resources.BottomSide;
this.bottom.Cursor = System.Windows.Forms.Cursors.SizeNS;
this.bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bottom.Location = new System.Drawing.Point(0, 516);
this.bottom.Name = "bottom";
this.bottom.Size = new System.Drawing.Size(796, 4);
this.bottom.TabIndex = 5;
//
// right
//
this.right.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("right.BackgroundImage")));
this.right.Cursor = System.Windows.Forms.Cursors.SizeWE;
this.right.Dock = System.Windows.Forms.DockStyle.Right;
this.right.Location = new System.Drawing.Point(796, 4);
this.right.Name = "right";
this.right.Size = new System.Drawing.Size(4, 516);
this.right.TabIndex = 7;
//
// top
//
this.top.BackgroundImage = global::TimeHACK.Properties.Resources.TopSide;
this.top.Dock = System.Windows.Forms.DockStyle.Top;
this.top.Location = new System.Drawing.Point(0, 0);
this.top.Name = "top";
this.top.Size = new System.Drawing.Size(800, 4);
this.top.TabIndex = 8;
//
// WinClassicNotepad
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 520);
this.Controls.Add(this.program);
this.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "WinClassicNotepad";
this.Text = "WinClassicNotepad";
this.Load += new System.EventHandler(this.WinClassicNotepad_Load);
this.program.ResumeLayout(false);
this.program.PerformLayout();
this.MenuStrip1.ResumeLayout(false);
this.MenuStrip1.PerformLayout();
this.programtopbar.ResumeLayout(false);
this.programtopbar.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).EndInit();
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.Panel program;
internal System.Windows.Forms.TextBox notepadtextbox;
internal System.Windows.Forms.MenuStrip MenuStrip1;
internal System.Windows.Forms.ToolStripMenuItem FileToolStripMenuItem1;
internal System.Windows.Forms.ToolStripMenuItem EditToolStripMenuItem1;
internal System.Windows.Forms.ToolStripMenuItem SearchToolStripMenuItem1;
internal System.Windows.Forms.ToolStripMenuItem FormatToolStripMenuItem;
internal System.Windows.Forms.Panel programtopbar;
internal System.Windows.Forms.PictureBox maximizebutton;
internal System.Windows.Forms.PictureBox minimizebutton;
internal System.Windows.Forms.Label programname;
internal System.Windows.Forms.PictureBox closebutton;
internal System.Windows.Forms.Panel toprightcorner;
internal System.Windows.Forms.Panel bottomrightcorner;
internal System.Windows.Forms.Panel bottomleftcorner;
internal System.Windows.Forms.Panel topleftcorner;
internal System.Windows.Forms.Panel left;
internal System.Windows.Forms.Panel bottom;
internal System.Windows.Forms.Panel right;
internal System.Windows.Forms.Panel top;
}
}

View file

@ -1,44 +0,0 @@
using System;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace TimeHACK
{
public partial class WinClassicNotepad : Form
{
public WinClassicNotepad()
{
InitializeComponent();
}
private void WinClassicNotepad_Load(object sender, EventArgs e)
{
TopMost = true;
}
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
[DllImportAttribute("user32.dll")]
public static extern int SendMessage(IntPtr hWnd,
int Msg, int wParam, int lParam);
[DllImportAttribute("user32.dll")]
public static extern bool ReleaseCapture();
private void closebutton_Click(object sender, EventArgs e)
{
Close();
}
private void programtopbar_drag(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
ReleaseCapture();
SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
}
}
}
}

View file

@ -1,166 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="MenuStrip1.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="toprightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/DQEMQDBfzBo6+oDcSDCGBwGBgAJoRsoKGRD1QAAAABJRU5ErkJggg==
</value>
</data>
<data name="bottomrightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/DQQtXX1MQABCgdIQRCIgwAMDABm/hFrLt/K7gAAAABJRU5ErkJggg==
</value>
</data>
<data name="bottomleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8
/PT///+BJBBhcNq6+iCIAQEYGACcHRsocGQwIQAAAABJRU5ErkJggg==
</value>
</data>
<data name="topleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAaSURBVBhXYzh8
/DQcgTj/YQDKQZEBcY6fBgAaSCiZEc9BxAAAAABJRU5ErkJggg==
</value>
</data>
<data name="left.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8
/PT///+B5OHjpwFB1wn9nx9JYgAAAABJRU5ErkJggg==
</value>
</data>
<data name="right.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8
/DQQtXX1MTAwAAA0WgZJrWm8iAAAAABJRU5ErkJggg==
</value>
</data>
</root>

View file

@ -1,254 +0,0 @@
namespace TimeHACK.WinClassicForms
{
partial class WinClassicTerminal
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicTerminal));
this.top = new System.Windows.Forms.Panel();
this.right = new System.Windows.Forms.Panel();
this.bottom = new System.Windows.Forms.Panel();
this.left = new System.Windows.Forms.Panel();
this.topleftcorner = new System.Windows.Forms.Panel();
this.bottomleftcorner = new System.Windows.Forms.Panel();
this.bottomrightcorner = new System.Windows.Forms.Panel();
this.toprightcorner = new System.Windows.Forms.Panel();
this.programtopbar = new System.Windows.Forms.Panel();
this.maximizebutton = new System.Windows.Forms.PictureBox();
this.minimizebutton = new System.Windows.Forms.PictureBox();
this.programname = new System.Windows.Forms.Label();
this.closebutton = new System.Windows.Forms.PictureBox();
this.program = new System.Windows.Forms.Panel();
this.consoleText = new System.Windows.Forms.TextBox();
this.programtopbar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).BeginInit();
this.program.SuspendLayout();
this.SuspendLayout();
//
// top
//
this.top.BackgroundImage = global::TimeHACK.Properties.Resources.TopSide;
this.top.Dock = System.Windows.Forms.DockStyle.Top;
this.top.Location = new System.Drawing.Point(0, 0);
this.top.Name = "top";
this.top.Size = new System.Drawing.Size(492, 4);
this.top.TabIndex = 8;
//
// right
//
this.right.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("right.BackgroundImage")));
this.right.Cursor = System.Windows.Forms.Cursors.SizeWE;
this.right.Dock = System.Windows.Forms.DockStyle.Right;
this.right.Location = new System.Drawing.Point(488, 4);
this.right.Name = "right";
this.right.Size = new System.Drawing.Size(4, 255);
this.right.TabIndex = 7;
//
// bottom
//
this.bottom.BackgroundImage = global::TimeHACK.Properties.Resources.BottomSide;
this.bottom.Cursor = System.Windows.Forms.Cursors.SizeNS;
this.bottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bottom.Location = new System.Drawing.Point(0, 255);
this.bottom.Name = "bottom";
this.bottom.Size = new System.Drawing.Size(488, 4);
this.bottom.TabIndex = 5;
//
// left
//
this.left.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("left.BackgroundImage")));
this.left.Dock = System.Windows.Forms.DockStyle.Left;
this.left.Location = new System.Drawing.Point(0, 4);
this.left.Name = "left";
this.left.Size = new System.Drawing.Size(4, 251);
this.left.TabIndex = 3;
//
// topleftcorner
//
this.topleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("topleftcorner.BackgroundImage")));
this.topleftcorner.Location = new System.Drawing.Point(0, 0);
this.topleftcorner.Name = "topleftcorner";
this.topleftcorner.Size = new System.Drawing.Size(4, 4);
this.topleftcorner.TabIndex = 1;
//
// bottomleftcorner
//
this.bottomleftcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.bottomleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomleftcorner.BackgroundImage")));
this.bottomleftcorner.Location = new System.Drawing.Point(0, 255);
this.bottomleftcorner.Name = "bottomleftcorner";
this.bottomleftcorner.Size = new System.Drawing.Size(4, 4);
this.bottomleftcorner.TabIndex = 2;
//
// bottomrightcorner
//
this.bottomrightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.bottomrightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomrightcorner.BackgroundImage")));
this.bottomrightcorner.Cursor = System.Windows.Forms.Cursors.SizeNWSE;
this.bottomrightcorner.Location = new System.Drawing.Point(488, 255);
this.bottomrightcorner.Name = "bottomrightcorner";
this.bottomrightcorner.Size = new System.Drawing.Size(4, 4);
this.bottomrightcorner.TabIndex = 4;
//
// toprightcorner
//
this.toprightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.toprightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toprightcorner.BackgroundImage")));
this.toprightcorner.Location = new System.Drawing.Point(488, 0);
this.toprightcorner.Name = "toprightcorner";
this.toprightcorner.Size = new System.Drawing.Size(4, 4);
this.toprightcorner.TabIndex = 6;
//
// programtopbar
//
this.programtopbar.BackColor = System.Drawing.Color.DarkBlue;
this.programtopbar.Controls.Add(this.maximizebutton);
this.programtopbar.Controls.Add(this.minimizebutton);
this.programtopbar.Controls.Add(this.programname);
this.programtopbar.Controls.Add(this.closebutton);
this.programtopbar.Dock = System.Windows.Forms.DockStyle.Top;
this.programtopbar.Location = new System.Drawing.Point(4, 4);
this.programtopbar.Name = "programtopbar";
this.programtopbar.Size = new System.Drawing.Size(484, 18);
this.programtopbar.TabIndex = 0;
//
// maximizebutton
//
this.maximizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.maximizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMax;
this.maximizebutton.Location = new System.Drawing.Point(449, 2);
this.maximizebutton.Name = "maximizebutton";
this.maximizebutton.Size = new System.Drawing.Size(16, 14);
this.maximizebutton.TabIndex = 6;
this.maximizebutton.TabStop = false;
//
// minimizebutton
//
this.minimizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.minimizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMin;
this.minimizebutton.Location = new System.Drawing.Point(433, 2);
this.minimizebutton.Name = "minimizebutton";
this.minimizebutton.Size = new System.Drawing.Size(16, 14);
this.minimizebutton.TabIndex = 5;
this.minimizebutton.TabStop = false;
//
// programname
//
this.programname.AutoSize = true;
this.programname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.programname.ForeColor = System.Drawing.Color.White;
this.programname.Location = new System.Drawing.Point(3, 2);
this.programname.Name = "programname";
this.programname.Size = new System.Drawing.Size(98, 13);
this.programname.TabIndex = 3;
this.programname.Text = "MS-DOS Prompt";
//
// closebutton
//
this.closebutton.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.closebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicClose;
this.closebutton.Location = new System.Drawing.Point(467, 2);
this.closebutton.Name = "closebutton";
this.closebutton.Size = new System.Drawing.Size(16, 14);
this.closebutton.TabIndex = 4;
this.closebutton.TabStop = false;
//
// program
//
this.program.BackColor = System.Drawing.Color.Silver;
this.program.Controls.Add(this.consoleText);
this.program.Controls.Add(this.programtopbar);
this.program.Controls.Add(this.toprightcorner);
this.program.Controls.Add(this.bottomrightcorner);
this.program.Controls.Add(this.bottomleftcorner);
this.program.Controls.Add(this.topleftcorner);
this.program.Controls.Add(this.left);
this.program.Controls.Add(this.bottom);
this.program.Controls.Add(this.right);
this.program.Controls.Add(this.top);
this.program.Dock = System.Windows.Forms.DockStyle.Fill;
this.program.Location = new System.Drawing.Point(0, 0);
this.program.Name = "program";
this.program.Size = new System.Drawing.Size(492, 259);
this.program.TabIndex = 8;
//
// consoleText
//
this.consoleText.BackColor = System.Drawing.Color.Black;
this.consoleText.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.consoleText.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.consoleText.ForeColor = System.Drawing.SystemColors.ScrollBar;
this.consoleText.Location = new System.Drawing.Point(4, 26);
this.consoleText.Multiline = true;
this.consoleText.Name = "consoleText";
this.consoleText.ReadOnly = true;
this.consoleText.Size = new System.Drawing.Size(484, 229);
this.consoleText.TabIndex = 9;
this.consoleText.Text = "Microsoft(R) Windows 95\r\n (C)Copyright Microsoft Corp 1981-1998.\r\n\r\nC:\\W" +
"INDOWS>";
//
// WinClassicTerminal
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(492, 259);
this.Controls.Add(this.program);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "WinClassicTerminal";
this.Text = "WinClassicTerminal";
this.programtopbar.ResumeLayout(false);
this.programtopbar.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.closebutton)).EndInit();
this.program.ResumeLayout(false);
this.program.PerformLayout();
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.Panel top;
internal System.Windows.Forms.Panel right;
internal System.Windows.Forms.Panel bottom;
internal System.Windows.Forms.Panel left;
internal System.Windows.Forms.Panel topleftcorner;
internal System.Windows.Forms.Panel bottomleftcorner;
internal System.Windows.Forms.Panel bottomrightcorner;
internal System.Windows.Forms.Panel toprightcorner;
internal System.Windows.Forms.Panel programtopbar;
internal System.Windows.Forms.PictureBox maximizebutton;
internal System.Windows.Forms.PictureBox minimizebutton;
internal System.Windows.Forms.Label programname;
internal System.Windows.Forms.PictureBox closebutton;
internal System.Windows.Forms.Panel program;
private System.Windows.Forms.TextBox consoleText;
}
}

View file

@ -1,12 +0,0 @@
using System.Windows.Forms;
namespace TimeHACK.WinClassicForms
{
public partial class WinClassicTerminal : Form
{
public WinClassicTerminal()
{
InitializeComponent();
}
}
}

View file

@ -75,7 +75,7 @@ private void InitializeComponent()
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.WindowsExplorerToolStripMenuItem = 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();
@ -86,6 +86,7 @@ private void InitializeComponent()
this.WebChatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.TimeDistorterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.windowManagerTestToolStripMenuItem = 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();
@ -169,13 +170,12 @@ private void InitializeComponent()
this.taskbartime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.taskbartime.AutoSize = true;
this.taskbartime.BackColor = System.Drawing.Color.Transparent;
this.taskbartime.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.taskbartime.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.taskbartime.Location = new System.Drawing.Point(1217, 6);
this.taskbartime.Name = "taskbartime";
this.taskbartime.Size = new System.Drawing.Size(31, 15);
this.taskbartime.TabIndex = 2;
this.taskbartime.Text = "time";
this.taskbartime.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.taskbartime.Click += new System.EventHandler(this.taskbartime_Click);
//
// clockPanel
@ -205,7 +205,7 @@ private void InitializeComponent()
this.startmenu.Controls.Add(this.ossidestartmenu);
this.startmenu.Location = new System.Drawing.Point(0, 397);
this.startmenu.Name = "startmenu";
this.startmenu.Size = new System.Drawing.Size(174, 300);
this.startmenu.Size = new System.Drawing.Size(174, 295);
this.startmenu.TabIndex = 3;
this.startmenu.Paint += new System.Windows.Forms.PaintEventHandler(this.startmenu_Paint);
//
@ -239,7 +239,7 @@ private void InitializeComponent()
this.AccessoriesToolStripMenuItem,
this.StartUpToolStripMenuItem,
this.MSDOSPromptToolStripMenuItem,
this.InternetExplorerToolStripMenuItem,
this.WindowsExplorerToolStripMenuItem,
this.MSDOSPromptToolStripMenuItem1,
this.OutlookExpressToolStripMenuItem,
this.WindowsExplorerToolStripMenuItem1,
@ -249,7 +249,7 @@ private void InitializeComponent()
this.SkindowsToolStripMenuItem,
this.WebChatToolStripMenuItem,
this.TimeDistorterToolStripMenuItem});
this.ProgramsToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ProgramsToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ProgramsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicPrograms;
this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -525,16 +525,15 @@ private void InitializeComponent()
this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
this.EmptyToolStripMenuItem.Text = "(Empty)";
//
// InternetExplorerToolStripMenuItem
// WindowsExplorerToolStripMenuItem
//
this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.InternetExplorerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.InternetExplorerToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver;
this.InternetExplorerToolStripMenuItem.Name = "WindowsExplorerToolStripMenuItem";
this.InternetExplorerToolStripMenuItem.Size = new System.Drawing.Size(184, 26);
this.InternetExplorerToolStripMenuItem.Text = "Internet Explorer";
this.InternetExplorerToolStripMenuItem.Click += new System.EventHandler(this.InternetExplorerToolStripMenuItem_Click);
this.WindowsExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.WindowsExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.WindowsExplorerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.WindowsExplorerToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver;
this.WindowsExplorerToolStripMenuItem.Name = "WindowsExplorerToolStripMenuItem";
this.WindowsExplorerToolStripMenuItem.Size = new System.Drawing.Size(184, 26);
this.WindowsExplorerToolStripMenuItem.Text = "Internet Explorer";
//
// MSDOSPromptToolStripMenuItem1
//
@ -617,7 +616,9 @@ private void InitializeComponent()
// DocumentsToolStripMenuItem
//
this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.DocumentsToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.windowManagerTestToolStripMenuItem});
this.DocumentsToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.DocumentsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("DocumentsToolStripMenuItem.Image")));
this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -627,6 +628,13 @@ private void InitializeComponent()
this.DocumentsToolStripMenuItem.Size = new System.Drawing.Size(137, 36);
this.DocumentsToolStripMenuItem.Text = "Documents";
//
// windowManagerTestToolStripMenuItem
//
this.windowManagerTestToolStripMenuItem.Name = "windowManagerTestToolStripMenuItem";
this.windowManagerTestToolStripMenuItem.Size = new System.Drawing.Size(192, 22);
this.windowManagerTestToolStripMenuItem.Text = "WindowManagerTest";
this.windowManagerTestToolStripMenuItem.Click += new System.EventHandler(this.windowManagerTestToolStripMenuItem_Click);
//
// SettingsToolStripMenuItem
//
this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
@ -634,7 +642,7 @@ private void InitializeComponent()
this.ControlPanelToolStripMenuItem,
this.PrintersToolStripMenuItem,
this.TaskbarToolStripMenuItem});
this.SettingsToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.SettingsToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.SettingsToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SettingsToolStripMenuItem.Image")));
this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -676,7 +684,7 @@ private void InitializeComponent()
this.ComputerToolStripMenuItem,
this.OnTheInternetToolStripMenuItem,
this.PeopleToolStripMenuItem});
this.FindToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FindToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FindToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicFind;
this.FindToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -722,7 +730,7 @@ private void InitializeComponent()
// HelpToolStripMenuItem
//
this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.HelpToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.HelpToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.HelpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicHelp;
this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -736,7 +744,7 @@ private void InitializeComponent()
// RunToolStripMenuItem
//
this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.RunToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RunToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RunToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicRun;
this.RunToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -750,7 +758,7 @@ private void InitializeComponent()
// SuspendToolStripMenuItem
//
this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.SuspendToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.SuspendToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.SuspendToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SuspendToolStripMenuItem.Image")));
this.SuspendToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -763,7 +771,7 @@ private void InitializeComponent()
// ShutdownToolStripMenuItem
//
this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.ShutdownToolStripMenuItem.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ShutdownToolStripMenuItem.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ShutdownToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicShutdown;
this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -819,7 +827,7 @@ private void InitializeComponent()
this.desktopicons.BackColor = System.Drawing.Color.Teal;
this.desktopicons.BackgroundImageTiled = true;
this.desktopicons.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.desktopicons.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.desktopicons.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.desktopicons.ForeColor = System.Drawing.Color.White;
this.desktopicons.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
listViewItem1,
@ -836,9 +844,7 @@ private void InitializeComponent()
this.desktopicons.Size = new System.Drawing.Size(1280, 720);
this.desktopicons.TabIndex = 6;
this.desktopicons.UseCompatibleStateImageBehavior = false;
this.desktopicons.SelectedIndexChanged += new System.EventHandler(this.desktopicons_SelectedIndexChanged);
this.desktopicons.MouseDown += new System.Windows.Forms.MouseEventHandler(this.desktop_mousedown);
this.desktopicons.DoubleClick += new System.EventHandler(this.desktopicons_Click);
//
// rightclickbackproperties
//
@ -850,7 +856,6 @@ private void InitializeComponent()
this.NewToolStripMenuItem1,
this.PropertiesToolStripMenuItem1});
this.rightclickbackproperties.Name = "ContextMenuStrip1";
this.rightclickbackproperties.Font = new System.Drawing.Font(TitleScreen.pfc.Families[0], 16F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rightclickbackproperties.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
this.rightclickbackproperties.Size = new System.Drawing.Size(151, 136);
//
@ -1064,7 +1069,7 @@ private void InitializeComponent()
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 WindowsExplorerToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem1;
internal System.Windows.Forms.ToolStripMenuItem OutlookExpressToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem WindowsExplorerToolStripMenuItem1;
@ -1113,6 +1118,6 @@ private void InitializeComponent()
internal System.Windows.Forms.ToolStripMenuItem BitmapImageToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem MicrosoftDataLinkToolStripMenuItem;
internal System.Windows.Forms.ToolStripMenuItem PropertiesToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem windowManagerTestToolStripMenuItem;
}
}
}

View file

@ -3,13 +3,13 @@
using System.IO;
using System.Media;
using System.Windows.Forms;
using TimeHACK.Engine;
using TimeHACK.WinClassicForms;
namespace TimeHACK
{
public partial class Windows95 : Form
{
private SoundPlayer start;
private SoundPlayer stop;
// Init the form
public Windows95()
{
@ -33,13 +33,11 @@ private void Desktop_Load(object sender, EventArgs e)
// Play Windows 95 Start Sound
Stream audio = Properties.Resources.Win95Start;
start = new SoundPlayer(audio);
start.Play();
SoundPlayer Win95Start = new SoundPlayer(audio);
Win95Start.Play();
// Set the StartMenu seperator
startmenuitems.Items.Insert(6, new ToolStripSeparator());
this.SendToBack();
}
#region StartMenu
@ -59,17 +57,11 @@ private void startmenu_Paint(object sender, PaintEventArgs e)
private void startbutton_Click(object sender, EventArgs e)
{
startmenu.Show();
startmenu.BringToFront();
}
// Shutdown button
private void ShutdownToolStripMenuItem_Click(object sender, EventArgs e)
{
start.Stop();
Stream audio = Properties.Resources.tada;
stop = new SoundPlayer(audio);
stop.Play();
System.Threading.Thread.Sleep(1500);
Application.Exit();
}
@ -90,7 +82,7 @@ private void taskbartime_Click(object sender, EventArgs e)
// Set the Clock
private void clockTimer_Tick(object sender, EventArgs e)
{
taskbartime.Text = DateTime.Now.ToString("h:mm tt");
taskbartime.Text = DateTime.Now.ToString("hh:mm tt");
}
// On Desktop MouseDown
@ -101,7 +93,6 @@ private void desktop_mousedown(object sender, MouseEventArgs e)
rightclickbackproperties.Show();
rightclickbackproperties.BringToFront();
rightclickbackproperties.Location = MousePosition;
startmenu.Hide();
}
// If
@ -119,44 +110,13 @@ private void desktop_mousedown(object sender, MouseEventArgs e)
private void NotePadToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicNotepad notepad = new WinClassicNotepad();
notepad.Show();
notepad.BringToFront();
startmenu.Hide();
}
private void desktopicons_SelectedIndexChanged(object sender, EventArgs e)
private void windowManagerTestToolStripMenuItem_Click(object sender, EventArgs e)
{
}
private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicIE4 ie = new WinClassicIE4();
ie.Show();
ie.BringToFront();
startmenu.Hide();
}
private void desktopicons_Click(object sender, EventArgs e)
{
Point objDrawingPoint = desktopicons.PointToClient(Cursor.Position);
ListViewItem objListViewItem;
if (objDrawingPoint != null)
{
objListViewItem = desktopicons.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y);
if (objListViewItem != null)
{
if (objListViewItem.Text == "Internet Explorer")
{
WinClassicIE4 ie = new WinClassicIE4();
ie.Show();
ie.BringToFront();
startmenu.Hide();
}
}
}
WindowManager wm = new WindowManager();
TestApp test = new TestApp();
wm.startWinClassic(test, "TestApp", null, true, true);
}
}
}

View file

@ -138,18 +138,6 @@
<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>
<data name="AccessoriesToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACcSURBVDhP1ZBBDsAgCAR9uj+3Li4VLRrszUk20CBT23QX
Oecyh6NzdLmUNNRf0pXMSr1g5oLhKRT60i70b+jVkBC9Ho4GK9gbwKDRhjwYZS1Ebz6ngrqLoLWzvuEs
mCNo7Xg3jCDL0Rt26gvwHmLavXAOEFHNIET4yPWvkGAgUSGwssz/hgrQV5bCFyvcweMxIdsIobM4dJJr
SOkBE6rCoA7vOu8AAAAASUVORK5CYII=
</value>
</data>
<data name="CommunicationsToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@ -175,6 +163,15 @@
lcxKvWDmguEpFPrSLvRv6NWQEL0ejgYr2BvAoNGGPBhlLURvPqeCuougtbO+4SyYI2jteDeMIMvRG3bq
C/AeYtq9cA4QUc0gRPjI9a+QYCBRIbCyzP+GCtBXlsIXK9zB4zEh2wihszh0kmtI6QETqsKgDu867wAA
AABJRU5ErkJggg==
</value>
</data>
<data name="AccessoriesToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACcSURBVDhP1ZBBDsAgCAR9uj+3Li4VLRrszUk20CBT23QX
Oecyh6NzdLmUNNRf0pXMSr1g5oLhKRT60i70b+jVkBC9Ho4GK9gbwKDRhjwYZS1Ebz6ngrqLoLWzvuEs
mCNo7Xg3jCDL0Rt26gvwHmLavXAOEFHNIET4yPWvkGAgUSGwssz/hgrQV5bCFyvcweMxIdsIobM4dJJr
SOkBE6rCoA7vOu8AAAAASUVORK5CYII=
</value>
</data>
<data name="StartUpToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@ -239,7 +236,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAE
VwAAAk1TRnQBSQFMAgEBCAEAAZABAAGQAQABIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
VwAAAk1TRnQBSQFMAgEBCAEAAaABAAGgAQABIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
AwABYAMAAQEBAAEgBgABwP8A/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/AP8AVQAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/

View file

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>SAT/lMt9FOeMfDSZij7uKzz9xPSFxgACUU3tpyXAHK8=</dsig:DigestValue>
<dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -44,26 +44,26 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4285952">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128">
<assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>bLloCsH1ra1vZvFEOQhgp2mKFfdr2mUE2ayMaa6hP88=</dsig:DigestValue>
<dsig:DigestValue>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="18944">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="21504">
<assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>cohsoHlQ2+7HAhb3De+aSHXPPEXbVjU/Xw7PAS7IfL8=</dsig:DigestValue>
<dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -1,9 +1,7 @@
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicIE4.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicTerminal.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Windows95.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicNotepad.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicTemplate.resources
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe
@ -36,3 +34,4 @@ C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeH
C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.application
C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.exe
C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.pdb
D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources

View file

@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>SAT/lMt9FOeMfDSZij7uKzz9xPSFxgACUU3tpyXAHK8=</dsig:DigestValue>
<dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>

View file

@ -44,26 +44,26 @@
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4285952">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128">
<assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>bLloCsH1ra1vZvFEOQhgp2mKFfdr2mUE2ayMaa6hP88=</dsig:DigestValue>
<dsig:DigestValue>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="18944">
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="21504">
<assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>cohsoHlQ2+7HAhb3De+aSHXPPEXbVjU/Xw7PAS7IfL8=</dsig:DigestValue>
<dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>