119 lines
4.7 KiB
C#
119 lines
4.7 KiB
C#
|
namespace RestaurantView
|
|||
|
{
|
|||
|
partial class FormProvider
|
|||
|
{
|
|||
|
/// <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.labelName = new System.Windows.Forms.Label();
|
|||
|
this.labelAddress = new System.Windows.Forms.Label();
|
|||
|
this.textBoxName = new System.Windows.Forms.TextBox();
|
|||
|
this.textBoxAddress = new System.Windows.Forms.TextBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
this.buttonSave.Location = new System.Drawing.Point(51, 135);
|
|||
|
this.buttonSave.Name = "buttonSave";
|
|||
|
this.buttonSave.Size = new System.Drawing.Size(97, 31);
|
|||
|
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(202, 135);
|
|||
|
this.buttonCancel.Name = "buttonCancel";
|
|||
|
this.buttonCancel.Size = new System.Drawing.Size(113, 31);
|
|||
|
this.buttonCancel.TabIndex = 1;
|
|||
|
this.buttonCancel.Text = "Отменить";
|
|||
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|||
|
//
|
|||
|
// labelName
|
|||
|
//
|
|||
|
this.labelName.AutoSize = true;
|
|||
|
this.labelName.Location = new System.Drawing.Point(22, 31);
|
|||
|
this.labelName.Name = "labelName";
|
|||
|
this.labelName.Size = new System.Drawing.Size(62, 15);
|
|||
|
this.labelName.TabIndex = 2;
|
|||
|
this.labelName.Text = "Название:";
|
|||
|
//
|
|||
|
// labelAddress
|
|||
|
//
|
|||
|
this.labelAddress.AutoSize = true;
|
|||
|
this.labelAddress.Location = new System.Drawing.Point(32, 80);
|
|||
|
this.labelAddress.Name = "labelAddress";
|
|||
|
this.labelAddress.Size = new System.Drawing.Size(49, 15);
|
|||
|
this.labelAddress.TabIndex = 3;
|
|||
|
this.labelAddress.Text = "Адресс:";
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
this.textBoxName.Location = new System.Drawing.Point(90, 28);
|
|||
|
this.textBoxName.Name = "textBoxName";
|
|||
|
this.textBoxName.Size = new System.Drawing.Size(248, 23);
|
|||
|
this.textBoxName.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxAddress
|
|||
|
//
|
|||
|
this.textBoxAddress.Location = new System.Drawing.Point(90, 77);
|
|||
|
this.textBoxAddress.Name = "textBoxAddress";
|
|||
|
this.textBoxAddress.Size = new System.Drawing.Size(248, 23);
|
|||
|
this.textBoxAddress.TabIndex = 5;
|
|||
|
//
|
|||
|
// FormProvider
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(376, 186);
|
|||
|
this.Controls.Add(this.textBoxAddress);
|
|||
|
this.Controls.Add(this.textBoxName);
|
|||
|
this.Controls.Add(this.labelAddress);
|
|||
|
this.Controls.Add(this.labelName);
|
|||
|
this.Controls.Add(this.buttonCancel);
|
|||
|
this.Controls.Add(this.buttonSave);
|
|||
|
this.Name = "FormProvider";
|
|||
|
this.Text = "Поставщик";
|
|||
|
this.Load += new System.EventHandler(this.FormProvider_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
private Label labelName;
|
|||
|
private Label labelAddress;
|
|||
|
private TextBox textBoxName;
|
|||
|
private TextBox textBoxAddress;
|
|||
|
}
|
|||
|
}
|