qtc-net-client/qtc-net-client-2/Forms/ChatRoom.Designer.cs
AlanMoonbase 7b599863d8 Implement Room User Lists
Rename `Chat` Form To `ChatRoom`
Version Bump
2025-06-30 15:44:31 -07:00

139 lines
5.3 KiB
C#

namespace qtc_net_client_2.Forms
{
partial class ChatRoom
{
/// <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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChatRoom));
rtxtChatbox = new RichTextBox();
btnSend = new Button();
rtxtChat = new RichTextBox();
lblRoomName = new Label();
lvUserList = new ListView();
ilStatusIcons = new ImageList(components);
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.Font = new Font("Segoe UI", 10F);
rtxtChat.HideSelection = false;
rtxtChat.Location = new Point(142, 43);
rtxtChat.Name = "rtxtChat";
rtxtChat.ReadOnly = true;
rtxtChat.Size = new Size(463, 219);
rtxtChat.TabIndex = 3;
rtxtChat.Text = "";
//
// lblRoomName
//
lblRoomName.AutoSize = true;
lblRoomName.Font = new Font("Segoe UI", 25F, FontStyle.Bold | FontStyle.Italic);
lblRoomName.ForeColor = Color.White;
lblRoomName.Location = new Point(6, -4);
lblRoomName.Margin = new Padding(4, 0, 4, 0);
lblRoomName.Name = "lblRoomName";
lblRoomName.Size = new Size(113, 46);
lblRoomName.TabIndex = 8;
lblRoomName.Text = "Room";
//
// lvUserList
//
lvUserList.Alignment = ListViewAlignment.Left;
lvUserList.Location = new Point(12, 43);
lvUserList.MultiSelect = false;
lvUserList.Name = "lvUserList";
lvUserList.Size = new Size(124, 219);
lvUserList.SmallImageList = ilStatusIcons;
lvUserList.TabIndex = 9;
lvUserList.UseCompatibleStateImageBehavior = false;
lvUserList.View = View.SmallIcon;
lvUserList.DoubleClick += lvUserList_DoubleClick;
//
// ilStatusIcons
//
ilStatusIcons.ColorDepth = ColorDepth.Depth32Bit;
ilStatusIcons.ImageStream = (ImageListStreamer)resources.GetObject("ilStatusIcons.ImageStream");
ilStatusIcons.TransparentColor = Color.Transparent;
ilStatusIcons.Images.SetKeyName(0, "Offline");
ilStatusIcons.Images.SetKeyName(1, "Online");
ilStatusIcons.Images.SetKeyName(2, "Away");
ilStatusIcons.Images.SetKeyName(3, "DND");
//
// ChatRoom
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.DodgerBlue;
ClientSize = new Size(617, 334);
Controls.Add(lvUserList);
Controls.Add(lblRoomName);
Controls.Add(rtxtChat);
Controls.Add(btnSend);
Controls.Add(rtxtChatbox);
FormBorderStyle = FormBorderStyle.FixedSingle;
Icon = (Icon)resources.GetObject("$this.Icon");
MaximizeBox = false;
Name = "ChatRoom";
StartPosition = FormStartPosition.CenterScreen;
Text = "QtC.NET Client - Chat Room";
FormClosing += frmChat_FormClosing;
Load += frmChat_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private RichTextBox rtxtChatbox;
private Button btnSend;
private RichTextBox rtxtChat;
private Label lblRoomName;
private ListView lvUserList;
private ImageList ilStatusIcons;
}
}