148 lines
5.0 KiB
C#
148 lines
5.0 KiB
C#
namespace SushiBar.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;
|
|
TextBoxCount.TextChanged += TextBoxCount_TextChanged;
|
|
//
|
|
// 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;
|
|
ComboBoxSushi.SelectedIndexChanged += ComboBoxSushi_SelectedIndexChanged;
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
AllowDrop = true;
|
|
AutoScaleMode = AutoScaleMode.None;
|
|
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);
|
|
MaximizeBox = false;
|
|
MinimizeBox = false;
|
|
Name = "FormCreateOrder";
|
|
ShowInTaskbar = false;
|
|
Text = "Заказ";
|
|
TopMost = true;
|
|
Load += FormCreateOrder_Load;
|
|
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;
|
|
}
|
|
} |