119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
namespace BeautySalon
|
|
{
|
|
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.buttonSave = new System.Windows.Forms.Button();
|
|
this.labelName = new System.Windows.Forms.Label();
|
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|
this.labelPhoneNumber = new System.Windows.Forms.Label();
|
|
this.textBoxPhoneNumber = new System.Windows.Forms.TextBox();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(213, 76);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonSave.TabIndex = 0;
|
|
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, 22);
|
|
this.labelName.Name = "labelName";
|
|
this.labelName.Size = new System.Drawing.Size(37, 15);
|
|
this.labelName.TabIndex = 1;
|
|
this.labelName.Text = "ФИО:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
this.textBoxName.Location = new System.Drawing.Point(122, 19);
|
|
this.textBoxName.Name = "textBoxName";
|
|
this.textBoxName.Size = new System.Drawing.Size(247, 23);
|
|
this.textBoxName.TabIndex = 2;
|
|
//
|
|
// labelPhoneNumber
|
|
//
|
|
this.labelPhoneNumber.AutoSize = true;
|
|
this.labelPhoneNumber.Location = new System.Drawing.Point(12, 50);
|
|
this.labelPhoneNumber.Name = "labelPhoneNumber";
|
|
this.labelPhoneNumber.Size = new System.Drawing.Size(104, 15);
|
|
this.labelPhoneNumber.TabIndex = 3;
|
|
this.labelPhoneNumber.Text = "Номер телефона:";
|
|
//
|
|
// textBoxPhoneNumber
|
|
//
|
|
this.textBoxPhoneNumber.Location = new System.Drawing.Point(122, 47);
|
|
this.textBoxPhoneNumber.Name = "textBoxPhoneNumber";
|
|
this.textBoxPhoneNumber.Size = new System.Drawing.Size(128, 23);
|
|
this.textBoxPhoneNumber.TabIndex = 4;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(294, 76);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonCancel.TabIndex = 5;
|
|
this.buttonCancel.Text = "Отмена";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormClient
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(381, 107);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.textBoxPhoneNumber);
|
|
this.Controls.Add(this.labelPhoneNumber);
|
|
this.Controls.Add(this.textBoxName);
|
|
this.Controls.Add(this.labelName);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Name = "FormClient";
|
|
this.Text = "Клиент";
|
|
this.Load += new System.EventHandler(this.FormClient_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSave;
|
|
private Label labelName;
|
|
private TextBox textBoxName;
|
|
private Label labelPhoneNumber;
|
|
private TextBox textBoxPhoneNumber;
|
|
private Button buttonCancel;
|
|
}
|
|
} |