PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlant/FormComponent.Designer.cs
Катя Ихонкина f1a5244eef Коммит1
2023-02-19 11:27:59 +04:00

118 lines
4.8 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()
{
this.ComponentNameLabel = new System.Windows.Forms.Label();
this.ComponentNameTextBox = new System.Windows.Forms.TextBox();
this.CostLabel = new System.Windows.Forms.Label();
this.CostTextBox = new System.Windows.Forms.TextBox();
this.SaveButton = new System.Windows.Forms.Button();
this.ButtonCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// ComponentNameLabel
//
this.ComponentNameLabel.AutoSize = true;
this.ComponentNameLabel.Location = new System.Drawing.Point(19, 15);
this.ComponentNameLabel.Name = "ComponentNameLabel";
this.ComponentNameLabel.Size = new System.Drawing.Size(65, 15);
this.ComponentNameLabel.TabIndex = 0;
this.ComponentNameLabel.Text = "Название: ";
//
// ComponentNameTextBox
//
this.ComponentNameTextBox.Location = new System.Drawing.Point(90, 12);
this.ComponentNameTextBox.Name = "ComponentNameTextBox";
this.ComponentNameTextBox.Size = new System.Drawing.Size(209, 23);
this.ComponentNameTextBox.TabIndex = 2;
//
// CostLabel
//
this.CostLabel.AutoSize = true;
this.CostLabel.Location = new System.Drawing.Point(40, 54);
this.CostLabel.Name = "CostLabel";
this.CostLabel.Size = new System.Drawing.Size(44, 15);
this.CostLabel.TabIndex = 3;
this.CostLabel.Text = "Цена: ";
//
// CostTextBox
//
this.CostTextBox.Location = new System.Drawing.Point(90, 51);
this.CostTextBox.Name = "CostTextBox";
this.CostTextBox.Size = new System.Drawing.Size(209, 23);
this.CostTextBox.TabIndex = 4;
//
// SaveButton
//
this.SaveButton.Location = new System.Drawing.Point(143, 90);
this.SaveButton.Name = "SaveButton";
this.SaveButton.Size = new System.Drawing.Size(75, 23);
this.SaveButton.TabIndex = 5;
this.SaveButton.Text = "Сохранить";
this.SaveButton.UseVisualStyleBackColor = true;
this.SaveButton.Click += new System.EventHandler(this.SaveButton_Click);
//
// ButtonCancel
//
this.ButtonCancel.Location = new System.Drawing.Point(224, 90);
this.ButtonCancel.Name = "ButtonCancel";
this.ButtonCancel.Size = new System.Drawing.Size(75, 23);
this.ButtonCancel.TabIndex = 6;
this.ButtonCancel.Text = "Отмена";
this.ButtonCancel.UseVisualStyleBackColor = true;
this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
//
// FormComponent
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(328, 125);
this.Controls.Add(this.ButtonCancel);
this.Controls.Add(this.SaveButton);
this.Controls.Add(this.CostTextBox);
this.Controls.Add(this.CostLabel);
this.Controls.Add(this.ComponentNameTextBox);
this.Controls.Add(this.ComponentNameLabel);
this.Name = "FormComponent";
this.Text = "Компонент";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label ComponentNameLabel;
private TextBox ComponentNameTextBox;
private Label CostLabel;
private TextBox CostTextBox;
private Button SaveButton;
private Button ButtonCancel;
}
}