PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarView/FormSushiComponent.Designer.cs

119 lines
4.7 KiB
C#
Raw Normal View History

2024-02-14 00:58:39 +04:00
namespace SushiBarView
{
partial class FormSushiComponent
{
/// <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.textBoxCount = new System.Windows.Forms.TextBox();
this.labelCost = new System.Windows.Forms.Label();
this.labelName = new System.Windows.Forms.Label();
this.ButtonCancel = new System.Windows.Forms.Button();
this.ButtonSave = new System.Windows.Forms.Button();
this.comboBoxComponent = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// textBoxCount
//
this.textBoxCount.Location = new System.Drawing.Point(87, 54);
this.textBoxCount.Name = "textBoxCount";
this.textBoxCount.Size = new System.Drawing.Size(262, 23);
this.textBoxCount.TabIndex = 11;
//
// labelCost
//
this.labelCost.AutoSize = true;
this.labelCost.Location = new System.Drawing.Point(12, 57);
this.labelCost.Name = "labelCost";
this.labelCost.Size = new System.Drawing.Size(72, 15);
this.labelCost.TabIndex = 9;
this.labelCost.Text = "Количество";
//
// labelName
//
this.labelName.AutoSize = true;
this.labelName.Location = new System.Drawing.Point(12, 24);
this.labelName.Name = "labelName";
this.labelName.Size = new System.Drawing.Size(69, 15);
this.labelName.TabIndex = 8;
this.labelName.Text = "Компонент";
//
// ButtonCancel
//
this.ButtonCancel.Location = new System.Drawing.Point(271, 96);
this.ButtonCancel.Name = "ButtonCancel";
this.ButtonCancel.Size = new System.Drawing.Size(87, 26);
this.ButtonCancel.TabIndex = 7;
this.ButtonCancel.Text = "Отмена";
this.ButtonCancel.UseVisualStyleBackColor = true;
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// ButtonSave
//
this.ButtonSave.Location = new System.Drawing.Point(178, 96);
this.ButtonSave.Name = "ButtonSave";
this.ButtonSave.Size = new System.Drawing.Size(87, 26);
this.ButtonSave.TabIndex = 6;
this.ButtonSave.Text = "Сохранить";
this.ButtonSave.UseVisualStyleBackColor = true;
this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click);
//
// comboBoxComponent
//
this.comboBoxComponent.FormattingEnabled = true;
this.comboBoxComponent.Location = new System.Drawing.Point(87, 21);
this.comboBoxComponent.Name = "comboBoxComponent";
this.comboBoxComponent.Size = new System.Drawing.Size(262, 23);
this.comboBoxComponent.TabIndex = 12;
//
// FormSushiComponent
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(375, 141);
this.Controls.Add(this.comboBoxComponent);
this.Controls.Add(this.textBoxCount);
this.Controls.Add(this.labelCost);
this.Controls.Add(this.labelName);
this.Controls.Add(this.ButtonCancel);
this.Controls.Add(this.ButtonSave);
this.Name = "FormSushiComponent";
this.Text = "FormSushiComponent";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox textBoxCount;
private Label labelCost;
private Label labelName;
private Button ButtonCancel;
private Button ButtonSave;
private ComboBox comboBoxComponent;
}
}