ISEbd-21.Fedotov.I.A.Diner/Diner/DinerView/FormSnackFood.Designer.cs

120 lines
4.2 KiB
C#
Raw Normal View History

2024-02-24 21:32:11 +04:00
namespace DinerView
{
partial class FormSnackFood
{
/// <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()
{
labelComponent = new Label();
labelCount = new Label();
comboBoxComponent = new ComboBox();
textBoxCount = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// labelComponent
//
labelComponent.AutoSize = true;
labelComponent.Location = new Point(12, 9);
labelComponent.Name = "labelComponent";
labelComponent.Size = new Size(28, 15);
labelComponent.TabIndex = 0;
labelComponent.Text = "Еда:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 35);
labelCount.Name = "labelCount";
labelCount.Size = new Size(77, 15);
labelCount.TabIndex = 1;
labelCount.Text = "Количесиво:";
//
// comboBoxComponent
//
comboBoxComponent.BackColor = SystemColors.ButtonShadow;
comboBoxComponent.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxComponent.FormattingEnabled = true;
comboBoxComponent.Location = new Point(91, 6);
comboBoxComponent.Name = "comboBoxComponent";
comboBoxComponent.Size = new Size(291, 23);
comboBoxComponent.TabIndex = 2;
//
// textBoxCount
//
textBoxCount.Location = new Point(91, 35);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(291, 23);
textBoxCount.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(307, 64);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(226, 66);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// FormSnackFood
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(394, 101);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCount);
Controls.Add(comboBoxComponent);
Controls.Add(labelCount);
Controls.Add(labelComponent);
Name = "FormSnackFood";
2024-03-21 19:57:27 +04:00
Text = "Продукты для снэков";
2024-02-24 21:32:11 +04:00
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelComponent;
private Label labelCount;
private ComboBox comboBoxComponent;
private TextBox textBoxCount;
private Button buttonCancel;
private Button buttonSave;
}
}