namespace qtc_net_client_2.Forms { partial class ChatRoom { /// /// 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() { components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChatRoom)); rtxtChatbox = new RichTextBox(); btnSend = new Button(); lblRoomName = new Label(); ilStatusIcons = new ImageList(components); ilProfileImages = new ImageList(components); lvUserList = new ListView(); fpnlMessages = new FlowLayoutPanel(); SuspendLayout(); // // rtxtChatbox // rtxtChatbox.Location = new Point(12, 322); rtxtChatbox.Name = "rtxtChatbox"; rtxtChatbox.Size = new Size(589, 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(607, 322); btnSend.Name = "btnSend"; btnSend.Size = new Size(75, 54); btnSend.TabIndex = 2; btnSend.UseVisualStyleBackColor = true; btnSend.Click += btnSend_Click; // // 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"; // // 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"); // // ilProfileImages // ilProfileImages.ColorDepth = ColorDepth.Depth32Bit; ilProfileImages.ImageStream = (ImageListStreamer)resources.GetObject("ilProfileImages.ImageStream"); ilProfileImages.TransparentColor = Color.Transparent; ilProfileImages.Images.SetKeyName(0, "DefaultPFP"); // // lvUserList // lvUserList.Alignment = ListViewAlignment.Left; lvUserList.Location = new Point(12, 43); lvUserList.MultiSelect = false; lvUserList.Name = "lvUserList"; lvUserList.Size = new Size(124, 273); lvUserList.SmallImageList = ilStatusIcons; lvUserList.TabIndex = 9; lvUserList.UseCompatibleStateImageBehavior = false; lvUserList.View = View.SmallIcon; lvUserList.DoubleClick += lvUserList_DoubleClick; // // fpnlMessages // fpnlMessages.AutoScroll = true; fpnlMessages.BackColor = Color.White; fpnlMessages.BorderStyle = BorderStyle.Fixed3D; fpnlMessages.FlowDirection = FlowDirection.TopDown; fpnlMessages.Location = new Point(142, 43); fpnlMessages.Name = "fpnlMessages"; fpnlMessages.Size = new Size(540, 273); fpnlMessages.TabIndex = 10; fpnlMessages.WrapContents = false; // // ChatRoom // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackColor = Color.DodgerBlue; ClientSize = new Size(694, 388); Controls.Add(fpnlMessages); Controls.Add(lvUserList); Controls.Add(lblRoomName); Controls.Add(btnSend); Controls.Add(rtxtChatbox); DoubleBuffered = true; 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 Label lblRoomName; private ImageList ilStatusIcons; private ImageList ilProfileImages; private ListView lvUserList; private FlowLayoutPanel fpnlMessages; } }