118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
namespace ShipyardView
|
|
{
|
|
partial class FormShipDetail
|
|
{
|
|
/// <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()
|
|
{
|
|
labelDetail = new Label();
|
|
labelCount = new Label();
|
|
textBoxCount = new TextBox();
|
|
comboBoxDetail = new ComboBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelDetail
|
|
//
|
|
labelDetail.AutoSize = true;
|
|
labelDetail.Location = new Point(41, 26);
|
|
labelDetail.Name = "labelDetail";
|
|
labelDetail.Size = new Size(60, 20);
|
|
labelDetail.TabIndex = 0;
|
|
labelDetail.Text = "Деталь:";
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(41, 66);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(90, 20);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество";
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(145, 63);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(328, 27);
|
|
textBoxCount.TabIndex = 2;
|
|
//
|
|
// comboBoxDetail
|
|
//
|
|
comboBoxDetail.FormattingEnabled = true;
|
|
comboBoxDetail.Location = new Point(145, 23);
|
|
comboBoxDetail.Name = "comboBoxDetail";
|
|
comboBoxDetail.Size = new Size(328, 28);
|
|
comboBoxDetail.TabIndex = 3;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(190, 96);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(118, 40);
|
|
buttonSave.TabIndex = 4;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(329, 96);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(118, 40);
|
|
buttonCancel.TabIndex = 5;
|
|
buttonCancel.Text = "Отменить";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// FormShipDetail
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(484, 148);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(comboBoxDetail);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelDetail);
|
|
Name = "FormShipDetail";
|
|
Text = "Деталь коробля";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelDetail;
|
|
private Label labelCount;
|
|
private TextBox textBoxCount;
|
|
private ComboBox comboBoxDetail;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |