151 lines
6.4 KiB
C#
151 lines
6.4 KiB
C#
namespace SushiBarView
|
||
{
|
||
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()
|
||
{
|
||
this.numericUpDownCount = new System.Windows.Forms.NumericUpDown();
|
||
this.comboBoxSushi = new System.Windows.Forms.ComboBox();
|
||
this.labelCount = new System.Windows.Forms.Label();
|
||
this.labelSushi = new System.Windows.Forms.Label();
|
||
this.comboBoxShop = new System.Windows.Forms.ComboBox();
|
||
this.labelShop = new System.Windows.Forms.Label();
|
||
this.buttonCancel = new System.Windows.Forms.Button();
|
||
this.buttonSave = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.numericUpDownCount)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// numericUpDownCount
|
||
//
|
||
this.numericUpDownCount.Location = new System.Drawing.Point(87, 62);
|
||
this.numericUpDownCount.Maximum = new decimal(new int[] {
|
||
1410065408,
|
||
2,
|
||
0,
|
||
0});
|
||
this.numericUpDownCount.Name = "numericUpDownCount";
|
||
this.numericUpDownCount.Size = new System.Drawing.Size(344, 23);
|
||
this.numericUpDownCount.TabIndex = 13;
|
||
//
|
||
// comboBoxSushi
|
||
//
|
||
this.comboBoxSushi.FormattingEnabled = true;
|
||
this.comboBoxSushi.Location = new System.Drawing.Point(86, 35);
|
||
this.comboBoxSushi.Name = "comboBoxSushi";
|
||
this.comboBoxSushi.Size = new System.Drawing.Size(345, 23);
|
||
this.comboBoxSushi.TabIndex = 12;
|
||
//
|
||
// labelCount
|
||
//
|
||
this.labelCount.AutoSize = true;
|
||
this.labelCount.Location = new System.Drawing.Point(9, 64);
|
||
this.labelCount.Name = "labelCount";
|
||
this.labelCount.Size = new System.Drawing.Size(72, 15);
|
||
this.labelCount.TabIndex = 11;
|
||
this.labelCount.Text = "Количество";
|
||
//
|
||
// labelSushi
|
||
//
|
||
this.labelSushi.AutoSize = true;
|
||
this.labelSushi.Location = new System.Drawing.Point(41, 38);
|
||
this.labelSushi.Name = "labelSushi";
|
||
this.labelSushi.Size = new System.Drawing.Size(39, 15);
|
||
this.labelSushi.TabIndex = 10;
|
||
this.labelSushi.Text = "Суши";
|
||
//
|
||
// comboBoxShop
|
||
//
|
||
this.comboBoxShop.FormattingEnabled = true;
|
||
this.comboBoxShop.Location = new System.Drawing.Point(86, 8);
|
||
this.comboBoxShop.Name = "comboBoxShop";
|
||
this.comboBoxShop.Size = new System.Drawing.Size(345, 23);
|
||
this.comboBoxShop.TabIndex = 9;
|
||
//
|
||
// labelShop
|
||
//
|
||
this.labelShop.AutoSize = true;
|
||
this.labelShop.Location = new System.Drawing.Point(26, 11);
|
||
this.labelShop.Name = "labelShop";
|
||
this.labelShop.Size = new System.Drawing.Size(54, 15);
|
||
this.labelShop.TabIndex = 8;
|
||
this.labelShop.Text = "Магазин";
|
||
//
|
||
// buttonCancel
|
||
//
|
||
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonCancel.Location = new System.Drawing.Point(356, 94);
|
||
this.buttonCancel.Name = "buttonCancel";
|
||
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonCancel.TabIndex = 15;
|
||
this.buttonCancel.Text = "Отмена";
|
||
this.buttonCancel.UseVisualStyleBackColor = true;
|
||
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
||
//
|
||
// buttonSave
|
||
//
|
||
this.buttonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||
this.buttonSave.Location = new System.Drawing.Point(275, 94);
|
||
this.buttonSave.Name = "buttonSave";
|
||
this.buttonSave.Size = new System.Drawing.Size(75, 23);
|
||
this.buttonSave.TabIndex = 14;
|
||
this.buttonSave.Text = "Сохранить";
|
||
this.buttonSave.UseVisualStyleBackColor = true;
|
||
this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click);
|
||
//
|
||
// FormAddSushiInShop
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(443, 129);
|
||
this.Controls.Add(this.buttonCancel);
|
||
this.Controls.Add(this.buttonSave);
|
||
this.Controls.Add(this.numericUpDownCount);
|
||
this.Controls.Add(this.comboBoxSushi);
|
||
this.Controls.Add(this.labelCount);
|
||
this.Controls.Add(this.labelSushi);
|
||
this.Controls.Add(this.comboBoxShop);
|
||
this.Controls.Add(this.labelShop);
|
||
this.Name = "FormAddSushiInShop";
|
||
this.Text = "Поступление суши в суши-бар";
|
||
((System.ComponentModel.ISupportInitialize)(this.numericUpDownCount)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private NumericUpDown numericUpDownCount;
|
||
private ComboBox comboBoxSushi;
|
||
private Label labelCount;
|
||
private Label labelSushi;
|
||
private ComboBox comboBoxShop;
|
||
private Label labelShop;
|
||
private Button buttonCancel;
|
||
private Button buttonSave;
|
||
}
|
||
} |