aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Chat.Designer.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-02-13 16:50:13 -0500
committerMichael <[email protected]>2017-02-13 16:50:21 -0500
commit9533b7b98f87381632aabf914384d92832343a20 (patch)
treee1e6f6ed6829213e8adcf8c35c14b7dc9f0899da /ShiftOS.WinForms/Applications/Chat.Designer.cs
parent09aaca5d88e3108dcf63748f1128a880d30b844e (diff)
downloadshiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.gz
shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.tar.bz2
shiftos_thereturn-9533b7b98f87381632aabf914384d92832343a20.zip
Fuckton of client-side fixes
Diffstat (limited to 'ShiftOS.WinForms/Applications/Chat.Designer.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Chat.Designer.cs23
1 files changed, 12 insertions, 11 deletions
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();