110 lines
4.3 KiB
C#
110 lines
4.3 KiB
C#
namespace SushiBar
|
|
{
|
|
partial class FormStoreSell
|
|
{
|
|
/// <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.SushiNames = new System.Windows.Forms.ComboBox();
|
|
this.labelSushi = new System.Windows.Forms.Label();
|
|
this.Count = new System.Windows.Forms.NumericUpDown();
|
|
this.buttonSell = new System.Windows.Forms.Button();
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.Count)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// SushiNames
|
|
//
|
|
this.SushiNames.FormattingEnabled = true;
|
|
this.SushiNames.Location = new System.Drawing.Point(12, 27);
|
|
this.SushiNames.Name = "SushiNames";
|
|
this.SushiNames.Size = new System.Drawing.Size(172, 23);
|
|
this.SushiNames.TabIndex = 0;
|
|
//
|
|
// labelSushi
|
|
//
|
|
this.labelSushi.AutoSize = true;
|
|
this.labelSushi.Location = new System.Drawing.Point(12, 9);
|
|
this.labelSushi.Name = "labelSushi";
|
|
this.labelSushi.Size = new System.Drawing.Size(35, 15);
|
|
this.labelSushi.TabIndex = 1;
|
|
this.labelSushi.Text = "Sushi";
|
|
//
|
|
// Count
|
|
//
|
|
this.Count.Location = new System.Drawing.Point(12, 56);
|
|
this.Count.Name = "Count";
|
|
this.Count.Size = new System.Drawing.Size(172, 23);
|
|
this.Count.TabIndex = 2;
|
|
//
|
|
// buttonSell
|
|
//
|
|
this.buttonSell.Location = new System.Drawing.Point(12, 85);
|
|
this.buttonSell.Name = "buttonSell";
|
|
this.buttonSell.Size = new System.Drawing.Size(82, 23);
|
|
this.buttonSell.TabIndex = 3;
|
|
this.buttonSell.Text = "Sell";
|
|
this.buttonSell.UseVisualStyleBackColor = true;
|
|
this.buttonSell.Click += new System.EventHandler(this.ButtonSell_Click);
|
|
//
|
|
// buttonCancel
|
|
//
|
|
this.buttonCancel.Location = new System.Drawing.Point(100, 85);
|
|
this.buttonCancel.Name = "buttonCancel";
|
|
this.buttonCancel.Size = new System.Drawing.Size(84, 23);
|
|
this.buttonCancel.TabIndex = 4;
|
|
this.buttonCancel.Text = "Cancel";
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|
this.buttonCancel.Click += new System.EventHandler(this.ButtonCancel_Click);
|
|
//
|
|
// FormStoreSell
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(198, 118);
|
|
this.Controls.Add(this.buttonCancel);
|
|
this.Controls.Add(this.buttonSell);
|
|
this.Controls.Add(this.Count);
|
|
this.Controls.Add(this.labelSushi);
|
|
this.Controls.Add(this.SushiNames);
|
|
this.Name = "FormStoreSell";
|
|
this.Text = "FormStoreSell";
|
|
this.Load += new System.EventHandler(this.FormStoreSell_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.Count)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ComboBox SushiNames;
|
|
private Label labelSushi;
|
|
private NumericUpDown Count;
|
|
private Button buttonSell;
|
|
private Button buttonCancel;
|
|
}
|
|
} |