📄 setform.designer.cs
字号:
namespace SetServer
{
partial class SetForm
{
/// <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.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.ok = new System.Windows.Forms.Button();
this.cancel = new System.Windows.Forms.Button();
this.server_name = new System.Windows.Forms.TextBox();
this.sa_name = new System.Windows.Forms.TextBox();
this.pass = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "服务器名称";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 54);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 1;
this.label2.Text = "超级用户名";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 85);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(59, 12);
this.label3.TabIndex = 2;
this.label3.Text = "口 令";
//
// ok
//
this.ok.Location = new System.Drawing.Point(14, 112);
this.ok.Name = "ok";
this.ok.Size = new System.Drawing.Size(75, 23);
this.ok.TabIndex = 3;
this.ok.Text = "确 定";
this.ok.UseVisualStyleBackColor = true;
this.ok.Click += new System.EventHandler(this.ok_Click);
//
// cancel
//
this.cancel.Location = new System.Drawing.Point(129, 112);
this.cancel.Name = "cancel";
this.cancel.Size = new System.Drawing.Size(75, 23);
this.cancel.TabIndex = 4;
this.cancel.Text = "取 消";
this.cancel.UseVisualStyleBackColor = true;
this.cancel.Click += new System.EventHandler(this.cancel_Click);
//
// server_name
//
this.server_name.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.server_name.Location = new System.Drawing.Point(92, 17);
this.server_name.Name = "server_name";
this.server_name.Size = new System.Drawing.Size(100, 23);
this.server_name.TabIndex = 5;
//
// sa_name
//
this.sa_name.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.sa_name.Location = new System.Drawing.Point(92, 54);
this.sa_name.Name = "sa_name";
this.sa_name.Size = new System.Drawing.Size(100, 23);
this.sa_name.TabIndex = 6;
//
// pass
//
this.pass.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.pass.Location = new System.Drawing.Point(92, 85);
this.pass.Name = "pass";
this.pass.PasswordChar = '*';
this.pass.Size = new System.Drawing.Size(100, 23);
this.pass.TabIndex = 7;
this.pass.UseSystemPasswordChar = true;
//
// SetForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(228, 144);
this.Controls.Add(this.pass);
this.Controls.Add(this.sa_name);
this.Controls.Add(this.server_name);
this.Controls.Add(this.cancel);
this.Controls.Add(this.ok);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "SetForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "服务器设置";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button ok;
private System.Windows.Forms.Button cancel;
private System.Windows.Forms.TextBox server_name;
private System.Windows.Forms.TextBox sa_name;
private System.Windows.Forms.TextBox pass;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -