📄 form1.designer.cs
字号:
namespace LsxwClient
{
partial class form
{
/// <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.clientReceive = new System.Windows.Forms.TextBox();
this.clientSend = new System.Windows.Forms.TextBox();
this.clientInfo = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// clientReceive
//
this.clientReceive.Location = new System.Drawing.Point(76, 47);
this.clientReceive.Multiline = true;
this.clientReceive.Name = "clientReceive";
this.clientReceive.ReadOnly = true;
this.clientReceive.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.clientReceive.Size = new System.Drawing.Size(613, 90);
this.clientReceive.TabIndex = 0;
//
// clientSend
//
this.clientSend.Location = new System.Drawing.Point(76, 167);
this.clientSend.Multiline = true;
this.clientSend.Name = "clientSend";
this.clientSend.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.clientSend.Size = new System.Drawing.Size(613, 91);
this.clientSend.TabIndex = 1;
//
// clientInfo
//
this.clientInfo.Location = new System.Drawing.Point(76, 286);
this.clientInfo.Multiline = true;
this.clientInfo.Name = "clientInfo";
this.clientInfo.ReadOnly = true;
this.clientInfo.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.clientInfo.Size = new System.Drawing.Size(613, 90);
this.clientInfo.TabIndex = 2;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(321, 408);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(160, 33);
this.btnSend.TabIndex = 3;
this.btnSend.Text = "发 送";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// form
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(804, 466);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.clientInfo);
this.Controls.Add(this.clientSend);
this.Controls.Add(this.clientReceive);
this.Name = "form";
this.Text = "客户端程序";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox clientReceive;
private System.Windows.Forms.TextBox clientSend;
private System.Windows.Forms.TextBox clientInfo;
private System.Windows.Forms.Button btnSend;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -