Skip to content
Permalink
be94fdde9e
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
96 lines (90 sloc) 3.71 KB
namespace Enigma.StationsGUI
{
partial class ChefStationView
{
/// <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.components = new System.ComponentModel.Container();
this.orderListBox = new System.Windows.Forms.ListBox();
this.checkOffOrderButton = new MetroFramework.Controls.MetroButton();
this.queryTimer = new System.Windows.Forms.Timer(this.components);
this.SuspendLayout();
//
// orderListBox
//
this.orderListBox.Font = new System.Drawing.Font("Segoe UI Light", 14F);
this.orderListBox.FormattingEnabled = true;
this.orderListBox.ItemHeight = 31;
this.orderListBox.Items.AddRange(new object[] {
"Order1",
"Order2",
"Order3",
"Order4",
"Order5",
"Order6",
"Order7",
"Order8",
"Order9",
"Order10"});
this.orderListBox.Location = new System.Drawing.Point(31, 43);
this.orderListBox.Name = "orderListBox";
this.orderListBox.Size = new System.Drawing.Size(1331, 841);
this.orderListBox.TabIndex = 0;
//
// checkOffOrderButton
//
this.checkOffOrderButton.Location = new System.Drawing.Point(1368, 43);
this.checkOffOrderButton.Name = "checkOffOrderButton";
this.checkOffOrderButton.Size = new System.Drawing.Size(161, 144);
this.checkOffOrderButton.TabIndex = 2;
this.checkOffOrderButton.Text = "Check off order";
this.checkOffOrderButton.UseSelectable = true;
this.checkOffOrderButton.Click += new System.EventHandler(this.checkOffOrderButton_Click);
//
// queryTimer
//
this.queryTimer.Interval = 5000;
this.queryTimer.Tick += new System.EventHandler(this.queryTimer_Tick);
//
// ChefStationView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1615, 905);
this.Controls.Add(this.checkOffOrderButton);
this.Controls.Add(this.orderListBox);
this.DisplayHeader = false;
this.Name = "ChefStationView";
this.Padding = new System.Windows.Forms.Padding(18, 30, 18, 16);
this.Style = MetroFramework.MetroColorStyle.Orange;
this.Text = "ChefStationView";
this.Load += new System.EventHandler(this.ChefStationView_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox orderListBox;
private MetroFramework.Controls.MetroButton checkOffOrderButton;
private System.Windows.Forms.Timer queryTimer;
}
}