📄 enrolform.designer.cs
字号:
namespace HotelManager
{
partial class EnrolForm
{
/// <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(EnrolForm));
this.lblName = new System.Windows.Forms.Label();
this.lblPassword = new System.Windows.Forms.Label();
this.lblGender = new System.Windows.Forms.Label();
this.lblDepartment = new System.Windows.Forms.Label();
this.lblType = new System.Windows.Forms.Label();
this.lblEmail = new System.Windows.Forms.Label();
this.cboType = new System.Windows.Forms.ComboBox();
this.txtName = new System.Windows.Forms.TextBox();
this.txtEmail = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.btnEnrol = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.rdoM = new System.Windows.Forms.RadioButton();
this.rdoF = new System.Windows.Forms.RadioButton();
this.gbGender = new System.Windows.Forms.GroupBox();
this.txtDepartment = new System.Windows.Forms.TextBox();
this.gbGender.SuspendLayout();
this.SuspendLayout();
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(54, 34);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(53, 12);
this.lblName.TabIndex = 0;
this.lblName.Text = "用户姓名";
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(54, 72);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(29, 12);
this.lblPassword.TabIndex = 1;
this.lblPassword.Text = "密码";
//
// lblGender
//
this.lblGender.AutoSize = true;
this.lblGender.Location = new System.Drawing.Point(54, 129);
this.lblGender.Name = "lblGender";
this.lblGender.Size = new System.Drawing.Size(29, 12);
this.lblGender.TabIndex = 2;
this.lblGender.Text = "性别";
//
// lblDepartment
//
this.lblDepartment.AutoSize = true;
this.lblDepartment.Location = new System.Drawing.Point(54, 242);
this.lblDepartment.Name = "lblDepartment";
this.lblDepartment.Size = new System.Drawing.Size(53, 12);
this.lblDepartment.TabIndex = 3;
this.lblDepartment.Text = "所在部门";
//
// lblType
//
this.lblType.AutoSize = true;
this.lblType.Location = new System.Drawing.Point(54, 294);
this.lblType.Name = "lblType";
this.lblType.Size = new System.Drawing.Size(53, 12);
this.lblType.TabIndex = 4;
this.lblType.Text = "用户类型";
//
// lblEmail
//
this.lblEmail.AutoSize = true;
this.lblEmail.Location = new System.Drawing.Point(54, 190);
this.lblEmail.Name = "lblEmail";
this.lblEmail.Size = new System.Drawing.Size(35, 12);
this.lblEmail.TabIndex = 5;
this.lblEmail.Text = "Email";
//
// cboType
//
this.cboType.FormattingEnabled = true;
this.cboType.Items.AddRange(new object[] {
"酒店管理员",
"前台服务员"});
this.cboType.Location = new System.Drawing.Point(135, 291);
this.cboType.Name = "cboType";
this.cboType.Size = new System.Drawing.Size(155, 20);
this.cboType.TabIndex = 7;
this.cboType.Text = "前台服务员";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(135, 34);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(155, 21);
this.txtName.TabIndex = 8;
//
// txtEmail
//
this.txtEmail.Location = new System.Drawing.Point(135, 184);
this.txtEmail.Name = "txtEmail";
this.txtEmail.Size = new System.Drawing.Size(155, 21);
this.txtEmail.TabIndex = 9;
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(135, 72);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(155, 21);
this.txtPassword.TabIndex = 11;
//
// btnEnrol
//
this.btnEnrol.Location = new System.Drawing.Point(88, 352);
this.btnEnrol.Name = "btnEnrol";
this.btnEnrol.Size = new System.Drawing.Size(75, 23);
this.btnEnrol.TabIndex = 12;
this.btnEnrol.Text = "注册";
this.btnEnrol.UseVisualStyleBackColor = true;
this.btnEnrol.Click += new System.EventHandler(this.btnEnrol_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(205, 352);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 13;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// rdoM
//
this.rdoM.AutoSize = true;
this.rdoM.Checked = true;
this.rdoM.Location = new System.Drawing.Point(27, 20);
this.rdoM.Name = "rdoM";
this.rdoM.Size = new System.Drawing.Size(35, 16);
this.rdoM.TabIndex = 14;
this.rdoM.TabStop = true;
this.rdoM.Text = "男";
this.rdoM.UseVisualStyleBackColor = true;
//
// rdoF
//
this.rdoF.AutoSize = true;
this.rdoF.Location = new System.Drawing.Point(90, 20);
this.rdoF.Name = "rdoF";
this.rdoF.Size = new System.Drawing.Size(35, 16);
this.rdoF.TabIndex = 15;
this.rdoF.Text = "女";
this.rdoF.UseVisualStyleBackColor = true;
//
// gbGender
//
this.gbGender.Controls.Add(this.rdoF);
this.gbGender.Controls.Add(this.rdoM);
this.gbGender.Location = new System.Drawing.Point(135, 110);
this.gbGender.Name = "gbGender";
this.gbGender.Size = new System.Drawing.Size(155, 48);
this.gbGender.TabIndex = 16;
this.gbGender.TabStop = false;
//
// txtDepartment
//
this.txtDepartment.Location = new System.Drawing.Point(135, 238);
this.txtDepartment.Name = "txtDepartment";
this.txtDepartment.Size = new System.Drawing.Size(155, 21);
this.txtDepartment.TabIndex = 17;
//
// EnrolForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(357, 419);
this.Controls.Add(this.txtDepartment);
this.Controls.Add(this.gbGender);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnEnrol);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.txtEmail);
this.Controls.Add(this.txtName);
this.Controls.Add(this.cboType);
this.Controls.Add(this.lblEmail);
this.Controls.Add(this.lblType);
this.Controls.Add(this.lblDepartment);
this.Controls.Add(this.lblGender);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.lblName);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "EnrolForm";
this.Text = "用户注册";
this.gbGender.ResumeLayout(false);
this.gbGender.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.Label lblGender;
private System.Windows.Forms.Label lblDepartment;
private System.Windows.Forms.Label lblType;
private System.Windows.Forms.Label lblEmail;
private System.Windows.Forms.ComboBox cboType;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.TextBox txtEmail;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Button btnEnrol;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.RadioButton rdoM;
private System.Windows.Forms.RadioButton rdoF;
private System.Windows.Forms.GroupBox gbGender;
private System.Windows.Forms.TextBox txtDepartment;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -