login.designer.cs
来自「系统简介: 本系统是一个用于管理学生毕业系统的简单系统。系统包含的信息包括学生」· CS 代码 · 共 121 行
CS
121 行
namespace graduationNET
{
partial class login
{
/// <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.ok_btn = new System.Windows.Forms.Button();
this.cannel_btn = new System.Windows.Forms.Button();
this.idlabel = new System.Windows.Forms.Label();
this.pwlabel = new System.Windows.Forms.Label();
this.idtxt = new System.Windows.Forms.TextBox();
this.pwtxt = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// ok_btn
//
this.ok_btn.Location = new System.Drawing.Point(51, 109);
this.ok_btn.Name = "ok_btn";
this.ok_btn.Size = new System.Drawing.Size(75, 23);
this.ok_btn.TabIndex = 0;
this.ok_btn.Text = "确定";
this.ok_btn.UseVisualStyleBackColor = true;
this.ok_btn.Click += new System.EventHandler(this.ok_btn_Click);
//
// cannel_btn
//
this.cannel_btn.Location = new System.Drawing.Point(154, 109);
this.cannel_btn.Name = "cannel_btn";
this.cannel_btn.Size = new System.Drawing.Size(75, 23);
this.cannel_btn.TabIndex = 1;
this.cannel_btn.Text = "取消";
this.cannel_btn.UseVisualStyleBackColor = true;
this.cannel_btn.Click += new System.EventHandler(this.cannel_btn_Click);
//
// idlabel
//
this.idlabel.AutoSize = true;
this.idlabel.Location = new System.Drawing.Point(54, 30);
this.idlabel.Name = "idlabel";
this.idlabel.Size = new System.Drawing.Size(47, 12);
this.idlabel.TabIndex = 2;
this.idlabel.Text = "用户名:";
//
// pwlabel
//
this.pwlabel.AutoSize = true;
this.pwlabel.Location = new System.Drawing.Point(66, 67);
this.pwlabel.Name = "pwlabel";
this.pwlabel.Size = new System.Drawing.Size(35, 12);
this.pwlabel.TabIndex = 3;
this.pwlabel.Text = "密码:";
//
// idtxt
//
this.idtxt.Location = new System.Drawing.Point(126, 26);
this.idtxt.Name = "idtxt";
this.idtxt.Size = new System.Drawing.Size(100, 21);
this.idtxt.TabIndex = 4;
//
// pwtxt
//
this.pwtxt.Location = new System.Drawing.Point(126, 63);
this.pwtxt.Name = "pwtxt";
this.pwtxt.PasswordChar = '*';
this.pwtxt.Size = new System.Drawing.Size(100, 21);
this.pwtxt.TabIndex = 5;
//
// login
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(279, 154);
this.Controls.Add(this.pwtxt);
this.Controls.Add(this.idtxt);
this.Controls.Add(this.pwlabel);
this.Controls.Add(this.idlabel);
this.Controls.Add(this.cannel_btn);
this.Controls.Add(this.ok_btn);
this.Name = "login";
this.Text = "登录";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button ok_btn;
private System.Windows.Forms.Button cannel_btn;
private System.Windows.Forms.Label idlabel;
private System.Windows.Forms.Label pwlabel;
private System.Windows.Forms.TextBox idtxt;
private System.Windows.Forms.TextBox pwtxt;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?