118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
namespace ShipyardView
|
|
{
|
|
partial class FormComponent
|
|
{
|
|
/// <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()
|
|
{
|
|
textBoxName = new TextBox();
|
|
textBoxCost = new TextBox();
|
|
buttonCancel = new Button();
|
|
ButtonSave = new Button();
|
|
labelName = new Label();
|
|
labelCost = new Label();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(326, 42);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(171, 27);
|
|
textBoxName.TabIndex = 0;
|
|
//
|
|
// textBoxCost
|
|
//
|
|
textBoxCost.Location = new Point(329, 100);
|
|
textBoxCost.Name = "textBoxCost";
|
|
textBoxCost.Size = new Size(168, 27);
|
|
textBoxCost.TabIndex = 1;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(429, 158);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(94, 29);
|
|
buttonCancel.TabIndex = 2;
|
|
buttonCancel.Text = "отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// ButtonSave
|
|
//
|
|
ButtonSave.Location = new Point(312, 158);
|
|
ButtonSave.Name = "ButtonSave";
|
|
ButtonSave.Size = new Size(94, 29);
|
|
ButtonSave.TabIndex = 3;
|
|
ButtonSave.Text = "сохранить";
|
|
ButtonSave.UseVisualStyleBackColor = true;
|
|
ButtonSave.Click += ButtonSave_Click;
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(235, 42);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(75, 20);
|
|
labelName.TabIndex = 4;
|
|
labelName.Text = "название";
|
|
//
|
|
// labelCost
|
|
//
|
|
labelCost.AutoSize = true;
|
|
labelCost.Location = new Point(249, 103);
|
|
labelCost.Name = "labelCost";
|
|
labelCost.Size = new Size(43, 20);
|
|
labelCost.TabIndex = 5;
|
|
labelCost.Text = "цена";
|
|
//
|
|
// FormComponent
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(800, 210);
|
|
Controls.Add(labelCost);
|
|
Controls.Add(labelName);
|
|
Controls.Add(ButtonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(textBoxCost);
|
|
Controls.Add(textBoxName);
|
|
Name = "FormComponent";
|
|
Text = "Form1";
|
|
Load += FormComponent_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxCost;
|
|
private Button buttonCancel;
|
|
private Button ButtonSave;
|
|
private Label labelName;
|
|
private Label labelCost;
|
|
}
|
|
} |