⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmchat.designer.cs

📁 一个即时通信工具
💻 CS
字号:
namespace MyQQ
{
    partial class frmChat
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmChat));
            this.panTitle = new System.Windows.Forms.Panel();
            this.lblUserTitle = new System.Windows.Forms.Label();
            this.picFriendHeader = new System.Windows.Forms.PictureBox();
            this.txtMessage = new System.Windows.Forms.TextBox();
            this.btnClose = new System.Windows.Forms.Button();
            this.btnSend = new System.Windows.Forms.Button();
            this.txtMsgHistory = new System.Windows.Forms.TextBox();
            this.panHistory = new System.Windows.Forms.Panel();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.panTitle.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picFriendHeader)).BeginInit();
            this.panHistory.SuspendLayout();
            this.SuspendLayout();
            // 
            // panTitle
            // 
            this.panTitle.BackColor = System.Drawing.Color.WhiteSmoke;
            this.panTitle.Controls.Add(this.lblUserTitle);
            this.panTitle.Controls.Add(this.picFriendHeader);
            this.panTitle.Dock = System.Windows.Forms.DockStyle.Top;
            this.panTitle.ForeColor = System.Drawing.SystemColors.Desktop;
            this.panTitle.Location = new System.Drawing.Point(0, 0);
            this.panTitle.Name = "panTitle";
            this.panTitle.Size = new System.Drawing.Size(377, 30);
            this.panTitle.TabIndex = 0;
            // 
            // lblUserTitle
            // 
            this.lblUserTitle.AutoSize = true;
            this.lblUserTitle.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.lblUserTitle.Location = new System.Drawing.Point(40, 8);
            this.lblUserTitle.Name = "lblUserTitle";
            this.lblUserTitle.Size = new System.Drawing.Size(49, 14);
            this.lblUserTitle.TabIndex = 0;
            this.lblUserTitle.Text = "label1";
            // 
            // picFriendHeader
            // 
            this.picFriendHeader.Image = ((System.Drawing.Image)(resources.GetObject("picFriendHeader.Image")));
            this.picFriendHeader.Location = new System.Drawing.Point(2, 2);
            this.picFriendHeader.Name = "picFriendHeader";
            this.picFriendHeader.Size = new System.Drawing.Size(26, 26);
            this.picFriendHeader.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.picFriendHeader.TabIndex = 1;
            this.picFriendHeader.TabStop = false;
            // 
            // txtMessage
            // 
            this.txtMessage.Location = new System.Drawing.Point(9, 230);
            this.txtMessage.Multiline = true;
            this.txtMessage.Name = "txtMessage";
            this.txtMessage.Size = new System.Drawing.Size(379, 90);
            this.txtMessage.TabIndex = 1;
            // 
            // btnClose
            // 
            this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
            this.btnClose.Location = new System.Drawing.Point(222, 326);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(75, 23);
            this.btnClose.TabIndex = 24;
            this.btnClose.Text = "关闭";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnSend
            // 
            this.btnSend.Image = ((System.Drawing.Image)(resources.GetObject("btnSend.Image")));
            this.btnSend.Location = new System.Drawing.Point(312, 326);
            this.btnSend.Name = "btnSend";
            this.btnSend.Size = new System.Drawing.Size(75, 23);
            this.btnSend.TabIndex = 23;
            this.btnSend.Text = "发送";
            this.btnSend.UseVisualStyleBackColor = true;
            this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
            // 
            // txtMsgHistory
            // 
            this.txtMsgHistory.BackColor = System.Drawing.Color.White;
            this.txtMsgHistory.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtMsgHistory.Location = new System.Drawing.Point(0, 30);
            this.txtMsgHistory.Multiline = true;
            this.txtMsgHistory.Name = "txtMsgHistory";
            this.txtMsgHistory.ReadOnly = true;
            this.txtMsgHistory.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtMsgHistory.Size = new System.Drawing.Size(377, 180);
            this.txtMsgHistory.TabIndex = 1;
            // 
            // panHistory
            // 
            this.panHistory.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panHistory.Controls.Add(this.txtMsgHistory);
            this.panHistory.Controls.Add(this.panTitle);
            this.panHistory.Location = new System.Drawing.Point(9, 12);
            this.panHistory.Name = "panHistory";
            this.panHistory.Size = new System.Drawing.Size(379, 212);
            this.panHistory.TabIndex = 25;
            // 
            // timer1
            // 
            this.timer1.Interval = 150;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // frmChat
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
            this.ClientSize = new System.Drawing.Size(398, 355);
            this.Controls.Add(this.panHistory);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnSend);
            this.Controls.Add(this.txtMessage);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "frmChat";
            this.Text = "frmChat";
            this.Load += new System.EventHandler(this.frmChat_Load);
            this.panTitle.ResumeLayout(false);
            this.panTitle.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picFriendHeader)).EndInit();
            this.panHistory.ResumeLayout(false);
            this.panHistory.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Panel panTitle;
        private System.Windows.Forms.TextBox txtMessage;
        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.Button btnSend;
        private System.Windows.Forms.PictureBox picFriendHeader;
        private System.Windows.Forms.Label lblUserTitle;
        private System.Windows.Forms.TextBox txtMsgHistory;
        private System.Windows.Forms.Panel panHistory;
        private System.Windows.Forms.Timer timer1;

    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -