141 lines
5.8 KiB
C#
141 lines
5.8 KiB
C#
namespace RestaurantView
|
|
{
|
|
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.buttonCancel = new System.Windows.Forms.Button();
|
|
this.labelFirstName = new System.Windows.Forms.Label();
|
|
this.labelLastName = new System.Windows.Forms.Label();
|
|
this.labelNumber = new System.Windows.Forms.Label();
|
|
this.textBoxFirstName = new System.Windows.Forms.TextBox();
|
|
this.textBoxLastName = new System.Windows.Forms.TextBox();
|
|
this.textBoxNumber = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(53, 160);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(105, 37);
|
|
this.buttonSave.TabIndex = 0;
|
|
this.buttonSave.Text = "Сохранить";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(214, 160);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(121, 37);
|
|
this.buttonCancel.TabIndex = 1;
|
|
this.buttonCancel.Text = "Отменить";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|
//
|
|
// labelFirstName
|
|
//
|
|
this.labelFirstName.AutoSize = true;
|
|
this.labelFirstName.Location = new System.Drawing.Point(46, 25);
|
|
this.labelFirstName.Name = "labelFirstName";
|
|
this.labelFirstName.Size = new System.Drawing.Size(34, 15);
|
|
this.labelFirstName.TabIndex = 2;
|
|
this.labelFirstName.Text = "Имя:";
|
|
//
|
|
// labelLastName
|
|
//
|
|
this.labelLastName.AutoSize = true;
|
|
this.labelLastName.Location = new System.Drawing.Point(19, 70);
|
|
this.labelLastName.Name = "labelLastName";
|
|
this.labelLastName.Size = new System.Drawing.Size(61, 15);
|
|
this.labelLastName.TabIndex = 3;
|
|
this.labelLastName.Text = "Фамилия:";
|
|
//
|
|
// labelNumber
|
|
//
|
|
this.labelNumber.AutoSize = true;
|
|
this.labelNumber.Location = new System.Drawing.Point(32, 113);
|
|
this.labelNumber.Name = "labelNumber";
|
|
this.labelNumber.Size = new System.Drawing.Size(48, 15);
|
|
this.labelNumber.TabIndex = 4;
|
|
this.labelNumber.Text = "Номер:";
|
|
//
|
|
// textBoxFirstName
|
|
//
|
|
this.textBoxFirstName.Location = new System.Drawing.Point(86, 22);
|
|
this.textBoxFirstName.Name = "textBoxFirstName";
|
|
this.textBoxFirstName.Size = new System.Drawing.Size(273, 23);
|
|
this.textBoxFirstName.TabIndex = 5;
|
|
//
|
|
// textBoxLastName
|
|
//
|
|
this.textBoxLastName.Location = new System.Drawing.Point(86, 67);
|
|
this.textBoxLastName.Name = "textBoxLastName";
|
|
this.textBoxLastName.Size = new System.Drawing.Size(273, 23);
|
|
this.textBoxLastName.TabIndex = 6;
|
|
//
|
|
// textBoxNumber
|
|
//
|
|
this.textBoxNumber.Location = new System.Drawing.Point(86, 110);
|
|
this.textBoxNumber.Name = "textBoxNumber";
|
|
this.textBoxNumber.Size = new System.Drawing.Size(273, 23);
|
|
this.textBoxNumber.TabIndex = 7;
|
|
//
|
|
// FormClient
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(393, 215);
|
|
this.Controls.Add(this.textBoxNumber);
|
|
this.Controls.Add(this.textBoxLastName);
|
|
this.Controls.Add(this.textBoxFirstName);
|
|
this.Controls.Add(this.labelNumber);
|
|
this.Controls.Add(this.labelLastName);
|
|
this.Controls.Add(this.labelFirstName);
|
|
this.Controls.Add(this.buttonCancel);
|
|
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 Button buttonCancel;
|
|
private Label labelFirstName;
|
|
private Label labelLastName;
|
|
private Label labelNumber;
|
|
private TextBox textBoxFirstName;
|
|
private TextBox textBoxLastName;
|
|
private TextBox textBoxNumber;
|
|
}
|
|
} |