PIbd-21_Alekseev_I.S._Confe.../Confectionery/ConfectioneryView/FormCreateOrder.Designer.cs

173 lines
6.2 KiB
C#
Raw Normal View History

2024-03-23 19:50:45 +04:00
namespace ConfectioneryView
{
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()
{
2024-05-02 17:46:55 +04:00
labelPastry = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxPastry = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
comboBoxClient = new ComboBox();
labelClient = new Label();
SuspendLayout();
2024-03-23 19:50:45 +04:00
//
// labelPastry
//
2024-05-02 17:46:55 +04:00
labelPastry.AutoSize = true;
labelPastry.Location = new Point(25, 16);
labelPastry.Name = "labelPastry";
labelPastry.Size = new Size(71, 20);
labelPastry.TabIndex = 0;
labelPastry.Text = "Изделие:";
2024-03-23 19:50:45 +04:00
//
// labelCount
//
2024-05-02 17:46:55 +04:00
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 102);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
2024-03-23 19:50:45 +04:00
//
// labelSum
//
2024-05-02 17:46:55 +04:00
labelSum.AutoSize = true;
labelSum.Location = new Point(25, 141);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
2024-03-23 19:50:45 +04:00
//
// comboBoxPastry
//
2024-05-02 17:46:55 +04:00
comboBoxPastry.FormattingEnabled = true;
comboBoxPastry.Location = new Point(114, 13);
comboBoxPastry.Margin = new Padding(3, 4, 3, 4);
comboBoxPastry.Name = "comboBoxPastry";
comboBoxPastry.Size = new Size(261, 28);
comboBoxPastry.TabIndex = 3;
comboBoxPastry.SelectedIndexChanged += comboBoxPastry_SelectedIndexChanged;
2024-03-23 19:50:45 +04:00
//
// textBoxCount
//
2024-05-02 17:46:55 +04:00
textBoxCount.Location = new Point(114, 99);
textBoxCount.Margin = new Padding(3, 4, 3, 4);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(261, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += textBoxCount_TextChanged;
2024-03-23 19:50:45 +04:00
//
// textBoxSum
//
2024-05-02 17:46:55 +04:00
textBoxSum.Location = new Point(114, 141);
textBoxSum.Margin = new Padding(3, 4, 3, 4);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(261, 27);
textBoxSum.TabIndex = 5;
2024-03-23 19:50:45 +04:00
//
// buttonSave
//
2024-05-02 17:46:55 +04:00
buttonSave.Location = new Point(192, 176);
buttonSave.Margin = new Padding(3, 4, 3, 4);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(93, 33);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
2024-03-23 19:50:45 +04:00
//
// buttonCancel
//
2024-05-02 17:46:55 +04:00
buttonCancel.Location = new Point(302, 176);
buttonCancel.Margin = new Padding(3, 4, 3, 4);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(73, 33);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(114, 59);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(261, 28);
comboBoxClient.TabIndex = 8;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(25, 62);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.TabIndex = 9;
labelClient.Text = "Клиент:";
2024-03-23 19:50:45 +04:00
//
// FormCreateOrder
//
2024-05-02 17:46:55 +04:00
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(422, 222);
Controls.Add(labelClient);
Controls.Add(comboBoxClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPastry);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelPastry);
Margin = new Padding(3, 4, 3, 4);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
2024-03-23 19:50:45 +04:00
}
#endregion
private Label labelPastry;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxPastry;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
2024-05-02 17:46:55 +04:00
private ComboBox comboBoxClient;
private Label labelClient;
2024-03-23 19:50:45 +04:00
}
}