119 lines
4.1 KiB
C#
119 lines
4.1 KiB
C#
namespace SushiBarView
|
|
{
|
|
partial class FormSushiComponent
|
|
{
|
|
/// <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()
|
|
{
|
|
labelComponent = new Label();
|
|
labelCount = new Label();
|
|
ButtonSave = new Button();
|
|
ButtonCancel = new Button();
|
|
comboBoxComponent = new ComboBox();
|
|
textBoxCount = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// labelComponent
|
|
//
|
|
labelComponent.AutoSize = true;
|
|
labelComponent.Location = new Point(28, 26);
|
|
labelComponent.Name = "labelComponent";
|
|
labelComponent.Size = new Size(72, 15);
|
|
labelComponent.TabIndex = 0;
|
|
labelComponent.Text = "Компонент:";
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(28, 61);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(75, 15);
|
|
labelCount.TabIndex = 1;
|
|
labelCount.Text = "Количество:";
|
|
//
|
|
// ButtonSave
|
|
//
|
|
ButtonSave.Location = new Point(174, 92);
|
|
ButtonSave.Name = "ButtonSave";
|
|
ButtonSave.Size = new Size(90, 34);
|
|
ButtonSave.TabIndex = 2;
|
|
ButtonSave.Text = "Сохранить";
|
|
ButtonSave.UseVisualStyleBackColor = true;
|
|
ButtonSave.Click += ButtonSave_Click;
|
|
//
|
|
// ButtonCancel
|
|
//
|
|
ButtonCancel.Location = new Point(270, 92);
|
|
ButtonCancel.Name = "ButtonCancel";
|
|
ButtonCancel.Size = new Size(90, 34);
|
|
ButtonCancel.TabIndex = 3;
|
|
ButtonCancel.Text = "Отмена";
|
|
ButtonCancel.UseVisualStyleBackColor = true;
|
|
ButtonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// comboBoxComponent
|
|
//
|
|
comboBoxComponent.FormattingEnabled = true;
|
|
comboBoxComponent.Location = new Point(110, 23);
|
|
comboBoxComponent.Name = "comboBoxComponent";
|
|
comboBoxComponent.Size = new Size(285, 23);
|
|
comboBoxComponent.TabIndex = 4;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(110, 58);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(285, 23);
|
|
textBoxCount.TabIndex = 5;
|
|
//
|
|
// FormSushiComponent
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(407, 133);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(comboBoxComponent);
|
|
Controls.Add(ButtonCancel);
|
|
Controls.Add(ButtonSave);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(labelComponent);
|
|
Name = "FormSushiComponent";
|
|
Text = "Компонент суши";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
private Label labelComponent;
|
|
private Label labelCount;
|
|
private Button ButtonSave;
|
|
private Button ButtonCancel;
|
|
private ComboBox comboBoxComponent;
|
|
private TextBox textBoxCount;
|
|
}
|
|
} |