namespace WindowsForms
{
partial class PersonForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.cancelButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.personName = new System.Windows.Forms.TextBox();
this.personDateOfBirth = new System.Windows.Forms.MaskedTextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(9, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Name";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 35);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 13);
this.label2.TabIndex = 1;
this.label2.Text = "Date of birth";
//
// cancelButton
//
this.cancelButton.Location = new System.Drawing.Point(126, 77);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 2;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// okButton
//
this.okButton.Location = new System.Drawing.Point(45, 77);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 3;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// personName
//
this.personName.Location = new System.Drawing.Point(83, 6);
this.personName.Name = "personName";
this.personName.Size = new System.Drawing.Size(100, 20);
this.personName.TabIndex = 4;
//
// personDateOfBirth
//
this.personDateOfBirth.Location = new System.Drawing.Point(83, 32);
this.personDateOfBirth.Mask = "00/00/0000";
this.personDateOfBirth.Name = "personDateOfBirth";
this.personDateOfBirth.Size = new System.Drawing.Size(65, 20);
this.personDateOfBirth.TabIndex = 5;
//
// PersonForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(211, 106);
this.Controls.Add(this.personDateOfBirth);
this.Controls.Add(this.personName);
this.Controls.Add(this.okButton);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Name = "PersonForm";
this.Text = "Person Form";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.TextBox personName;
private System.Windows.Forms.MaskedTextBox personDateOfBirth;
}
}