144 lines
5.0 KiB
C#
144 lines
5.0 KiB
C#
namespace SushiBarView
|
|
{
|
|
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()
|
|
{
|
|
labelSushi = new Label();
|
|
labelCount = new Label();
|
|
labelSum = new Label();
|
|
textBoxCount = new TextBox();
|
|
comboBoxSushi = new ComboBox();
|
|
textBoxSum = new TextBox();
|
|
ButtonSave = new Button();
|
|
ButtonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelSushi
|
|
//
|
|
labelSushi.AutoSize = true;
|
|
labelSushi.Location = new Point(42, 27);
|
|
labelSushi.Name = "labelSushi";
|
|
labelSushi.Size = new Size(42, 15);
|
|
labelSushi.TabIndex = 0;
|
|
labelSushi.Text = "Суши:";
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(42, 56);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(75, 15);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество:";
|
|
//
|
|
// labelSum
|
|
//
|
|
labelSum.AutoSize = true;
|
|
labelSum.Location = new Point(42, 84);
|
|
labelSum.Name = "labelSum";
|
|
labelSum.Size = new Size(48, 15);
|
|
labelSum.TabIndex = 2;
|
|
labelSum.Text = "Сумма:";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(123, 53);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(276, 23);
|
|
textBoxCount.TabIndex = 3;
|
|
this.textBoxCount.TextChanged += new System.EventHandler(this.textBoxCost_TextChanged);
|
|
//
|
|
// comboBoxSushi
|
|
//
|
|
comboBoxSushi.FormattingEnabled = true;
|
|
comboBoxSushi.Location = new Point(123, 24);
|
|
comboBoxSushi.Name = "comboBoxSushi";
|
|
comboBoxSushi.Size = new Size(276, 23);
|
|
comboBoxSushi.TabIndex = 4;
|
|
comboBoxSushi.SelectedIndexChanged += comboBoxSushi_SelectedIndexChanged;
|
|
//
|
|
// textBoxSum
|
|
//
|
|
textBoxSum.Location = new Point(123, 84);
|
|
textBoxSum.Name = "textBoxSum";
|
|
textBoxSum.ReadOnly = true;
|
|
textBoxSum.Size = new Size(276, 23);
|
|
textBoxSum.TabIndex = 5;
|
|
//
|
|
// ButtonSave
|
|
//
|
|
ButtonSave.Location = new Point(192, 124);
|
|
ButtonSave.Name = "ButtonSave";
|
|
ButtonSave.Size = new Size(98, 41);
|
|
ButtonSave.TabIndex = 6;
|
|
ButtonSave.Text = "Сохранить";
|
|
ButtonSave.UseVisualStyleBackColor = true;
|
|
ButtonSave.Click += ButtonSave_Click;
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
ButtonCancel.Location = new Point(296, 124);
|
|
ButtonCancel.Name = "ButtonCancel";
|
|
ButtonCancel.Size = new Size(98, 41);
|
|
ButtonCancel.TabIndex = 7;
|
|
ButtonCancel.Text = "Отмена";
|
|
ButtonCancel.UseVisualStyleBackColor = true;
|
|
ButtonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(411, 177);
|
|
Controls.Add(ButtonCancel);
|
|
Controls.Add(ButtonSave);
|
|
Controls.Add(textBoxSum);
|
|
Controls.Add(comboBoxSushi);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelSum);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelSushi);
|
|
Name = "FormCreateOrder";
|
|
Text = "Заказ";
|
|
Load += FormCreateOrder_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelSushi;
|
|
private Label labelCount;
|
|
private Label labelSum;
|
|
private TextBox textBoxCount;
|
|
private ComboBox comboBoxSushi;
|
|
private TextBox textBoxSum;
|
|
private Button ButtonSave;
|
|
private Button ButtonCancel;
|
|
}
|
|
} |