ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallation/FormCreateOrder.Designer.cs
Максим Куклев 757c1ea0f0 загрузил
2024-05-12 14:45:39 +04:00

144 lines
5.0 KiB
C#

namespace SoftwareInstallationView
{
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()
{
labelPackage = new Label();
comboBoxPackage = new ComboBox();
labelCount = new Label();
textBoxCount = new TextBox();
labelSum = new Label();
textBoxSum = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// labelPackage
//
labelPackage.AutoSize = true;
labelPackage.Location = new Point(11, 15);
labelPackage.Name = "labelPackage";
labelPackage.Size = new Size(71, 20);
labelPackage.TabIndex = 0;
labelPackage.Text = "Изделие:";
//
// comboBoxPackage
//
comboBoxPackage.FormattingEnabled = true;
comboBoxPackage.Location = new Point(115, 12);
comboBoxPackage.Name = "comboBoxPackage";
comboBoxPackage.Size = new Size(358, 28);
comboBoxPackage.TabIndex = 1;
comboBoxPackage.SelectedIndexChanged += ComboBoxPackage_SelectedIndexChanged;
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(11, 49);
labelCount.Name = "labelCount";
labelCount.Size = new Size(97, 20);
labelCount.TabIndex = 2;
labelCount.Text = "Количество: ";
//
// textBoxCount
//
textBoxCount.Location = new Point(115, 45);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(358, 27);
textBoxCount.TabIndex = 3;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(11, 80);
labelSum.Name = "labelSum";
labelSum.Size = new Size(62, 20);
labelSum.TabIndex = 4;
labelSum.Text = "Сумма: ";
//
// textBoxSum
//
textBoxSum.Location = new Point(115, 80);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(358, 27);
textBoxSum.TabIndex = 5;
//
// buttonCancel
//
buttonCancel.Location = new Point(337, 113);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(110, 32);
buttonCancel.TabIndex = 6;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(221, 113);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(110, 32);
buttonSave.TabIndex = 7;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(485, 157);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxSum);
Controls.Add(labelSum);
Controls.Add(textBoxCount);
Controls.Add(labelCount);
Controls.Add(comboBoxPackage);
Controls.Add(labelPackage);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelPackage;
private ComboBox comboBoxPackage;
private Label labelCount;
private TextBox textBoxCount;
private Label labelSum;
private TextBox textBoxSum;
private Button buttonCancel;
private Button buttonSave;
}
}