namespace qtc_net_client_2.Forms
{
partial class Chat
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Chat));
rtxtChatbox = new RichTextBox();
btnSend = new Button();
rtxtChat = new RichTextBox();
SuspendLayout();
//
// rtxtChatbox
//
rtxtChatbox.Location = new Point(12, 268);
rtxtChatbox.Name = "rtxtChatbox";
rtxtChatbox.Size = new Size(512, 54);
rtxtChatbox.TabIndex = 1;
rtxtChatbox.Text = "";
rtxtChatbox.KeyDown += rtxtChatbox_KeyDown;
//
// btnSend
//
btnSend.FlatAppearance.BorderSize = 0;
btnSend.FlatStyle = FlatStyle.Flat;
btnSend.Image = Properties.Resources.SendIcon;
btnSend.Location = new Point(530, 268);
btnSend.Name = "btnSend";
btnSend.Size = new Size(75, 54);
btnSend.TabIndex = 2;
btnSend.UseVisualStyleBackColor = true;
btnSend.Click += btnSend_Click;
//
// rtxtChat
//
rtxtChat.Location = new Point(12, 12);
rtxtChat.Name = "rtxtChat";
rtxtChat.ReadOnly = true;
rtxtChat.Size = new Size(593, 250);
rtxtChat.TabIndex = 3;
rtxtChat.Text = "";
//
// Chat
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(617, 334);
Controls.Add(rtxtChat);
Controls.Add(btnSend);
Controls.Add(rtxtChatbox);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
Name = "Chat";
StartPosition = FormStartPosition.CenterScreen;
Text = "QtC.NET Client - Chat Room";
FormClosing += frmChat_FormClosing;
Load += frmChat_Load;
ResumeLayout(false);
}
#endregion
private RichTextBox rtxtChatbox;
private Button btnSend;
private RichTextBox rtxtChat;
}
}