149 lines
5.3 KiB
C#
149 lines
5.3 KiB
C#
namespace SushiBarView.Shops
|
|
{
|
|
partial class FormAddSushiInShop
|
|
{
|
|
/// <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()
|
|
{
|
|
comboBoxSushi = new ComboBox();
|
|
labelSushi = new Label();
|
|
labelShop = new Label();
|
|
comboBoxShop = new ComboBox();
|
|
textBoxCount = new TextBox();
|
|
labelCount = new Label();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// comboBoxSushi
|
|
//
|
|
comboBoxSushi.FormattingEnabled = true;
|
|
comboBoxSushi.Location = new Point(212, 49);
|
|
comboBoxSushi.Margin = new Padding(4);
|
|
comboBoxSushi.Name = "comboBoxSushi";
|
|
comboBoxSushi.Size = new Size(188, 30);
|
|
comboBoxSushi.TabIndex = 0;
|
|
//
|
|
// labelSushi
|
|
//
|
|
labelSushi.AutoSize = true;
|
|
labelSushi.Location = new Point(42, 57);
|
|
labelSushi.Margin = new Padding(4, 0, 4, 0);
|
|
labelSushi.Name = "labelSushi";
|
|
labelSushi.Size = new Size(60, 22);
|
|
labelSushi.TabIndex = 1;
|
|
labelSushi.Text = "Суши: ";
|
|
//
|
|
// labelShop
|
|
//
|
|
labelShop.AutoSize = true;
|
|
labelShop.Location = new Point(42, 188);
|
|
labelShop.Margin = new Padding(4, 0, 4, 0);
|
|
labelShop.Name = "labelShop";
|
|
labelShop.Size = new Size(86, 22);
|
|
labelShop.TabIndex = 3;
|
|
labelShop.Text = "Магазин: ";
|
|
//
|
|
// comboBoxShop
|
|
//
|
|
comboBoxShop.FormattingEnabled = true;
|
|
comboBoxShop.Location = new Point(212, 188);
|
|
comboBoxShop.Margin = new Padding(4);
|
|
comboBoxShop.Name = "comboBoxShop";
|
|
comboBoxShop.Size = new Size(188, 30);
|
|
comboBoxShop.TabIndex = 2;
|
|
//
|
|
// textBoxCount
|
|
//
|
|
textBoxCount.Location = new Point(212, 118);
|
|
textBoxCount.Name = "textBoxCount";
|
|
textBoxCount.Size = new Size(188, 29);
|
|
textBoxCount.TabIndex = 4;
|
|
//
|
|
// labelCount
|
|
//
|
|
labelCount.AutoSize = true;
|
|
labelCount.Location = new Point(42, 121);
|
|
labelCount.Margin = new Padding(4, 0, 4, 0);
|
|
labelCount.Name = "labelCount";
|
|
labelCount.Size = new Size(154, 22);
|
|
labelCount.TabIndex = 5;
|
|
labelCount.Text = "Количество суши: ";
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(471, 174);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(107, 44);
|
|
buttonSave.TabIndex = 6;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(617, 174);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(107, 44);
|
|
buttonCancel.TabIndex = 7;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormAddSushiInShop
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 22F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(762, 267);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(labelCount);
|
|
Controls.Add(textBoxCount);
|
|
Controls.Add(labelShop);
|
|
Controls.Add(comboBoxShop);
|
|
Controls.Add(labelSushi);
|
|
Controls.Add(comboBoxSushi);
|
|
Font = new Font("Candara", 10.8F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|
Margin = new Padding(4);
|
|
Name = "FormAddSushiInShop";
|
|
Text = "Пополняем магазинчик";
|
|
Load += FormAddSushiInShop_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox comboBoxSushi;
|
|
private Label labelSushi;
|
|
private Label labelShop;
|
|
private ComboBox comboBoxShop;
|
|
private TextBox textBoxCount;
|
|
private Label labelCount;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |