118 lines
3.9 KiB
C#
118 lines
3.9 KiB
C#
|
namespace SewingDressesView
|
|||
|
{
|
|||
|
partial class ComponentForm
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
label1 = new Label();
|
|||
|
label2 = new Label();
|
|||
|
textBoxName = new TextBox();
|
|||
|
textBoxCost = new TextBox();
|
|||
|
buttonSave = new Button();
|
|||
|
CancelButton = new Button();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
label1.AutoSize = true;
|
|||
|
label1.Location = new Point(26, 21);
|
|||
|
label1.Name = "label1";
|
|||
|
label1.Size = new Size(80, 20);
|
|||
|
label1.TabIndex = 0;
|
|||
|
label1.Text = "Название:";
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
label2.AutoSize = true;
|
|||
|
label2.Location = new Point(26, 63);
|
|||
|
label2.Name = "label2";
|
|||
|
label2.Size = new Size(48, 20);
|
|||
|
label2.TabIndex = 1;
|
|||
|
label2.Text = "Цена:";
|
|||
|
//
|
|||
|
// textBoxName
|
|||
|
//
|
|||
|
textBoxName.Location = new Point(141, 18);
|
|||
|
textBoxName.Name = "textBoxName";
|
|||
|
textBoxName.Size = new Size(331, 27);
|
|||
|
textBoxName.TabIndex = 2;
|
|||
|
//
|
|||
|
// textBoxCost
|
|||
|
//
|
|||
|
textBoxCost.Location = new Point(141, 63);
|
|||
|
textBoxCost.Name = "textBoxCost";
|
|||
|
textBoxCost.Size = new Size(125, 27);
|
|||
|
textBoxCost.TabIndex = 3;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(234, 126);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(94, 29);
|
|||
|
buttonSave.TabIndex = 4;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// CancelButton
|
|||
|
//
|
|||
|
CancelButton.Location = new Point(378, 126);
|
|||
|
CancelButton.Name = "CancelButton";
|
|||
|
CancelButton.Size = new Size(94, 29);
|
|||
|
CancelButton.TabIndex = 5;
|
|||
|
CancelButton.Text = "Отмена";
|
|||
|
CancelButton.UseVisualStyleBackColor = true;
|
|||
|
CancelButton.Click += CancelButton_Click;
|
|||
|
//
|
|||
|
// ComponentForm
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(530, 182);
|
|||
|
Controls.Add(CancelButton);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxCost);
|
|||
|
Controls.Add(textBoxName);
|
|||
|
Controls.Add(label2);
|
|||
|
Controls.Add(label1);
|
|||
|
Name = "ComponentForm";
|
|||
|
Text = "Компонент";
|
|||
|
Load += ComponentForm_Load;
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label label1;
|
|||
|
private Label label2;
|
|||
|
private TextBox textBoxName;
|
|||
|
private TextBox textBoxCost;
|
|||
|
private Button buttonSave;
|
|||
|
private Button CancelButton;
|
|||
|
}
|
|||
|
}
|