📄 loginin.designer.cs
字号:
namespace StudentManager
{
partial class LoginIn
{
/// <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.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBoxID = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.textBoxpassword = new System.Windows.Forms.TextBox();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.btnApply = new System.Windows.Forms.Button();
this.btncancle = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(249, 62);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(495, 33);
this.label1.TabIndex = 0;
this.label1.Text = "欢迎进入浙江林学院学生管理系统";
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(355, 196);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(317, 212);
this.richTextBox1.TabIndex = 1;
this.richTextBox1.Text = "";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(386, 242);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 12);
this.label2.TabIndex = 2;
this.label2.Text = "学号 :";
//
// textBoxID
//
this.textBoxID.Location = new System.Drawing.Point(452, 239);
this.textBoxID.Name = "textBoxID";
this.textBoxID.Size = new System.Drawing.Size(182, 21);
this.textBoxID.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.White;
this.label3.Location = new System.Drawing.Point(386, 285);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(47, 12);
this.label3.TabIndex = 4;
this.label3.Text = "密码 :";
//
// textBoxpassword
//
this.textBoxpassword.Location = new System.Drawing.Point(452, 282);
this.textBoxpassword.Name = "textBoxpassword";
this.textBoxpassword.PasswordChar = '*';
this.textBoxpassword.Size = new System.Drawing.Size(180, 21);
this.textBoxpassword.TabIndex = 5;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.BackColor = System.Drawing.Color.White;
this.radioButton1.Location = new System.Drawing.Point(443, 330);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(47, 16);
this.radioButton1.TabIndex = 6;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "学生";
this.radioButton1.UseVisualStyleBackColor = false;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.BackColor = System.Drawing.Color.White;
this.radioButton2.Location = new System.Drawing.Point(560, 330);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(47, 16);
this.radioButton2.TabIndex = 7;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "教师";
this.radioButton2.UseVisualStyleBackColor = false;
//
// btnApply
//
this.btnApply.Location = new System.Drawing.Point(415, 370);
this.btnApply.Name = "btnApply";
this.btnApply.Size = new System.Drawing.Size(75, 23);
this.btnApply.TabIndex = 8;
this.btnApply.Text = "登陆";
this.btnApply.UseVisualStyleBackColor = true;
this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
//
// btncancle
//
this.btncancle.Location = new System.Drawing.Point(557, 370);
this.btncancle.Name = "btncancle";
this.btncancle.Size = new System.Drawing.Size(75, 23);
this.btncancle.TabIndex = 9;
this.btncancle.Text = "取消";
this.btncancle.UseVisualStyleBackColor = true;
this.btncancle.Click += new System.EventHandler(this.btncancle_Click);
//
// LoginIn
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.ClientSize = new System.Drawing.Size(791, 442);
this.Controls.Add(this.btncancle);
this.Controls.Add(this.btnApply);
this.Controls.Add(this.radioButton2);
this.Controls.Add(this.radioButton1);
this.Controls.Add(this.textBoxpassword);
this.Controls.Add(this.label3);
this.Controls.Add(this.textBoxID);
this.Controls.Add(this.label2);
this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.label1);
this.Name = "LoginIn";
this.Text = "学生登录";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.LoginIn_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxID;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBoxpassword;
private System.Windows.Forms.RadioButton radioButton1;
private System.Windows.Forms.RadioButton radioButton2;
private System.Windows.Forms.Button btnApply;
private System.Windows.Forms.Button btncancle;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -