PIbd-21_Zhirnova_A_E_PIZZERIA/Pizzeria/PizzeriaView/FormPizzaComponent.Designer.cs

118 lines
4.1 KiB
C#
Raw Permalink Normal View History

2024-02-08 17:48:08 +04:00
namespace PizzeriaView
{
partial class FormPizzaComponent
{
/// <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()
{
comboBoxComponent = new ComboBox();
textBoxCount = new TextBox();
labelComponent = new Label();
labelCount = new Label();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// comboBoxComponent
//
comboBoxComponent.FormattingEnabled = true;
comboBoxComponent.Location = new Point(127, 27);
comboBoxComponent.Name = "comboBoxComponent";
comboBoxComponent.Size = new Size(329, 33);
comboBoxComponent.TabIndex = 0;
//
// textBoxCount
//
textBoxCount.Location = new Point(127, 85);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(315, 31);
textBoxCount.TabIndex = 1;
//
// labelComponent
//
labelComponent.AutoSize = true;
2024-02-10 11:13:05 +04:00
labelComponent.Location = new Point(12, 35);
2024-02-08 17:48:08 +04:00
labelComponent.Name = "labelComponent";
2024-02-10 11:13:05 +04:00
labelComponent.Size = new Size(108, 25);
2024-02-08 17:48:08 +04:00
labelComponent.TabIndex = 2;
2024-02-10 11:13:05 +04:00
labelComponent.Text = "Ингредиент";
2024-02-08 17:48:08 +04:00
//
// labelCount
//
labelCount.AutoSize = true;
2024-02-10 11:13:05 +04:00
labelCount.Location = new Point(12, 91);
2024-02-08 17:48:08 +04:00
labelCount.Name = "labelCount";
2024-02-10 11:13:05 +04:00
labelCount.Size = new Size(107, 25);
2024-02-08 17:48:08 +04:00
labelCount.TabIndex = 3;
2024-02-10 11:13:05 +04:00
labelCount.Text = "Количество";
2024-02-08 17:48:08 +04:00
//
// buttonSave
//
buttonSave.Location = new Point(127, 128);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(127, 44);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(305, 128);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(151, 44);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormPizzaComponent
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(557, 184);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(labelCount);
Controls.Add(labelComponent);
Controls.Add(textBoxCount);
Controls.Add(comboBoxComponent);
Name = "FormPizzaComponent";
Text = "Ингредиент для пиццы";
ResumeLayout(false);
PerformLayout();
}
#endregion
private ComboBox comboBoxComponent;
private TextBox textBoxCount;
private Label labelComponent;
private Label labelCount;
private Button buttonSave;
private Button buttonCancel;
}
}