169 lines
4.6 KiB
C#
Raw Permalink Normal View History

2023-02-06 16:15:16 +04:00
namespace SoftwareInstallationView
{
2023-03-23 00:58:36 +04:00
partial class FormCreateOrder
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
2023-02-06 16:15:16 +04:00
2023-03-23 00:58:36 +04:00
/// <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);
}
2023-02-06 16:15:16 +04:00
2023-03-23 00:58:36 +04:00
#region Windows Form Designer generated code
2023-02-06 16:15:16 +04:00
2023-03-23 00:58:36 +04:00
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
textBoxSum = new TextBox();
textBoxCount = new NumericUpDown();
comboBoxPackage = new ComboBox();
buttonSave = new Button();
buttonCancel = new Button();
label3 = new Label();
label2 = new Label();
label1 = new Label();
comboBoxClient = new ComboBox();
label4 = new Label();
((System.ComponentModel.ISupportInitialize)textBoxCount).BeginInit();
SuspendLayout();
//
// textBoxSum
//
textBoxSum.Location = new Point(101, 65);
textBoxSum.Name = "textBoxSum";
textBoxSum.Size = new Size(214, 23);
textBoxSum.TabIndex = 15;
//
// textBoxCount
//
textBoxCount.Location = new Point(101, 38);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(214, 23);
textBoxCount.TabIndex = 14;
textBoxCount.Click += TextBoxCount_TextChanged;
//
// comboBoxPackage
//
comboBoxPackage.FormattingEnabled = true;
comboBoxPackage.Location = new Point(101, 9);
comboBoxPackage.Name = "comboBoxPackage";
comboBoxPackage.Size = new Size(214, 23);
comboBoxPackage.TabIndex = 13;
comboBoxPackage.SelectedIndexChanged += ComboBoxPackage_SelectedIndexChanged;
//
// buttonSave
//
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonSave.Location = new Point(141, 131);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(77, 23);
buttonSave.TabIndex = 12;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonCancel.Location = new Point(221, 131);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(95, 23);
buttonCancel.TabIndex = 11;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 68);
label3.Name = "label3";
label3.Size = new Size(48, 15);
label3.TabIndex = 10;
label3.Text = "Сумма:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(12, 40);
label2.Name = "label2";
label2.Size = new Size(75, 15);
label2.TabIndex = 9;
label2.Text = "Количество:";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 9);
label1.Name = "label1";
label1.Size = new Size(56, 15);
label1.TabIndex = 8;
label1.Text = "Изделие:";
//
// comboBoxClient
//
comboBoxClient.FormattingEnabled = true;
comboBoxClient.Location = new Point(101, 94);
comboBoxClient.Name = "comboBoxClient";
comboBoxClient.Size = new Size(215, 23);
comboBoxClient.TabIndex = 17;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(12, 97);
label4.Name = "label4";
label4.Size = new Size(49, 15);
label4.TabIndex = 16;
label4.Text = "Клиент:";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(328, 166);
Controls.Add(comboBoxClient);
Controls.Add(label4);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxPackage);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormCreateOrder";
Text = "Заказ";
((System.ComponentModel.ISupportInitialize)textBoxCount).EndInit();
ResumeLayout(false);
PerformLayout();
}
2023-02-06 16:15:16 +04:00
2023-03-23 00:58:36 +04:00
#endregion
2023-02-06 16:15:16 +04:00
2023-03-23 00:58:36 +04:00
private TextBox textBoxSum;
private NumericUpDown textBoxCount;
private ComboBox comboBoxPackage;
private Button buttonSave;
private Button buttonCancel;
private Label label3;
private Label label2;
private Label label1;
private ComboBox comboBoxClient;
private Label label4;
}
2023-02-06 16:15:16 +04:00
}