2024-02-26 00:11:41 +04:00
|
|
|
|
namespace SecuritySystemView
|
|
|
|
|
{
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
labelSecureName = new Label();
|
|
|
|
|
labelCount = new Label();
|
|
|
|
|
labelSum = new Label();
|
|
|
|
|
comboBoxSecure = new ComboBox();
|
|
|
|
|
textBoxCount = new TextBox();
|
|
|
|
|
textBoxSum = new TextBox();
|
|
|
|
|
buttonSave = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelSecureName
|
|
|
|
|
//
|
|
|
|
|
labelSecureName.AutoSize = true;
|
|
|
|
|
labelSecureName.Location = new Point(11, 12);
|
|
|
|
|
labelSecureName.Name = "labelSecureName";
|
|
|
|
|
labelSecureName.Size = new Size(71, 20);
|
|
|
|
|
labelSecureName.TabIndex = 0;
|
|
|
|
|
labelSecureName.Text = "Изделие:";
|
|
|
|
|
//
|
|
|
|
|
// labelCount
|
|
|
|
|
//
|
|
|
|
|
labelCount.AutoSize = true;
|
|
|
|
|
labelCount.Location = new Point(11, 46);
|
|
|
|
|
labelCount.Name = "labelCount";
|
|
|
|
|
labelCount.Size = new Size(93, 20);
|
|
|
|
|
labelCount.TabIndex = 1;
|
|
|
|
|
labelCount.Text = "Количество:";
|
|
|
|
|
//
|
|
|
|
|
// labelSum
|
|
|
|
|
//
|
|
|
|
|
labelSum.AutoSize = true;
|
|
|
|
|
labelSum.Location = new Point(12, 78);
|
|
|
|
|
labelSum.Name = "labelSum";
|
|
|
|
|
labelSum.Size = new Size(58, 20);
|
|
|
|
|
labelSum.TabIndex = 2;
|
|
|
|
|
labelSum.Text = "Сумма:";
|
|
|
|
|
//
|
|
|
|
|
// comboBoxSecure
|
|
|
|
|
//
|
|
|
|
|
comboBoxSecure.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
|
|
|
comboBoxSecure.FormattingEnabled = true;
|
|
|
|
|
comboBoxSecure.Location = new Point(110, 9);
|
|
|
|
|
comboBoxSecure.Name = "comboBoxSecure";
|
|
|
|
|
comboBoxSecure.Size = new Size(462, 28);
|
2024-03-24 16:45:53 +04:00
|
|
|
|
comboBoxSecure.TabIndex = 0;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
comboBoxSecure.SelectedIndexChanged += ComboBoxSecure_SelectedIndexChanged;
|
|
|
|
|
//
|
|
|
|
|
// textBoxCount
|
|
|
|
|
//
|
|
|
|
|
textBoxCount.Location = new Point(110, 43);
|
|
|
|
|
textBoxCount.Name = "textBoxCount";
|
|
|
|
|
textBoxCount.Size = new Size(462, 27);
|
2024-03-24 16:45:53 +04:00
|
|
|
|
textBoxCount.TabIndex = 1;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
textBoxCount.TextChanged += TextBoxCount_TextChanged;
|
|
|
|
|
//
|
|
|
|
|
// textBoxSum
|
|
|
|
|
//
|
|
|
|
|
textBoxSum.Location = new Point(110, 75);
|
|
|
|
|
textBoxSum.Name = "textBoxSum";
|
|
|
|
|
textBoxSum.ReadOnly = true;
|
|
|
|
|
textBoxSum.Size = new Size(462, 27);
|
2024-03-24 16:45:53 +04:00
|
|
|
|
textBoxSum.TabIndex = 2;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonSave
|
|
|
|
|
//
|
|
|
|
|
buttonSave.Location = new Point(370, 118);
|
|
|
|
|
buttonSave.Name = "buttonSave";
|
|
|
|
|
buttonSave.Size = new Size(94, 29);
|
2024-03-24 16:45:53 +04:00
|
|
|
|
buttonSave.TabIndex = 3;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonSave.Text = "Сохранить";
|
|
|
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonSave.Click += ButtonSave_Click;
|
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
|
|
|
|
buttonCancel.Location = new Point(478, 118);
|
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
|
|
|
|
buttonCancel.Size = new Size(94, 29);
|
2024-03-24 16:45:53 +04:00
|
|
|
|
buttonCancel.TabIndex = 4;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
buttonCancel.Text = "Отменить";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
|
|
|
//
|
|
|
|
|
// FormCreateOrder
|
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(586, 160);
|
|
|
|
|
Controls.Add(buttonCancel);
|
|
|
|
|
Controls.Add(buttonSave);
|
|
|
|
|
Controls.Add(textBoxSum);
|
|
|
|
|
Controls.Add(textBoxCount);
|
|
|
|
|
Controls.Add(comboBoxSecure);
|
|
|
|
|
Controls.Add(labelSum);
|
|
|
|
|
Controls.Add(labelCount);
|
|
|
|
|
Controls.Add(labelSecureName);
|
|
|
|
|
Name = "FormCreateOrder";
|
|
|
|
|
Text = "Создание заказа";
|
2024-02-26 00:47:21 +04:00
|
|
|
|
Load += FormCreateOrder_Load;
|
2024-02-26 00:11:41 +04:00
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Label labelSecureName;
|
|
|
|
|
private Label labelCount;
|
|
|
|
|
private Label labelSum;
|
|
|
|
|
private ComboBox comboBoxSecure;
|
|
|
|
|
private TextBox textBoxCount;
|
|
|
|
|
private TextBox textBoxSum;
|
|
|
|
|
private Button buttonSave;
|
|
|
|
|
private Button buttonCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|