📄 frmoption.designer.cs
字号:
namespace JPMLab_LanTalker_Server
{
partial class frmOption
{
/// <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.lab_ServerPort = new System.Windows.Forms.Label();
this.txtServerPort = new System.Windows.Forms.TextBox();
this.btnSave = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lab_ServerPort
//
this.lab_ServerPort.AutoSize = true;
this.lab_ServerPort.Location = new System.Drawing.Point(11, 21);
this.lab_ServerPort.Name = "lab_ServerPort";
this.lab_ServerPort.Size = new System.Drawing.Size(71, 12);
this.lab_ServerPort.TabIndex = 0;
this.lab_ServerPort.Text = "服务器端口:";
//
// txtServerPort
//
this.txtServerPort.Location = new System.Drawing.Point(81, 18);
this.txtServerPort.Name = "txtServerPort";
this.txtServerPort.Size = new System.Drawing.Size(116, 21);
this.txtServerPort.TabIndex = 1;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(91, 48);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(51, 21);
this.btnSave.TabIndex = 2;
this.btnSave.Text = "保存";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(145, 48);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(51, 21);
this.btnCancel.TabIndex = 3;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// frmOption
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(214, 72);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.txtServerPort);
this.Controls.Add(this.lab_ServerPort);
this.Name = "frmOption";
this.Text = "服务器设置";
this.Load += new System.EventHandler(this.frmOption_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lab_ServerPort;
private System.Windows.Forms.TextBox txtServerPort;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnCancel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -