namespace ShipyardView
{
partial class FormCreateOrder
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
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();
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, 63);
labelCount.Name = "labelCount";
labelCount.Size = new Size(93, 20);
labelCount.TabIndex = 1;
labelCount.Text = "Количество:";
//
// labelSum
//
labelSum.AutoSize = true;
labelSum.Location = new Point(40, 105);
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, 60);
textBoxCount.Name = "textBoxCount";
textBoxCount.Size = new Size(360, 27);
textBoxCount.TabIndex = 4;
textBoxCount.TextChanged += TextBoxCount_TextChanged;
//
// textBoxSum
//
textBoxSum.Location = new Point(144, 102);
textBoxSum.Name = "textBoxSum";
textBoxSum.ReadOnly = true;
textBoxSum.Size = new Size(360, 27);
textBoxSum.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(236, 149);
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(372, 149);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(111, 40);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// FormCreateOrder
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(540, 201);
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 = "FormCreateOrder";
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;
}
}