PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationView/FormCreateOrder.Designer.cs
2024-02-27 23:44:38 +04:00

146 lines
5.1 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();
labelCount = new Label();
labelSum = new Label();
comboBoxPackage = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// labelPackage
//
labelPackage.AutoSize = true;
labelPackage.Font = new Font("Segoe UI", 10F);
labelPackage.Location = new Point(12, 13);
labelPackage.Name = "labelPackage";
labelPackage.Size = new Size(66, 19);
labelPackage.TabIndex = 0;
labelPackage.Text = "Изделие ";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Font = new Font("Segoe UI", 10F);
labelCount.Location = new Point(12, 47);
labelCount.Name = "labelCount";
labelCount.Size = new Size(82, 19);
labelCount.TabIndex = 1;
labelCount.Text = "Количество";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Font = new Font("Segoe UI", 10F);
labelSum.Location = new Point(12, 83);
labelSum.Name = "labelSum";
labelSum.Size = new Size(52, 19);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма";
//
// comboBoxPackage
//
comboBoxPackage.FormattingEnabled = true;
comboBoxPackage.Location = new Point(122, 9);
comboBoxPackage.Name = "comboBoxPackage";
comboBoxPackage.Size = new Size(287, 23);
comboBoxPackage.TabIndex = 3;
comboBoxPackage.SelectedIndexChanged += comboBoxPackage_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(122, 43);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(287, 23);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(122, 79);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(287, 23);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(229, 114);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(96, 23);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(331, 114);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(96, 23);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(439, 149);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPackage);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelPackage);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelPackage;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxPackage;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
}
}