📄 form1.designer.cs
字号:
namespace Example17_5
{
partial class frmMain
{
/// <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.rdoFemale = new System.Windows.Forms.RadioButton();
this.rdoMale = new System.Windows.Forms.RadioButton();
this.txtHelp = new System.Windows.Forms.TextBox();
this.txtAddress = new System.Windows.Forms.TextBox();
this.lblAddress = new System.Windows.Forms.Label();
this.txtAgain = new System.Windows.Forms.TextBox();
this.lblAgain = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.lblPassword = new System.Windows.Forms.Label();
this.lblName = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkMovie = new System.Windows.Forms.CheckBox();
this.chkSport = new System.Windows.Forms.CheckBox();
this.chkMusic = new System.Windows.Forms.CheckBox();
this.btnCancle = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// rdoFemale
//
this.rdoFemale.AutoSize = true;
this.rdoFemale.Location = new System.Drawing.Point(200, 17);
this.rdoFemale.Name = "rdoFemale";
this.rdoFemale.Size = new System.Drawing.Size(35, 16);
this.rdoFemale.TabIndex = 35;
this.rdoFemale.Text = "女";
this.rdoFemale.UseVisualStyleBackColor = true;
//
// rdoMale
//
this.rdoMale.AutoSize = true;
this.rdoMale.Checked = true;
this.rdoMale.Location = new System.Drawing.Point(135, 17);
this.rdoMale.Name = "rdoMale";
this.rdoMale.Size = new System.Drawing.Size(35, 16);
this.rdoMale.TabIndex = 34;
this.rdoMale.TabStop = true;
this.rdoMale.Text = "男";
this.rdoMale.UseVisualStyleBackColor = true;
//
// txtHelp
//
this.txtHelp.Location = new System.Drawing.Point(12, 215);
this.txtHelp.Multiline = true;
this.txtHelp.Name = "txtHelp";
this.txtHelp.ReadOnly = true;
this.txtHelp.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtHelp.Size = new System.Drawing.Size(268, 54);
this.txtHelp.TabIndex = 33;
//
// txtAddress
//
this.txtAddress.Location = new System.Drawing.Point(147, 90);
this.txtAddress.Name = "txtAddress";
this.txtAddress.Size = new System.Drawing.Size(100, 21);
this.txtAddress.TabIndex = 32;
this.txtAddress.Enter += new System.EventHandler(this.txtAddress_Enter);
//
// lblAddress
//
this.lblAddress.AutoSize = true;
this.lblAddress.Location = new System.Drawing.Point(69, 93);
this.lblAddress.Name = "lblAddress";
this.lblAddress.Size = new System.Drawing.Size(29, 12);
this.lblAddress.TabIndex = 31;
this.lblAddress.Text = "住址";
//
// txtAgain
//
this.txtAgain.Location = new System.Drawing.Point(147, 63);
this.txtAgain.Name = "txtAgain";
this.txtAgain.PasswordChar = '*';
this.txtAgain.Size = new System.Drawing.Size(100, 21);
this.txtAgain.TabIndex = 29;
this.txtAgain.Enter += new System.EventHandler(this.txtAgain_Enter);
this.txtAgain.Validating += new System.ComponentModel.CancelEventHandler(this.txtAgain_Validating);
//
// lblAgain
//
this.lblAgain.AutoSize = true;
this.lblAgain.Location = new System.Drawing.Point(45, 66);
this.lblAgain.Name = "lblAgain";
this.lblAgain.Size = new System.Drawing.Size(53, 12);
this.lblAgain.TabIndex = 28;
this.lblAgain.Text = "确认密码";
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(147, 36);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(100, 21);
this.txtPassword.TabIndex = 27;
this.txtPassword.Enter += new System.EventHandler(this.txtPassword_Enter);
this.txtPassword.Validating += new System.ComponentModel.CancelEventHandler(this.txtPassword_Validating);
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(69, 39);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(29, 12);
this.lblPassword.TabIndex = 26;
this.lblPassword.Text = "密码";
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(69, 15);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(29, 12);
this.lblName.TabIndex = 25;
this.lblName.Text = "姓名";
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(147, 12);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(100, 21);
this.txtName.TabIndex = 24;
this.txtName.Enter += new System.EventHandler(this.txtName_Enter);
this.txtName.Validating += new System.ComponentModel.CancelEventHandler(this.txtName_Validating);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rdoFemale);
this.groupBox1.Controls.Add(this.rdoMale);
this.groupBox1.Location = new System.Drawing.Point(12, 117);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(268, 42);
this.groupBox1.TabIndex = 36;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "性别";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.chkMusic);
this.groupBox2.Controls.Add(this.chkSport);
this.groupBox2.Controls.Add(this.chkMovie);
this.groupBox2.Location = new System.Drawing.Point(12, 165);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(268, 42);
this.groupBox2.TabIndex = 37;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "感兴趣的内容";
//
// chkMovie
//
this.chkMovie.AutoSize = true;
this.chkMovie.Location = new System.Drawing.Point(187, 20);
this.chkMovie.Name = "chkMovie";
this.chkMovie.Size = new System.Drawing.Size(48, 16);
this.chkMovie.TabIndex = 0;
this.chkMovie.Text = "电影";
this.chkMovie.UseVisualStyleBackColor = true;
//
// chkSport
//
this.chkSport.AutoSize = true;
this.chkSport.Location = new System.Drawing.Point(133, 20);
this.chkSport.Name = "chkSport";
this.chkSport.Size = new System.Drawing.Size(48, 16);
this.chkSport.TabIndex = 1;
this.chkSport.Text = "体育";
this.chkSport.UseVisualStyleBackColor = true;
//
// chkMusic
//
this.chkMusic.AutoSize = true;
this.chkMusic.Location = new System.Drawing.Point(79, 20);
this.chkMusic.Name = "chkMusic";
this.chkMusic.Size = new System.Drawing.Size(48, 16);
this.chkMusic.TabIndex = 2;
this.chkMusic.Text = "音乐";
this.chkMusic.UseVisualStyleBackColor = true;
//
// btnCancle
//
this.btnCancle.Location = new System.Drawing.Point(205, 275);
this.btnCancle.Name = "btnCancle";
this.btnCancle.Size = new System.Drawing.Size(75, 23);
this.btnCancle.TabIndex = 38;
this.btnCancle.Text = "取消";
this.btnCancle.UseVisualStyleBackColor = true;
this.btnCancle.Enter += new System.EventHandler(this.btnCancel_MouseEnter);
this.btnCancle.Click += new System.EventHandler(this.btnCancel_Click);
this.btnCancle.Leave += new System.EventHandler(this.btnCancel_MouseLeave);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(118, 275);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 39;
this.btnOK.Text = "确定";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 309);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancle);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.txtHelp);
this.Controls.Add(this.txtAddress);
this.Controls.Add(this.lblAddress);
this.Controls.Add(this.txtAgain);
this.Controls.Add(this.lblAgain);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.lblName);
this.Controls.Add(this.txtName);
this.Name = "frmMain";
this.Text = "注册新用户";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton rdoFemale;
private System.Windows.Forms.RadioButton rdoMale;
private System.Windows.Forms.TextBox txtHelp;
private System.Windows.Forms.TextBox txtAddress;
private System.Windows.Forms.Label lblAddress;
private System.Windows.Forms.TextBox txtAgain;
private System.Windows.Forms.Label lblAgain;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label lblPassword;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox chkMusic;
private System.Windows.Forms.CheckBox chkSport;
private System.Windows.Forms.CheckBox chkMovie;
private System.Windows.Forms.Button btnCancle;
private System.Windows.Forms.Button btnOK;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -