📄 login.designer.cs
字号:
namespace Myschool
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Login));
this.txtname = new System.Windows.Forms.TextBox();
this.txtpwd = new System.Windows.Forms.TextBox();
this.comtype = new System.Windows.Forms.ComboBox();
this.btnlogin = new System.Windows.Forms.Button();
this.btngiveup = new System.Windows.Forms.Button();
this.lblskin = new System.Windows.Forms.Label();
this.radblue = new System.Windows.Forms.RadioButton();
this.radgreen = new System.Windows.Forms.RadioButton();
this.skinEngine = new Sunisoft.IrisSkin.SkinEngine(((System.ComponentModel.Component)(this)));
this.SuspendLayout();
//
// txtname
//
this.txtname.Location = new System.Drawing.Point(201, 147);
this.txtname.Name = "txtname";
this.txtname.Size = new System.Drawing.Size(101, 21);
this.txtname.TabIndex = 0;
//
// txtpwd
//
this.txtpwd.Location = new System.Drawing.Point(201, 174);
this.txtpwd.Name = "txtpwd";
this.txtpwd.PasswordChar = '*';
this.txtpwd.Size = new System.Drawing.Size(101, 21);
this.txtpwd.TabIndex = 1;
//
// comtype
//
this.comtype.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comtype.FormattingEnabled = true;
this.comtype.Items.AddRange(new object[] {
"教员",
"学员",
"管理员"});
this.comtype.Location = new System.Drawing.Point(201, 211);
this.comtype.Name = "comtype";
this.comtype.Size = new System.Drawing.Size(101, 20);
this.comtype.TabIndex = 2;
//
// btnlogin
//
this.btnlogin.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.btnlogin.Location = new System.Drawing.Point(145, 261);
this.btnlogin.Name = "btnlogin";
this.btnlogin.Size = new System.Drawing.Size(85, 30);
this.btnlogin.TabIndex = 3;
this.btnlogin.Text = "登录";
this.btnlogin.UseVisualStyleBackColor = false;
this.btnlogin.Click += new System.EventHandler(this.btnlogin_Click);
this.btnlogin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.btnlogin_KeyDown);
//
// btngiveup
//
this.btngiveup.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.btngiveup.Location = new System.Drawing.Point(246, 261);
this.btngiveup.Name = "btngiveup";
this.btngiveup.Size = new System.Drawing.Size(85, 30);
this.btngiveup.TabIndex = 4;
this.btngiveup.Text = "取消";
this.btngiveup.UseVisualStyleBackColor = false;
this.btngiveup.Click += new System.EventHandler(this.btngiveup_Click);
//
// lblskin
//
this.lblskin.AutoSize = true;
this.lblskin.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.lblskin.Font = new System.Drawing.Font("新宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblskin.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.lblskin.Location = new System.Drawing.Point(143, 239);
this.lblskin.Name = "lblskin";
this.lblskin.Size = new System.Drawing.Size(53, 12);
this.lblskin.TabIndex = 5;
this.lblskin.Text = "皮肤选择";
//
// radblue
//
this.radblue.AutoSize = true;
this.radblue.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.radblue.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radblue.BackgroundImage")));
this.radblue.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.radblue.Location = new System.Drawing.Point(200, 237);
this.radblue.Name = "radblue";
this.radblue.Size = new System.Drawing.Size(47, 16);
this.radblue.TabIndex = 6;
this.radblue.TabStop = true;
this.radblue.Text = "蓝色";
this.radblue.UseVisualStyleBackColor = false;
this.radblue.Click += new System.EventHandler(this.radblue_Click);
//
// radgreen
//
this.radgreen.AutoSize = true;
this.radgreen.BackColor = System.Drawing.SystemColors.GradientActiveCaption;
this.radgreen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("radgreen.BackgroundImage")));
this.radgreen.ForeColor = System.Drawing.SystemColors.ActiveCaptionText;
this.radgreen.Location = new System.Drawing.Point(253, 237);
this.radgreen.Name = "radgreen";
this.radgreen.Size = new System.Drawing.Size(47, 16);
this.radgreen.TabIndex = 7;
this.radgreen.TabStop = true;
this.radgreen.Text = "绿色";
this.radgreen.UseVisualStyleBackColor = false;
this.radgreen.Click += new System.EventHandler(this.radgreen_Click);
//
// skinEngine
//
this.skinEngine.SerialNumber = "";
this.skinEngine.SkinFile = null;
//
// Login
//
this.AcceptButton = this.btnlogin;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(497, 303);
this.Controls.Add(this.radgreen);
this.Controls.Add(this.radblue);
this.Controls.Add(this.lblskin);
this.Controls.Add(this.btngiveup);
this.Controls.Add(this.btnlogin);
this.Controls.Add(this.comtype);
this.Controls.Add(this.txtpwd);
this.Controls.Add(this.txtname);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Login";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登录";
this.Load += new System.EventHandler(this.Login_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtname;
private System.Windows.Forms.TextBox txtpwd;
private System.Windows.Forms.ComboBox comtype;
private System.Windows.Forms.Button btnlogin;
private System.Windows.Forms.Button btngiveup;
private System.Windows.Forms.Label lblskin;
private System.Windows.Forms.RadioButton radblue;
private System.Windows.Forms.RadioButton radgreen;
private Sunisoft.IrisSkin.SkinEngine skinEngine;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -