ldj/wince/DeiNiuWmsWINCE/forms/TakeOutTask.Designer.cs

174 lines
7.3 KiB
C#
Raw Permalink Normal View History

2023-05-23 16:13:17 +08:00
namespace DeiNiu.Wms.CE
{
partial class TakeOutTask
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.dg1 = new System.Windows.Forms.DataGrid();
this.comPartion = new System.Windows.Forms.ComboBox();
this.timer1 = new System.Windows.Forms.Timer();
this.comLines = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.btnQuery = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.comOrderType = new System.Windows.Forms.ComboBox();
this.txtPrint = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// dg1
//
this.dg1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
this.dg1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
this.dg1.Location = new System.Drawing.Point(3, 57);
this.dg1.Name = "dg1";
this.dg1.RowHeadersVisible = false;
this.dg1.Size = new System.Drawing.Size(237, 189);
this.dg1.TabIndex = 0;
//
// comPartion
//
this.comPartion.Location = new System.Drawing.Point(44, 3);
this.comPartion.Name = "comPartion";
this.comPartion.Size = new System.Drawing.Size(106, 23);
this.comPartion.TabIndex = 1;
//
// comLines
//
this.comLines.Location = new System.Drawing.Point(203, 58);
this.comLines.Name = "comLines";
this.comLines.Size = new System.Drawing.Size(10, 23);
this.comLines.TabIndex = 2;
this.comLines.Visible = false;
//
// label2
//
this.label2.Location = new System.Drawing.Point(5, 6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(40, 20);
this.label2.Text = "货区";
//
// label4
//
this.label4.Location = new System.Drawing.Point(175, 58);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(22, 20);
this.label4.Text = "线路";
this.label4.Visible = false;
//
// button1
//
this.button1.Location = new System.Drawing.Point(165, 4);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(72, 24);
this.button1.TabIndex = 6;
this.button1.Text = "获取";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btnQuery
//
this.btnQuery.Location = new System.Drawing.Point(165, 30);
this.btnQuery.Name = "btnQuery";
this.btnQuery.Size = new System.Drawing.Size(72, 24);
this.btnQuery.TabIndex = 9;
this.btnQuery.Text = "查询";
this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(5, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(40, 20);
this.label1.Text = "类型";
//
// comOrderType
//
this.comOrderType.Location = new System.Drawing.Point(44, 31);
this.comOrderType.Name = "comOrderType";
this.comOrderType.Size = new System.Drawing.Size(106, 23);
this.comOrderType.TabIndex = 11;
this.comOrderType.SelectedIndexChanged += new System.EventHandler(this.comOrderType_SelectedIndexChanged);
//
// txtPrint
//
this.txtPrint.Location = new System.Drawing.Point(45, 249);
this.txtPrint.Name = "txtPrint";
this.txtPrint.Size = new System.Drawing.Size(192, 23);
this.txtPrint.TabIndex = 14;
this.txtPrint.GotFocus += new System.EventHandler(this.txtPrint_GotFocus);
this.txtPrint.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtPrint_KeyUp);
//
// label3
//
this.label3.Location = new System.Drawing.Point(5, 253);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(40, 20);
this.label3.Text = "打印";
//
// TakeOutTask
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(243, 275);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtPrint);
this.Controls.Add(this.label1);
this.Controls.Add(this.comOrderType);
this.Controls.Add(this.btnQuery);
this.Controls.Add(this.dg1);
this.Controls.Add(this.button1);
this.Controls.Add(this.label4);
this.Controls.Add(this.label2);
this.Controls.Add(this.comLines);
this.Controls.Add(this.comPartion);
this.Name = "TakeOutTask";
this.Text = "出库下架任务";
this.Load += new System.EventHandler(this.Tasks_Load);
this.Closing += new System.ComponentModel.CancelEventHandler(this.TaskList_Closing);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGrid dg1;
private System.Windows.Forms.ComboBox comPartion;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.ComboBox comLines;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnQuery;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox comOrderType;
private System.Windows.Forms.TextBox txtPrint;
private System.Windows.Forms.Label label3;
}
}