SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonView/FormClient.Designer.cs
2023-03-29 20:00:53 +04:00

166 lines
7.0 KiB
C#

namespace BeautySaloonView
{
partial class FormClient
{
/// <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()
{
this.textBoxName = new System.Windows.Forms.TextBox();
this.textBoxSurname = new System.Windows.Forms.TextBox();
this.textBoxPatronymic = new System.Windows.Forms.TextBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.labelName = new System.Windows.Forms.Label();
this.labelSurname = new System.Windows.Forms.Label();
this.labelPatronymic = new System.Windows.Forms.Label();
this.labelPhone = new System.Windows.Forms.Label();
this.maskedTextBox = new System.Windows.Forms.MaskedTextBox();
this.SuspendLayout();
//
// textBoxName
//
this.textBoxName.Location = new System.Drawing.Point(125, 12);
this.textBoxName.Name = "textBoxName";
this.textBoxName.Size = new System.Drawing.Size(244, 23);
this.textBoxName.TabIndex = 0;
//
// textBoxSurname
//
this.textBoxSurname.Location = new System.Drawing.Point(125, 41);
this.textBoxSurname.Name = "textBoxSurname";
this.textBoxSurname.Size = new System.Drawing.Size(244, 23);
this.textBoxSurname.TabIndex = 1;
//
// textBoxPatronymic
//
this.textBoxPatronymic.Location = new System.Drawing.Point(125, 70);
this.textBoxPatronymic.Name = "textBoxPatronymic";
this.textBoxPatronymic.Size = new System.Drawing.Size(244, 23);
this.textBoxPatronymic.TabIndex = 2;
//
// buttonCancel
//
this.buttonCancel.Location = new System.Drawing.Point(288, 127);
this.buttonCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(82, 22);
this.buttonCancel.TabIndex = 15;
this.buttonCancel.Text = "Отмена";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// buttonSave
//
this.buttonSave.Location = new System.Drawing.Point(200, 127);
this.buttonSave.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(82, 22);
this.buttonSave.TabIndex = 14;
this.buttonSave.Text = "Сохранить";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// labelName
//
this.labelName.AutoSize = true;
this.labelName.Location = new System.Drawing.Point(12, 15);
this.labelName.Name = "labelName";
this.labelName.Size = new System.Drawing.Size(31, 15);
this.labelName.TabIndex = 16;
this.labelName.Text = "Имя";
//
// labelSurname
//
this.labelSurname.AutoSize = true;
this.labelSurname.Location = new System.Drawing.Point(12, 44);
this.labelSurname.Name = "labelSurname";
this.labelSurname.Size = new System.Drawing.Size(58, 15);
this.labelSurname.TabIndex = 17;
this.labelSurname.Text = "Фамилия";
//
// labelPatronymic
//
this.labelPatronymic.AutoSize = true;
this.labelPatronymic.Location = new System.Drawing.Point(12, 73);
this.labelPatronymic.Name = "labelPatronymic";
this.labelPatronymic.Size = new System.Drawing.Size(58, 15);
this.labelPatronymic.TabIndex = 18;
this.labelPatronymic.Text = "Отчество";
//
// labelPhone
//
this.labelPhone.AutoSize = true;
this.labelPhone.Location = new System.Drawing.Point(12, 102);
this.labelPhone.Name = "labelPhone";
this.labelPhone.Size = new System.Drawing.Size(101, 15);
this.labelPhone.TabIndex = 19;
this.labelPhone.Text = "Номер телефона";
//
// maskedTextBox
//
this.maskedTextBox.Location = new System.Drawing.Point(125, 99);
this.maskedTextBox.Mask = "00000000000";
this.maskedTextBox.Name = "maskedTextBox";
this.maskedTextBox.Size = new System.Drawing.Size(244, 23);
this.maskedTextBox.TabIndex = 21;
//
// FormClient
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(390, 157);
this.Controls.Add(this.maskedTextBox);
this.Controls.Add(this.labelPhone);
this.Controls.Add(this.labelPatronymic);
this.Controls.Add(this.labelSurname);
this.Controls.Add(this.labelName);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonSave);
this.Controls.Add(this.textBoxPatronymic);
this.Controls.Add(this.textBoxSurname);
this.Controls.Add(this.textBoxName);
this.Name = "FormClient";
this.Text = "Создание клиента";
this.Load += new System.EventHandler(this.FormClient_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxName;
private TextBox textBoxSurname;
private TextBox textBoxPatronymic;
private Button buttonCancel;
private Button buttonSave;
private Label labelName;
private Label labelSurname;
private Label labelPatronymic;
private Label labelPhone;
private MaskedTextBox maskedTextBox;
}
}