📄 form1.designer.cs
字号:
namespace ListeningPort
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.lblText = new System.Windows.Forms.Label();
this.rtBox = new System.Windows.Forms.RichTextBox();
this.SuspendLayout();
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Red;
this.button1.Location = new System.Drawing.Point(3, 21);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "Listen";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click_1);
//
// lblText
//
this.lblText.AutoSize = true;
this.lblText.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblText.ForeColor = System.Drawing.Color.Yellow;
this.lblText.Location = new System.Drawing.Point(98, 31);
this.lblText.Name = "lblText";
this.lblText.Size = new System.Drawing.Size(0, 13);
this.lblText.TabIndex = 1;
//
// rtBox
//
this.rtBox.BackColor = System.Drawing.Color.DarkRed;
this.rtBox.ForeColor = System.Drawing.Color.Yellow;
this.rtBox.Location = new System.Drawing.Point(3, 75);
this.rtBox.Name = "rtBox";
this.rtBox.ReadOnly = true;
this.rtBox.Size = new System.Drawing.Size(118, 156);
this.rtBox.TabIndex = 2;
this.rtBox.Text = "";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.rtBox);
this.Controls.Add(this.lblText);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.ShowIcon = false;
this.Text = "Socket - Server";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Label lblText;
private System.Windows.Forms.RichTextBox rtBox;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -