2024-02-12 00:44:42 +04:00
|
|
|
|
namespace SushiBarView
|
|
|
|
|
{
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
labelComponentName = new Label();
|
|
|
|
|
labelCost = new Label();
|
|
|
|
|
textBoxComponentName = new TextBox();
|
|
|
|
|
textBoxComponentCost = new TextBox();
|
|
|
|
|
buttonSaveComponent = new Button();
|
|
|
|
|
buttonCancel = new Button();
|
|
|
|
|
SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// labelComponentName
|
|
|
|
|
//
|
|
|
|
|
labelComponentName.AutoSize = true;
|
|
|
|
|
labelComponentName.Font = new Font("Candara", 12F);
|
|
|
|
|
labelComponentName.Location = new Point(20, 29);
|
|
|
|
|
labelComponentName.Margin = new Padding(4, 0, 4, 0);
|
|
|
|
|
labelComponentName.Name = "labelComponentName";
|
|
|
|
|
labelComponentName.Size = new Size(93, 24);
|
|
|
|
|
labelComponentName.TabIndex = 0;
|
|
|
|
|
labelComponentName.Text = "Название";
|
|
|
|
|
//
|
|
|
|
|
// labelCost
|
|
|
|
|
//
|
|
|
|
|
labelCost.AutoSize = true;
|
|
|
|
|
labelCost.Font = new Font("Candara", 12F);
|
|
|
|
|
labelCost.Location = new Point(29, 111);
|
|
|
|
|
labelCost.Margin = new Padding(4, 0, 4, 0);
|
|
|
|
|
labelCost.Name = "labelCost";
|
|
|
|
|
labelCost.Size = new Size(53, 24);
|
|
|
|
|
labelCost.TabIndex = 1;
|
|
|
|
|
labelCost.Text = "Цена";
|
|
|
|
|
//
|
|
|
|
|
// textBoxComponentName
|
|
|
|
|
//
|
|
|
|
|
textBoxComponentName.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
textBoxComponentName.Location = new Point(134, 21);
|
|
|
|
|
textBoxComponentName.Name = "textBoxComponentName";
|
|
|
|
|
textBoxComponentName.Size = new Size(355, 32);
|
|
|
|
|
textBoxComponentName.TabIndex = 2;
|
|
|
|
|
//
|
|
|
|
|
// textBoxComponentCost
|
|
|
|
|
//
|
|
|
|
|
textBoxComponentCost.Anchor = AnchorStyles.Top | AnchorStyles.Right;
|
|
|
|
|
textBoxComponentCost.Location = new Point(134, 103);
|
|
|
|
|
textBoxComponentCost.Name = "textBoxComponentCost";
|
|
|
|
|
textBoxComponentCost.Size = new Size(355, 32);
|
|
|
|
|
textBoxComponentCost.TabIndex = 3;
|
|
|
|
|
//
|
|
|
|
|
// buttonSaveComponent
|
|
|
|
|
//
|
|
|
|
|
buttonSaveComponent.Anchor = AnchorStyles.Bottom;
|
|
|
|
|
buttonSaveComponent.Location = new Point(134, 161);
|
|
|
|
|
buttonSaveComponent.Name = "buttonSaveComponent";
|
|
|
|
|
buttonSaveComponent.Size = new Size(116, 39);
|
|
|
|
|
buttonSaveComponent.TabIndex = 4;
|
|
|
|
|
buttonSaveComponent.Text = "Сохранить";
|
|
|
|
|
buttonSaveComponent.UseVisualStyleBackColor = true;
|
2024-02-23 21:51:10 +04:00
|
|
|
|
buttonSaveComponent.Click += buttonSaveComponent_Click;
|
2024-02-12 00:44:42 +04:00
|
|
|
|
//
|
|
|
|
|
// buttonCancel
|
|
|
|
|
//
|
|
|
|
|
buttonCancel.Anchor = AnchorStyles.Bottom;
|
|
|
|
|
buttonCancel.Location = new Point(373, 161);
|
|
|
|
|
buttonCancel.Name = "buttonCancel";
|
|
|
|
|
buttonCancel.Size = new Size(116, 39);
|
|
|
|
|
buttonCancel.TabIndex = 5;
|
|
|
|
|
buttonCancel.Text = "Отмена";
|
|
|
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
|
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
|
|
|
//
|
2024-02-23 21:51:10 +04:00
|
|
|
|
// FormComponent
|
2024-02-12 00:44:42 +04:00
|
|
|
|
//
|
|
|
|
|
AutoScaleDimensions = new SizeF(11F, 24F);
|
|
|
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
|
|
|
ClientSize = new Size(515, 230);
|
|
|
|
|
Controls.Add(buttonCancel);
|
|
|
|
|
Controls.Add(buttonSaveComponent);
|
|
|
|
|
Controls.Add(textBoxComponentCost);
|
|
|
|
|
Controls.Add(textBoxComponentName);
|
|
|
|
|
Controls.Add(labelCost);
|
|
|
|
|
Controls.Add(labelComponentName);
|
|
|
|
|
Font = new Font("Candara", 12F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
|
|
|
Margin = new Padding(4);
|
2024-02-23 21:51:10 +04:00
|
|
|
|
Name = "FormComponent";
|
2024-02-12 00:44:42 +04:00
|
|
|
|
Text = "Компонент";
|
|
|
|
|
Load += FormComponents_Load;
|
|
|
|
|
ResumeLayout(false);
|
|
|
|
|
PerformLayout();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Label labelComponentName;
|
|
|
|
|
private Label labelCost;
|
|
|
|
|
private TextBox textBoxComponentName;
|
|
|
|
|
private TextBox textBoxComponentCost;
|
|
|
|
|
private Button buttonSaveComponent;
|
|
|
|
|
private Button buttonCancel;
|
|
|
|
|
}
|
|
|
|
|
}
|