Warehouse_ProdDetail.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. namespace UAS_MES_NEW.Warehouse
  2. {
  3. partial class Warehouse_ProdDetail
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.headBar1 = new UAS_MES_NEW.CustomControl.HeadBar();
  29. this.InOutDetailDGV = new UAS_MES_NEW.CustomControl.DataGrid_View.DataGridViewWithSerialNum();
  30. this.pd_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.pd_ordercode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.pr_detail = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.outqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.getqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.ungetqty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36. ((System.ComponentModel.ISupportInitialize)(this.InOutDetailDGV)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // headBar1
  40. //
  41. this.headBar1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  42. this.headBar1.Dock = System.Windows.Forms.DockStyle.Top;
  43. this.headBar1.Location = new System.Drawing.Point(0, 0);
  44. this.headBar1.Name = "headBar1";
  45. this.headBar1.Size = new System.Drawing.Size(621, 32);
  46. this.headBar1.TabIndex = 0;
  47. this.headBar1.Title = null;
  48. this.headBar1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.headBar1_MouseDown);
  49. //
  50. // InOutDetailDGV
  51. //
  52. this.InOutDetailDGV.AllowUserToAddRows = false;
  53. this.InOutDetailDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  54. this.InOutDetailDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  55. this.pd_prodcode,
  56. this.pd_ordercode,
  57. this.pr_detail,
  58. this.outqty,
  59. this.getqty,
  60. this.ungetqty});
  61. this.InOutDetailDGV.EnableContentClick = true;
  62. this.InOutDetailDGV.Location = new System.Drawing.Point(32, 37);
  63. this.InOutDetailDGV.Margin = new System.Windows.Forms.Padding(2);
  64. this.InOutDetailDGV.Name = "InOutDetailDGV";
  65. this.InOutDetailDGV.RowTemplate.Height = 27;
  66. this.InOutDetailDGV.Size = new System.Drawing.Size(544, 357);
  67. this.InOutDetailDGV.TabIndex = 219;
  68. //
  69. // pd_prodcode
  70. //
  71. this.pd_prodcode.DataPropertyName = "pd_prodcode";
  72. this.pd_prodcode.HeaderText = "产品代码";
  73. this.pd_prodcode.MinimumWidth = 120;
  74. this.pd_prodcode.Name = "pd_prodcode";
  75. this.pd_prodcode.ReadOnly = true;
  76. this.pd_prodcode.Width = 120;
  77. //
  78. // pd_ordercode
  79. //
  80. this.pd_ordercode.DataPropertyName = "pd_ordercode";
  81. this.pd_ordercode.HeaderText = "订单编号";
  82. this.pd_ordercode.Name = "pd_ordercode";
  83. this.pd_ordercode.ReadOnly = true;
  84. //
  85. // pr_detail
  86. //
  87. this.pr_detail.DataPropertyName = "pr_detail";
  88. this.pr_detail.HeaderText = "产品名称";
  89. this.pr_detail.Name = "pr_detail";
  90. this.pr_detail.ReadOnly = true;
  91. //
  92. // outqty
  93. //
  94. this.outqty.DataPropertyName = "outqty";
  95. this.outqty.HeaderText = "出货数";
  96. this.outqty.Name = "outqty";
  97. this.outqty.ReadOnly = true;
  98. //
  99. // getqty
  100. //
  101. this.getqty.DataPropertyName = "getqty";
  102. this.getqty.HeaderText = "已采集数";
  103. this.getqty.Name = "getqty";
  104. this.getqty.ReadOnly = true;
  105. //
  106. // ungetqty
  107. //
  108. this.ungetqty.HeaderText = "未采集数";
  109. this.ungetqty.Name = "ungetqty";
  110. this.ungetqty.ReadOnly = true;
  111. //
  112. // Warehouse_ProdDetail
  113. //
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.ClientSize = new System.Drawing.Size(621, 420);
  117. this.Controls.Add(this.InOutDetailDGV);
  118. this.Controls.Add(this.headBar1);
  119. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  120. this.Margin = new System.Windows.Forms.Padding(2);
  121. this.Name = "Warehouse_ProdDetail";
  122. this.Text = "Warehouse_ProdDetail";
  123. this.Load += new System.EventHandler(this.Warehouse_ProdDetail_Load);
  124. ((System.ComponentModel.ISupportInitialize)(this.InOutDetailDGV)).EndInit();
  125. this.ResumeLayout(true);
  126. }
  127. #endregion
  128. private CustomControl.HeadBar headBar1;
  129. private CustomControl.DataGrid_View.DataGridViewWithSerialNum InOutDetailDGV;
  130. private System.Windows.Forms.DataGridViewTextBoxColumn pd_prodcode;
  131. private System.Windows.Forms.DataGridViewTextBoxColumn pd_ordercode;
  132. private System.Windows.Forms.DataGridViewTextBoxColumn pr_detail;
  133. private System.Windows.Forms.DataGridViewTextBoxColumn outqty;
  134. private System.Windows.Forms.DataGridViewTextBoxColumn getqty;
  135. private System.Windows.Forms.DataGridViewTextBoxColumn ungetqty;
  136. }
  137. }