SYBD_2024/viewmodel/FormEmployee.Designer.cs

140 lines
4.9 KiB
C#
Raw Normal View History

namespace viewmodel
{
partial class FormEmployee
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
textBoxPhone = new TextBox();
labelContact = new Label();
buttonCancel = new Button();
buttonSave = new Button();
textBoxName = new TextBox();
labelOrganization = new Label();
dateTimePicker = new DateTimePicker();
label2 = new Label();
SuspendLayout();
//
// textBoxPhone
//
textBoxPhone.Location = new Point(117, 41);
textBoxPhone.Name = "textBoxPhone";
textBoxPhone.Size = new Size(208, 23);
textBoxPhone.TabIndex = 19;
//
// labelContact
//
labelContact.AutoSize = true;
labelContact.Location = new Point(13, 44);
labelContact.Name = "labelContact";
labelContact.Size = new Size(45, 15);
labelContact.TabIndex = 18;
labelContact.Text = "Номер";
labelContact.UseWaitCursor = true;
//
// buttonCancel
//
buttonCancel.Location = new Point(248, 130);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(77, 30);
buttonCancel.TabIndex = 17;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(165, 130);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(83, 30);
buttonSave.TabIndex = 16;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// textBoxName
//
textBoxName.Location = new Point(117, 12);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(208, 23);
textBoxName.TabIndex = 15;
//
// labelOrganization
//
labelOrganization.AutoSize = true;
labelOrganization.Location = new Point(13, 20);
labelOrganization.Name = "labelOrganization";
labelOrganization.Size = new Size(31, 15);
labelOrganization.TabIndex = 14;
labelOrganization.Text = "Имя";
//
// dateTimePicker
//
dateTimePicker.Location = new Point(117, 70);
dateTimePicker.Name = "dateTimePicker";
dateTimePicker.Size = new Size(208, 23);
dateTimePicker.TabIndex = 21;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 76);
label2.Name = "label2";
label2.Size = new Size(93, 15);
label2.TabIndex = 20;
label2.Text = "Дата рождения:";
//
// FormEmployee
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(353, 181);
Controls.Add(dateTimePicker);
Controls.Add(label2);
Controls.Add(textBoxPhone);
Controls.Add(labelContact);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxName);
Controls.Add(labelOrganization);
Name = "FormEmployee";
Text = "FormEmployee";
Load += FormEmployee_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxPhone;
private Label labelContact;
private Button buttonCancel;
private Button buttonSave;
private TextBox textBoxName;
private Label labelOrganization;
private DateTimePicker dateTimePicker;
private Label label2;
}
}