diff options
| author | Andrew <alee14498@gmail.com> | 2018-08-28 14:22:58 -0400 |
|---|---|---|
| committer | Andrew <alee14498@gmail.com> | 2018-08-28 14:22:58 -0400 |
| commit | 90e14a0932b63679c356e8bc1d42e657d7c612ad (patch) | |
| tree | f7c6e6600e17dc3c3a6b8868c3e3e52c88dc6e1b /Project Ports/Boot.Designer.cs | |
| parent | 88bd278b428e85b54441342d8d94fc7c6e3c9029 (diff) | |
| download | Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.gz Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.tar.bz2 Project-Silicon-90e14a0932b63679c356e8bc1d42e657d7c612ad.zip | |
Changed crashing and added booting
Diffstat (limited to 'Project Ports/Boot.Designer.cs')
| -rw-r--r-- | Project Ports/Boot.Designer.cs | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/Project Ports/Boot.Designer.cs b/Project Ports/Boot.Designer.cs new file mode 100644 index 0000000..91927d7 --- /dev/null +++ b/Project Ports/Boot.Designer.cs @@ -0,0 +1,72 @@ +namespace Project_Ports +{ + partial class Boot + { + /// <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.txtBoot = new System.Windows.Forms.RichTextBox(); + this.SuspendLayout(); + // + // txtBoot + // + this.txtBoot.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.txtBoot.BackColor = System.Drawing.Color.Black; + this.txtBoot.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.txtBoot.Cursor = System.Windows.Forms.Cursors.IBeam; + this.txtBoot.ForeColor = System.Drawing.Color.White; + this.txtBoot.Location = new System.Drawing.Point(12, 12); + this.txtBoot.Name = "txtBoot"; + this.txtBoot.ReadOnly = true; + this.txtBoot.Size = new System.Drawing.Size(565, 429); + this.txtBoot.TabIndex = 0; + this.txtBoot.Text = ""; + // + // Boot + // + this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 22F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Black; + this.ClientSize = new System.Drawing.Size(589, 453); + this.Controls.Add(this.txtBoot); + this.Font = new System.Drawing.Font("Consolas", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ForeColor = System.Drawing.Color.White; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Margin = new System.Windows.Forms.Padding(5, 5, 5, 5); + this.Name = "Boot"; + this.Text = "Boot"; + this.Load += new System.EventHandler(this.Boot_Load); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.RichTextBox txtBoot; + } +}
\ No newline at end of file |
