📄 loginform.designer.cs
字号:
namespace MySchoolPrj.Login
{
partial class LoginForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.rbtnOrange = new System.Windows.Forms.RadioButton();
this.rbtnBlue = new System.Windows.Forms.RadioButton();
this.rbtnGreen = new System.Windows.Forms.RadioButton();
this.panel1 = new System.Windows.Forms.Panel();
this.txtPwd = new System.Windows.Forms.TextBox();
this.txtName = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.notifyLogin = new System.Windows.Forms.NotifyIcon(this.components);
this.cms = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiClose = new System.Windows.Forms.ToolStripMenuItem();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.cms.SuspendLayout();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(281, 250);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 3;
this.btnCancel.Text = "退出";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(200, 250);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(10, 163);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 11;
this.label2.Text = "登录风格";
//
// panel2
//
this.panel2.Controls.Add(this.rbtnOrange);
this.panel2.Controls.Add(this.rbtnBlue);
this.panel2.Controls.Add(this.rbtnGreen);
this.panel2.Location = new System.Drawing.Point(12, 178);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(339, 51);
this.panel2.TabIndex = 1;
//
// rbtnOrange
//
this.rbtnOrange.AutoSize = true;
this.rbtnOrange.Location = new System.Drawing.Point(237, 21);
this.rbtnOrange.Name = "rbtnOrange";
this.rbtnOrange.Size = new System.Drawing.Size(71, 16);
this.rbtnOrange.TabIndex = 0;
this.rbtnOrange.TabStop = true;
this.rbtnOrange.Text = "橙色风暴";
this.rbtnOrange.UseVisualStyleBackColor = true;
this.rbtnOrange.CheckedChanged += new System.EventHandler(this.rbtnOrange_CheckedChanged);
//
// rbtnBlue
//
this.rbtnBlue.AutoSize = true;
this.rbtnBlue.Location = new System.Drawing.Point(134, 21);
this.rbtnBlue.Name = "rbtnBlue";
this.rbtnBlue.Size = new System.Drawing.Size(71, 16);
this.rbtnBlue.TabIndex = 1;
this.rbtnBlue.TabStop = true;
this.rbtnBlue.Text = "蓝色经典";
this.rbtnBlue.UseVisualStyleBackColor = true;
this.rbtnBlue.CheckedChanged += new System.EventHandler(this.rbtnBlue_CheckedChanged);
//
// rbtnGreen
//
this.rbtnGreen.AutoSize = true;
this.rbtnGreen.Location = new System.Drawing.Point(31, 21);
this.rbtnGreen.Name = "rbtnGreen";
this.rbtnGreen.Size = new System.Drawing.Size(71, 16);
this.rbtnGreen.TabIndex = 2;
this.rbtnGreen.TabStop = true;
this.rbtnGreen.Text = "绿色风情";
this.rbtnGreen.UseVisualStyleBackColor = true;
this.rbtnGreen.CheckedChanged += new System.EventHandler(this.rbtnGreen_CheckedChanged);
//
// panel1
//
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.panel1.Controls.Add(this.txtPwd);
this.panel1.Controls.Add(this.txtName);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label3);
this.panel1.Location = new System.Drawing.Point(12, 28);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(339, 119);
this.panel1.TabIndex = 0;
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(132, 72);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(155, 21);
this.txtPwd.TabIndex = 1;
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(132, 28);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(155, 21);
this.txtName.TabIndex = 0;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(47, 75);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(53, 12);
this.label4.TabIndex = 1;
this.label4.Text = "密 码:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(47, 31);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 1;
this.label3.Text = "用户名:";
//
// notifyLogin
//
this.notifyLogin.ContextMenuStrip = this.cms;
this.notifyLogin.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyLogin.Icon")));
this.notifyLogin.Text = "notifyIcon1";
this.notifyLogin.Visible = true;
//
// cms
//
this.cms.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiClose});
this.cms.Name = "cms";
this.cms.Size = new System.Drawing.Size(101, 26);
//
// tsmiClose
//
this.tsmiClose.Name = "tsmiClose";
this.tsmiClose.Size = new System.Drawing.Size(100, 22);
this.tsmiClose.Text = "退出";
this.tsmiClose.Click += new System.EventHandler(this.tsmiClose_Click);
//
// LoginForm
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(368, 287);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.label2);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "LoginForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登陆";
this.Load += new System.EventHandler(this.LoginForm_Load);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LoginForm_FormClosed);
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.cms.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.RadioButton rbtnOrange;
private System.Windows.Forms.RadioButton rbtnBlue;
private System.Windows.Forms.RadioButton rbtnGreen;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NotifyIcon notifyLogin;
private System.Windows.Forms.ContextMenuStrip cms;
private System.Windows.Forms.ToolStripMenuItem tsmiClose;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -