📄 form1.designer.cs
字号:
namespace AsyncTcpServer
{
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.buttonStart = new System.Windows.Forms.Button();
this.buttonStop = new System.Windows.Forms.Button();
this.buttonSend = new System.Windows.Forms.Button();
this.richTextBoxRecv = new System.Windows.Forms.RichTextBox();
this.richTextBoxSend = new System.Windows.Forms.RichTextBox();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = 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(29, 29);
this.listBoxStatus.Name = "listBoxStatus";
this.listBoxStatus.Size = new System.Drawing.Size(171, 64);
this.listBoxStatus.TabIndex = 0;
//
// buttonStart
//
this.buttonStart.Location = new System.Drawing.Point(216, 29);
this.buttonStart.Name = "buttonStart";
this.buttonStart.Size = new System.Drawing.Size(63, 23);
this.buttonStart.TabIndex = 1;
this.buttonStart.Text = "开始监听 ";
this.buttonStart.UseVisualStyleBackColor = true;
this.buttonStart.Click += new System.EventHandler(this.buttonStart_Click);
//
// buttonStop
//
this.buttonStop.Location = new System.Drawing.Point(216, 70);
this.buttonStop.Name = "buttonStop";
this.buttonStop.Size = new System.Drawing.Size(63, 23);
this.buttonStop.TabIndex = 2;
this.buttonStop.Text = "断开连接";
this.buttonStop.UseVisualStyleBackColor = true;
this.buttonStop.Click += new System.EventHandler(this.buttonStop_Click);
//
// buttonSend
//
this.buttonSend.Location = new System.Drawing.Point(299, 398);
this.buttonSend.Name = "buttonSend";
this.buttonSend.Size = new System.Drawing.Size(75, 23);
this.buttonSend.TabIndex = 3;
this.buttonSend.Text = "发送信息";
this.buttonSend.UseVisualStyleBackColor = true;
this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
//
// richTextBoxRecv
//
this.richTextBoxRecv.Location = new System.Drawing.Point(287, 137);
this.richTextBoxRecv.Name = "richTextBoxRecv";
this.richTextBoxRecv.Size = new System.Drawing.Size(192, 213);
this.richTextBoxRecv.TabIndex = 4;
this.richTextBoxRecv.Text = "";
//
// richTextBoxSend
//
this.richTextBoxSend.Location = new System.Drawing.Point(29, 137);
this.richTextBoxSend.Name = "richTextBoxSend";
this.richTextBoxSend.Size = new System.Drawing.Size(171, 213);
this.richTextBoxSend.TabIndex = 5;
this.richTextBoxSend.Text = "";
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(29, 400);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(212, 20);
this.comboBox1.TabIndex = 6;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 122);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 7;
this.label1.Text = "发送信息";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(285, 122);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 8;
this.label2.Text = "接受信息";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(27, 385);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 9;
this.label3.Text = "选择客户机";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(27, 14);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 10;
this.label4.Text = "状态栏";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(512, 444);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.richTextBoxSend);
this.Controls.Add(this.richTextBoxRecv);
this.Controls.Add(this.buttonSend);
this.Controls.Add(this.buttonStop);
this.Controls.Add(this.buttonStart);
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 buttonStart;
private System.Windows.Forms.Button buttonStop;
private System.Windows.Forms.Button buttonSend;
private System.Windows.Forms.RichTextBox richTextBoxRecv;
private System.Windows.Forms.RichTextBox richTextBoxSend;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -