ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarView/FormComponent.Designer.cs

118 lines
3.9 KiB
C#

namespace SushiBarView
{
partial class FormComponent
{
/// <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()
{
ButtonSave = new Button();
ButtonCancel = new Button();
labelName = new Label();
labelPrice = new Label();
textBoxName = new TextBox();
textBoxCost = new TextBox();
SuspendLayout();
//
// ButtonSave
//
ButtonSave.Location = new Point(232, 94);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(96, 27);
ButtonSave.TabIndex = 0;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
//
// ButtonCancel
//
ButtonCancel.Location = new Point(345, 94);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(96, 27);
ButtonCancel.TabIndex = 1;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// labelName
//
labelName.AutoSize = true;
labelName.Location = new Point(12, 25);
labelName.Name = "labelName";
labelName.Size = new Size(62, 15);
labelName.TabIndex = 2;
labelName.Text = "Название:";
//
// labelPrice
//
labelPrice.AutoSize = true;
labelPrice.Location = new Point(12, 58);
labelPrice.Name = "labelPrice";
labelPrice.Size = new Size(38, 15);
labelPrice.TabIndex = 3;
labelPrice.Text = "Цена:";
//
// textBoxName
//
textBoxName.Location = new Point(80, 22);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(224, 23);
textBoxName.TabIndex = 4;
//
// textBoxCost
//
textBoxCost.Location = new Point(80, 55);
textBoxCost.Name = "textBoxCost";
textBoxCost.Size = new Size(148, 23);
textBoxCost.TabIndex = 5;
//
// FormComponent
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(453, 133);
Controls.Add(textBoxCost);
Controls.Add(textBoxName);
Controls.Add(labelPrice);
Controls.Add(labelName);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Name = "FormComponent";
Text = "Компонент";
Load += FormComponent_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button ButtonSave;
private Button ButtonCancel;
private Label labelName;
private Label labelPrice;
private TextBox textBoxName;
private TextBox textBoxCost;
}
}