118 lines
4.0 KiB
C#
118 lines
4.0 KiB
C#
namespace RenovationWorkView
|
|
{
|
|
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()
|
|
{
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
labelName = new Label();
|
|
labelCost = new Label();
|
|
textBoxCost = new TextBox();
|
|
textBoxComponentName = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(223, 82);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 0;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(314, 83);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 1;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(11, 9);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(62, 15);
|
|
labelName.TabIndex = 2;
|
|
labelName.Text = "Название:";
|
|
//
|
|
// labelCost
|
|
//
|
|
labelCost.AutoSize = true;
|
|
labelCost.Location = new Point(11, 45);
|
|
labelCost.Name = "labelCost";
|
|
labelCost.Size = new Size(38, 15);
|
|
labelCost.TabIndex = 3;
|
|
labelCost.Text = "Цена:";
|
|
//
|
|
// textBoxCost
|
|
//
|
|
textBoxCost.Location = new Point(79, 45);
|
|
textBoxCost.Name = "textBoxCost";
|
|
textBoxCost.Size = new Size(170, 23);
|
|
textBoxCost.TabIndex = 4;
|
|
//
|
|
// textBoxComponentName
|
|
//
|
|
textBoxComponentName.Location = new Point(79, 9);
|
|
textBoxComponentName.Name = "textBoxComponentName";
|
|
textBoxComponentName.Size = new Size(310, 23);
|
|
textBoxComponentName.TabIndex = 5;
|
|
//
|
|
// FormComponent
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(401, 117);
|
|
Controls.Add(textBoxComponentName);
|
|
Controls.Add(textBoxCost);
|
|
Controls.Add(labelCost);
|
|
Controls.Add(labelName);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Name = "FormComponent";
|
|
Text = "Компонент";
|
|
Load += FormComponent_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
private Label labelName;
|
|
private Label labelCost;
|
|
private TextBox textBoxCost;
|
|
private TextBox textBoxComponentName;
|
|
}
|
|
} |