120 lines
4.0 KiB
C#
120 lines
4.0 KiB
C#
namespace PrecastConcretePlantView
|
|
{
|
|
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()
|
|
{
|
|
labelName = new Label();
|
|
labelCost = new Label();
|
|
textBoxName = new TextBox();
|
|
textBoxCost = new TextBox();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(12, 23);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(80, 20);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "Название:";
|
|
//
|
|
// labelCost
|
|
//
|
|
labelCost.AutoSize = true;
|
|
labelCost.Location = new Point(17, 63);
|
|
labelCost.Name = "labelCost";
|
|
labelCost.Size = new Size(48, 20);
|
|
labelCost.TabIndex = 1;
|
|
labelCost.Text = "Цена:";
|
|
//
|
|
// textBoxName
|
|
//
|
|
textBoxName.Location = new Point(100, 20);
|
|
textBoxName.Name = "textBoxName";
|
|
textBoxName.Size = new Size(291, 27);
|
|
textBoxName.TabIndex = 2;
|
|
//
|
|
// textBoxCost
|
|
//
|
|
textBoxCost.Location = new Point(100, 63);
|
|
textBoxCost.Name = "textBoxCost";
|
|
textBoxCost.Size = new Size(148, 27);
|
|
textBoxCost.TabIndex = 3;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(297, 112);
|
|
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(182, 112);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(94, 29);
|
|
buttonSave.TabIndex = 5;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// FormComponent
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(417, 165);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(textBoxCost);
|
|
Controls.Add(textBoxName);
|
|
Controls.Add(labelCost);
|
|
Controls.Add(labelName);
|
|
Name = "FormComponent";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Компонент";
|
|
Load += FormComponent_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private Label labelCost;
|
|
private TextBox textBoxName;
|
|
private TextBox textBoxCost;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
}
|