SushiBarBase/SushiBar/SushiBarView/Forms/FormCreateOrder.Designer.cs

141 lines
4.7 KiB
C#
Raw Normal View History

2024-02-13 20:52:40 +04:00
namespace SushiBarView.Forms
{
partial class FormCreateOrder
{
/// <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();
label1 = new Label();
label2 = new Label();
label3 = new Label();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
comboBoxSushi = new ComboBox();
SuspendLayout();
//
// buttonSave
//
buttonSave.Location = new Point(185, 112);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(100, 30);
buttonSave.TabIndex = 0;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(291, 112);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(100, 30);
buttonCancel.TabIndex = 1;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 15);
label1.Name = "label1";
label1.Size = new Size(49, 20);
label1.TabIndex = 2;
label1.Text = "Суши:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 49);
label2.Name = "label2";
label2.Size = new Size(93, 20);
label2.TabIndex = 3;
label2.Text = "Количество:";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 82);
label3.Name = "label3";
label3.Size = new Size(58, 20);
label3.TabIndex = 4;
label3.Text = "Сумма:";
//
// textBoxCount
//
textBoxCount.Location = new Point(119, 46);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(272, 27);
textBoxCount.TabIndex = 5;
//
// textBoxSum
//
textBoxSum.Location = new Point(119, 79);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(272, 27);
textBoxSum.TabIndex = 6;
//
// comboBoxSushi
//
comboBoxSushi.FormattingEnabled = true;
comboBoxSushi.Location = new Point(119, 12);
comboBoxSushi.Name = "comboBoxSushi";
comboBoxSushi.Size = new Size(272, 28);
comboBoxSushi.TabIndex = 7;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(403, 152);
Controls.Add(comboBoxSushi);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Name = "FormCreateOrder";
Text = "FormCreateOrder";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonSave;
private Button buttonCancel;
private Label label1;
private Label label2;
private Label label3;
private TextBox textBoxCount;
private TextBox textBoxSum;
private ComboBox comboBoxSushi;
}
}