SushiBarBase/SushiBar/SushiBar/Forms/FormComponent.Designer.cs
2024-05-05 20:20:03 +04:00

123 lines
4.0 KiB
C#

namespace SushiBar.Forms
{
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()
{
label1 = new Label();
textBoxName = new TextBox();
textBoxCost = new TextBox();
label2 = new Label();
ButtonSave = new Button();
ButtonCancel = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 9);
label1.Name = "label1";
label1.Size = new Size(77, 20);
label1.TabIndex = 0;
label1.Text = "Название";
//
// textBoxName
//
textBoxName.Location = new Point(95, 6);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(246, 27);
textBoxName.TabIndex = 1;
//
// textBoxCost
//
textBoxCost.Location = new Point(95, 39);
textBoxCost.Name = "textBoxCost";
textBoxCost.Size = new Size(246, 27);
textBoxCost.TabIndex = 3;
//
// label2
//
label2.AutoSize = true;
label2.ImeMode = ImeMode.NoControl;
label2.Location = new Point(12, 42);
label2.Name = "label2";
label2.Size = new Size(45, 20);
label2.TabIndex = 2;
label2.Text = "Цена";
//
// ButtonSave
//
ButtonSave.Location = new Point(95, 85);
ButtonSave.Name = "ButtonSave";
ButtonSave.Size = new Size(121, 29);
ButtonSave.TabIndex = 4;
ButtonSave.Text = "Сохранить";
ButtonSave.UseVisualStyleBackColor = true;
ButtonSave.Click += ButtonSave_Click;
//
// ButtonCancel
//
ButtonCancel.ImeMode = ImeMode.NoControl;
ButtonCancel.Location = new Point(222, 85);
ButtonCancel.Name = "ButtonCancel";
ButtonCancel.Size = new Size(119, 29);
ButtonCancel.TabIndex = 5;
ButtonCancel.Text = "Отмена";
ButtonCancel.UseVisualStyleBackColor = true;
ButtonCancel.Click += ButtonCancel_Click;
//
// FormComponent
//
AllowDrop = true;
AutoScaleMode = AutoScaleMode.None;
ClientSize = new Size(353, 126);
Controls.Add(ButtonCancel);
Controls.Add(ButtonSave);
Controls.Add(textBoxCost);
Controls.Add(label2);
Controls.Add(textBoxName);
Controls.Add(label1);
MaximizeBox = false;
Name = "FormComponent";
ShowInTaskbar = false;
Text = "Компонент";
TopMost = true;
Load += FormComponent_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private TextBox textBoxName;
private TextBox textBoxCost;
private Label label2;
private Button ButtonSave;
private Button ButtonCancel;
}
}