using System.Windows.Forms; namespace Go_Frp { partial class Login { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.login_but = new System.Windows.Forms.Button(); this.logout_but = new System.Windows.Forms.Button(); this.user_lab = new System.Windows.Forms.Label(); this.pwd_lab = new System.Windows.Forms.Label(); this.username_text = new System.Windows.Forms.TextBox(); this.password_text = new System.Windows.Forms.TextBox(); this.ts_lab = new System.Windows.Forms.Label(); this.SuspendLayout(); // // login_but // this.login_but.Location = new System.Drawing.Point(12, 126); this.login_but.Name = "login_but"; this.login_but.Size = new System.Drawing.Size(75, 23); this.login_but.TabIndex = 0; this.login_but.Text = "登录"; this.login_but.UseVisualStyleBackColor = true; this.login_but.Click += new System.EventHandler(this.login_but_Click); // // logout_but // this.logout_but.Location = new System.Drawing.Point(237, 126); this.logout_but.Name = "logout_but"; this.logout_but.Size = new System.Drawing.Size(75, 23); this.logout_but.TabIndex = 1; this.logout_but.Text = "退出"; this.logout_but.UseVisualStyleBackColor = true; this.logout_but.Click += new System.EventHandler(this.logout_but_Click); // // user_lab // this.user_lab.AutoSize = true; this.user_lab.Location = new System.Drawing.Point(46, 30); this.user_lab.Name = "user_lab"; this.user_lab.Size = new System.Drawing.Size(53, 12); this.user_lab.TabIndex = 2; this.user_lab.Text = "用户名:"; // // pwd_lab // this.pwd_lab.AutoSize = true; this.pwd_lab.Location = new System.Drawing.Point(58, 57); this.pwd_lab.Name = "pwd_lab"; this.pwd_lab.Size = new System.Drawing.Size(41, 12); this.pwd_lab.TabIndex = 3; this.pwd_lab.Text = "密码:"; // // username_text // this.username_text.Location = new System.Drawing.Point(105, 27); this.username_text.Name = "username_text"; this.username_text.Size = new System.Drawing.Size(161, 21); this.username_text.TabIndex = 4; // // password_text // this.password_text.Location = new System.Drawing.Point(105, 54); this.password_text.Name = "password_text"; this.password_text.Size = new System.Drawing.Size(161, 21); this.password_text.TabIndex = 5; // // ts_lab // this.ts_lab.AutoSize = true; this.ts_lab.Location = new System.Drawing.Point(105, 100); this.ts_lab.Name = "ts_lab"; this.ts_lab.Size = new System.Drawing.Size(0, 12); this.ts_lab.TabIndex = 6; // // Login // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(324, 161); this.Controls.Add(this.ts_lab); this.Controls.Add(this.password_text); this.Controls.Add(this.username_text); this.Controls.Add(this.pwd_lab); this.Controls.Add(this.user_lab); this.Controls.Add(this.logout_but); this.Controls.Add(this.login_but); this.Name = "Login"; this.Text = "Login"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button login_but; private System.Windows.Forms.Button logout_but; private System.Windows.Forms.Label user_lab; private System.Windows.Forms.Label pwd_lab; private System.Windows.Forms.TextBox username_text; private System.Windows.Forms.TextBox password_text; private Label ts_lab; } }