91 lines
3.1 KiB
C#
91 lines
3.1 KiB
C#
namespace qtc_net_client_2.Forms
|
|
{
|
|
partial class Chat
|
|
{
|
|
/// <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()
|
|
{
|
|
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 = "";
|
|
//
|
|
// 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 = "";
|
|
//
|
|
// frmChat
|
|
//
|
|
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 = "frmChat";
|
|
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;
|
|
}
|
|
} |