FrmThermometerCoding.Designer.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. namespace WDProduceTool.Forms
  2. {
  3. partial class FrmThermometerCoding
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmThermometerCoding));
  29. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  30. this.panel2 = new System.Windows.Forms.Panel();
  31. this.cb_model = new System.Windows.Forms.ComboBox();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.panel3 = new System.Windows.Forms.Panel();
  34. this.cb_schedual = new System.Windows.Forms.ComboBox();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.panel4 = new System.Windows.Forms.Panel();
  37. this.txt_qty = new System.Windows.Forms.TextBox();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.panel5 = new System.Windows.Forms.Panel();
  40. this.date_time_picker = new System.Windows.Forms.DateTimePicker();
  41. this.label4 = new System.Windows.Forms.Label();
  42. this.panel6 = new System.Windows.Forms.Panel();
  43. this.cb_printer = new System.Windows.Forms.ComboBox();
  44. this.label5 = new System.Windows.Forms.Label();
  45. this.panel7 = new System.Windows.Forms.Panel();
  46. this.cb_operate = new System.Windows.Forms.ComboBox();
  47. this.label6 = new System.Windows.Forms.Label();
  48. this.panel1 = new System.Windows.Forms.Panel();
  49. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  50. this.btn_choose_unprint = new System.Windows.Forms.Button();
  51. this.btn_generate = new System.Windows.Forms.Button();
  52. this.btn_upload_choosed = new System.Windows.Forms.Button();
  53. this.btn_print_choosed = new System.Windows.Forms.Button();
  54. this.btn_delete_choosed = new System.Windows.Forms.Button();
  55. this.tableLayoutPanel1.SuspendLayout();
  56. this.panel2.SuspendLayout();
  57. this.panel3.SuspendLayout();
  58. this.panel4.SuspendLayout();
  59. this.panel5.SuspendLayout();
  60. this.panel6.SuspendLayout();
  61. this.panel7.SuspendLayout();
  62. this.panel1.SuspendLayout();
  63. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  64. this.SuspendLayout();
  65. //
  66. // tableLayoutPanel1
  67. //
  68. this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  69. | System.Windows.Forms.AnchorStyles.Left)
  70. | System.Windows.Forms.AnchorStyles.Right)));
  71. this.tableLayoutPanel1.ColumnCount = 3;
  72. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  73. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  74. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
  75. this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 0);
  76. this.tableLayoutPanel1.Controls.Add(this.panel3, 1, 0);
  77. this.tableLayoutPanel1.Controls.Add(this.panel4, 2, 0);
  78. this.tableLayoutPanel1.Controls.Add(this.panel5, 0, 1);
  79. this.tableLayoutPanel1.Controls.Add(this.panel6, 1, 1);
  80. this.tableLayoutPanel1.Controls.Add(this.panel7, 2, 1);
  81. this.tableLayoutPanel1.Location = new System.Drawing.Point(3, 3);
  82. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  83. this.tableLayoutPanel1.RowCount = 2;
  84. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  85. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
  86. this.tableLayoutPanel1.Size = new System.Drawing.Size(913, 89);
  87. this.tableLayoutPanel1.TabIndex = 0;
  88. //
  89. // panel2
  90. //
  91. this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  92. | System.Windows.Forms.AnchorStyles.Left)
  93. | System.Windows.Forms.AnchorStyles.Right)));
  94. this.panel2.Controls.Add(this.cb_model);
  95. this.panel2.Controls.Add(this.label1);
  96. this.panel2.Location = new System.Drawing.Point(3, 3);
  97. this.panel2.Name = "panel2";
  98. this.panel2.Size = new System.Drawing.Size(298, 38);
  99. this.panel2.TabIndex = 0;
  100. //
  101. // cb_model
  102. //
  103. this.cb_model.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  104. | System.Windows.Forms.AnchorStyles.Left)
  105. | System.Windows.Forms.AnchorStyles.Right)));
  106. this.cb_model.FormattingEnabled = true;
  107. this.cb_model.Location = new System.Drawing.Point(79, 6);
  108. this.cb_model.Name = "cb_model";
  109. this.cb_model.Size = new System.Drawing.Size(206, 25);
  110. this.cb_model.TabIndex = 1;
  111. //
  112. // label1
  113. //
  114. this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  115. | System.Windows.Forms.AnchorStyles.Left)));
  116. this.label1.AutoSize = true;
  117. this.label1.Location = new System.Drawing.Point(9, 9);
  118. this.label1.Name = "label1";
  119. this.label1.Size = new System.Drawing.Size(68, 17);
  120. this.label1.TabIndex = 0;
  121. this.label1.Text = "体温枪型号";
  122. //
  123. // panel3
  124. //
  125. this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  126. | System.Windows.Forms.AnchorStyles.Left)
  127. | System.Windows.Forms.AnchorStyles.Right)));
  128. this.panel3.Controls.Add(this.cb_schedual);
  129. this.panel3.Controls.Add(this.label2);
  130. this.panel3.Location = new System.Drawing.Point(307, 3);
  131. this.panel3.Name = "panel3";
  132. this.panel3.Size = new System.Drawing.Size(298, 38);
  133. this.panel3.TabIndex = 1;
  134. //
  135. // cb_schedual
  136. //
  137. this.cb_schedual.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  138. | System.Windows.Forms.AnchorStyles.Left)
  139. | System.Windows.Forms.AnchorStyles.Right)));
  140. this.cb_schedual.FormattingEnabled = true;
  141. this.cb_schedual.Location = new System.Drawing.Point(80, 6);
  142. this.cb_schedual.Name = "cb_schedual";
  143. this.cb_schedual.Size = new System.Drawing.Size(204, 25);
  144. this.cb_schedual.TabIndex = 1;
  145. //
  146. // label2
  147. //
  148. this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  149. | System.Windows.Forms.AnchorStyles.Left)));
  150. this.label2.AutoSize = true;
  151. this.label2.Location = new System.Drawing.Point(14, 9);
  152. this.label2.Name = "label2";
  153. this.label2.Size = new System.Drawing.Size(56, 17);
  154. this.label2.TabIndex = 0;
  155. this.label2.Text = "生产班次";
  156. //
  157. // panel4
  158. //
  159. this.panel4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  160. | System.Windows.Forms.AnchorStyles.Left)
  161. | System.Windows.Forms.AnchorStyles.Right)));
  162. this.panel4.Controls.Add(this.txt_qty);
  163. this.panel4.Controls.Add(this.label3);
  164. this.panel4.Location = new System.Drawing.Point(611, 3);
  165. this.panel4.Name = "panel4";
  166. this.panel4.Size = new System.Drawing.Size(299, 38);
  167. this.panel4.TabIndex = 2;
  168. //
  169. // txt_qty
  170. //
  171. this.txt_qty.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  172. | System.Windows.Forms.AnchorStyles.Left)
  173. | System.Windows.Forms.AnchorStyles.Right)));
  174. this.txt_qty.Location = new System.Drawing.Point(74, 7);
  175. this.txt_qty.Name = "txt_qty";
  176. this.txt_qty.Size = new System.Drawing.Size(214, 23);
  177. this.txt_qty.TabIndex = 1;
  178. this.txt_qty.Text = "100";
  179. this.txt_qty.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txt_qty_KeyPress);
  180. //
  181. // label3
  182. //
  183. this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  184. | System.Windows.Forms.AnchorStyles.Left)));
  185. this.label3.AutoSize = true;
  186. this.label3.Location = new System.Drawing.Point(12, 9);
  187. this.label3.Name = "label3";
  188. this.label3.Size = new System.Drawing.Size(56, 17);
  189. this.label3.TabIndex = 0;
  190. this.label3.Text = "生产数量";
  191. //
  192. // panel5
  193. //
  194. this.panel5.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  195. | System.Windows.Forms.AnchorStyles.Left)
  196. | System.Windows.Forms.AnchorStyles.Right)));
  197. this.panel5.Controls.Add(this.date_time_picker);
  198. this.panel5.Controls.Add(this.label4);
  199. this.panel5.Location = new System.Drawing.Point(3, 47);
  200. this.panel5.Name = "panel5";
  201. this.panel5.Size = new System.Drawing.Size(298, 39);
  202. this.panel5.TabIndex = 3;
  203. //
  204. // date_time_picker
  205. //
  206. this.date_time_picker.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  207. | System.Windows.Forms.AnchorStyles.Left)
  208. | System.Windows.Forms.AnchorStyles.Right)));
  209. this.date_time_picker.Location = new System.Drawing.Point(79, 6);
  210. this.date_time_picker.Name = "date_time_picker";
  211. this.date_time_picker.Size = new System.Drawing.Size(206, 23);
  212. this.date_time_picker.TabIndex = 1;
  213. //
  214. // label4
  215. //
  216. this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  217. | System.Windows.Forms.AnchorStyles.Left)));
  218. this.label4.AutoSize = true;
  219. this.label4.Location = new System.Drawing.Point(9, 11);
  220. this.label4.Name = "label4";
  221. this.label4.Size = new System.Drawing.Size(56, 17);
  222. this.label4.TabIndex = 0;
  223. this.label4.Text = "生产日期";
  224. //
  225. // panel6
  226. //
  227. this.panel6.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  228. | System.Windows.Forms.AnchorStyles.Left)
  229. | System.Windows.Forms.AnchorStyles.Right)));
  230. this.panel6.Controls.Add(this.cb_printer);
  231. this.panel6.Controls.Add(this.label5);
  232. this.panel6.Location = new System.Drawing.Point(307, 47);
  233. this.panel6.Name = "panel6";
  234. this.panel6.Size = new System.Drawing.Size(298, 39);
  235. this.panel6.TabIndex = 4;
  236. //
  237. // cb_printer
  238. //
  239. this.cb_printer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  240. | System.Windows.Forms.AnchorStyles.Left)
  241. | System.Windows.Forms.AnchorStyles.Right)));
  242. this.cb_printer.FormattingEnabled = true;
  243. this.cb_printer.Location = new System.Drawing.Point(80, 6);
  244. this.cb_printer.Name = "cb_printer";
  245. this.cb_printer.Size = new System.Drawing.Size(204, 25);
  246. this.cb_printer.TabIndex = 1;
  247. //
  248. // label5
  249. //
  250. this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  251. | System.Windows.Forms.AnchorStyles.Left)));
  252. this.label5.AutoSize = true;
  253. this.label5.Location = new System.Drawing.Point(16, 10);
  254. this.label5.Name = "label5";
  255. this.label5.Size = new System.Drawing.Size(44, 17);
  256. this.label5.TabIndex = 0;
  257. this.label5.Text = "打印机";
  258. //
  259. // panel7
  260. //
  261. this.panel7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  262. | System.Windows.Forms.AnchorStyles.Left)
  263. | System.Windows.Forms.AnchorStyles.Right)));
  264. this.panel7.Controls.Add(this.cb_operate);
  265. this.panel7.Controls.Add(this.label6);
  266. this.panel7.Location = new System.Drawing.Point(611, 47);
  267. this.panel7.Name = "panel7";
  268. this.panel7.Size = new System.Drawing.Size(299, 39);
  269. this.panel7.TabIndex = 5;
  270. //
  271. // cb_operate
  272. //
  273. this.cb_operate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  274. | System.Windows.Forms.AnchorStyles.Left)
  275. | System.Windows.Forms.AnchorStyles.Right)));
  276. this.cb_operate.FormattingEnabled = true;
  277. this.cb_operate.Items.AddRange(new object[] {
  278. "防伪标贴",
  279. "合格证"});
  280. this.cb_operate.Location = new System.Drawing.Point(72, 8);
  281. this.cb_operate.Name = "cb_operate";
  282. this.cb_operate.Size = new System.Drawing.Size(216, 25);
  283. this.cb_operate.TabIndex = 1;
  284. //
  285. // label6
  286. //
  287. this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  288. | System.Windows.Forms.AnchorStyles.Left)));
  289. this.label6.AutoSize = true;
  290. this.label6.Location = new System.Drawing.Point(12, 10);
  291. this.label6.Name = "label6";
  292. this.label6.Size = new System.Drawing.Size(56, 17);
  293. this.label6.TabIndex = 0;
  294. this.label6.Text = "打印类型";
  295. //
  296. // panel1
  297. //
  298. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  299. | System.Windows.Forms.AnchorStyles.Right)));
  300. this.panel1.Controls.Add(this.tableLayoutPanel1);
  301. this.panel1.Location = new System.Drawing.Point(3, 3);
  302. this.panel1.Name = "panel1";
  303. this.panel1.Size = new System.Drawing.Size(919, 95);
  304. this.panel1.TabIndex = 0;
  305. //
  306. // dataGridView1
  307. //
  308. this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  309. | System.Windows.Forms.AnchorStyles.Left)
  310. | System.Windows.Forms.AnchorStyles.Right)));
  311. this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  312. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  313. this.dataGridView1.Location = new System.Drawing.Point(6, 152);
  314. this.dataGridView1.Name = "dataGridView1";
  315. this.dataGridView1.RowTemplate.Height = 25;
  316. this.dataGridView1.Size = new System.Drawing.Size(916, 372);
  317. this.dataGridView1.TabIndex = 1;
  318. this.dataGridView1.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridView1_CellFormatting);
  319. //
  320. // btn_choose_unprint
  321. //
  322. this.btn_choose_unprint.Location = new System.Drawing.Point(131, 116);
  323. this.btn_choose_unprint.Name = "btn_choose_unprint";
  324. this.btn_choose_unprint.Size = new System.Drawing.Size(106, 23);
  325. this.btn_choose_unprint.TabIndex = 2;
  326. this.btn_choose_unprint.Text = "选择未打印数据";
  327. this.btn_choose_unprint.UseVisualStyleBackColor = true;
  328. this.btn_choose_unprint.Click += new System.EventHandler(this.btn_choose_unprint_Click);
  329. //
  330. // btn_generate
  331. //
  332. this.btn_generate.Location = new System.Drawing.Point(12, 116);
  333. this.btn_generate.Name = "btn_generate";
  334. this.btn_generate.Size = new System.Drawing.Size(100, 23);
  335. this.btn_generate.TabIndex = 3;
  336. this.btn_generate.Text = "生成数据";
  337. this.btn_generate.UseVisualStyleBackColor = true;
  338. this.btn_generate.Click += new System.EventHandler(this.btn_generate_Click);
  339. //
  340. // btn_upload_choosed
  341. //
  342. this.btn_upload_choosed.Location = new System.Drawing.Point(393, 116);
  343. this.btn_upload_choosed.Name = "btn_upload_choosed";
  344. this.btn_upload_choosed.Size = new System.Drawing.Size(105, 23);
  345. this.btn_upload_choosed.TabIndex = 4;
  346. this.btn_upload_choosed.Text = "上传数据";
  347. this.btn_upload_choosed.UseVisualStyleBackColor = true;
  348. this.btn_upload_choosed.Click += new System.EventHandler(this.btn_upload_choosed_Click);
  349. //
  350. // btn_print_choosed
  351. //
  352. this.btn_print_choosed.Location = new System.Drawing.Point(257, 116);
  353. this.btn_print_choosed.Name = "btn_print_choosed";
  354. this.btn_print_choosed.Size = new System.Drawing.Size(116, 23);
  355. this.btn_print_choosed.TabIndex = 5;
  356. this.btn_print_choosed.Text = "打印选中数据";
  357. this.btn_print_choosed.UseVisualStyleBackColor = true;
  358. this.btn_print_choosed.Click += new System.EventHandler(this.btn_print_choosed_Click);
  359. //
  360. // btn_delete_choosed
  361. //
  362. this.btn_delete_choosed.Location = new System.Drawing.Point(522, 116);
  363. this.btn_delete_choosed.Name = "btn_delete_choosed";
  364. this.btn_delete_choosed.Size = new System.Drawing.Size(116, 23);
  365. this.btn_delete_choosed.TabIndex = 6;
  366. this.btn_delete_choosed.Text = "删除选中数据";
  367. this.btn_delete_choosed.UseVisualStyleBackColor = true;
  368. this.btn_delete_choosed.Click += new System.EventHandler(this.btn_delete_choosed_Click);
  369. //
  370. // FrmThermometerCoding
  371. //
  372. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  373. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  374. this.ClientSize = new System.Drawing.Size(926, 536);
  375. this.ControlBox = false;
  376. this.Controls.Add(this.btn_delete_choosed);
  377. this.Controls.Add(this.btn_print_choosed);
  378. this.Controls.Add(this.btn_upload_choosed);
  379. this.Controls.Add(this.btn_generate);
  380. this.Controls.Add(this.btn_choose_unprint);
  381. this.Controls.Add(this.dataGridView1);
  382. this.Controls.Add(this.panel1);
  383. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  384. this.Name = "FrmThermometerCoding";
  385. this.Text = "体温枪生产配套";
  386. this.tableLayoutPanel1.ResumeLayout(false);
  387. this.panel2.ResumeLayout(false);
  388. this.panel2.PerformLayout();
  389. this.panel3.ResumeLayout(false);
  390. this.panel3.PerformLayout();
  391. this.panel4.ResumeLayout(false);
  392. this.panel4.PerformLayout();
  393. this.panel5.ResumeLayout(false);
  394. this.panel5.PerformLayout();
  395. this.panel6.ResumeLayout(false);
  396. this.panel6.PerformLayout();
  397. this.panel7.ResumeLayout(false);
  398. this.panel7.PerformLayout();
  399. this.panel1.ResumeLayout(false);
  400. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  401. this.ResumeLayout(false);
  402. }
  403. #endregion
  404. private TableLayoutPanel tableLayoutPanel1;
  405. private Panel panel2;
  406. private ComboBox cb_model;
  407. private Label label1;
  408. private Panel panel3;
  409. private ComboBox cb_schedual;
  410. private Label label2;
  411. private Panel panel4;
  412. private TextBox txt_qty;
  413. private Label label3;
  414. private Panel panel5;
  415. private DateTimePicker date_time_picker;
  416. private Label label4;
  417. private Panel panel6;
  418. private ComboBox cb_printer;
  419. private Label label5;
  420. private Panel panel1;
  421. private Panel panel7;
  422. private DataGridView dataGridView1;
  423. private ComboBox cb_operate;
  424. private Label label6;
  425. private Button btn_choose_unprint;
  426. private Button btn_generate;
  427. private Button btn_upload_choosed;
  428. private Button btn_print_choosed;
  429. private Button btn_delete_choosed;
  430. }
  431. }