146 lines
5.2 KiB
C#
146 lines
5.2 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()
|
|
{
|
|
labelSoftware = new Label();
|
|
comboBoxSoftware = new ComboBox();
|
|
labelCount = new Label();
|
|
textBoxCount = new TextBox();
|
|
labelSumm = new Label();
|
|
textBoxSum = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelSoftware
|
|
//
|
|
labelSoftware.AutoSize = true;
|
|
labelSoftware.Location = new Point(11, 15);
|
|
labelSoftware.Name = "labelSoftware";
|
|
labelSoftware.Size = new Size(38, 20);
|
|
labelSoftware.TabIndex = 0;
|
|
labelSoftware.Text = "ПО: ";
|
|
//
|
|
// comboBoxSoftware
|
|
//
|
|
comboBoxSoftware.DropDownStyle = ComboBoxStyle.DropDownList;
|
|
comboBoxSoftware.FormattingEnabled = true;
|
|
comboBoxSoftware.Location = new Point(115, 12);
|
|
comboBoxSoftware.Name = "comboBoxSoftware";
|
|
comboBoxSoftware.Size = new Size(228, 28);
|
|
comboBoxSoftware.TabIndex = 1;
|
|
comboBoxSoftware.SelectedIndexChanged += ComboBoxSoftware_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(228, 27);
|
|
textBoxCount.TabIndex = 3;
|
|
textBoxCount.TextChanged += TextBoxCount_TextChanged;
|
|
//
|
|
// labelSumm
|
|
//
|
|
labelSumm.AutoSize = true;
|
|
labelSumm.Location = new Point(11, 80);
|
|
labelSumm.Name = "labelSumm";
|
|
labelSumm.Size = new Size(62, 20);
|
|
labelSumm.TabIndex = 4;
|
|
labelSumm.Text = "Сумма: ";
|
|
//
|
|
// textBoxSum
|
|
//
|
|
textBoxSum.Location = new Point(115, 80);
|
|
textBoxSum.Name = "textBoxSum";
|
|
textBoxSum.ReadOnly = true;
|
|
textBoxSum.Size = new Size(228, 27);
|
|
textBoxSum.TabIndex = 5;
|
|
textBoxSum.Click += TextBoxCount_TextChanged;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(232, 116);
|
|
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(115, 116);
|
|
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(360, 157);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(textBoxSum);
|
|
Controls.Add(labelSumm);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(comboBoxSoftware);
|
|
Controls.Add(labelSoftware);
|
|
Name = "FormCreateOrder";
|
|
Text = "Заказ";
|
|
Load += FormCreateOrder_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelSoftware;
|
|
private ComboBox comboBoxSoftware;
|
|
private Label labelCount;
|
|
private TextBox textBoxCount;
|
|
private Label labelSumm;
|
|
private TextBox textBoxSum;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |