167 lines
6.9 KiB
C#
167 lines
6.9 KiB
C#
namespace SushiBar
|
|
{
|
|
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()
|
|
{
|
|
this.labelSushi = new System.Windows.Forms.Label();
|
|
this.comboBoxSushi = new System.Windows.Forms.ComboBox();
|
|
this.labelCount = new System.Windows.Forms.Label();
|
|
this.textBoxCount = new System.Windows.Forms.TextBox();
|
|
this.labelSum = new System.Windows.Forms.Label();
|
|
this.textBoxSum = new System.Windows.Forms.TextBox();
|
|
this.buttonSave = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
this.comboBoxClients = new System.Windows.Forms.ComboBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// labelSushi
|
|
//
|
|
this.labelSushi.AutoSize = true;
|
|
this.labelSushi.Location = new System.Drawing.Point(12, 9);
|
|
this.labelSushi.Name = "labelSushi";
|
|
this.labelSushi.Size = new System.Drawing.Size(35, 15);
|
|
this.labelSushi.TabIndex = 0;
|
|
this.labelSushi.Text = "Sushi";
|
|
//
|
|
// comboBoxSushi
|
|
//
|
|
this.comboBoxSushi.FormattingEnabled = true;
|
|
this.comboBoxSushi.Location = new System.Drawing.Point(53, 6);
|
|
this.comboBoxSushi.Name = "comboBoxSushi";
|
|
this.comboBoxSushi.Size = new System.Drawing.Size(197, 23);
|
|
this.comboBoxSushi.TabIndex = 1;
|
|
this.comboBoxSushi.SelectedIndexChanged += new System.EventHandler(this.ComboBoxSushi_SelectedIndexChanged);
|
|
//
|
|
// labelCount
|
|
//
|
|
this.labelCount.AutoSize = true;
|
|
this.labelCount.Location = new System.Drawing.Point(12, 67);
|
|
this.labelCount.Name = "labelCount";
|
|
this.labelCount.Size = new System.Drawing.Size(40, 15);
|
|
this.labelCount.TabIndex = 2;
|
|
this.labelCount.Text = "Count";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
this.textBoxCount.Location = new System.Drawing.Point(53, 64);
|
|
this.textBoxCount.Name = "textBoxCount";
|
|
this.textBoxCount.Size = new System.Drawing.Size(197, 23);
|
|
this.textBoxCount.TabIndex = 3;
|
|
this.textBoxCount.TextChanged += new System.EventHandler(this.TextBoxCount_TextChanged);
|
|
//
|
|
// labelSum
|
|
//
|
|
this.labelSum.AutoSize = true;
|
|
this.labelSum.Location = new System.Drawing.Point(12, 100);
|
|
this.labelSum.Name = "labelSum";
|
|
this.labelSum.Size = new System.Drawing.Size(31, 15);
|
|
this.labelSum.TabIndex = 4;
|
|
this.labelSum.Text = "Sum";
|
|
//
|
|
// textBoxSum
|
|
//
|
|
this.textBoxSum.Location = new System.Drawing.Point(53, 97);
|
|
this.textBoxSum.Name = "textBoxSum";
|
|
this.textBoxSum.Size = new System.Drawing.Size(197, 23);
|
|
this.textBoxSum.TabIndex = 5;
|
|
//
|
|
// buttonSave
|
|
//
|
|
this.buttonSave.Location = new System.Drawing.Point(12, 126);
|
|
this.buttonSave.Name = "buttonSave";
|
|
this.buttonSave.Size = new System.Drawing.Size(105, 23);
|
|
this.buttonSave.TabIndex = 6;
|
|
this.buttonSave.Text = "Save";
|
|
this.buttonSave.UseVisualStyleBackColor = true;
|
|
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(123, 126);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(127, 23);
|
|
this.buttonCancel.TabIndex = 7;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// comboBoxClients
|
|
//
|
|
this.comboBoxClients.FormattingEnabled = true;
|
|
this.comboBoxClients.Location = new System.Drawing.Point(53, 35);
|
|
this.comboBoxClients.Name = "comboBoxClients";
|
|
this.comboBoxClients.Size = new System.Drawing.Size(197, 23);
|
|
this.comboBoxClients.TabIndex = 9;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 38);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(38, 15);
|
|
this.label1.TabIndex = 8;
|
|
this.label1.Text = "Client";
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(262, 159);
|
|
this.Controls.Add(this.comboBoxClients);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSave);
|
|
this.Controls.Add(this.textBoxSum);
|
|
this.Controls.Add(this.labelSum);
|
|
this.Controls.Add(this.textBoxCount);
|
|
this.Controls.Add(this.labelCount);
|
|
this.Controls.Add(this.comboBoxSushi);
|
|
this.Controls.Add(this.labelSushi);
|
|
this.Name = "FormCreateOrder";
|
|
this.Text = "FormCreateOrder";
|
|
this.Load += new System.EventHandler(this.FormCreateOrder_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelSushi;
|
|
private ComboBox comboBoxSushi;
|
|
private Label labelCount;
|
|
private TextBox textBoxCount;
|
|
private Label labelSum;
|
|
private TextBox textBoxSum;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private ComboBox comboBoxClients;
|
|
private Label label1;
|
|
}
|
|
} |