From a3fc2c45ec2a62684e128ffd7cab88bd101ad917 Mon Sep 17 00:00:00 2001 From: MichaelTheShifter Date: Tue, 17 May 2016 15:37:02 -0400 Subject: Committing all I've got Committing everything I've got - so that I can take a break for a few months and work on other things. --- .../FinalMission/MissionGuide.Designer.cs | 118 +++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs (limited to 'source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs') diff --git a/source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs b/source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs new file mode 100644 index 0000000..45a51f1 --- /dev/null +++ b/source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs @@ -0,0 +1,118 @@ +namespace ShiftOS.FinalMission +{ + partial class MissionGuide + { + /// + /// 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 Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.panel1 = new System.Windows.Forms.Panel(); + this.flbuttons = new System.Windows.Forms.FlowLayoutPanel(); + this.btnstart = new System.Windows.Forms.Button(); + this.tmr_setupui = new System.Windows.Forms.Timer(this.components); + this.lbprompt = new System.Windows.Forms.Label(); + this.panel1.SuspendLayout(); + this.flbuttons.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel1.Controls.Add(this.lbprompt); + this.panel1.Controls.Add(this.flbuttons); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(520, 189); + this.panel1.TabIndex = 0; + // + // flbuttons + // + this.flbuttons.Controls.Add(this.btnstart); + this.flbuttons.Dock = System.Windows.Forms.DockStyle.Bottom; + this.flbuttons.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft; + this.flbuttons.Location = new System.Drawing.Point(0, 155); + this.flbuttons.Name = "flbuttons"; + this.flbuttons.Size = new System.Drawing.Size(518, 32); + this.flbuttons.TabIndex = 0; + // + // btnstart + // + this.btnstart.AutoSize = true; + this.btnstart.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnstart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnstart.Location = new System.Drawing.Point(435, 3); + this.btnstart.Name = "btnstart"; + this.btnstart.Size = new System.Drawing.Size(80, 23); + this.btnstart.TabIndex = 0; + this.btnstart.Text = "Let\'s go."; + this.btnstart.UseVisualStyleBackColor = true; + this.btnstart.Click += new System.EventHandler(this.btnstart_Click); + // + // tmr_setupui + // + this.tmr_setupui.Enabled = true; + this.tmr_setupui.Tick += new System.EventHandler(this.tmr_setupui_Tick); + // + // lbprompt + // + this.lbprompt.Dock = System.Windows.Forms.DockStyle.Fill; + this.lbprompt.Location = new System.Drawing.Point(0, 0); + this.lbprompt.Margin = new System.Windows.Forms.Padding(50); + this.lbprompt.Name = "lbprompt"; + this.lbprompt.Padding = new System.Windows.Forms.Padding(15); + this.lbprompt.Size = new System.Drawing.Size(518, 155); + this.lbprompt.TabIndex = 1; + this.lbprompt.Text = "label1"; + // + // MissionGuide + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 11F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Black; + this.ClientSize = new System.Drawing.Size(520, 189); + this.Controls.Add(this.panel1); + this.Font = new System.Drawing.Font("Lucida Console", 8.25F); + this.ForeColor = System.Drawing.Color.LightGreen; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "MissionGuide"; + this.Text = "MissionGuide"; + this.panel1.ResumeLayout(false); + this.flbuttons.ResumeLayout(false); + this.flbuttons.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.FlowLayoutPanel flbuttons; + private System.Windows.Forms.Button btnstart; + private System.Windows.Forms.Timer tmr_setupui; + private System.Windows.Forms.Label lbprompt; + } +} \ No newline at end of file -- cgit v1.2.3