106 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C#
		
	
	
	
| namespace DeiNiu.Wms.CE
 | ||
| {
 | ||
|     partial class LocationQuery
 | ||
|     {
 | ||
|         /// <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.label1 = new System.Windows.Forms.Label();
 | ||
|             this.textBox1 = new System.Windows.Forms.TextBox();
 | ||
|             this.label2 = new System.Windows.Forms.Label();
 | ||
|             this.label3 = new System.Windows.Forms.Label();
 | ||
|             this.dataGrid1 = new System.Windows.Forms.DataGrid();
 | ||
|             this.SuspendLayout();
 | ||
|             // 
 | ||
|             // label1
 | ||
|             // 
 | ||
|             this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.label1.Location = new System.Drawing.Point(11, 15);
 | ||
|             this.label1.Name = "label1";
 | ||
|             this.label1.Size = new System.Drawing.Size(55, 20);
 | ||
|             this.label1.Text = "商品码";
 | ||
|             // 
 | ||
|             // textBox1
 | ||
|             // 
 | ||
|             this.textBox1.Location = new System.Drawing.Point(61, 12);
 | ||
|             this.textBox1.Name = "textBox1";
 | ||
|             this.textBox1.Size = new System.Drawing.Size(130, 23);
 | ||
|             this.textBox1.TabIndex = 1;
 | ||
|             this.textBox1.Text = "6954839000211";
 | ||
|             this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress);
 | ||
|             // 
 | ||
|             // label2
 | ||
|             // 
 | ||
|             this.label2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.label2.Location = new System.Drawing.Point(13, 40);
 | ||
|             this.label2.Name = "label2";
 | ||
|             this.label2.Size = new System.Drawing.Size(42, 20);
 | ||
|             this.label2.Text = "品名:";
 | ||
|             // 
 | ||
|             // label3
 | ||
|             // 
 | ||
|             this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.label3.ForeColor = System.Drawing.Color.Blue;
 | ||
|             this.label3.Location = new System.Drawing.Point(61, 40);
 | ||
|             this.label3.Name = "label3";
 | ||
|             this.label3.Size = new System.Drawing.Size(167, 20);
 | ||
|             // 
 | ||
|             // dataGrid1
 | ||
|             // 
 | ||
|             this.dataGrid1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
 | ||
|             this.dataGrid1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular);
 | ||
|             this.dataGrid1.Location = new System.Drawing.Point(6, 63);
 | ||
|             this.dataGrid1.Name = "dataGrid1";
 | ||
|             this.dataGrid1.RowHeadersVisible = false;
 | ||
|             this.dataGrid1.Size = new System.Drawing.Size(230, 206);
 | ||
|             this.dataGrid1.TabIndex = 4;
 | ||
|             // 
 | ||
|             // LocationQuery
 | ||
|             // 
 | ||
|             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.dataGrid1);
 | ||
|             this.Controls.Add(this.label3);
 | ||
|             this.Controls.Add(this.label2);
 | ||
|             this.Controls.Add(this.textBox1);
 | ||
|             this.Controls.Add(this.label1);
 | ||
|             this.Name = "LocationQuery";
 | ||
|             this.Text = "货位查询";
 | ||
|             this.ResumeLayout(false);
 | ||
| 
 | ||
|         }
 | ||
| 
 | ||
|         #endregion
 | ||
| 
 | ||
|         private System.Windows.Forms.Label label1;
 | ||
|         private System.Windows.Forms.TextBox textBox1;
 | ||
|         private System.Windows.Forms.Label label2;
 | ||
|         private System.Windows.Forms.Label label3;
 | ||
|         private System.Windows.Forms.DataGrid dataGrid1;
 | ||
|     }
 | ||
| } |