PIbd-23_Leonteva_V._A._LawFirm/LawFirm/LawFirm/FormCreateOrder.Designer.cs
2024-05-17 23:45:15 +04:00

166 lines
4.6 KiB
C#

namespace LawFirmView
{
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()
{
labelDocument = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxDocument = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
labelClient = new Label();
comboBoxClient = new ComboBox();
SuspendLayout();
//
// labelDocument
//
labelDocument.AutoSize = true;
labelDocument.Location = new Point(23, 30);
labelDocument.Name = "labelDocument";
labelDocument.Size = new Size(79, 20);
labelDocument.TabIndex = 0;
labelDocument.Text = "Документ:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(23, 70);
labelCount.Name = "labelCount";
labelCount.Size = new Size(84, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Кличество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(23, 112);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxDocument
//
comboBoxDocument.FormattingEnabled = true;
comboBoxDocument.Location = new Point(122, 27);
comboBoxDocument.Name = "comboBoxDocument";
comboBoxDocument.Size = new Size(301, 28);
comboBoxDocument.TabIndex = 3;
comboBoxDocument.SelectedIndexChanged += comboBoxDocument_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(122, 67);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(301, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += textBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(122, 105);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(301, 27);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(183, 183);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(94, 29);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(329, 183);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(94, 29);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(23, 149);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.TabIndex = 8;
labelClient.Text = "Клиент:";
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(122, 149);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(301, 28);
comboBoxClient.TabIndex = 9;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(435, 224);
Controls.Add(comboBoxClient);
Controls.Add(labelClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxDocument);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelDocument);
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelDocument;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxDocument;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private Label labelClient;
private ComboBox comboBoxClient;
}
}