143 lines
5.0 KiB
C#
143 lines
5.0 KiB
C#
|
namespace RenovationWorkView
|
|||
|
{
|
|||
|
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()
|
|||
|
{
|
|||
|
labelComponent = new Label();
|
|||
|
labelCount = new Label();
|
|||
|
labelSum = new Label();
|
|||
|
textBoxSum = new TextBox();
|
|||
|
textBoxCount = new TextBox();
|
|||
|
comboBoxRepair = new ComboBox();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelComponent
|
|||
|
//
|
|||
|
labelComponent.AutoSize = true;
|
|||
|
labelComponent.Location = new Point(12, 6);
|
|||
|
labelComponent.Name = "labelComponent";
|
|||
|
labelComponent.Size = new Size(56, 15);
|
|||
|
labelComponent.TabIndex = 0;
|
|||
|
labelComponent.Text = "Изделие:";
|
|||
|
//
|
|||
|
// labelCount
|
|||
|
//
|
|||
|
labelCount.AutoSize = true;
|
|||
|
labelCount.Location = new Point(12, 37);
|
|||
|
labelCount.Name = "labelCount";
|
|||
|
labelCount.Size = new Size(75, 15);
|
|||
|
labelCount.TabIndex = 1;
|
|||
|
labelCount.Text = "Количество:";
|
|||
|
//
|
|||
|
// labelSum
|
|||
|
//
|
|||
|
labelSum.AutoSize = true;
|
|||
|
labelSum.Location = new Point(12, 67);
|
|||
|
labelSum.Name = "labelSum";
|
|||
|
labelSum.Size = new Size(48, 15);
|
|||
|
labelSum.TabIndex = 2;
|
|||
|
labelSum.Text = "Сумма:";
|
|||
|
//
|
|||
|
// textBoxSum
|
|||
|
//
|
|||
|
textBoxSum.Location = new Point(95, 67);
|
|||
|
textBoxSum.Name = "textBoxSum";
|
|||
|
textBoxSum.Size = new Size(298, 23);
|
|||
|
textBoxSum.TabIndex = 3;
|
|||
|
//
|
|||
|
// textBoxCount
|
|||
|
//
|
|||
|
textBoxCount.Location = new Point(95, 37);
|
|||
|
textBoxCount.Name = "textBoxCount";
|
|||
|
textBoxCount.Size = new Size(298, 23);
|
|||
|
textBoxCount.TabIndex = 4;
|
|||
|
textBoxCount.TextChanged += textBoxCount_TextChanged;
|
|||
|
//
|
|||
|
// comboBoxRepair
|
|||
|
//
|
|||
|
comboBoxRepair.FormattingEnabled = true;
|
|||
|
comboBoxRepair.Location = new Point(95, 6);
|
|||
|
comboBoxRepair.Name = "comboBoxRepair";
|
|||
|
comboBoxRepair.Size = new Size(298, 23);
|
|||
|
comboBoxRepair.TabIndex = 5;
|
|||
|
comboBoxRepair.SelectedIndexChanged += comboBoxRepair_SelectedIndexChanged;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(220, 96);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(75, 23);
|
|||
|
buttonSave.TabIndex = 6;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(311, 96);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(75, 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(398, 124);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(comboBoxRepair);
|
|||
|
Controls.Add(textBoxCount);
|
|||
|
Controls.Add(textBoxSum);
|
|||
|
Controls.Add(labelSum);
|
|||
|
Controls.Add(labelCount);
|
|||
|
Controls.Add(labelComponent);
|
|||
|
Name = "FormCreateOrder";
|
|||
|
Text = "Заказ";
|
|||
|
Load += FormCreateOrder_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelComponent;
|
|||
|
private Label labelCount;
|
|||
|
private Label labelSum;
|
|||
|
private TextBox textBoxSum;
|
|||
|
private TextBox textBoxCount;
|
|||
|
private ComboBox comboBoxRepair;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|