QueueSys/QueueSys/frmEmployeeView.Designer.cs

274 lines
14 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEmployeeView));
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.btnAdd = new System.Windows.Forms.Button();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.generateReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitAltF4ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tbEmployeeName = new System.Windows.Forms.TextBox();
this.dgvEmployeeView = new System.Windows.Forms.DataGridView();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.saveFileDialogReport = new System.Windows.Forms.SaveFileDialog();
this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// lblCustomerName
//
this.lblCustomerName.AutoSize = true;
this.lblCustomerName.Location = new System.Drawing.Point(18, 77);
this.lblCustomerName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblCustomerName.Name = "lblCustomerName";
this.lblCustomerName.Size = new System.Drawing.Size(124, 20);
this.lblCustomerName.TabIndex = 0;
this.lblCustomerName.Text = "Customer Name";
//
// lblNumBags
//
this.lblNumBags.AutoSize = true;
this.lblNumBags.Location = new System.Drawing.Point(326, 77);
this.lblNumBags.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblNumBags.Name = "lblNumBags";
this.lblNumBags.Size = new System.Drawing.Size(77, 20);
this.lblNumBags.TabIndex = 1;
this.lblNumBags.Text = "# of Bags";
//
// lblEmployeeName
//
this.lblEmployeeName.AutoSize = true;
this.lblEmployeeName.Location = new System.Drawing.Point(537, 77);
this.lblEmployeeName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblEmployeeName.Name = "lblEmployeeName";
this.lblEmployeeName.Size = new System.Drawing.Size(125, 20);
this.lblEmployeeName.TabIndex = 2;
this.lblEmployeeName.Text = "Employee Name";
//
// tbCustomerName
//
this.tbCustomerName.Location = new System.Drawing.Point(22, 117);
this.tbCustomerName.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.tbCustomerName.MaxLength = 255;
this.tbCustomerName.Name = "tbCustomerName";
this.tbCustomerName.Size = new System.Drawing.Size(228, 26);
this.tbCustomerName.TabIndex = 0;
this.tbCustomerName.Validating += new System.ComponentModel.CancelEventHandler(this.tbCustomerName_Validating);
//
// cbNumBags
//
this.cbNumBags.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbNumBags.FormattingEnabled = true;
this.cbNumBags.Items.AddRange(new object[] {
"1",
"2",
"3",
"4",
"5"});
this.cbNumBags.Location = new System.Drawing.Point(285, 115);
this.cbNumBags.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.cbNumBags.MaxDropDownItems = 5;
this.cbNumBags.Name = "cbNumBags";
this.cbNumBags.Size = new System.Drawing.Size(180, 28);
this.cbNumBags.TabIndex = 1;
this.cbNumBags.Validating += new System.ComponentModel.CancelEventHandler(this.cbNumBags_Validating);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(753, 112);
this.btnAdd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(112, 35);
this.btnAdd.TabIndex = 3;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// menuStrip1
//
this.menuStrip1.GripMargin = new System.Windows.Forms.Padding(2, 2, 0, 2);
this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(882, 36);
this.menuStrip1.TabIndex = 5;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.generateReportToolStripMenuItem,
this.optionsToolStripMenuItem,
this.exitAltF4ToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(54, 32);
this.fileToolStripMenuItem.Text = "&File";
//
// generateReportToolStripMenuItem
//
this.generateReportToolStripMenuItem.Name = "generateReportToolStripMenuItem";
this.generateReportToolStripMenuItem.Size = new System.Drawing.Size(242, 34);
this.generateReportToolStripMenuItem.Text = "&Generate Report";
this.generateReportToolStripMenuItem.Click += new System.EventHandler(this.generateReportToolStripMenuItem_Click);
//
// optionsToolStripMenuItem
//
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(242, 34);
this.optionsToolStripMenuItem.Text = "Options";
this.optionsToolStripMenuItem.Click += new System.EventHandler(this.optionsToolStripMenuItem_Click);
//
// exitAltF4ToolStripMenuItem
//
this.exitAltF4ToolStripMenuItem.Name = "exitAltF4ToolStripMenuItem";
this.exitAltF4ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.exitAltF4ToolStripMenuItem.Size = new System.Drawing.Size(242, 34);
this.exitAltF4ToolStripMenuItem.Text = "E&xit";
this.exitAltF4ToolStripMenuItem.Click += new System.EventHandler(this.exitAltF4ToolStripMenuItem_Click);
//
// tbEmployeeName
//
this.tbEmployeeName.Location = new System.Drawing.Point(514, 117);
this.tbEmployeeName.Name = "tbEmployeeName";
this.tbEmployeeName.Size = new System.Drawing.Size(199, 26);
this.tbEmployeeName.TabIndex = 2;
this.tbEmployeeName.Validating += new System.ComponentModel.CancelEventHandler(this.tbEmployeeName_Validating);
//
// dgvEmployeeView
//
this.dgvEmployeeView.AllowUserToAddRows = false;
this.dgvEmployeeView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvEmployeeView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.CustomerID,
this.CustomerName});
this.dgvEmployeeView.Location = new System.Drawing.Point(22, 181);
this.dgvEmployeeView.Name = "dgvEmployeeView";
this.dgvEmployeeView.RowHeadersWidth = 62;
this.dgvEmployeeView.RowTemplate.Height = 28;
this.dgvEmployeeView.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.dgvEmployeeView.Size = new System.Drawing.Size(843, 352);
this.dgvEmployeeView.TabIndex = 7;
this.dgvEmployeeView.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvEmployeeView_CellClick);
this.dgvEmployeeView.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvEmployeeView_EditingControlShowing);
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// saveFileDialogReport
//
this.saveFileDialogReport.DefaultExt = "CSV";
this.saveFileDialogReport.Filter = "CSV Files|*.csv";
this.saveFileDialogReport.InitialDirectory = ".";
this.saveFileDialogReport.Title = "Save Report";
//
// CustomerID
//
this.CustomerID.HeaderText = "CustomerID";
this.CustomerID.MinimumWidth = 8;
this.CustomerID.Name = "CustomerID";
this.CustomerID.ReadOnly = true;
this.CustomerID.Width = 150;
//
// CustomerName
//
this.CustomerName.HeaderText = "CustomerName";
this.CustomerName.MinimumWidth = 8;
this.CustomerName.Name = "CustomerName";
this.CustomerName.ReadOnly = true;
this.CustomerName.Width = 150;
//
// frmEmployeeView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(882, 554);
this.Controls.Add(this.dgvEmployeeView);
this.Controls.Add(this.tbEmployeeName);
this.Controls.Add(this.btnAdd);
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.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "frmEmployeeView";
this.Text = "Queue System";
this.Load += new System.EventHandler(this.frmEmployeeView_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvEmployeeView)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
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.Button btnAdd;
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitAltF4ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem generateReportToolStripMenuItem;
private System.Windows.Forms.TextBox tbEmployeeName;
private System.Windows.Forms.DataGridView dgvEmployeeView;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.ErrorProvider errorProvider1;
private System.Windows.Forms.SaveFileDialog saveFileDialogReport;
private System.Windows.Forms.DataGridViewTextBoxColumn CustomerID;
private System.Windows.Forms.DataGridViewTextBoxColumn CustomerName;
}
}