PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopView/FormCreateOrder.Designer.cs

167 lines
5.7 KiB
C#
Raw Normal View History

2024-02-05 20:36:39 +04:00
namespace ComputersShopView
{
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);
}
2024-04-01 20:00:17 +04:00
#region Windows Form Designer generated code
2024-02-05 20:36:39 +04:00
2024-04-01 20:00:17 +04:00
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
labelComputer = new Label();
comboBoxComputer = new ComboBox();
labelAmount = new Label();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
labelSum = new Label();
button1 = new Button();
button2 = new Button();
comboBoxClient = new ComboBox();
labelClients = new Label();
SuspendLayout();
2024-02-07 17:16:06 +04:00
//
// labelComputer
//
2024-04-01 20:00:17 +04:00
labelComputer.AutoSize = true;
labelComputer.Location = new Point(12, 15);
labelComputer.Name = "labelComputer";
labelComputer.Size = new Size(74, 15);
labelComputer.TabIndex = 0;
labelComputer.Text = "Компьютер:";
2024-02-07 17:16:06 +04:00
//
// comboBoxComputer
//
2024-04-01 20:00:17 +04:00
comboBoxComputer.FormattingEnabled = true;
comboBoxComputer.Location = new Point(94, 12);
comboBoxComputer.Name = "comboBoxComputer";
comboBoxComputer.Size = new Size(251, 23);
comboBoxComputer.TabIndex = 1;
comboBoxComputer.SelectedIndexChanged += comboBoxComputer_SelectedIndexChanged;
2024-02-07 17:16:06 +04:00
//
2024-04-01 20:00:17 +04:00
// labelAmount
2024-02-07 17:16:06 +04:00
//
2024-04-01 20:00:17 +04:00
labelAmount.AutoSize = true;
labelAmount.Location = new Point(12, 44);
labelAmount.Name = "labelAmount";
labelAmount.Size = new Size(75, 15);
labelAmount.TabIndex = 2;
labelAmount.Text = "Количество:";
2024-02-07 17:16:06 +04:00
//
// textBoxCount
//
2024-04-01 20:00:17 +04:00
textBoxCount.Location = new Point(94, 41);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(251, 23);
textBoxCount.TabIndex = 3;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
2024-02-07 17:16:06 +04:00
//
// textBoxSum
//
2024-04-01 20:00:17 +04:00
textBoxSum.Location = new Point(94, 70);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(251, 23);
textBoxSum.TabIndex = 5;
2024-02-07 17:16:06 +04:00
//
// labelSum
//
2024-04-01 20:00:17 +04:00
labelSum.AutoSize = true;
labelSum.Location = new Point(12, 73);
labelSum.Name = "labelSum";
labelSum.Size = new Size(48, 15);
labelSum.TabIndex = 4;
labelSum.Text = "Сумма:";
2024-02-07 17:16:06 +04:00
//
// button1
//
2024-04-01 20:00:17 +04:00
button1.Location = new Point(187, 134);
button1.Name = "button1";
button1.Size = new Size(75, 23);
button1.TabIndex = 6;
button1.Text = "Сохранить";
button1.UseVisualStyleBackColor = true;
button1.Click += ButtonSave_Click;
2024-02-07 17:16:06 +04:00
//
// button2
//
2024-04-01 20:00:17 +04:00
button2.Location = new Point(268, 134);
button2.Name = "button2";
button2.Size = new Size(75, 23);
button2.TabIndex = 7;
button2.Text = "Отмена";
button2.UseVisualStyleBackColor = true;
button2.Click += ButtonCancel_Click;
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(94, 99);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(251, 23);
comboBoxClient.TabIndex = 9;
//
// labelClients
//
labelClients.AutoSize = true;
labelClients.Location = new Point(14, 102);
labelClients.Name = "labelClients";
labelClients.Size = new Size(49, 15);
labelClients.TabIndex = 8;
labelClients.Text = "Клиент:";
2024-02-07 17:16:06 +04:00
//
// FormCreateOrder
//
2024-04-01 20:00:17 +04:00
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(357, 169);
Controls.Add(comboBoxClient);
Controls.Add(labelClients);
Controls.Add(button2);
Controls.Add(button1);
Controls.Add(textBoxSum);
Controls.Add(labelSum);
Controls.Add(textBoxCount);
Controls.Add(labelAmount);
Controls.Add(comboBoxComputer);
Controls.Add(labelComputer);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
2024-02-05 20:36:39 +04:00
2024-04-01 20:00:17 +04:00
#endregion
2024-02-05 20:36:39 +04:00
2024-04-01 20:00:17 +04:00
private Label labelComputer;
2024-02-05 20:36:39 +04:00
private ComboBox comboBoxComputer;
2024-04-01 20:00:17 +04:00
private Label labelAmount;
2024-02-05 20:36:39 +04:00
private TextBox textBoxCount;
private TextBox textBoxSum;
2024-02-07 17:16:06 +04:00
private Label labelSum;
2024-02-05 20:36:39 +04:00
private Button button1;
private Button button2;
2024-04-01 20:00:17 +04:00
private ComboBox comboBoxClient;
private Label labelClients;
2024-02-05 20:36:39 +04:00
}
}