From 99fef5c57360f07259fc86f433bed8a9ab59c48e Mon Sep 17 00:00:00 2001 From: lempamo Date: Tue, 22 Aug 2017 20:44:03 -0400 Subject: gtn things --- .../OS/Win95/Win95Apps/GuessTheNumber.Designer.cs | 125 +++++++++++++++++++++ TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.cs | 20 ++++ .../OS/Win95/Win95Apps/GuessTheNumber.resx | 120 ++++++++++++++++++++ 3 files changed, 265 insertions(+) create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.Designer.cs create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.cs create mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx (limited to 'TimeHACK.Main/OS') diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.Designer.cs new file mode 100644 index 0000000..1c3190f --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.Designer.cs @@ -0,0 +1,125 @@ +namespace TimeHACK.OS.Win95.Win95Apps +{ + partial class GuessTheNumber + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(20, 10); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(224, 13); + this.label1.TabIndex = 0; + this.label1.Text = "I am thinking of a number between 1 and 100."; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(16, 36); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(40, 13); + this.label2.TabIndex = 1; + this.label2.Text = "Guess:"; + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(58, 33); + this.textBox1.MaxLength = 3; + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(33, 20); + this.textBox1.TabIndex = 2; + // + // pictureBox1 + // + this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.GTN95_Check; + this.pictureBox1.Location = new System.Drawing.Point(191, 30); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(55, 27); + this.pictureBox1.TabIndex = 3; + this.pictureBox1.TabStop = false; + // + // pictureBox2 + // + this.pictureBox2.Location = new System.Drawing.Point(97, 31); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(88, 24); + this.pictureBox2.TabIndex = 4; + this.pictureBox2.TabStop = false; + // + // pictureBox3 + // + this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.GTN95_Restart; + this.pictureBox3.Location = new System.Drawing.Point(19, 62); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(227, 23); + this.pictureBox3.TabIndex = 5; + this.pictureBox3.TabStop = false; + // + // GuessTheNumber + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Silver; + this.Controls.Add(this.pictureBox3); + this.Controls.Add(this.pictureBox2); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Name = "GuessTheNumber"; + this.Size = new System.Drawing.Size(268, 100); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox3; + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.cs b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.cs new file mode 100644 index 0000000..112cb93 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.cs @@ -0,0 +1,20 @@ +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 System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class GuessTheNumber : UserControl + { + public GuessTheNumber() + { + InitializeComponent(); + } + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file -- cgit v1.2.3