143 lines
5.2 KiB
C#
143 lines
5.2 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()
|
|
{
|
|
textBoxCount = new TextBox();
|
|
textBoxSum = new TextBox();
|
|
ComboBoxManufacture = new ComboBox();
|
|
ButtonCancel = new Button();
|
|
ButtonSave = new Button();
|
|
labelItem = new Label();
|
|
labelcount = new Label();
|
|
labeltotal = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(455, 56);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(125, 27);
|
|
textBoxCount.TabIndex = 1;
|
|
textBoxCount.TextChanged += textBoxCount_TextChanged;
|
|
//
|
|
// textBoxSum
|
|
//
|
|
textBoxSum.Location = new Point(377, 109);
|
|
textBoxSum.Name = "textBoxSum";
|
|
textBoxSum.ReadOnly = true;
|
|
textBoxSum.Size = new Size(125, 27);
|
|
textBoxSum.TabIndex = 2;
|
|
//
|
|
// ComboBoxManufacture
|
|
//
|
|
ComboBoxManufacture.FormattingEnabled = true;
|
|
ComboBoxManufacture.Location = new Point(271, 55);
|
|
ComboBoxManufacture.Name = "ComboBoxManufacture";
|
|
ComboBoxManufacture.Size = new Size(151, 28);
|
|
ComboBoxManufacture.TabIndex = 3;
|
|
ComboBoxManufacture.SelectedIndexChanged += ComboBoxManufacture_SelectedIndexChanged;
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
ButtonCancel.Location = new Point(440, 168);
|
|
ButtonCancel.Name = "ButtonCancel";
|
|
ButtonCancel.Size = new Size(94, 29);
|
|
ButtonCancel.TabIndex = 4;
|
|
ButtonCancel.Text = "отмена";
|
|
ButtonCancel.UseVisualStyleBackColor = true;
|
|
ButtonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// ButtonSave
|
|
//
|
|
ButtonSave.Location = new Point(307, 168);
|
|
ButtonSave.Name = "ButtonSave";
|
|
ButtonSave.Size = new Size(94, 29);
|
|
ButtonSave.TabIndex = 5;
|
|
ButtonSave.Text = "сохранить";
|
|
ButtonSave.UseVisualStyleBackColor = true;
|
|
ButtonSave.Click += ButtonSave_Click;
|
|
//
|
|
// labelItem
|
|
//
|
|
labelItem.AutoSize = true;
|
|
labelItem.Location = new Point(271, 22);
|
|
labelItem.Name = "labelItem";
|
|
labelItem.Size = new Size(67, 20);
|
|
labelItem.TabIndex = 6;
|
|
labelItem.Text = "корабль";
|
|
//
|
|
// labelcount
|
|
//
|
|
labelcount.AutoSize = true;
|
|
labelcount.Location = new Point(455, 22);
|
|
labelcount.Name = "labelcount";
|
|
labelcount.Size = new Size(88, 20);
|
|
labelcount.TabIndex = 7;
|
|
labelcount.Text = "количество";
|
|
//
|
|
// labeltotal
|
|
//
|
|
labeltotal.AutoSize = true;
|
|
labeltotal.Location = new Point(307, 112);
|
|
labeltotal.Name = "labeltotal";
|
|
labeltotal.Size = new Size(51, 20);
|
|
labeltotal.TabIndex = 8;
|
|
labeltotal.Text = "итого:";
|
|
//
|
|
// FormCreateOrder
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 209);
|
|
Controls.Add(labeltotal);
|
|
Controls.Add(labelcount);
|
|
Controls.Add(labelItem);
|
|
Controls.Add(ButtonSave);
|
|
Controls.Add(ButtonCancel);
|
|
Controls.Add(ComboBoxManufacture);
|
|
Controls.Add(textBoxSum);
|
|
Controls.Add(textBoxCount);
|
|
Name = "FormCreateOrder";
|
|
Text = "FormCreateOrder";
|
|
Load += FormCreateOrder_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
private TextBox textBoxCount;
|
|
private TextBox textBoxSum;
|
|
private ComboBox ComboBoxManufacture;
|
|
private Button ButtonCancel;
|
|
private Button ButtonSave;
|
|
private Label labelItem;
|
|
private Label labelcount;
|
|
private Label labeltotal;
|
|
}
|
|
} |