From 9533b7b98f87381632aabf914384d92832343a20 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 13 Feb 2017 16:50:13 -0500 Subject: Fuckton of client-side fixes --- ShiftOS.WinForms/Applications/Chat.Designer.cs | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'ShiftOS.WinForms/Applications/Chat.Designer.cs') diff --git a/ShiftOS.WinForms/Applications/Chat.Designer.cs b/ShiftOS.WinForms/Applications/Chat.Designer.cs index f2c0a70..62c9b42 100644 --- a/ShiftOS.WinForms/Applications/Chat.Designer.cs +++ b/ShiftOS.WinForms/Applications/Chat.Designer.cs @@ -53,8 +53,8 @@ namespace ShiftOS.WinForms.Applications private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); - this.txtuserinput = new System.Windows.Forms.TextBox(); this.rtbchat = new System.Windows.Forms.RichTextBox(); + this.txtuserinput = new System.Windows.Forms.TextBox(); this.panel1.SuspendLayout(); this.SuspendLayout(); // @@ -68,32 +68,33 @@ namespace ShiftOS.WinForms.Applications this.panel1.Size = new System.Drawing.Size(633, 318); this.panel1.TabIndex = 0; // - // txtuserinput - // - this.txtuserinput.Dock = System.Windows.Forms.DockStyle.Bottom; - this.txtuserinput.Location = new System.Drawing.Point(0, 298); - this.txtuserinput.Name = "txtuserinput"; - this.txtuserinput.Size = new System.Drawing.Size(633, 20); - this.txtuserinput.TabIndex = 0; - this.txtuserinput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtuserinput_KeyDown); - // // rtbchat // this.rtbchat.Dock = System.Windows.Forms.DockStyle.Fill; + this.rtbchat.HideSelection = false; this.rtbchat.Location = new System.Drawing.Point(0, 0); this.rtbchat.Name = "rtbchat"; this.rtbchat.Size = new System.Drawing.Size(633, 298); this.rtbchat.TabIndex = 1; this.rtbchat.Text = ""; + this.rtbchat.TextChanged += new System.EventHandler(this.rtbchat_TextChanged); this.rtbchat.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown); // + // txtuserinput + // + this.txtuserinput.Dock = System.Windows.Forms.DockStyle.Bottom; + this.txtuserinput.Location = new System.Drawing.Point(0, 298); + this.txtuserinput.Name = "txtuserinput"; + this.txtuserinput.Size = new System.Drawing.Size(633, 20); + this.txtuserinput.TabIndex = 0; + this.txtuserinput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtuserinput_KeyDown); + // // Chat // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.panel1); this.Name = "Chat"; - this.Text = "{CHAT_NAME}"; this.Size = new System.Drawing.Size(633, 318); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); -- cgit v1.2.3