2024-04-05 13:29:30 +04:00

167 lines
5.9 KiB
C#

namespace ShipyardView
{
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()
{
labelShip = new Label();
labelCount = new Label();
labelSum = new Label();
comboBoxShips = new ComboBox();
textBoxCount = new TextBox();
textBoxSum = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
comboBoxClients = new ComboBox();
labelClient = new Label();
SuspendLayout();
//
// labelShip
//
labelShip.AutoSize = true;
labelShip.Location = new Point(40, 23);
labelShip.Name = "labelShip";
labelShip.Size = new Size(72, 20);
labelShip.TabIndex = 0;
labelShip.Text = "Корабль:";
//
// labelCount
//
labelCount.AutoSize = true;
labelCount.Location = new Point(40, 91);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(40, 124);
labelSum.Name = "labelSum";
labelSum.Size = new Size(58, 20);
labelSum.TabIndex = 2;
labelSum.Text = "Сумма:";
//
// comboBoxShips
//
comboBoxShips.FormattingEnabled = true;
comboBoxShips.Location = new Point(144, 20);
comboBoxShips.Name = "comboBoxShips";
comboBoxShips.Size = new Size(360, 28);
comboBoxShips.TabIndex = 3;
comboBoxShips.SelectedIndexChanged += ComboBoxShips_SelectedIndexChanged;
//
// textBoxCount
//
textBoxCount.Location = new Point(144, 88);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(360, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(144, 121);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(360, 27);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(239, 182);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(111, 40);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(375, 182);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(111, 40);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// comboBoxClients
//
comboBoxClients.FormattingEnabled = true;
comboBoxClients.Location = new Point(144, 54);
comboBoxClients.Name = "comboBoxClients";
comboBoxClients.Size = new Size(360, 28);
comboBoxClients.TabIndex = 9;
//
// labelClient
//
labelClient.AutoSize = true;
labelClient.Location = new Point(40, 57);
labelClient.Name = "labelClient";
labelClient.Size = new Size(61, 20);
labelClient.TabIndex = 8;
labelClient.Text = "Клиент:";
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(532, 248);
Controls.Add(comboBoxClients);
Controls.Add(labelClient);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxSum);
Controls.Add(textBoxCount);
Controls.Add(comboBoxShips);
Controls.Add(labelSum);
Controls.Add(labelCount);
Controls.Add(labelShip);
Name = "FormCreateOrder";
Text = "Создание заказа";
Load += FormCreateOrder_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelShip;
private Label labelCount;
private Label labelSum;
private ComboBox comboBoxShips;
private TextBox textBoxCount;
private TextBox textBoxSum;
private Button buttonSave;
private Button buttonCancel;
private ComboBox comboBoxClients;
private Label labelClient;
}
}