📄 form1.designer.cs
字号:
namespace GRRSServer
{
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.listBox1 = new System.Windows.Forms.ListBox();
this.btnOpen = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.btnSend = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 12;
this.listBox1.Location = new System.Drawing.Point(5, 151);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(673, 316);
this.listBox1.TabIndex = 0;
//
// btnOpen
//
this.btnOpen.Location = new System.Drawing.Point(605, 70);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Size = new System.Drawing.Size(73, 26);
this.btnOpen.TabIndex = 1;
this.btnOpen.Text = "打开服务器";
this.btnOpen.UseVisualStyleBackColor = true;
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(605, 102);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(73, 26);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "关闭服务器";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(5, 33);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(578, 102);
this.textBox1.TabIndex = 3;
//
// btnSend
//
this.btnSend.Location = new System.Drawing.Point(605, 33);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(73, 26);
this.btnSend.TabIndex = 4;
this.btnSend.Text = "发送信息";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(690, 476);
this.Controls.Add(this.btnSend);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnOpen);
this.Controls.Add(this.listBox1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button btnOpen;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button btnSend;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -