127 lines
4.4 KiB
C#
127 lines
4.4 KiB
C#
namespace IceCreamShop
|
|
{
|
|
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()
|
|
{
|
|
NameTextBox = new TextBox();
|
|
CostTextBox = new TextBox();
|
|
NameLabel = new Label();
|
|
CostLabel = new Label();
|
|
CancelButton = new Button();
|
|
SaveButton = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// NameTextBox
|
|
//
|
|
NameTextBox.Location = new Point(91, 13);
|
|
NameTextBox.Margin = new Padding(3, 4, 3, 4);
|
|
NameTextBox.Name = "NameTextBox";
|
|
NameTextBox.Size = new Size(277, 27);
|
|
NameTextBox.TabIndex = 0;
|
|
//
|
|
// CostTextBox
|
|
//
|
|
CostTextBox.Location = new Point(91, 56);
|
|
CostTextBox.Margin = new Padding(3, 4, 3, 4);
|
|
CostTextBox.Name = "CostTextBox";
|
|
CostTextBox.Size = new Size(135, 27);
|
|
CostTextBox.TabIndex = 1;
|
|
//
|
|
// NameLabel
|
|
//
|
|
NameLabel.AutoSize = true;
|
|
NameLabel.Location = new Point(8, 27);
|
|
NameLabel.Name = "NameLabel";
|
|
NameLabel.Size = new Size(77, 20);
|
|
NameLabel.TabIndex = 2;
|
|
NameLabel.Text = "Название";
|
|
//
|
|
// CostLabel
|
|
//
|
|
CostLabel.AutoSize = true;
|
|
CostLabel.Location = new Point(8, 65);
|
|
CostLabel.Name = "CostLabel";
|
|
CostLabel.Size = new Size(45, 20);
|
|
CostLabel.TabIndex = 3;
|
|
CostLabel.Text = "Цена";
|
|
//
|
|
// CancelButton
|
|
//
|
|
CancelButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
CancelButton.Location = new Point(282, 91);
|
|
CancelButton.Margin = new Padding(3, 4, 3, 4);
|
|
CancelButton.Name = "CancelButton";
|
|
CancelButton.Size = new Size(86, 31);
|
|
CancelButton.TabIndex = 4;
|
|
CancelButton.Text = "Отмена";
|
|
CancelButton.UseVisualStyleBackColor = true;
|
|
CancelButton.Click += CancelButton_Click;
|
|
//
|
|
// SaveButton
|
|
//
|
|
SaveButton.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|
SaveButton.Location = new Point(189, 91);
|
|
SaveButton.Margin = new Padding(3, 4, 3, 4);
|
|
SaveButton.Name = "SaveButton";
|
|
SaveButton.Size = new Size(86, 31);
|
|
SaveButton.TabIndex = 5;
|
|
SaveButton.Text = "Сохранить";
|
|
SaveButton.UseVisualStyleBackColor = true;
|
|
SaveButton.Click += SaveButton_Click;
|
|
//
|
|
// ComponentForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
AutoSizeMode = AutoSizeMode.GrowAndShrink;
|
|
ClientSize = new Size(381, 129);
|
|
Controls.Add(SaveButton);
|
|
Controls.Add(CancelButton);
|
|
Controls.Add(CostLabel);
|
|
Controls.Add(NameLabel);
|
|
Controls.Add(CostTextBox);
|
|
Controls.Add(NameTextBox);
|
|
Margin = new Padding(3, 4, 3, 4);
|
|
Name = "ComponentForm";
|
|
Text = "Форма компонент";
|
|
Load += ComponentForm_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox NameTextBox;
|
|
private TextBox CostTextBox;
|
|
private Label NameLabel;
|
|
private Label CostLabel;
|
|
private Button CancelButton;
|
|
private Button SaveButton;
|
|
}
|
|
}
|