166 lines
5.9 KiB
C#
166 lines
5.9 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();
|
|
labelClient = new Label();
|
|
ComboBoxClient = new ComboBox();
|
|
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, 93);
|
|
labelSum.Name = "labelSum";
|
|
labelSum.Size = new Size(48, 15);
|
|
labelSum.TabIndex = 2;
|
|
labelSum.Text = "Сумма:";
|
|
//
|
|
// textBoxSum
|
|
//
|
|
textBoxSum.Location = new Point(95, 93);
|
|
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(249, 130);
|
|
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(330, 130);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// labelClient
|
|
//
|
|
labelClient.AutoSize = true;
|
|
labelClient.Location = new Point(11, 64);
|
|
labelClient.Name = "labelClient";
|
|
labelClient.Size = new Size(49, 15);
|
|
labelClient.TabIndex = 8;
|
|
labelClient.Text = "Клиент:";
|
|
//
|
|
// ComboBoxClient
|
|
//
|
|
ComboBoxClient.FormattingEnabled = true;
|
|
ComboBoxClient.Location = new Point(95, 64);
|
|
ComboBoxClient.Name = "ComboBoxClient";
|
|
ComboBoxClient.Size = new Size(298, 23);
|
|
ComboBoxClient.TabIndex = 9;
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(417, 165);
|
|
Controls.Add(ComboBoxClient);
|
|
Controls.Add(labelClient);
|
|
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;
|
|
private Label labelClient;
|
|
private ComboBox ComboBoxClient;
|
|
}
|
|
} |