--------------------------------------------------------------------------------------------------------------------
Form1.Designer.cs
namespace WindowsApplication5
{
partial class Form1
{
/// <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.btnOK = new System.Windows.Forms.Button();
this.btnHelp = new System.Windows.Forms.Button();
this.txtName = new System.Windows.Forms.TextBox();
this.txtAddress = new System.Windows.Forms.TextBox();
this.txtAge = new System.Windows.Forms.TextBox();
this.txtOutput = new System.Windows.Forms.TextBox();
this.lblName = new System.Windows.Forms.Label();
this.lblAddress = new System.Windows.Forms.Label();
this.lblAge = new System.Windows.Forms.Label();
this.lblOutput = new System.Windows.Forms.Label();
this.rdoMale = new System.Windows.Forms.RadioButton();
this.rdoFemale = new System.Windows.Forms.RadioButton();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.cboOccupations = new System.Windows.Forms.ComboBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Enabled = false;
this.btnOK.Location = new System.Drawing.Point(311, 12);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 0;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnHelp
//
this.btnHelp.Location = new System.Drawing.Point(311, 54);
this.btnHelp.Name = "btnHelp";
this.btnHelp.Size = new System.Drawing.Size(75, 23);
this.btnHelp.TabIndex = 1;
this.btnHelp.Text = "Help";
this.btnHelp.UseVisualStyleBackColor = true;
this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
this.btnHelp.CausesValidationChanged += new System.EventHandler(this.btnHelp_Click);
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(91, 12);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(196, 21);
this.txtName.TabIndex = 2;
this.txtName.Tag = false;
this.txtName.Validating += new System.ComponentModel.CancelEventHandler(this.txtBoxEmpty_Validating);
this.txtName.TextChanged += new System.EventHandler(this.txtBox_TextChanged);
//
// txtAddress
//
this.txtAddress.Location = new System.Drawing.Point(91, 32);
this.txtAddress.Multiline = true;
this.txtAddress.Name = "txtAddress";
this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtAddress.Size = new System.Drawing.Size(196, 103);
this.txtAddress.TabIndex = 3;
this.txtAddress.Tag = false;
this.txtAddress.Validating += new System.ComponentModel.CancelEventHandler(this.txtBoxEmpty_Validating);
this.txtAddress.TextChanged += new System.EventHandler(this.txtBox_TextChanged);
//
// txtAge
//
this.txtAge.Location = new System.Drawing.Point(91, 195);
this.txtAge.Name = "txtAge";
this.txtAge.Size = new System.Drawing.Size(196, 21);
this.txtAge.TabIndex = 5;
this.txtAge.Tag = false;
this.txtAge.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAge_KeyPress);
this.txtAge.Validating += new System.ComponentModel.CancelEventHandler(this.txtBoxEmpty_Validating);
this.txtAge.TextChanged += new System.EventHandler(this.txtBox_TextChanged);
//
// txtOutput
//
this.txtOutput.Location = new System.Drawing.Point(5, 225);
this.txtOutput.Multiline = true;
this.txtOutput.Name = "txtOutput";
this.txtOutput.ReadOnly = true;
this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtOutput.Size = new System.Drawing.Size(381, 139);
this.txtOutput.TabIndex = 6;
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(3, 12);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(29, 12);
this.lblName.TabIndex = 7;
this.lblName.Text = "Name";
//
// lblAddress
//
this.lblAddress.AutoSize = true;
this.lblAddress.Location = new System.Drawing.Point(3, 32);
this.lblAddress.Name = "lblAddress";
this.lblAddress.Size = new System.Drawing.Size(47, 12);
this.lblAddress.TabIndex = 8;
this.lblAddress.Text = "Address";
//
// lblAge
//
this.lblAge.AutoSize = true;
this.lblAge.Location = new System.Drawing.Point(3, 193);
this.lblAge.Name = "lblAge";
this.lblAge.Size = new System.Drawing.Size(23, 12);
this.lblAge.TabIndex = 9;
this.lblAge.Text = "Age";
//
// lblOutput
//
this.lblOutput.AutoSize = true;
this.lblOutput.Location = new System.Drawing.Point(3, 209);
this.lblOutput.Name = "lblOutput";
this.lblOutput.Size = new System.Drawing.Size(41, 12);
this.lblOutput.TabIndex = 11;
this.lblOutput.Text = "Output";
//
// rdoMale
//
this.rdoMale.AutoSize = true;
this.rdoMale.Location = new System.Drawing.Point(145, 15);
this.rdoMale.Name = "rdoMale";
this.rdoMale.Size = new System.Drawing.Size(47, 16);
this.rdoMale.TabIndex = 12;
this.rdoMale.TabStop = true;
this.rdoMale.Text = "Male";
this.rdoMale.UseVisualStyleBackColor = true;
//
// rdoFemale
//
this.rdoFemale.AutoSize = true;
this.rdoFemale.Location = new System.Drawing.Point(6, 15);
this.rdoFemale.Name = "rdoFemale";
this.rdoFemale.Size = new System.Drawing.Size(59, 16);
this.rdoFemale.TabIndex = 13;
this.rdoFemale.TabStop = true;
this.rdoFemale.Text = "Female";
this.rdoFemale.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rdoFemale);
this.groupBox1.Controls.Add(this.rdoMale);
this.groupBox1.Location = new System.Drawing.Point(5, 159);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(300, 34);
this.groupBox1.TabIndex = 16;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Sex";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 138);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(71, 12);
this.label1.TabIndex = 17;
this.label1.Text = "Occupations";
//
// cboOccupations
//
this.cboOccupations.FormattingEnabled = true;
this.cboOccupations.Location = new System.Drawing.Point(91, 138);
this.cboOccupations.Name = "cboOccupations";
this.cboOccupations.Size = new System.Drawing.Size(121, 20);
this.cboOccupations.TabIndex = 18;
this.cboOccupations.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboOccupations_KeyDown);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(395, 364);
this.Controls.Add(this.cboOccupations);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.lblOutput);
this.Controls.Add(this.lblAge);
this.Controls.Add(this.lblAddress);
this.Controls.Add(this.lblName);
this.Controls.Add(this.txtOutput);
this.Controls.Add(this.txtAge);
this.Controls.Add(this.txtAddress);
this.Controls.Add(this.txtName);
this.Controls.Add(this.btnHelp);
this.Controls.Add(this.btnOK);
this.Name = "Form1";
this.Text = "Form1";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnHelp;
private System.Windows.Forms.TextBox txtName;
private System.Windows.Forms.TextBox txtAddress;
private System.Windows.Forms.TextBox txtAge;
private System.Windows.Forms.TextBox txtOutput;
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblAddress;
private System.Windows.Forms.Label lblAge;
private System.Windows.Forms.Label lblOutput;
private System.Windows.Forms.RadioButton rdoMale;
private System.Windows.Forms.RadioButton rdoFemale;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cboOccupations;
}
}