namespace M423project
|
{
|
partial class FormCheck
|
{
|
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
|
this.grid = new System.Windows.Forms.DataGridView();
|
this.TotalQty = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.FinishedQty = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
this.textBox3 = new System.Windows.Forms.TextBox();
|
this.label4 = new System.Windows.Forms.Label();
|
this.btnClose = new System.Windows.Forms.Button();
|
this.btnConfirm = new System.Windows.Forms.Button();
|
this.btnNow = new System.Windows.Forms.Button();
|
this.txtQty = new System.Windows.Forms.TextBox();
|
this.label3 = new System.Windows.Forms.Label();
|
this.label2 = new System.Windows.Forms.Label();
|
this.txtTime = new System.Windows.Forms.TextBox();
|
this.label1 = new System.Windows.Forms.Label();
|
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
this.gridDetail = new System.Windows.Forms.DataGridView();
|
this.ProductNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.PickTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ProductLength = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ProductWidth = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ProductHeight = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.groupBox1.SuspendLayout();
|
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
|
this.groupBox2.SuspendLayout();
|
this.groupBox3.SuspendLayout();
|
((System.ComponentModel.ISupportInitialize)(this.gridDetail)).BeginInit();
|
this.SuspendLayout();
|
//
|
// groupBox1
|
//
|
this.groupBox1.Controls.Add(this.grid);
|
this.groupBox1.Location = new System.Drawing.Point(12, 338);
|
this.groupBox1.Name = "groupBox1";
|
this.groupBox1.Size = new System.Drawing.Size(427, 206);
|
this.groupBox1.TabIndex = 10;
|
this.groupBox1.TabStop = false;
|
this.groupBox1.Text = "今日拾取計劃";
|
//
|
// grid
|
//
|
this.grid.AllowUserToAddRows = false;
|
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
this.grid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.TotalQty,
|
this.FinishedQty});
|
this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.grid.Location = new System.Drawing.Point(3, 24);
|
this.grid.Name = "grid";
|
this.grid.ReadOnly = true;
|
this.grid.RowTemplate.Height = 30;
|
this.grid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
this.grid.Size = new System.Drawing.Size(421, 179);
|
this.grid.TabIndex = 1;
|
//
|
// TotalQty
|
//
|
this.TotalQty.DataPropertyName = "TotalQty";
|
this.TotalQty.HeaderText = "計劃數量";
|
this.TotalQty.Name = "TotalQty";
|
this.TotalQty.ReadOnly = true;
|
//
|
// FinishedQty
|
//
|
this.FinishedQty.DataPropertyName = "FinishedQty";
|
this.FinishedQty.HeaderText = "已拾取數量";
|
this.FinishedQty.Name = "FinishedQty";
|
this.FinishedQty.ReadOnly = true;
|
//
|
// groupBox2
|
//
|
this.groupBox2.Controls.Add(this.textBox3);
|
this.groupBox2.Controls.Add(this.label4);
|
this.groupBox2.Controls.Add(this.btnClose);
|
this.groupBox2.Controls.Add(this.btnConfirm);
|
this.groupBox2.Controls.Add(this.btnNow);
|
this.groupBox2.Controls.Add(this.txtQty);
|
this.groupBox2.Controls.Add(this.label3);
|
this.groupBox2.Controls.Add(this.label2);
|
this.groupBox2.Controls.Add(this.txtTime);
|
this.groupBox2.Controls.Add(this.label1);
|
this.groupBox2.Location = new System.Drawing.Point(468, 338);
|
this.groupBox2.Name = "groupBox2";
|
this.groupBox2.Size = new System.Drawing.Size(474, 203);
|
this.groupBox2.TabIndex = 11;
|
this.groupBox2.TabStop = false;
|
this.groupBox2.Text = "計劃";
|
//
|
// textBox3
|
//
|
this.textBox3.Location = new System.Drawing.Point(154, 112);
|
this.textBox3.Name = "textBox3";
|
this.textBox3.ReadOnly = true;
|
this.textBox3.Size = new System.Drawing.Size(240, 28);
|
this.textBox3.TabIndex = 19;
|
this.textBox3.Text = "時間跨度從當前時間開始計算";
|
//
|
// label4
|
//
|
this.label4.AutoSize = true;
|
this.label4.Location = new System.Drawing.Point(94, 115);
|
this.label4.Name = "label4";
|
this.label4.Size = new System.Drawing.Size(44, 18);
|
this.label4.TabIndex = 18;
|
this.label4.Text = "備注";
|
//
|
// btnClose
|
//
|
this.btnClose.Location = new System.Drawing.Point(298, 154);
|
this.btnClose.Name = "btnClose";
|
this.btnClose.Size = new System.Drawing.Size(96, 39);
|
this.btnClose.TabIndex = 17;
|
this.btnClose.Text = "關閉";
|
this.btnClose.UseVisualStyleBackColor = true;
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
//
|
// btnConfirm
|
//
|
this.btnConfirm.Location = new System.Drawing.Point(187, 154);
|
this.btnConfirm.Name = "btnConfirm";
|
this.btnConfirm.Size = new System.Drawing.Size(96, 39);
|
this.btnConfirm.TabIndex = 16;
|
this.btnConfirm.Text = "確認";
|
this.btnConfirm.UseVisualStyleBackColor = true;
|
this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
|
//
|
// btnNow
|
//
|
this.btnNow.Location = new System.Drawing.Point(61, 154);
|
this.btnNow.Name = "btnNow";
|
this.btnNow.Size = new System.Drawing.Size(106, 39);
|
this.btnNow.TabIndex = 15;
|
this.btnNow.Text = "立即拾取";
|
this.btnNow.UseVisualStyleBackColor = true;
|
this.btnNow.Visible = false;
|
this.btnNow.Click += new System.EventHandler(this.btnNow_Click);
|
//
|
// txtQty
|
//
|
this.txtQty.Location = new System.Drawing.Point(154, 68);
|
this.txtQty.Name = "txtQty";
|
this.txtQty.Size = new System.Drawing.Size(240, 28);
|
this.txtQty.TabIndex = 11;
|
this.txtQty.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtQty_KeyPress);
|
//
|
// label3
|
//
|
this.label3.AutoSize = true;
|
this.label3.Location = new System.Drawing.Point(58, 71);
|
this.label3.Name = "label3";
|
this.label3.Size = new System.Drawing.Size(80, 18);
|
this.label3.TabIndex = 14;
|
this.label3.Text = "拾取數量";
|
//
|
// label2
|
//
|
this.label2.AutoSize = true;
|
this.label2.Location = new System.Drawing.Point(400, 32);
|
this.label2.Name = "label2";
|
this.label2.Size = new System.Drawing.Size(17, 18);
|
this.label2.TabIndex = 12;
|
this.label2.Text = "h";
|
//
|
// txtTime
|
//
|
this.txtTime.Location = new System.Drawing.Point(154, 26);
|
this.txtTime.Name = "txtTime";
|
this.txtTime.Size = new System.Drawing.Size(240, 28);
|
this.txtTime.TabIndex = 13;
|
this.txtTime.Text = "4";
|
this.txtTime.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTime_KeyPress);
|
//
|
// label1
|
//
|
this.label1.AutoSize = true;
|
this.label1.Location = new System.Drawing.Point(58, 29);
|
this.label1.Name = "label1";
|
this.label1.Size = new System.Drawing.Size(80, 18);
|
this.label1.TabIndex = 10;
|
this.label1.Text = "時間跨度";
|
//
|
// groupBox3
|
//
|
this.groupBox3.Controls.Add(this.gridDetail);
|
this.groupBox3.Location = new System.Drawing.Point(9, 20);
|
this.groupBox3.Name = "groupBox3";
|
this.groupBox3.Size = new System.Drawing.Size(933, 312);
|
this.groupBox3.TabIndex = 12;
|
this.groupBox3.TabStop = false;
|
this.groupBox3.Text = "今日已拾取";
|
//
|
// gridDetail
|
//
|
this.gridDetail.AllowUserToAddRows = false;
|
this.gridDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
this.gridDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.ProductNo,
|
this.PickTime,
|
this.ProductLength,
|
this.ProductWidth,
|
this.ProductHeight});
|
this.gridDetail.Dock = System.Windows.Forms.DockStyle.Fill;
|
this.gridDetail.Location = new System.Drawing.Point(3, 24);
|
this.gridDetail.Name = "gridDetail";
|
this.gridDetail.ReadOnly = true;
|
this.gridDetail.RowTemplate.Height = 30;
|
this.gridDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
this.gridDetail.Size = new System.Drawing.Size(927, 285);
|
this.gridDetail.TabIndex = 0;
|
//
|
// ProductNo
|
//
|
this.ProductNo.DataPropertyName = "ProductNo";
|
this.ProductNo.HeaderText = "產品條碼";
|
this.ProductNo.Name = "ProductNo";
|
this.ProductNo.ReadOnly = true;
|
this.ProductNo.Width = 120;
|
//
|
// PickTime
|
//
|
this.PickTime.DataPropertyName = "PickTime";
|
this.PickTime.HeaderText = "拾取時間";
|
this.PickTime.Name = "PickTime";
|
this.PickTime.ReadOnly = true;
|
this.PickTime.Width = 120;
|
//
|
// ProductLength
|
//
|
this.ProductLength.DataPropertyName = "ProductLength";
|
this.ProductLength.HeaderText = "長度";
|
this.ProductLength.Name = "ProductLength";
|
this.ProductLength.ReadOnly = true;
|
this.ProductLength.Width = 70;
|
//
|
// ProductWidth
|
//
|
this.ProductWidth.DataPropertyName = "ProductWidth";
|
this.ProductWidth.HeaderText = "寬度";
|
this.ProductWidth.Name = "ProductWidth";
|
this.ProductWidth.ReadOnly = true;
|
this.ProductWidth.Width = 70;
|
//
|
// ProductHeight
|
//
|
this.ProductHeight.DataPropertyName = "ProductHeight";
|
this.ProductHeight.HeaderText = "高度";
|
this.ProductHeight.Name = "ProductHeight";
|
this.ProductHeight.ReadOnly = true;
|
this.ProductHeight.Width = 70;
|
//
|
// FormCheck
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(954, 556);
|
this.Controls.Add(this.groupBox3);
|
this.Controls.Add(this.groupBox2);
|
this.Controls.Add(this.groupBox1);
|
this.MaximizeBox = false;
|
this.MinimizeBox = false;
|
this.Name = "FormCheck";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
this.Text = "抽檢";
|
this.groupBox1.ResumeLayout(false);
|
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
|
this.groupBox2.ResumeLayout(false);
|
this.groupBox2.PerformLayout();
|
this.groupBox3.ResumeLayout(false);
|
((System.ComponentModel.ISupportInitialize)(this.gridDetail)).EndInit();
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
private System.Windows.Forms.GroupBox groupBox2;
|
private System.Windows.Forms.TextBox textBox3;
|
private System.Windows.Forms.Label label4;
|
private System.Windows.Forms.Button btnClose;
|
private System.Windows.Forms.Button btnConfirm;
|
private System.Windows.Forms.Button btnNow;
|
private System.Windows.Forms.TextBox txtQty;
|
private System.Windows.Forms.Label label3;
|
private System.Windows.Forms.Label label2;
|
private System.Windows.Forms.TextBox txtTime;
|
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.GroupBox groupBox3;
|
private System.Windows.Forms.DataGridView grid;
|
private System.Windows.Forms.DataGridView gridDetail;
|
private System.Windows.Forms.DataGridViewTextBoxColumn ProductNo;
|
private System.Windows.Forms.DataGridViewTextBoxColumn PickTime;
|
private System.Windows.Forms.DataGridViewTextBoxColumn ProductLength;
|
private System.Windows.Forms.DataGridViewTextBoxColumn ProductWidth;
|
private System.Windows.Forms.DataGridViewTextBoxColumn ProductHeight;
|
private System.Windows.Forms.DataGridViewTextBoxColumn TotalQty;
|
private System.Windows.Forms.DataGridViewTextBoxColumn FinishedQty;
|
}
|
}
|