aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.Designer.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-03-18 17:19:13 -0600
committerGitHub <[email protected]>2017-03-18 17:19:13 -0600
commitcfc3cde2a0bae77ddabc12e80aea2461d5ae1514 (patch)
treebe4d185709c92b2b58956762791dcdc6bc3540cf /TimeHACK.Main/TitleScreen.Designer.cs
parent2ef1e277a54e698f0d96cc87ab5523c2471d0ef4 (diff)
parente3dea4fcfb2c04688e4b734260621dc61df5fc34 (diff)
downloadhistacom2-cfc3cde2a0bae77ddabc12e80aea2461d5ae1514.tar.gz
histacom2-cfc3cde2a0bae77ddabc12e80aea2461d5ae1514.tar.bz2
histacom2-cfc3cde2a0bae77ddabc12e80aea2461d5ae1514.zip
Merge pull request #1 from AShifter/master
I shouldn't make a pull request but okay
Diffstat (limited to 'TimeHACK.Main/TitleScreen.Designer.cs')
-rw-r--r--TimeHACK.Main/TitleScreen.Designer.cs244
1 files changed, 244 insertions, 0 deletions
diff --git a/TimeHACK.Main/TitleScreen.Designer.cs b/TimeHACK.Main/TitleScreen.Designer.cs
new file mode 100644
index 0000000..433d482
--- /dev/null
+++ b/TimeHACK.Main/TitleScreen.Designer.cs
@@ -0,0 +1,244 @@
+namespace TimeHACK
+{
+ partial class TitleScreen
+ {
+ /// <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.components = new System.ComponentModel.Container();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TitleScreen));
+ this.gameversion = new System.Windows.Forms.Label();
+ this.vm_mode = new System.Windows.Forms.CheckBox();
+ this.widthBox = new System.Windows.Forms.TextBox();
+ this.heightBox = new System.Windows.Forms.TextBox();
+ this.charX = new System.Windows.Forms.Label();
+ this.vmModeTimer = new System.Windows.Forms.Timer(this.components);
+ this.panel1 = new System.Windows.Forms.Panel();
+ this.LoadGame = new System.Windows.Forms.Button();
+ this.Exit = new System.Windows.Forms.Button();
+ this.NewGame = new System.Windows.Forms.Button();
+ this.panel2 = new System.Windows.Forms.Panel();
+ this.startbutton = new System.Windows.Forms.PictureBox();
+ this.pictureBox1 = new System.Windows.Forms.PictureBox();
+ this.panel2.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
+ this.SuspendLayout();
+ //
+ // gameversion
+ //
+ this.gameversion.AutoSize = true;
+ this.gameversion.BackColor = System.Drawing.Color.Transparent;
+ this.gameversion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.gameversion.Location = new System.Drawing.Point(25, 8);
+ this.gameversion.Name = "gameversion";
+ this.gameversion.Size = new System.Drawing.Size(78, 13);
+ this.gameversion.TabIndex = 0;
+ this.gameversion.Text = "gameversion";
+ this.gameversion.MouseLeave += new System.EventHandler(this.gameversion_MouseLeave);
+ this.gameversion.MouseHover += new System.EventHandler(this.gameversion_MouseHover);
+ //
+ // vm_mode
+ //
+ this.vm_mode.AutoSize = true;
+ this.vm_mode.BackColor = System.Drawing.Color.Transparent;
+ this.vm_mode.ForeColor = System.Drawing.Color.Black;
+ this.vm_mode.Location = new System.Drawing.Point(724, 7);
+ this.vm_mode.Name = "vm_mode";
+ this.vm_mode.Size = new System.Drawing.Size(72, 17);
+ this.vm_mode.TabIndex = 4;
+ this.vm_mode.Text = "VM Mode";
+ this.vm_mode.UseVisualStyleBackColor = false;
+ //
+ // widthBox
+ //
+ this.widthBox.Location = new System.Drawing.Point(613, 5);
+ this.widthBox.Name = "widthBox";
+ this.widthBox.Size = new System.Drawing.Size(41, 20);
+ this.widthBox.TabIndex = 5;
+ this.widthBox.Text = "640";
+ this.widthBox.Visible = false;
+ //
+ // heightBox
+ //
+ this.heightBox.Location = new System.Drawing.Point(674, 5);
+ this.heightBox.Name = "heightBox";
+ this.heightBox.Size = new System.Drawing.Size(41, 20);
+ this.heightBox.TabIndex = 6;
+ this.heightBox.Text = "480";
+ this.heightBox.Visible = false;
+ //
+ // charX
+ //
+ this.charX.AutoSize = true;
+ this.charX.BackColor = System.Drawing.Color.Transparent;
+ this.charX.ForeColor = System.Drawing.Color.Black;
+ this.charX.Location = new System.Drawing.Point(657, 8);
+ this.charX.Name = "charX";
+ this.charX.Size = new System.Drawing.Size(14, 13);
+ this.charX.TabIndex = 7;
+ this.charX.Text = "X";
+ this.charX.Visible = false;
+ //
+ // vmModeTimer
+ //
+ this.vmModeTimer.Tick += new System.EventHandler(this.timer1_Tick);
+ //
+ // panel1
+ //
+ this.panel1.BackColor = System.Drawing.Color.Transparent;
+ this.panel1.BackgroundImage = global::TimeHACK.Properties.Resources.TimeHACK_Logo;
+ this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(800, 345);
+ this.panel1.TabIndex = 9;
+ //
+ // LoadGame
+ //
+ this.LoadGame.BackColor = System.Drawing.Color.Transparent;
+ this.LoadGame.FlatAppearance.BorderSize = 0;
+ this.LoadGame.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
+ this.LoadGame.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
+ this.LoadGame.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.LoadGame.Image = ((System.Drawing.Image)(resources.GetObject("LoadGame.Image")));
+ this.LoadGame.Location = new System.Drawing.Point(275, 363);
+ this.LoadGame.Name = "LoadGame";
+ this.LoadGame.Size = new System.Drawing.Size(246, 188);
+ this.LoadGame.TabIndex = 2;
+ this.LoadGame.UseVisualStyleBackColor = false;
+ this.LoadGame.Click += new System.EventHandler(this.LoadGame_Click);
+ this.LoadGame.MouseEnter += new System.EventHandler(this.LoadGame_Enter);
+ this.LoadGame.MouseLeave += new System.EventHandler(this.LoadGame_Leave);
+ //
+ // Exit
+ //
+ this.Exit.BackColor = System.Drawing.Color.Transparent;
+ this.Exit.FlatAppearance.BorderSize = 0;
+ this.Exit.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
+ this.Exit.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
+ this.Exit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.Exit.Image = ((System.Drawing.Image)(resources.GetObject("Exit.Image")));
+ this.Exit.Location = new System.Drawing.Point(542, 363);
+ this.Exit.Name = "Exit";
+ this.Exit.Size = new System.Drawing.Size(246, 188);
+ this.Exit.TabIndex = 3;
+ this.Exit.UseVisualStyleBackColor = false;
+ this.Exit.Click += new System.EventHandler(this.Exit_Click);
+ this.Exit.MouseEnter += new System.EventHandler(this.Exit_Enter);
+ this.Exit.MouseLeave += new System.EventHandler(this.Exit_Leave);
+ //
+ // NewGame
+ //
+ this.NewGame.BackColor = System.Drawing.Color.Transparent;
+ this.NewGame.FlatAppearance.BorderSize = 0;
+ this.NewGame.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
+ this.NewGame.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
+ this.NewGame.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.NewGame.Image = ((System.Drawing.Image)(resources.GetObject("NewGame.Image")));
+ this.NewGame.Location = new System.Drawing.Point(6, 363);
+ this.NewGame.Name = "NewGame";
+ this.NewGame.Size = new System.Drawing.Size(246, 188);
+ this.NewGame.TabIndex = 1;
+ this.NewGame.UseVisualStyleBackColor = false;
+ this.NewGame.Click += new System.EventHandler(this.NewGame_Click);
+ this.NewGame.MouseEnter += new System.EventHandler(this.NewGame_MouseEnter);
+ this.NewGame.MouseLeave += new System.EventHandler(this.NewGame_MouseLeave);
+ //
+ // panel2
+ //
+ this.panel2.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTaskBar;
+ this.panel2.Controls.Add(this.vm_mode);
+ this.panel2.Controls.Add(this.heightBox);
+ this.panel2.Controls.Add(this.charX);
+ this.panel2.Controls.Add(this.widthBox);
+ this.panel2.Controls.Add(this.pictureBox1);
+ this.panel2.Controls.Add(this.gameversion);
+ this.panel2.Controls.Add(this.startbutton);
+ this.panel2.Location = new System.Drawing.Point(0, 572);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(800, 28);
+ this.panel2.TabIndex = 10;
+ //
+ // startbutton
+ //
+ this.startbutton.Image = global::TimeHACK.Properties.Resources.TaskBarButton;
+ this.startbutton.Location = new System.Drawing.Point(2, 4);
+ this.startbutton.Name = "startbutton";
+ this.startbutton.Size = new System.Drawing.Size(279, 22);
+ this.startbutton.TabIndex = 12;
+ this.startbutton.TabStop = false;
+ //
+ // pictureBox1
+ //
+ this.pictureBox1.Image = global::TimeHACK.Properties.Resources.TaskBarClock;
+ this.pictureBox1.Location = new System.Drawing.Point(612, 0);
+ this.pictureBox1.Name = "pictureBox1";
+ this.pictureBox1.Size = new System.Drawing.Size(187, 28);
+ this.pictureBox1.TabIndex = 13;
+ this.pictureBox1.TabStop = false;
+ //
+ // TitleScreen
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Teal;
+ this.ClientSize = new System.Drawing.Size(800, 600);
+ this.Controls.Add(this.panel2);
+ this.Controls.Add(this.LoadGame);
+ this.Controls.Add(this.Exit);
+ this.Controls.Add(this.NewGame);
+ this.Controls.Add(this.panel1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.MaximizeBox = false;
+ this.Name = "TitleScreen";
+ this.Text = "TimeHACK Launcher";
+ this.Load += new System.EventHandler(this.TitleScreen_Load);
+ this.panel2.ResumeLayout(false);
+ this.panel2.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+ private System.Windows.Forms.Label gameversion;
+ private System.Windows.Forms.CheckBox vm_mode;
+ private System.Windows.Forms.TextBox widthBox;
+ private System.Windows.Forms.TextBox heightBox;
+ private System.Windows.Forms.Label charX;
+ private System.Windows.Forms.Timer vmModeTimer;
+ private System.Windows.Forms.Panel panel1;
+ private System.Windows.Forms.Button LoadGame;
+ private System.Windows.Forms.Button Exit;
+ private System.Windows.Forms.Button NewGame;
+ private System.Windows.Forms.Panel panel2;
+ internal System.Windows.Forms.PictureBox startbutton;
+ internal System.Windows.Forms.PictureBox pictureBox1;
+ }
+} \ No newline at end of file