📄 form1.designer.cs
字号:
namespace AsyncTcpClient
{
partial class Form1
{
/// <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.listBoxStatus = new System.Windows.Forms.ListBox();
this.buttonConnect = new System.Windows.Forms.Button();
this.richTextBoxRecv = new System.Windows.Forms.RichTextBox();
this.richTextBoxSend = new System.Windows.Forms.RichTextBox();
this.buttonSend = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// listBoxStatus
//
this.listBoxStatus.FormattingEnabled = true;
this.listBoxStatus.HorizontalScrollbar = true;
this.listBoxStatus.ItemHeight = 12;
this.listBoxStatus.Location = new System.Drawing.Point(33, 37);
this.listBoxStatus.Name = "listBoxStatus";
this.listBoxStatus.Size = new System.Drawing.Size(229, 100);
this.listBoxStatus.TabIndex = 0;
//
// buttonConnect
//
this.buttonConnect.Location = new System.Drawing.Point(299, 37);
this.buttonConnect.Name = "buttonConnect";
this.buttonConnect.Size = new System.Drawing.Size(69, 30);
this.buttonConnect.TabIndex = 1;
this.buttonConnect.Text = "连接";
this.buttonConnect.UseVisualStyleBackColor = true;
this.buttonConnect.Click += new System.EventHandler(this.buttonConnect_Click);
//
// richTextBoxRecv
//
this.richTextBoxRecv.Location = new System.Drawing.Point(299, 183);
this.richTextBoxRecv.Name = "richTextBoxRecv";
this.richTextBoxRecv.Size = new System.Drawing.Size(220, 224);
this.richTextBoxRecv.TabIndex = 2;
this.richTextBoxRecv.Text = "";
//
// richTextBoxSend
//
this.richTextBoxSend.Location = new System.Drawing.Point(33, 183);
this.richTextBoxSend.Name = "richTextBoxSend";
this.richTextBoxSend.Size = new System.Drawing.Size(229, 224);
this.richTextBoxSend.TabIndex = 3;
this.richTextBoxSend.Text = "";
//
// buttonSend
//
this.buttonSend.Location = new System.Drawing.Point(33, 443);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(67, 32);
this.buttonSend.TabIndex = 4;
this.buttonSend.Text = "发送";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(31, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 5;
this.label1.Text = "状态栏";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(31, 168);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 6;
this.label2.Text = "发送信息";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(297, 168);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 7;
this.label3.Text = "接收信息";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(533, 480);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonSend);
this.Controls.Add(this.richTextBoxSend);
this.Controls.Add(this.richTextBoxRecv);
this.Controls.Add(this.buttonConnect);
this.Controls.Add(this.listBoxStatus);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listBoxStatus;
private System.Windows.Forms.Button buttonConnect;
private System.Windows.Forms.RichTextBox richTextBoxRecv;
private System.Windows.Forms.RichTextBox richTextBoxSend;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -