QueueSys/QueueSys/frmCustomerView.Designer.cs

77 lines
3.2 KiB
C#

namespace QueueSys
{
partial class frmCustomerView
{
/// <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.dgvCustomerView = new System.Windows.Forms.DataGridView();
this.timer1 = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.dgvCustomerView)).BeginInit();
this.SuspendLayout();
//
// dgvCustomerView
//
this.dgvCustomerView.AllowUserToAddRows = false;
this.dgvCustomerView.AllowUserToDeleteRows = false;
this.dgvCustomerView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.dgvCustomerView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvCustomerView.Font = new System.Drawing.Font("Times New Roman", 20F);
this.dgvCustomerView.Location = new System.Drawing.Point(99, 62);
this.dgvCustomerView.Name = "dgvCustomerView";
this.dgvCustomerView.ReadOnly = true;
this.dgvCustomerView.RowHeadersWidth = 62;
this.dgvCustomerView.RowTemplate.Height = 28;
this.dgvCustomerView.Size = new System.Drawing.Size(924, 559);
this.dgvCustomerView.TabIndex = 0;
//
// timer1
//
this.timer1.Interval = 60000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// frmCustomerView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1119, 692);
this.Controls.Add(this.dgvCustomerView);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "frmCustomerView";
this.Text = "RUNWAY FASHION EXCHANGE";
this.Load += new System.EventHandler(this.frmCustomerView_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvCustomerView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView dgvCustomerView;
private System.Windows.Forms.Timer timer1;
}
}