📄 set.designer.cs
字号:
namespace Server
{
partial class Set
{
/// <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.IPList = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.Port = new System.Windows.Forms.TextBox();
this.CmdSave = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// IPList
//
this.IPList.FormattingEnabled = true;
this.IPList.ItemHeight = 12;
this.IPList.Location = new System.Drawing.Point(12, 32);
this.IPList.Name = "IPList";
this.IPList.Size = new System.Drawing.Size(268, 88);
this.IPList.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 132);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 1;
this.label1.Text = "服务端口:";
//
// Port
//
this.Port.Location = new System.Drawing.Point(83, 126);
this.Port.Name = "Port";
this.Port.Size = new System.Drawing.Size(46, 21);
this.Port.TabIndex = 2;
this.Port.Text = "6600";
//
// CmdSave
//
this.CmdSave.Location = new System.Drawing.Point(107, 168);
this.CmdSave.Name = "CmdSave";
this.CmdSave.Size = new System.Drawing.Size(75, 23);
this.CmdSave.TabIndex = 3;
this.CmdSave.Text = "保存参数";
this.CmdSave.UseVisualStyleBackColor = true;
this.CmdSave.Click += new System.EventHandler(this.CmdSave_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 13);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(77, 12);
this.label2.TabIndex = 4;
this.label2.Text = "当前IP列表:";
//
// Set
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 220);
this.Controls.Add(this.label2);
this.Controls.Add(this.CmdSave);
this.Controls.Add(this.Port);
this.Controls.Add(this.label1);
this.Controls.Add(this.IPList);
this.MaximizeBox = false;
this.Name = "Set";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "配置参数";
this.Load += new System.EventHandler(this.Set_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox IPList;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox Port;
private System.Windows.Forms.Button CmdSave;
private System.Windows.Forms.Label label2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -