aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs
diff options
context:
space:
mode:
authorMichaelTheShifter <[email protected]>2016-05-17 15:37:02 -0400
committerMichaelTheShifter <[email protected]>2016-05-17 15:37:02 -0400
commita3fc2c45ec2a62684e128ffd7cab88bd101ad917 (patch)
tree1dc63efaa4597a28fd901047a714f38954dafa5e /source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs
parent0085241d2366f266b5416488dbead174184420b0 (diff)
downloadshiftos-c--a3fc2c45ec2a62684e128ffd7cab88bd101ad917.tar.gz
shiftos-c--a3fc2c45ec2a62684e128ffd7cab88bd101ad917.tar.bz2
shiftos-c--a3fc2c45ec2a62684e128ffd7cab88bd101ad917.zip
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.
Diffstat (limited to 'source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs')
-rw-r--r--source/WindowsFormsApplication1/FinalMission/MissionGuide.Designer.cs118
1 files changed, 118 insertions, 0 deletions
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
+ {
+ /// <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();
+ 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