128 lines
4.9 KiB
C#
128 lines
4.9 KiB
C#
|
namespace SushiBarView.Shops
|
|||
|
{
|
|||
|
partial class FormSell
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
comboBoxSushis = new ComboBox();
|
|||
|
labelSushi = new Label();
|
|||
|
numericUpDownCountForSelling = new NumericUpDown();
|
|||
|
labelCountForSelling = new Label();
|
|||
|
buttonSell = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCountForSelling).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// comboBoxSushis
|
|||
|
//
|
|||
|
comboBoxSushis.FormattingEnabled = true;
|
|||
|
comboBoxSushis.Location = new Point(342, 41);
|
|||
|
comboBoxSushis.Margin = new Padding(4);
|
|||
|
comboBoxSushis.Name = "comboBoxSushis";
|
|||
|
comboBoxSushis.Size = new Size(206, 32);
|
|||
|
comboBoxSushis.TabIndex = 0;
|
|||
|
//
|
|||
|
// labelSushi
|
|||
|
//
|
|||
|
labelSushi.AutoSize = true;
|
|||
|
labelSushi.Location = new Point(45, 50);
|
|||
|
labelSushi.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelSushi.Name = "labelSushi";
|
|||
|
labelSushi.Size = new Size(56, 24);
|
|||
|
labelSushi.TabIndex = 1;
|
|||
|
labelSushi.Text = "Суши";
|
|||
|
//
|
|||
|
// numericUpDownCountForSelling
|
|||
|
//
|
|||
|
numericUpDownCountForSelling.Location = new Point(342, 124);
|
|||
|
numericUpDownCountForSelling.Margin = new Padding(4);
|
|||
|
numericUpDownCountForSelling.Name = "numericUpDownCountForSelling";
|
|||
|
numericUpDownCountForSelling.Size = new Size(208, 32);
|
|||
|
numericUpDownCountForSelling.TabIndex = 2;
|
|||
|
//
|
|||
|
// labelCountForSelling
|
|||
|
//
|
|||
|
labelCountForSelling.AutoSize = true;
|
|||
|
labelCountForSelling.Location = new Point(45, 126);
|
|||
|
labelCountForSelling.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelCountForSelling.Name = "labelCountForSelling";
|
|||
|
labelCountForSelling.Size = new Size(229, 24);
|
|||
|
labelCountForSelling.TabIndex = 3;
|
|||
|
labelCountForSelling.Text = "Количество для продажи";
|
|||
|
//
|
|||
|
// buttonSell
|
|||
|
//
|
|||
|
buttonSell.Location = new Point(60, 259);
|
|||
|
buttonSell.Name = "buttonSell";
|
|||
|
buttonSell.Size = new Size(135, 51);
|
|||
|
buttonSell.TabIndex = 4;
|
|||
|
buttonSell.Text = "Продать";
|
|||
|
buttonSell.UseVisualStyleBackColor = true;
|
|||
|
buttonSell.Click += buttonSell_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(515, 259);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(160, 51);
|
|||
|
buttonCancel.TabIndex = 5;
|
|||
|
buttonCancel.Text = "Не продавать ";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormSell
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(11F, 24F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
BackColor = Color.RosyBrown;
|
|||
|
ClientSize = new Size(716, 369);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSell);
|
|||
|
Controls.Add(labelCountForSelling);
|
|||
|
Controls.Add(numericUpDownCountForSelling);
|
|||
|
Controls.Add(labelSushi);
|
|||
|
Controls.Add(comboBoxSushis);
|
|||
|
Font = new Font("Candara", 12F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|||
|
Margin = new Padding(4);
|
|||
|
Name = "FormSell";
|
|||
|
Text = "Продажа суши";
|
|||
|
Load += FormSell_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownCountForSelling).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private ComboBox comboBoxSushis;
|
|||
|
private Label labelSushi;
|
|||
|
private NumericUpDown numericUpDownCountForSelling;
|
|||
|
private Label labelCountForSelling;
|
|||
|
private Button buttonSell;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|