📄 login_frm.designer.cs
字号:
namespace EasyChat
{
partial class login_frm
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.svrport_tb = new System.Windows.Forms.TextBox();
this.svrip_tb = new System.Windows.Forms.TextBox();
this.user_tb = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.login_btn = new System.Windows.Forms.Button();
this.cancel_btn = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.svrport_tb);
this.groupBox1.Controls.Add(this.svrip_tb);
this.groupBox1.Controls.Add(this.user_tb);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(28, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(251, 124);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "请登录";
//
// svrport_tb
//
this.svrport_tb.Location = new System.Drawing.Point(96, 83);
this.svrport_tb.Name = "svrport_tb";
this.svrport_tb.Size = new System.Drawing.Size(127, 21);
this.svrport_tb.TabIndex = 8;
//
// svrip_tb
//
this.svrip_tb.Location = new System.Drawing.Point(96, 52);
this.svrip_tb.Name = "svrip_tb";
this.svrip_tb.Size = new System.Drawing.Size(127, 21);
this.svrip_tb.TabIndex = 7;
//
// user_tb
//
this.user_tb.Location = new System.Drawing.Point(96, 20);
this.user_tb.MaxLength = 10;
this.user_tb.Name = "user_tb";
this.user_tb.Size = new System.Drawing.Size(127, 21);
this.user_tb.TabIndex = 6;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(27, 92);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 3;
this.label3.Text = "端口号:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(15, 61);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 2;
this.label2.Text = "服务器IP:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(27, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 0;
this.label1.Text = "用户名:";
//
// login_btn
//
this.login_btn.Location = new System.Drawing.Point(57, 149);
this.login_btn.Name = "login_btn";
this.login_btn.Size = new System.Drawing.Size(75, 23);
this.login_btn.TabIndex = 6;
this.login_btn.Text = "登 录";
this.login_btn.UseVisualStyleBackColor = true;
this.login_btn.Click += new System.EventHandler(this.login_btn_Click);
//
// cancel_btn
//
this.cancel_btn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancel_btn.Location = new System.Drawing.Point(176, 149);
this.cancel_btn.Name = "cancel_btn";
this.cancel_btn.Size = new System.Drawing.Size(75, 23);
this.cancel_btn.TabIndex = 7;
this.cancel_btn.Text = "取 消";
this.cancel_btn.UseVisualStyleBackColor = true;
this.cancel_btn.Click += new System.EventHandler(this.cancel_btn_Click);
//
// login_frm
//
this.AcceptButton = this.login_btn;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.CancelButton = this.cancel_btn;
this.ClientSize = new System.Drawing.Size(307, 188);
this.Controls.Add(this.cancel_btn);
this.Controls.Add(this.login_btn);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "login_frm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "用户登录";
this.Load += new System.EventHandler(this.login_frm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button login_btn;
private System.Windows.Forms.Button cancel_btn;
private System.Windows.Forms.TextBox user_tb;
private System.Windows.Forms.TextBox svrip_tb;
private System.Windows.Forms.TextBox svrport_tb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -