📄 onechat.designer.cs
字号:
namespace mychat1
{
partial class onechat
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtContent = new System.Windows.Forms.RichTextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtMessage = new System.Windows.Forms.RichTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.btnfile = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.btnSend = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtContent);
this.groupBox1.Location = new System.Drawing.Point(1, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(459, 178);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "聊天记录:";
this.groupBox1.Enter += new System.EventHandler(this.groupBox1_Enter);
//
// txtContent
//
this.txtContent.Location = new System.Drawing.Point(5, 20);
this.txtContent.Name = "txtContent";
this.txtContent.Size = new System.Drawing.Size(447, 152);
this.txtContent.TabIndex = 1;
this.txtContent.Text = "";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.txtMessage);
this.groupBox2.Location = new System.Drawing.Point(1, 206);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(459, 114);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "发送信息:";
//
// txtMessage
//
this.txtMessage.Location = new System.Drawing.Point(6, 20);
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(447, 85);
this.txtMessage.TabIndex = 2;
this.txtMessage.Text = "";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.btnSend);
this.groupBox3.Controls.Add(this.btnClose);
this.groupBox3.Controls.Add(this.btnfile);
this.groupBox3.Location = new System.Drawing.Point(0, 342);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(459, 51);
this.groupBox3.TabIndex = 2;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "控制区:";
//
// btnfile
//
this.btnfile.Location = new System.Drawing.Point(52, 19);
this.btnfile.Name = "btnfile";
this.btnfile.Size = new System.Drawing.Size(75, 23);
this.btnfile.TabIndex = 0;
this.btnfile.Text = "传送文件";
this.btnfile.UseVisualStyleBackColor = true;
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(183, 19);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 1;
this.btnClose.Text = "关闭";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(325, 19);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(75, 23);
this.btnSend.TabIndex = 2;
this.btnSend.Text = "发送";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// onechat
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(460, 409);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "onechat";
this.Text = "onechat";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.onechat_FormClosing);
this.Load += new System.EventHandler(this.onechat_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RichTextBox txtContent;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.RichTextBox txtMessage;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnfile;
private System.Windows.Forms.Button btnSend;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -