PIbd-21__Kryukov_A.I._Typog.../TypographyView/FormCreateOrder.Designer.cs

166 lines
5.8 KiB
C#
Raw Normal View History

namespace TypographyView
2024-02-12 12:46:44 +04:00
{
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()
{
labelPrinted = new Label();
2024-02-12 12:46:44 +04:00
labelCount = new Label();
labelSum = new Label();
comboBoxPrinted = new ComboBox();
2024-02-12 12:46:44 +04:00
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
comboBoxClient = new ComboBox();
label1 = new Label();
2024-02-12 12:46:44 +04:00
SuspendLayout();
//
// labelPrinted
2024-02-12 12:46:44 +04:00
//
labelPrinted.AutoSize = true;
labelPrinted.Location = new Point(12, 22);
labelPrinted.Name = "labelPrinted";
labelPrinted.Size = new Size(71, 20);
labelPrinted.TabIndex = 0;
labelPrinted.Text = "Изделие:";
2024-02-12 12:46:44 +04:00
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(12, 94);
2024-02-12 12:46:44 +04:00
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(12, 123);
2024-02-12 12:46:44 +04:00
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxPrinted
2024-02-12 12:46:44 +04:00
//
comboBoxPrinted.FormattingEnabled = true;
comboBoxPrinted.Location = new Point(111, 19);
comboBoxPrinted.Name = "comboBoxPrinted";
comboBoxPrinted.Size = new Size(238, 28);
comboBoxPrinted.TabIndex = 3;
comboBoxPrinted.SelectedIndexChanged += ComboBoxPrinted_SelectedIndexChanged;
2024-02-12 12:46:44 +04:00
//
// textBoxCount
//
textBoxCount.Location = new Point(111, 87);
2024-02-12 12:46:44 +04:00
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(238, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(111, 120);
2024-02-12 12:46:44 +04:00
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(238, 27);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(111, 189);
2024-02-12 12:46:44 +04:00
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(117, 43);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(234, 189);
2024-02-12 12:46:44 +04:00
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(115, 43);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(111, 53);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(238, 28);
comboBoxClient.TabIndex = 8;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 56);
label1.Name = "label1";
label1.Size = new Size(61, 20);
label1.TabIndex = 9;
label1.Text = "Клиент:";
//
2024-02-12 12:46:44 +04:00
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(474, 264);
Controls.Add(label1);
Controls.Add(comboBoxClient);
2024-02-12 12:46:44 +04:00
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPrinted);
2024-02-12 12:46:44 +04:00
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelPrinted);
2024-02-12 12:46:44 +04:00
Name = "FormCreateOrder";
Text = "Заказ";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelPrinted;
2024-02-12 12:46:44 +04:00
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxPrinted;
2024-02-12 12:46:44 +04:00
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private ComboBox comboBoxClient;
private Label label1;
2024-02-12 12:46:44 +04:00
}
}