Make_StepReportDetail.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. namespace UAS_MES_NEW.Make
  2. {
  3. partial class Make_StepReportDetail
  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.BatchProductDGV = new UAS_MES_NEW.CustomControl.DataGrid_View.DataGridViewWithSerialNum();
  30. this.msd_id = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.msd_msid = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.msd_badname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. this.msd_qty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34. this.msd_indate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35. this.DeleteRow = new System.Windows.Forms.DataGridViewImageColumn();
  36. this.label7 = new System.Windows.Forms.Label();
  37. this.ngqty = new UAS_MES_NEW.CustomControl.TextBoxWithIcon.NumOnlyTextBox();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.ngsum = new System.Windows.Forms.Label();
  40. this.stepcode = new System.Windows.Forms.Label();
  41. this.label3 = new System.Windows.Forms.Label();
  42. this.label2 = new System.Windows.Forms.Label();
  43. this.comBoxWithFocus1 = new UAS_MES_NEW.CustomControl.ComBoxWithFocus.ComBoxWithFocus();
  44. this.ma_code = new System.Windows.Forms.Label();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.button1 = new System.Windows.Forms.Button();
  47. ((System.ComponentModel.ISupportInitialize)(this.BatchProductDGV)).BeginInit();
  48. this.SuspendLayout();
  49. //
  50. // headBar1
  51. //
  52. this.headBar1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
  53. this.headBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  54. this.headBar1.Dock = System.Windows.Forms.DockStyle.Top;
  55. this.headBar1.Location = new System.Drawing.Point(0, 0);
  56. this.headBar1.Margin = new System.Windows.Forms.Padding(6);
  57. this.headBar1.Name = "headBar1";
  58. this.headBar1.Size = new System.Drawing.Size(929, 47);
  59. this.headBar1.TabIndex = 0;
  60. this.headBar1.Title = null;
  61. this.headBar1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.headBar1_MouseDown);
  62. //
  63. // BatchProductDGV
  64. //
  65. this.BatchProductDGV.AllowUserToAddRows = false;
  66. this.BatchProductDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  67. this.BatchProductDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  68. this.msd_id,
  69. this.msd_msid,
  70. this.msd_badname,
  71. this.msd_qty,
  72. this.msd_indate,
  73. this.DeleteRow});
  74. this.BatchProductDGV.EnableContentClick = true;
  75. this.BatchProductDGV.Location = new System.Drawing.Point(13, 116);
  76. this.BatchProductDGV.Margin = new System.Windows.Forms.Padding(4);
  77. this.BatchProductDGV.Name = "BatchProductDGV";
  78. this.BatchProductDGV.RowTemplate.Height = 23;
  79. this.BatchProductDGV.Size = new System.Drawing.Size(894, 421);
  80. this.BatchProductDGV.TabIndex = 175;
  81. this.BatchProductDGV.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.BatchProductDGV_CellContentClick66);
  82. this.BatchProductDGV.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.BatchProductDGV_CellFormatting12);
  83. //
  84. // msd_id
  85. //
  86. this.msd_id.DataPropertyName = "msd_id";
  87. this.msd_id.HeaderText = "ID";
  88. this.msd_id.Name = "msd_id";
  89. this.msd_id.Visible = false;
  90. //
  91. // msd_msid
  92. //
  93. this.msd_msid.DataPropertyName = "msd_msid";
  94. this.msd_msid.HeaderText = "";
  95. this.msd_msid.Name = "msd_msid";
  96. this.msd_msid.ReadOnly = true;
  97. this.msd_msid.Visible = false;
  98. //
  99. // msd_badname
  100. //
  101. this.msd_badname.DataPropertyName = "msd_badname";
  102. this.msd_badname.HeaderText = "不良现象";
  103. this.msd_badname.Name = "msd_badname";
  104. this.msd_badname.ReadOnly = true;
  105. //
  106. // msd_qty
  107. //
  108. this.msd_qty.DataPropertyName = "msd_qty";
  109. this.msd_qty.HeaderText = "不良数";
  110. this.msd_qty.Name = "msd_qty";
  111. this.msd_qty.ReadOnly = true;
  112. //
  113. // msd_indate
  114. //
  115. this.msd_indate.DataPropertyName = "msd_indate";
  116. this.msd_indate.HeaderText = "录入时间";
  117. this.msd_indate.Name = "msd_indate";
  118. this.msd_indate.ReadOnly = true;
  119. //
  120. // DeleteRow
  121. //
  122. this.DeleteRow.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  123. this.DeleteRow.HeaderText = "删除";
  124. this.DeleteRow.Image = global::UAS_MES_NEW.Properties.Resources.bindingNavigatorDeleteItem_Image;
  125. this.DeleteRow.Name = "DeleteRow";
  126. //
  127. // label7
  128. //
  129. this.label7.AutoSize = true;
  130. this.label7.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  131. this.label7.Location = new System.Drawing.Point(45, 588);
  132. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  133. this.label7.Name = "label7";
  134. this.label7.Size = new System.Drawing.Size(134, 31);
  135. this.label7.TabIndex = 243;
  136. this.label7.Text = "不良数录入";
  137. //
  138. // ngqty
  139. //
  140. this.ngqty.AllPower = null;
  141. this.ngqty.BackColor = System.Drawing.Color.White;
  142. this.ngqty.ID = null;
  143. this.ngqty.Location = new System.Drawing.Point(178, 587);
  144. this.ngqty.Name = "ngqty";
  145. this.ngqty.Negative = false;
  146. this.ngqty.Power = null;
  147. this.ngqty.Size = new System.Drawing.Size(204, 28);
  148. this.ngqty.Str = null;
  149. this.ngqty.Str1 = null;
  150. this.ngqty.Str2 = null;
  151. this.ngqty.TabIndex = 242;
  152. //
  153. // label1
  154. //
  155. this.label1.AutoSize = true;
  156. this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  157. this.label1.Location = new System.Drawing.Point(45, 64);
  158. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  159. this.label1.Name = "label1";
  160. this.label1.Size = new System.Drawing.Size(110, 31);
  161. this.label1.TabIndex = 245;
  162. this.label1.Text = "总不良数";
  163. //
  164. // ngsum
  165. //
  166. this.ngsum.AutoSize = true;
  167. this.ngsum.Location = new System.Drawing.Point(162, 74);
  168. this.ngsum.Name = "ngsum";
  169. this.ngsum.Size = new System.Drawing.Size(0, 18);
  170. this.ngsum.TabIndex = 246;
  171. //
  172. // stepcode
  173. //
  174. this.stepcode.AutoSize = true;
  175. this.stepcode.Location = new System.Drawing.Point(703, 74);
  176. this.stepcode.Name = "stepcode";
  177. this.stepcode.Size = new System.Drawing.Size(0, 18);
  178. this.stepcode.TabIndex = 248;
  179. //
  180. // label3
  181. //
  182. this.label3.AutoSize = true;
  183. this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  184. this.label3.Location = new System.Drawing.Point(634, 64);
  185. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  186. this.label3.Name = "label3";
  187. this.label3.Size = new System.Drawing.Size(62, 31);
  188. this.label3.TabIndex = 247;
  189. this.label3.Text = "工序";
  190. //
  191. // label2
  192. //
  193. this.label2.AutoSize = true;
  194. this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  195. this.label2.Location = new System.Drawing.Point(61, 550);
  196. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  197. this.label2.Name = "label2";
  198. this.label2.Size = new System.Drawing.Size(110, 31);
  199. this.label2.TabIndex = 249;
  200. this.label2.Text = "不良现象";
  201. //
  202. // comBoxWithFocus1
  203. //
  204. this.comBoxWithFocus1.FormattingEnabled = true;
  205. this.comBoxWithFocus1.Location = new System.Drawing.Point(178, 555);
  206. this.comBoxWithFocus1.Name = "comBoxWithFocus1";
  207. this.comBoxWithFocus1.Size = new System.Drawing.Size(204, 26);
  208. this.comBoxWithFocus1.TabIndex = 250;
  209. //
  210. // ma_code
  211. //
  212. this.ma_code.AutoSize = true;
  213. this.ma_code.Location = new System.Drawing.Point(412, 74);
  214. this.ma_code.Name = "ma_code";
  215. this.ma_code.Size = new System.Drawing.Size(0, 18);
  216. this.ma_code.TabIndex = 252;
  217. //
  218. // label5
  219. //
  220. this.label5.AutoSize = true;
  221. this.label5.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  222. this.label5.Location = new System.Drawing.Point(343, 64);
  223. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  224. this.label5.Name = "label5";
  225. this.label5.Size = new System.Drawing.Size(62, 31);
  226. this.label5.TabIndex = 251;
  227. this.label5.Text = "工单";
  228. //
  229. // button1
  230. //
  231. this.button1.Location = new System.Drawing.Point(538, 587);
  232. this.button1.Name = "button1";
  233. this.button1.Size = new System.Drawing.Size(75, 23);
  234. this.button1.TabIndex = 253;
  235. this.button1.Text = "button1";
  236. this.button1.UseVisualStyleBackColor = true;
  237. //
  238. // Make_StepReportDetail
  239. //
  240. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  241. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  242. this.ClientSize = new System.Drawing.Size(929, 630);
  243. this.Controls.Add(this.button1);
  244. this.Controls.Add(this.ma_code);
  245. this.Controls.Add(this.label5);
  246. this.Controls.Add(this.comBoxWithFocus1);
  247. this.Controls.Add(this.label2);
  248. this.Controls.Add(this.stepcode);
  249. this.Controls.Add(this.label3);
  250. this.Controls.Add(this.ngsum);
  251. this.Controls.Add(this.label1);
  252. this.Controls.Add(this.label7);
  253. this.Controls.Add(this.ngqty);
  254. this.Controls.Add(this.BatchProductDGV);
  255. this.Controls.Add(this.headBar1);
  256. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  257. this.Margin = new System.Windows.Forms.Padding(3);
  258. this.Name = "Make_StepReportDetail";
  259. this.Text = "Make_StepReportDetail";
  260. this.Load += new System.EventHandler(this.Warehouse_ProdDetail_Load);
  261. ((System.ComponentModel.ISupportInitialize)(this.BatchProductDGV)).EndInit();
  262. this.ResumeLayout(false);
  263. this.PerformLayout();
  264. }
  265. #endregion
  266. private CustomControl.HeadBar headBar1;
  267. private CustomControl.DataGrid_View.DataGridViewWithSerialNum BatchProductDGV;
  268. private System.Windows.Forms.Label label7;
  269. private CustomControl.TextBoxWithIcon.NumOnlyTextBox ngqty;
  270. private System.Windows.Forms.Label label1;
  271. private System.Windows.Forms.Label ngsum;
  272. private System.Windows.Forms.DataGridViewTextBoxColumn msd_id;
  273. private System.Windows.Forms.DataGridViewTextBoxColumn msd_msid;
  274. private System.Windows.Forms.DataGridViewTextBoxColumn msd_badname;
  275. private System.Windows.Forms.DataGridViewTextBoxColumn msd_qty;
  276. private System.Windows.Forms.DataGridViewTextBoxColumn msd_indate;
  277. private System.Windows.Forms.DataGridViewImageColumn DeleteRow;
  278. private System.Windows.Forms.Label stepcode;
  279. private System.Windows.Forms.Label label3;
  280. private System.Windows.Forms.Label label2;
  281. private CustomControl.ComBoxWithFocus.ComBoxWithFocus comBoxWithFocus1;
  282. private System.Windows.Forms.Label ma_code;
  283. private System.Windows.Forms.Label label5;
  284. private System.Windows.Forms.Button button1;
  285. }
  286. }