From 5b5825ff4491047838ad12df69c6aa40f1af5299 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 29 Aug 2018 12:40:57 -0400 Subject: Added licenses and added panels on boot and crash --- PortEngine/QuantumAPI/Sites/EarnSite.Designer.cs | 86 ++++++++++++++++ PortEngine/QuantumAPI/Sites/EarnSite.cs | 20 ++++ PortEngine/QuantumAPI/Sites/EarnSite.resx | 120 +++++++++++++++++++++++ 3 files changed, 226 insertions(+) create mode 100644 PortEngine/QuantumAPI/Sites/EarnSite.Designer.cs create mode 100644 PortEngine/QuantumAPI/Sites/EarnSite.cs create mode 100644 PortEngine/QuantumAPI/Sites/EarnSite.resx (limited to 'PortEngine/QuantumAPI') diff --git a/PortEngine/QuantumAPI/Sites/EarnSite.Designer.cs b/PortEngine/QuantumAPI/Sites/EarnSite.Designer.cs new file mode 100644 index 0000000..a988169 --- /dev/null +++ b/PortEngine/QuantumAPI/Sites/EarnSite.Designer.cs @@ -0,0 +1,86 @@ +namespace PortEngine +{ + partial class EarnSite + { + /// + /// 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.btnOpenGTN = new System.Windows.Forms.Button(); + this.btnLaunchDTA = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // btnOpenGTN + // + this.btnOpenGTN.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnOpenGTN.Location = new System.Drawing.Point(30, 75); + this.btnOpenGTN.Name = "btnOpenGTN"; + this.btnOpenGTN.Size = new System.Drawing.Size(160, 39); + this.btnOpenGTN.TabIndex = 0; + this.btnOpenGTN.Text = "Guess the Number"; + this.btnOpenGTN.UseVisualStyleBackColor = true; + // + // btnLaunchDTA + // + this.btnLaunchDTA.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnLaunchDTA.Location = new System.Drawing.Point(225, 75); + this.btnLaunchDTA.Name = "btnLaunchDTA"; + this.btnLaunchDTA.Size = new System.Drawing.Size(160, 39); + this.btnLaunchDTA.TabIndex = 1; + this.btnLaunchDTA.Text = "Dodge the Ad"; + this.btnLaunchDTA.UseVisualStyleBackColor = true; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(328, 17); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(154, 24); + this.label1.TabIndex = 2; + this.label1.Text = "PortOS Games"; + // + // EarnSite + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.label1); + this.Controls.Add(this.btnLaunchDTA); + this.Controls.Add(this.btnOpenGTN); + this.Name = "EarnSite"; + this.Size = new System.Drawing.Size(842, 452); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button btnOpenGTN; + private System.Windows.Forms.Button btnLaunchDTA; + private System.Windows.Forms.Label label1; + } +} diff --git a/PortEngine/QuantumAPI/Sites/EarnSite.cs b/PortEngine/QuantumAPI/Sites/EarnSite.cs new file mode 100644 index 0000000..6b56782 --- /dev/null +++ b/PortEngine/QuantumAPI/Sites/EarnSite.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 PortEngine +{ + public partial class EarnSite : UserControl + { + public EarnSite() + { + InitializeComponent(); + } + } +} diff --git a/PortEngine/QuantumAPI/Sites/EarnSite.resx b/PortEngine/QuantumAPI/Sites/EarnSite.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/PortEngine/QuantumAPI/Sites/EarnSite.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