ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallation/FormCreateOrder.Designer.cs

144 lines
4.9 KiB
C#
Raw Normal View History

2024-04-07 17:05:30 +04:00
namespace SoftwareInstallation.Forms
2024-04-07 16:54:02 +04:00
{
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-04-07 17:05:30 +04:00
label1 = new Label();
label2 = new Label();
label3 = new Label();
2024-04-07 16:54:02 +04:00
textBoxCount = new TextBox();
2024-04-07 17:05:30 +04:00
comboBoxPackage= new ComboBox();
2024-04-07 16:54:02 +04:00
textBoxSum = new TextBox();
buttonSave = new Button();
2024-04-07 17:05:30 +04:00
buttonCancel = new Button();
2024-04-07 16:54:02 +04:00
SuspendLayout();
//
2024-04-07 17:05:30 +04:00
// label1
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
label1.AutoSize = true;
label1.Location = new Point(19, 12);
label1.Name = "label1";
label1.Size = new Size(56, 15);
label1.TabIndex = 0;
label1.Text = "Изделие:";
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
// label2
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
label2.AutoSize = true;
label2.Location = new Point(19, 44);
label2.Name = "label2";
label2.Size = new Size(75, 15);
label2.TabIndex = 1;
label2.Text = "Количество:";
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
// label3
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
label3.AutoSize = true;
label3.Location = new Point(19, 70);
label3.Name = "label3";
label3.Size = new Size(48, 15);
label3.TabIndex = 2;
label3.Text = "Сумма:";
2024-04-07 16:54:02 +04:00
//
// textBoxCount
//
textBoxCount.Location = new Point(103, 41);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(246, 23);
textBoxCount.TabIndex = 3;
2024-04-07 17:05:30 +04:00
textBoxCount.TextChanged += textBoxCount_TextChanged;
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
// comboBoxPackage
2024-04-07 16:54:02 +04:00
//
2024-04-07 17:05:30 +04:00
comboBoxPackage.FormattingEnabled = true;
comboBoxPackage.Location = new Point(103, 10);
comboBoxPackage.Name = "comboBoxPackage";
comboBoxPackage.Size = new Size(246, 23);
comboBoxPackage.TabIndex = 4;
comboBoxPackage.SelectedIndexChanged += ComboBoxPackage_SelectedIndexChanged;
2024-04-07 16:54:02 +04:00
//
// textBoxSum
//
textBoxSum.Location = new Point(103, 70);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(246, 23);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(150, 101);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 26);
2024-04-07 17:05:30 +04:00
buttonSave.TabIndex = 6;
2024-04-07 16:54:02 +04:00
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
2024-04-07 17:05:30 +04:00
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(249, 101);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 26);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
2024-04-07 16:54:02 +04:00
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(374, 136);
Controls.Add(buttonCancel);
2024-04-07 17:05:30 +04:00
Controls.Add(buttonSave);
2024-04-07 16:54:02 +04:00
Controls.Add(textBoxSum);
Controls.Add(comboBoxPackage);
2024-04-07 17:05:30 +04:00
Controls.Add(textBoxCount);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
2024-04-07 16:54:02 +04:00
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
2024-04-07 17:05:30 +04:00
private Label label1;
private Label label2;
private Label label3;
2024-04-07 16:54:02 +04:00
private TextBox textBoxCount;
2024-04-07 17:05:30 +04:00
private ComboBox comboBoxPackage;
2024-04-07 16:54:02 +04:00
private TextBox textBoxSum;
private Button buttonSave;
2024-04-07 17:05:30 +04:00
private Button buttonCancel;
2024-04-07 16:54:02 +04:00
}
}