diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-11 17:12:24 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-11 17:12:24 -0500 |
| commit | ef26e9f3b20a3581a68388390c30f86a6fcb5740 (patch) | |
| tree | 1021b63be92f2fce6443d03588fae288353a4567 /Microbit/MainMenu.Designer.cs | |
| parent | 97c66fb4ea00941c83bbf6c0778fced0daf37c9f (diff) | |
| download | Microbit-ef26e9f3b20a3581a68388390c30f86a6fcb5740.tar.gz Microbit-ef26e9f3b20a3581a68388390c30f86a6fcb5740.tar.bz2 Microbit-ef26e9f3b20a3581a68388390c30f86a6fcb5740.zip | |
Added the launcher menu, kernel project and added packages
Diffstat (limited to 'Microbit/MainMenu.Designer.cs')
| -rw-r--r-- | Microbit/MainMenu.Designer.cs | 97 |
1 files changed, 95 insertions, 2 deletions
diff --git a/Microbit/MainMenu.Designer.cs b/Microbit/MainMenu.Designer.cs index 210b8de..d2b4011 100644 --- a/Microbit/MainMenu.Designer.cs +++ b/Microbit/MainMenu.Designer.cs @@ -28,13 +28,106 @@ /// </summary> private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); + this.lbTitle = new System.Windows.Forms.Label(); + this.btnStart = new System.Windows.Forms.Button(); + this.wbLauncher = new System.Windows.Forms.WebBrowser(); + this.btnReset = new System.Windows.Forms.Button(); + this.btnExit = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // lbTitle + // + this.lbTitle.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.lbTitle.AutoSize = true; + this.lbTitle.Font = new System.Drawing.Font("Consolas", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lbTitle.ForeColor = System.Drawing.Color.White; + this.lbTitle.Location = new System.Drawing.Point(39, 32); + this.lbTitle.Name = "lbTitle"; + this.lbTitle.Size = new System.Drawing.Size(270, 32); + this.lbTitle.TabIndex = 0; + this.lbTitle.Text = "Microbit Launcher"; + // + // btnStart + // + this.btnStart.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnStart.Font = new System.Drawing.Font("Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnStart.ForeColor = System.Drawing.Color.White; + this.btnStart.Location = new System.Drawing.Point(339, 15); + this.btnStart.Name = "btnStart"; + this.btnStart.Size = new System.Drawing.Size(296, 70); + this.btnStart.TabIndex = 1; + this.btnStart.Text = "Start Operating System"; + this.btnStart.UseVisualStyleBackColor = true; + this.btnStart.Click += new System.EventHandler(this.btnStart_Click); + // + // wbLauncher + // + this.wbLauncher.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.wbLauncher.Location = new System.Drawing.Point(31, 101); + this.wbLauncher.MinimumSize = new System.Drawing.Size(20, 20); + this.wbLauncher.Name = "wbLauncher"; + this.wbLauncher.Size = new System.Drawing.Size(728, 318); + this.wbLauncher.TabIndex = 2; + this.wbLauncher.Url = new System.Uri(" http://alee14.ml/Microbit-News/", System.UriKind.Absolute); + // + // btnReset + // + this.btnReset.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.btnReset.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnReset.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnReset.ForeColor = System.Drawing.Color.White; + this.btnReset.Location = new System.Drawing.Point(641, 15); + this.btnReset.Name = "btnReset"; + this.btnReset.Size = new System.Drawing.Size(118, 32); + this.btnReset.TabIndex = 3; + this.btnReset.Text = "Reset"; + this.btnReset.UseVisualStyleBackColor = true; + this.btnReset.Click += new System.EventHandler(this.btnReset_Click); + // + // btnExit + // + this.btnExit.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.btnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnExit.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnExit.ForeColor = System.Drawing.Color.White; + this.btnExit.Location = new System.Drawing.Point(641, 53); + this.btnExit.Name = "btnExit"; + this.btnExit.Size = new System.Drawing.Size(118, 32); + this.btnExit.TabIndex = 4; + this.btnExit.Text = "Exit"; + this.btnExit.UseVisualStyleBackColor = true; + this.btnExit.Click += new System.EventHandler(this.btnExit_Click); + // + // MainMenu + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Black; this.ClientSize = new System.Drawing.Size(800, 450); - this.Text = "Form1"; + this.ControlBox = false; + this.Controls.Add(this.btnExit); + this.Controls.Add(this.btnReset); + this.Controls.Add(this.wbLauncher); + this.Controls.Add(this.btnStart); + this.Controls.Add(this.lbTitle); + this.Name = "MainMenu"; + this.Text = "Microbit Launcher"; + this.Load += new System.EventHandler(this.MainMenu_Load); + this.ResumeLayout(false); + this.PerformLayout(); + } #endregion + + private System.Windows.Forms.Label lbTitle; + private System.Windows.Forms.Button btnStart; + private System.Windows.Forms.WebBrowser wbLauncher; + private System.Windows.Forms.Button btnReset; + private System.Windows.Forms.Button btnExit; } } |
