PIbd-22_Shabunov_O.A._SushiBar/SushiBarView/Forms/FormIngredient.Designer.cs
2024-05-24 01:56:34 +04:00

127 lines
4.2 KiB
C#

namespace SushiBarView.Forms
{
partial class FormIngredient
{
/// <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()
{
label1 = new Label();
label2 = new Label();
label3 = new Label();
CostTextBox = new TextBox();
UnitTextBox = new TextBox();
IngredientNameTextBox = new TextBox();
SaveButton = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 15);
label1.Name = "label1";
label1.Size = new Size(93, 15);
label1.TabIndex = 0;
label1.Text = "Наименование:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 44);
label2.Name = "label2";
label2.Size = new Size(122, 15);
label2.TabIndex = 1;
label2.Text = "Единицы измерения:";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 73);
label3.Name = "label3";
label3.Size = new Size(133, 15);
label3.TabIndex = 2;
label3.Text = "Стоимость за единицу:";
//
// CostTextBox
//
CostTextBox.Location = new Point(151, 70);
CostTextBox.Name = "CostTextBox";
CostTextBox.Size = new Size(86, 23);
CostTextBox.TabIndex = 3;
//
// UnitTextBox
//
UnitTextBox.Location = new Point(151, 41);
UnitTextBox.Name = "UnitTextBox";
UnitTextBox.Size = new Size(170, 23);
UnitTextBox.TabIndex = 4;
//
// IngredientNameTextBox
//
IngredientNameTextBox.Location = new Point(151, 12);
IngredientNameTextBox.Name = "IngredientNameTextBox";
IngredientNameTextBox.Size = new Size(170, 23);
IngredientNameTextBox.TabIndex = 5;
//
// SaveButton
//
SaveButton.Location = new Point(219, 109);
SaveButton.Name = "SaveButton";
SaveButton.Size = new Size(102, 30);
SaveButton.TabIndex = 6;
SaveButton.Text = "Сохранить";
SaveButton.UseVisualStyleBackColor = true;
SaveButton.Click += ButtonSave_Click;
//
// FormIngredient
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(335, 151);
Controls.Add(SaveButton);
Controls.Add(IngredientNameTextBox);
Controls.Add(UnitTextBox);
Controls.Add(CostTextBox);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormIngredient";
Text = "Ингредиент";
Load += FormIngredient_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private Label label3;
private TextBox CostTextBox;
private TextBox UnitTextBox;
private TextBox IngredientNameTextBox;
private Button SaveButton;
}
}