?? registerform.designer.cs
字號(hào):
?namespace MySchoolPrj.Login
{
partial class RegisterForm
{
/// <summary>
/// 必需的設(shè)計(jì)器變量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的資源。
/// </summary>
/// <param name="disposing">如果應(yīng)釋放托管資源,為 true;否則為 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗體設(shè)計(jì)器生成的代碼
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要
/// 使用代碼編輯器修改此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RegisterForm));
this.txtpwd = new System.Windows.Forms.TextBox();
this.txtName = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtPwd1 = new System.Windows.Forms.TextBox();
this.cmbGrade = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// txtpwd
//
this.txtpwd.Location = new System.Drawing.Point(105, 72);
this.txtpwd.Name = "txtpwd";
this.txtpwd.PasswordChar = '*';
this.txtpwd.Size = new System.Drawing.Size(126, 21);
this.txtpwd.TabIndex = 1;
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(105, 23);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(126, 21);
this.txtName.TabIndex = 0;
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(156, 228);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(66, 228);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "確定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(15, 179);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 12);
this.label4.TabIndex = 4;
this.label4.Text = "用戶類型:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(15, 72);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 12);
this.label3.TabIndex = 3;
this.label3.Text = "密碼:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(15, 29);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 6;
this.label2.Text = "用戶名:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(15, 128);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 3;
this.label5.Text = "確認(rèn)密碼:";
//
// txtPwd1
//
this.txtPwd1.Location = new System.Drawing.Point(105, 122);
this.txtPwd1.Name = "txtPwd1";
this.txtPwd1.PasswordChar = '*';
this.txtPwd1.Size = new System.Drawing.Size(126, 21);
this.txtPwd1.TabIndex = 2;
//
// cmbGrade
//
this.cmbGrade.FormattingEnabled = true;
this.cmbGrade.Location = new System.Drawing.Point(105, 176);
this.cmbGrade.Name = "cmbGrade";
this.cmbGrade.Size = new System.Drawing.Size(126, 20);
this.cmbGrade.TabIndex = 7;
//
// RegisterForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(255, 278);
this.Controls.Add(this.cmbGrade);
this.Controls.Add(this.txtPwd1);
this.Controls.Add(this.txtpwd);
this.Controls.Add(this.txtName);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "RegisterForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "注冊(cè)用戶";
this.Load += new System.EventHandler(this.RegisterForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtpwd;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox txtPwd1;
private System.Windows.Forms.ComboBox cmbGrade;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -