QueueSys/QueueSys/frmEmployeeView.Designer.cs

147 lines
5.9 KiB
C#

namespace QueueSys
{
partial class frmEmployeeView
{
/// <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.lblCustomerName = new System.Windows.Forms.Label();
this.lblNumBags = new System.Windows.Forms.Label();
this.lblEmployeeName = new System.Windows.Forms.Label();
this.tbCustomerName = new System.Windows.Forms.TextBox();
this.cbNumBags = new System.Windows.Forms.ComboBox();
this.cbEmployeeName = new System.Windows.Forms.ComboBox();
this.btnAdd = new System.Windows.Forms.Button();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.SuspendLayout();
//
// lblCustomerName
//
this.lblCustomerName.AutoSize = true;
this.lblCustomerName.Location = new System.Drawing.Point(12, 50);
this.lblCustomerName.Name = "lblCustomerName";
this.lblCustomerName.Size = new System.Drawing.Size(82, 13);
this.lblCustomerName.TabIndex = 0;
this.lblCustomerName.Text = "Customer Name";
//
// lblNumBags
//
this.lblNumBags.AutoSize = true;
this.lblNumBags.Location = new System.Drawing.Point(217, 50);
this.lblNumBags.Name = "lblNumBags";
this.lblNumBags.Size = new System.Drawing.Size(53, 13);
this.lblNumBags.TabIndex = 1;
this.lblNumBags.Text = "# of Bags";
//
// lblEmployeeName
//
this.lblEmployeeName.AutoSize = true;
this.lblEmployeeName.Location = new System.Drawing.Point(358, 50);
this.lblEmployeeName.Name = "lblEmployeeName";
this.lblEmployeeName.Size = new System.Drawing.Size(84, 13);
this.lblEmployeeName.TabIndex = 2;
this.lblEmployeeName.Text = "Employee Name";
//
// tbCustomerName
//
this.tbCustomerName.Location = new System.Drawing.Point(15, 76);
this.tbCustomerName.MaxLength = 255;
this.tbCustomerName.Name = "tbCustomerName";
this.tbCustomerName.Size = new System.Drawing.Size(153, 20);
this.tbCustomerName.TabIndex = 1;
//
// cbNumBags
//
this.cbNumBags.FormattingEnabled = true;
this.cbNumBags.Items.AddRange(new object[] {
"1",
"2",
"3",
"4",
"5"});
this.cbNumBags.Location = new System.Drawing.Point(190, 75);
this.cbNumBags.MaxDropDownItems = 5;
this.cbNumBags.Name = "cbNumBags";
this.cbNumBags.Size = new System.Drawing.Size(121, 21);
this.cbNumBags.TabIndex = 2;
//
// cbEmployeeName
//
this.cbEmployeeName.FormattingEnabled = true;
this.cbEmployeeName.Location = new System.Drawing.Point(344, 75);
this.cbEmployeeName.Name = "cbEmployeeName";
this.cbEmployeeName.Size = new System.Drawing.Size(121, 21);
this.cbEmployeeName.TabIndex = 3;
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(502, 73);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(75, 23);
this.btnAdd.TabIndex = 4;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// frmEmployeeView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(588, 450);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.cbEmployeeName);
this.Controls.Add(this.cbNumBags);
this.Controls.Add(this.tbCustomerName);
this.Controls.Add(this.lblEmployeeName);
this.Controls.Add(this.lblNumBags);
this.Controls.Add(this.lblCustomerName);
this.Name = "frmEmployeeView";
this.Text = "Queue System";
this.Load += new System.EventHandler(this.frmEmployeeView_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblCustomerName;
private System.Windows.Forms.Label lblNumBags;
private System.Windows.Forms.Label lblEmployeeName;
private System.Windows.Forms.TextBox tbCustomerName;
private System.Windows.Forms.ComboBox cbNumBags;
private System.Windows.Forms.ComboBox cbEmployeeName;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
}
}