mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 17:12:56 -05:00
Added an Address Book! PLZ ACCEPT
This commit is contained in:
parent
5a311ff05f
commit
b3d60f914a
41 changed files with 486 additions and 14 deletions
Binary file not shown.
16
TimeHACK.Engine/GameSave/SaveData.cs
Normal file
16
TimeHACK.Engine/GameSave/SaveData.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace TimeHACK.Engine.GameSave
|
||||
{
|
||||
public class SaveData
|
||||
{
|
||||
static int OS
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
}
|
||||
}
|
18
TimeHACK.Engine/GameSave/SaveSystem.cs
Normal file
18
TimeHACK.Engine/GameSave/SaveSystem.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace TimeHACK.Engine
|
||||
{
|
||||
public class SaveSystem
|
||||
{
|
||||
public void NewGame()
|
||||
{
|
||||
//int kool = 430634;
|
||||
//JsonConvert.SerializeObject(kool);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -47,6 +47,8 @@
|
|||
<ItemGroup>
|
||||
<Compile Include="BSODCreator.cs" />
|
||||
<None Include="Resources\WinClassic\Window\pjBg6mKP.bin" />
|
||||
<Compile Include="GameSave\SaveData.cs" />
|
||||
<Compile Include="GameSave\SaveSystem.cs" />
|
||||
<Compile Include="TaskBarController.cs" />
|
||||
<Compile Include="Template\Win9XBSOD.cs">
|
||||
<SubType>Form</SubType>
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
03f745c6a0e75bab98ef9919670fab0f1de5ece4
|
||||
bdbeecc076ab1435c4e764cd236cd99237fe8529
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
125
TimeHACK.Main/NewGameDialog.Designer.cs
generated
Normal file
125
TimeHACK.Main/NewGameDialog.Designer.cs
generated
Normal file
|
@ -0,0 +1,125 @@
|
|||
namespace TimeHACK
|
||||
{
|
||||
partial class NewGameDialog
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
this.txtProfName = new System.Windows.Forms.TextBox();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.btnOk = new System.Windows.Forms.Button();
|
||||
this.btnHelp = new System.Windows.Forms.Button();
|
||||
this.btnCancl = new System.Windows.Forms.Button();
|
||||
this.btnInfo = new System.Windows.Forms.Button();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// txtProfName
|
||||
//
|
||||
this.txtProfName.Location = new System.Drawing.Point(87, 12);
|
||||
this.txtProfName.Name = "txtProfName";
|
||||
this.txtProfName.Size = new System.Drawing.Size(370, 20);
|
||||
this.txtProfName.TabIndex = 0;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(12, 15);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(70, 13);
|
||||
this.label1.TabIndex = 1;
|
||||
this.label1.Text = "Profile Name:";
|
||||
//
|
||||
// btnOk
|
||||
//
|
||||
this.btnOk.Location = new System.Drawing.Point(382, 70);
|
||||
this.btnOk.Name = "btnOk";
|
||||
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnOk.TabIndex = 2;
|
||||
this.btnOk.Text = "OK";
|
||||
this.btnOk.UseVisualStyleBackColor = true;
|
||||
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
||||
//
|
||||
// btnHelp
|
||||
//
|
||||
this.btnHelp.Location = new System.Drawing.Point(301, 70);
|
||||
this.btnHelp.Name = "btnHelp";
|
||||
this.btnHelp.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnHelp.TabIndex = 2;
|
||||
this.btnHelp.Text = "Help";
|
||||
this.btnHelp.UseVisualStyleBackColor = true;
|
||||
this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
|
||||
//
|
||||
// btnCancl
|
||||
//
|
||||
this.btnCancl.Location = new System.Drawing.Point(220, 70);
|
||||
this.btnCancl.Name = "btnCancl";
|
||||
this.btnCancl.Size = new System.Drawing.Size(75, 23);
|
||||
this.btnCancl.TabIndex = 2;
|
||||
this.btnCancl.Text = "Cancel";
|
||||
this.btnCancl.UseVisualStyleBackColor = true;
|
||||
this.btnCancl.Click += new System.EventHandler(this.btnCancl_Click);
|
||||
//
|
||||
// btnInfo
|
||||
//
|
||||
this.btnInfo.Location = new System.Drawing.Point(7, 70);
|
||||
this.btnInfo.Name = "btnInfo";
|
||||
this.btnInfo.Size = new System.Drawing.Size(121, 23);
|
||||
this.btnInfo.TabIndex = 2;
|
||||
this.btnInfo.Text = "Technical Info";
|
||||
this.btnInfo.UseVisualStyleBackColor = true;
|
||||
this.btnInfo.Click += new System.EventHandler(this.btnInfo_Click);
|
||||
//
|
||||
// NewGameDialog
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(469, 96);
|
||||
this.Controls.Add(this.btnInfo);
|
||||
this.Controls.Add(this.btnCancl);
|
||||
this.Controls.Add(this.btnHelp);
|
||||
this.Controls.Add(this.btnOk);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.txtProfName);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
||||
this.MaximizeBox = false;
|
||||
this.MinimizeBox = false;
|
||||
this.Name = "NewGameDialog";
|
||||
this.Text = "New Game";
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox txtProfName;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Button btnOk;
|
||||
private System.Windows.Forms.Button btnHelp;
|
||||
private System.Windows.Forms.Button btnCancl;
|
||||
private System.Windows.Forms.Button btnInfo;
|
||||
}
|
||||
}
|
43
TimeHACK.Main/NewGameDialog.cs
Normal file
43
TimeHACK.Main/NewGameDialog.cs
Normal file
|
@ -0,0 +1,43 @@
|
|||
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.Windows.Forms;
|
||||
using TimeHACK.Engine;
|
||||
using TimeHACK.Engine.GameSave;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace TimeHACK
|
||||
{
|
||||
public partial class NewGameDialog : Form
|
||||
{
|
||||
public NewGameDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void btnHelp_Click(object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show("You can choose a profile name - this will create a new profile! Whenever you want to Load a game, click 'Load Game' and then choose a profile (You can have as many prfiles as you want)");
|
||||
}
|
||||
|
||||
private void btnCancl_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void btnInfo_Click(object sender, EventArgs e)
|
||||
{
|
||||
MessageBox.Show("The game's profiles are stored in C:/TimeHACK/Profiles - the rest is for you to figure out!");
|
||||
}
|
||||
|
||||
private void btnOk_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
120
TimeHACK.Main/NewGameDialog.resx
Normal file
120
TimeHACK.Main/NewGameDialog.resx
Normal file
|
@ -0,0 +1,120 @@
|
|||
<?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>
|
||||
</root>
|
5
TimeHACK.Main/OS/Win95/Win95.Designer.cs
generated
5
TimeHACK.Main/OS/Win95/Win95.Designer.cs
generated
|
@ -29,7 +29,7 @@ protected override void Dispose(bool disposing)
|
|||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95));
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95));
|
||||
System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("My Computer", 0);
|
||||
System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Network Neighborhood", 5);
|
||||
System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Inbox", 3);
|
||||
|
@ -238,7 +238,7 @@ private void InitializeComponent()
|
|||
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(141, 292);
|
||||
this.startmenuitems.Size = new System.Drawing.Size(141, 311);
|
||||
this.startmenuitems.TabIndex = 0;
|
||||
this.startmenuitems.Text = "StartMenu";
|
||||
//
|
||||
|
@ -439,6 +439,7 @@ private void InitializeComponent()
|
|||
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
|
||||
//
|
||||
|
|
|
@ -310,6 +310,20 @@ public void UpdateTaskbar()
|
|||
}
|
||||
}
|
||||
|
||||
private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
WinClassicAddressBook ab = new WinClassicAddressBook();
|
||||
WinClassic app = wm.startWin95(ab, "Address Book", Properties.Resources.Win95IconWordpad, true, true);
|
||||
AddTaskBarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.Win95IconWordpad);
|
||||
|
||||
nonimportantapps.Add(app);
|
||||
nonimportantapps[nonimportantapps.Count - 1].BringToFront();
|
||||
nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
|
||||
|
||||
app.BringToFront();
|
||||
startmenu.Hide();
|
||||
}
|
||||
|
||||
//TODO: Add Outlook Express 4
|
||||
}
|
||||
}
|
||||
|
|
|
@ -330,7 +330,7 @@
|
|||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq
|
||||
ggAAAk1TRnQBSQFMAgEBDAEAATABAQEwAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
|
||||
ggAAAk1TRnQBSQFMAgEBDAEAATgBAQE4AQEBIAEAASABAAT/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/
|
||||
|
|
|
@ -28,18 +28,121 @@ protected override void Dispose(bool disposing)
|
|||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.topmenu = new System.Windows.Forms.MenuStrip();
|
||||
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.newContactToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.newGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.topmenu.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.label1.Location = new System.Drawing.Point(114, 85);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(442, 39);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "YOY! This is my application";
|
||||
//
|
||||
// topmenu
|
||||
//
|
||||
this.topmenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.fileToolStripMenuItem,
|
||||
this.editToolStripMenuItem,
|
||||
this.viewToolStripMenuItem,
|
||||
this.toolsToolStripMenuItem,
|
||||
this.helpToolStripMenuItem});
|
||||
this.topmenu.Location = new System.Drawing.Point(0, 0);
|
||||
this.topmenu.Name = "topmenu";
|
||||
this.topmenu.Size = new System.Drawing.Size(666, 24);
|
||||
this.topmenu.TabIndex = 1;
|
||||
this.topmenu.Text = "menuStrip1";
|
||||
//
|
||||
// fileToolStripMenuItem
|
||||
//
|
||||
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.newContactToolStripMenuItem,
|
||||
this.newGroupToolStripMenuItem,
|
||||
this.newFolderToolStripMenuItem});
|
||||
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
||||
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
||||
this.fileToolStripMenuItem.Text = "File";
|
||||
//
|
||||
// editToolStripMenuItem
|
||||
//
|
||||
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
|
||||
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
|
||||
this.editToolStripMenuItem.Text = "Edit";
|
||||
//
|
||||
// viewToolStripMenuItem
|
||||
//
|
||||
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
|
||||
this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
||||
this.viewToolStripMenuItem.Text = "View";
|
||||
//
|
||||
// toolsToolStripMenuItem
|
||||
//
|
||||
this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
|
||||
this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
|
||||
this.toolsToolStripMenuItem.Text = "Tools";
|
||||
//
|
||||
// helpToolStripMenuItem
|
||||
//
|
||||
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
|
||||
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
|
||||
this.helpToolStripMenuItem.Text = "Help";
|
||||
//
|
||||
// newContactToolStripMenuItem
|
||||
//
|
||||
this.newContactToolStripMenuItem.Name = "newContactToolStripMenuItem";
|
||||
this.newContactToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.newContactToolStripMenuItem.Text = "New contact...";
|
||||
//
|
||||
// newGroupToolStripMenuItem
|
||||
//
|
||||
this.newGroupToolStripMenuItem.Name = "newGroupToolStripMenuItem";
|
||||
this.newGroupToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.newGroupToolStripMenuItem.Text = "New group...";
|
||||
//
|
||||
// newFolderToolStripMenuItem
|
||||
//
|
||||
this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
|
||||
this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
||||
this.newFolderToolStripMenuItem.Text = "New folder...";
|
||||
//
|
||||
// WinClassicAddressBook
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.topmenu);
|
||||
this.Name = "WinClassicAddressBook";
|
||||
this.Size = new System.Drawing.Size(260, 264);
|
||||
this.Size = new System.Drawing.Size(666, 425);
|
||||
this.topmenu.ResumeLayout(false);
|
||||
this.topmenu.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.MenuStrip topmenu;
|
||||
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem newContactToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem newGroupToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem newFolderToolStripMenuItem;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,6 +15,23 @@ public partial class WinClassicAddressBook : UserControl
|
|||
public WinClassicAddressBook()
|
||||
{
|
||||
InitializeComponent();
|
||||
foreach (ToolStripMenuItem item in topmenu.Items)
|
||||
{
|
||||
item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
|
||||
item.BackColor = Color.Silver;
|
||||
item.BackgroundImage = Properties.Resources.sliversilver;
|
||||
item.BackgroundImageLayout = ImageLayout.Center;
|
||||
item.DisplayStyle = ToolStripItemDisplayStyle.Text;
|
||||
}
|
||||
|
||||
//Time to prepare to load all the fonts up for the combo boxes
|
||||
|
||||
//foreach (FontFamily font in System.Drawing.FontFamily.Families)
|
||||
//{
|
||||
// Added to the ComboBox here
|
||||
|
||||
//comboFont.Items.Add(font.Name);
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -117,4 +117,7 @@
|
|||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="topmenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
</root>
|
|
@ -119,6 +119,12 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="NewGameDialog.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="NewGameDialog.Designer.cs">
|
||||
<DependentUpon>NewGameDialog.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="OS\Win95\Win95.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
|
@ -204,6 +210,9 @@
|
|||
<Compile Include="TitleScreen.Designer.cs">
|
||||
<DependentUpon>TitleScreen.cs</DependentUpon>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="NewGameDialog.resx">
|
||||
<DependentUpon>NewGameDialog.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="OS\Win95\Win95.resx">
|
||||
<DependentUpon>Win95.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -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>HHvzTiHAxUTYqzjzsZdM0fyuFWIZGCBN+d51DdJwNrs=</dsig:DigestValue>
|
||||
<dsig:DigestValue>xjHHFGhzyw8t/woi94tXsDi0wHI6NNfYQtZ7SVesCss=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Binary file not shown.
|
@ -56,14 +56,14 @@
|
|||
</dependentAssembly>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040">
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4762112">
|
||||
<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>2Jbod4Xow0JGKpYFpNEsaUATDtSEvAz3bjwZPOERE5o=</dsig:DigestValue>
|
||||
<dsig:DigestValue>bvuNiShd3UykZMwmEw2EiL3NEusY3nKAMAgkSxVBuEs=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
@ -75,7 +75,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>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue>
|
||||
<dsig:DigestValue>q5TdtgL5zKcTU+c/GlC/k7CBj0YZbbB5vI93xhR0nM0=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1 +1 @@
|
|||
b2dbf06aa0cc470c40ca4fe96ade7148963cc456
|
||||
b26a4c517dee1309b1e9884b9621232394ba8ed0
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -90,3 +90,4 @@ C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHA
|
|||
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache
|
||||
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest
|
||||
C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.application
|
||||
I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources
|
||||
|
|
Binary file not shown.
Binary file not shown.
BIN
TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources
Normal file
BIN
TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources
Normal file
Binary file not shown.
Binary file not shown.
|
@ -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>HHvzTiHAxUTYqzjzsZdM0fyuFWIZGCBN+d51DdJwNrs=</dsig:DigestValue>
|
||||
<dsig:DigestValue>xjHHFGhzyw8t/woi94tXsDi0wHI6NNfYQtZ7SVesCss=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Binary file not shown.
|
@ -56,14 +56,14 @@
|
|||
</dependentAssembly>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040">
|
||||
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4762112">
|
||||
<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>2Jbod4Xow0JGKpYFpNEsaUATDtSEvAz3bjwZPOERE5o=</dsig:DigestValue>
|
||||
<dsig:DigestValue>bvuNiShd3UykZMwmEw2EiL3NEusY3nKAMAgkSxVBuEs=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
@ -75,7 +75,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>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue>
|
||||
<dsig:DigestValue>q5TdtgL5zKcTU+c/GlC/k7CBj0YZbbB5vI93xhR0nM0=</dsig:DigestValue>
|
||||
</hash>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue