PIbd-23_Sergunov_M.A._GiftShop/GiftShop/GiftShopView/FormCreateOrder.Designer.cs

169 lines
4.6 KiB
C#
Raw Normal View History

2023-03-31 19:55:55 +04:00
namespace GiftShopView
{
2023-06-01 23:00:14 +04:00
partial class FormCreateOrder
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
2023-03-31 19:55:55 +04:00
2023-06-01 23:00:14 +04:00
/// <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);
}
2023-03-31 19:55:55 +04:00
2023-06-01 23:00:14 +04:00
#region Windows Form Designer generated code
2023-03-31 19:55:55 +04:00
2023-06-01 23:00:14 +04:00
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelGift = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxGift = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
labelClient = new Label();
comboBoxClient = new ComboBox();
SuspendLayout();
//
// labelGift
//
labelGift.AutoSize = true;
labelGift.Location = new Point(34, 44);
labelGift.Name = "labelGift";
labelGift.Size = new Size(71, 20);
labelGift.TabIndex = 0;
labelGift.Text = "Изделие:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(34, 138);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(34, 187);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxGift
//
comboBoxGift.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxGift.FormattingEnabled = true;
comboBoxGift.Location = new Point(141, 41);
comboBoxGift.Name = "comboBoxGift";
comboBoxGift.Size = new Size(369, 28);
comboBoxGift.TabIndex = 3;
comboBoxGift.SelectedIndexChanged += ComboBoxGift_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(141, 135);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(369, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(141, 187);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(369, 27);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(197, 245);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(144, 45);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(384, 245);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(126, 45);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(34, 92);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.TabIndex = 8;
labelClient.Text = "Клиент:";
//
// comboBoxClient
//
comboBoxClient.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(141, 89);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(369, 28);
comboBoxClient.TabIndex = 9;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(539, 308);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxGift);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelGift);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
2023-03-31 19:55:55 +04:00
2023-06-01 23:00:14 +04:00
#endregion
2023-03-31 19:55:55 +04:00
2023-06-01 23:00:14 +04:00
private Label labelGift;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxGift;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private Label labelClient;
private ComboBox comboBoxClient;
}
2023-03-31 19:55:55 +04:00
}