aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Programs/Terminal.Designer.cs
diff options
context:
space:
mode:
authorTheEdgeNK <trey6979@gmail.com>2018-08-26 14:15:03 -0400
committerTheEdgeNK <trey6979@gmail.com>2018-08-26 14:15:03 -0400
commitee343916c292c741041167a1a77f4b59a95002c5 (patch)
tree1ad04a230aadc311041d78cc3a54e5f1c93a03d2 /Project Ports/Programs/Terminal.Designer.cs
parent4800d7686b470b3a39314e76ea02daee790078b7 (diff)
downloadProject-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.tar.gz
Project-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.tar.bz2
Project-Silicon-ee343916c292c741041167a1a77f4b59a95002c5.zip
Ability to change chatter username, also, terminal!
Diffstat (limited to 'Project Ports/Programs/Terminal.Designer.cs')
-rw-r--r--Project Ports/Programs/Terminal.Designer.cs45
1 files changed, 30 insertions, 15 deletions
diff --git a/Project Ports/Programs/Terminal.Designer.cs b/Project Ports/Programs/Terminal.Designer.cs
index 48e3ee4..c5c2807 100644
--- a/Project Ports/Programs/Terminal.Designer.cs
+++ b/Project Ports/Programs/Terminal.Designer.cs
@@ -28,30 +28,44 @@
/// </summary>
private void InitializeComponent()
{
- this.textBox1 = new System.Windows.Forms.TextBox();
+ this.txtConsole = new System.Windows.Forms.TextBox();
+ this.txtInput = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
- // textBox1
+ // txtConsole
//
- this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
+ this.txtConsole.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.textBox1.BackColor = System.Drawing.Color.Black;
- this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.textBox1.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.textBox1.ForeColor = System.Drawing.Color.White;
- this.textBox1.Location = new System.Drawing.Point(0, 0);
- this.textBox1.Multiline = true;
- this.textBox1.Name = "textBox1";
- this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
- this.textBox1.Size = new System.Drawing.Size(456, 337);
- this.textBox1.TabIndex = 0;
+ this.txtConsole.BackColor = System.Drawing.Color.Black;
+ this.txtConsole.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.txtConsole.Font = new System.Drawing.Font("Consolas", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.txtConsole.ForeColor = System.Drawing.Color.White;
+ this.txtConsole.Location = new System.Drawing.Point(-3, 0);
+ this.txtConsole.Multiline = true;
+ this.txtConsole.Name = "txtConsole";
+ this.txtConsole.ReadOnly = true;
+ this.txtConsole.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
+ this.txtConsole.Size = new System.Drawing.Size(456, 321);
+ this.txtConsole.TabIndex = 3;
+ //
+ // txtInput
+ //
+ this.txtInput.BackColor = System.Drawing.SystemColors.WindowText;
+ this.txtInput.Font = new System.Drawing.Font("Lucida Console", 8F);
+ this.txtInput.ForeColor = System.Drawing.SystemColors.Window;
+ this.txtInput.Location = new System.Drawing.Point(0, 319);
+ this.txtInput.Name = "txtInput";
+ this.txtInput.Size = new System.Drawing.Size(456, 18);
+ this.txtInput.TabIndex = 4;
+ this.txtInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtInput_KeyDown);
//
// Terminal
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.Controls.Add(this.textBox1);
+ this.Controls.Add(this.txtInput);
+ this.Controls.Add(this.txtConsole);
this.Name = "Terminal";
this.Size = new System.Drawing.Size(456, 337);
this.Load += new System.EventHandler(this.Terminal_Load);
@@ -62,6 +76,7 @@
#endregion
- private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.TextBox txtConsole;
+ public System.Windows.Forms.TextBox txtInput;
}
}