namespace WinFormsApp2
{
partial class Form1
{
///
/// 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.WriteToFileBtn = new System.Windows.Forms.Button();
this.ClearFileDataBtn = new System.Windows.Forms.Button();
this.ClearReadedTextBtn = new System.Windows.Forms.Button();
this.GetInfoBtn = new System.Windows.Forms.Button();
this.ReadedFileTextBox = new System.Windows.Forms.TextBox();
this.HumansListBox = new System.Windows.Forms.ListBox();
this.BirthTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.FullNameTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.ActivityComboBox = new System.Windows.Forms.ComboBox();
this.AddHumanBtn = new System.Windows.Forms.Button();
this.DeleteHumanBtn = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// WriteToFileBtn
//
this.WriteToFileBtn.Location = new System.Drawing.Point(12, 297);
this.WriteToFileBtn.Name = "WriteToFileBtn";
this.WriteToFileBtn.Size = new System.Drawing.Size(237, 34);
this.WriteToFileBtn.TabIndex = 2;
this.WriteToFileBtn.Text = "Write to file";
this.WriteToFileBtn.UseVisualStyleBackColor = true;
this.WriteToFileBtn.Click += new System.EventHandler(this.WriteToFileBtn_Click);
//
// ClearFileDataBtn
//
this.ClearFileDataBtn.Location = new System.Drawing.Point(381, 297);
this.ClearFileDataBtn.Name = "ClearFileDataBtn";
this.ClearFileDataBtn.Size = new System.Drawing.Size(237, 34);
this.ClearFileDataBtn.TabIndex = 3;
this.ClearFileDataBtn.Text = "Clear";
this.ClearFileDataBtn.UseVisualStyleBackColor = true;
this.ClearFileDataBtn.Click += new System.EventHandler(this.ClearFileDataBtn_Click);
//
// ClearReadedTextBtn
//
this.ClearReadedTextBtn.Location = new System.Drawing.Point(869, 297);
this.ClearReadedTextBtn.Name = "ClearReadedTextBtn";
this.ClearReadedTextBtn.Size = new System.Drawing.Size(237, 34);
this.ClearReadedTextBtn.TabIndex = 5;
this.ClearReadedTextBtn.Text = "Clear";
this.ClearReadedTextBtn.UseVisualStyleBackColor = true;
this.ClearReadedTextBtn.Click += new System.EventHandler(this.ClearReadedTextBtn_Click);
//
// GetInfoBtn
//
this.GetInfoBtn.Location = new System.Drawing.Point(624, 297);
this.GetInfoBtn.Name = "GetInfoBtn";
this.GetInfoBtn.Size = new System.Drawing.Size(237, 34);
this.GetInfoBtn.TabIndex = 4;
this.GetInfoBtn.Text = "Get info";
this.GetInfoBtn.UseVisualStyleBackColor = true;
this.GetInfoBtn.Click += new System.EventHandler(this.GetInfoBtn_Click);
//
// ReadedFileTextBox
//
this.ReadedFileTextBox.AcceptsReturn = true;
this.ReadedFileTextBox.AcceptsTab = true;
this.ReadedFileTextBox.Location = new System.Drawing.Point(624, 12);
this.ReadedFileTextBox.Multiline = true;
this.ReadedFileTextBox.Name = "ReadedFileTextBox";
this.ReadedFileTextBox.ReadOnly = true;
this.ReadedFileTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.ReadedFileTextBox.Size = new System.Drawing.Size(482, 279);
this.ReadedFileTextBox.TabIndex = 7;
//
// HumansListBox
//
this.HumansListBox.FormattingEnabled = true;
this.HumansListBox.ItemHeight = 25;
this.HumansListBox.Location = new System.Drawing.Point(12, 87);
this.HumansListBox.Name = "HumansListBox";
this.HumansListBox.Size = new System.Drawing.Size(606, 204);
this.HumansListBox.TabIndex = 8;
//
// BirthTextBox
//
this.BirthTextBox.Location = new System.Drawing.Point(12, 40);
this.BirthTextBox.Name = "BirthTextBox";
this.BirthTextBox.Size = new System.Drawing.Size(150, 31);
this.BirthTextBox.TabIndex = 9;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(137, 25);
this.label1.TabIndex = 10;
this.label1.Text = "Дата рождения";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(412, 12);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 25);
this.label2.TabIndex = 12;
this.label2.Text = "ФИО";
//
// FullNameTextBox
//
this.FullNameTextBox.Location = new System.Drawing.Point(324, 40);
this.FullNameTextBox.Name = "FullNameTextBox";
this.FullNameTextBox.Size = new System.Drawing.Size(227, 31);
this.FullNameTextBox.TabIndex = 11;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(197, 12);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(92, 25);
this.label3.TabIndex = 14;
this.label3.Text = "Занятость";
//
// ActivityComboBox
//
this.ActivityComboBox.FormattingEnabled = true;
this.ActivityComboBox.Items.AddRange(new object[] {
"Working",
"Studying",
"Unemployed"});
this.ActivityComboBox.Location = new System.Drawing.Point(168, 40);
this.ActivityComboBox.Name = "ActivityComboBox";
this.ActivityComboBox.Size = new System.Drawing.Size(150, 33);
this.ActivityComboBox.TabIndex = 15;
//
// AddHumanBtn
//
this.AddHumanBtn.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.AddHumanBtn.Location = new System.Drawing.Point(557, 40);
this.AddHumanBtn.Name = "AddHumanBtn";
this.AddHumanBtn.Size = new System.Drawing.Size(61, 31);
this.AddHumanBtn.TabIndex = 16;
this.AddHumanBtn.Text = "Add";
this.AddHumanBtn.UseVisualStyleBackColor = true;
this.AddHumanBtn.Click += new System.EventHandler(this.AddHumanBtn_Click);
//
// DeleteHumanBtn
//
this.DeleteHumanBtn.Location = new System.Drawing.Point(255, 297);
this.DeleteHumanBtn.Name = "DeleteHumanBtn";
this.DeleteHumanBtn.Size = new System.Drawing.Size(120, 34);
this.DeleteHumanBtn.TabIndex = 17;
this.DeleteHumanBtn.Text = "Delete";
this.DeleteHumanBtn.UseVisualStyleBackColor = true;
this.DeleteHumanBtn.Click += new System.EventHandler(this.DeleteHumanBtn_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1118, 341);
this.Controls.Add(this.DeleteHumanBtn);
this.Controls.Add(this.AddHumanBtn);
this.Controls.Add(this.ActivityComboBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.FullNameTextBox);
this.Controls.Add(this.label1);
this.Controls.Add(this.BirthTextBox);
this.Controls.Add(this.HumansListBox);
this.Controls.Add(this.ReadedFileTextBox);
this.Controls.Add(this.ClearReadedTextBtn);
this.Controls.Add(this.GetInfoBtn);
this.Controls.Add(this.ClearFileDataBtn);
this.Controls.Add(this.WriteToFileBtn);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Button WriteToFileBtn;
private Button ClearFileDataBtn;
private Button ClearReadedTextBtn;
private Button GetInfoBtn;
private TextBox ReadedFileTextBox;
private ListBox HumansListBox;
private TextBox BirthTextBox;
private Label label1;
private Label label2;
private TextBox FullNameTextBox;
private Label label3;
private ComboBox ActivityComboBox;
private Button AddHumanBtn;
private Button DeleteHumanBtn;
}
}