UAS_出货标签管理.Designer.cs 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. namespace UAS_LabelMachine
  2. {
  3. partial class UAS_出货标签打印
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UAS_出货标签打印));
  30. this.pi_inoutno_label = new System.Windows.Forms.Label();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.label22 = new System.Windows.Forms.Label();
  34. this.AutoMatch = new System.Windows.Forms.CheckBox();
  35. this.pr_code_label = new System.Windows.Forms.Label();
  36. this.label24 = new System.Windows.Forms.Label();
  37. this.CollectionUnit = new System.Windows.Forms.ComboBox();
  38. this.CollectionUnit_label = new System.Windows.Forms.Label();
  39. this.GenerateBarCode = new System.Windows.Forms.Button();
  40. this.SaveGrid = new System.Windows.Forms.Button();
  41. this.sg_separator_label = new System.Windows.Forms.Label();
  42. this.Si_ItemDGV = new System.Windows.Forms.DataGridView();
  43. this.si_detno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  44. this.si_index = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.si_kind = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.si_indexstring = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.si_length = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.si_expression = new System.Windows.Forms.DataGridViewTextBoxColumn();
  49. this.si_item = new System.Windows.Forms.DataGridViewTextBoxColumn();
  50. this.si_expressionitem = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.CleanDetail = new System.Windows.Forms.Button();
  52. this.pib_id = new System.Windows.Forms.Label();
  53. this.pi_cardcode_label = new System.Windows.Forms.Label();
  54. this.Fresh = new System.Windows.Forms.LinkLabel();
  55. this.label3 = new System.Windows.Forms.Label();
  56. this.CleanInputAfterCollect = new System.Windows.Forms.CheckBox();
  57. this.AllCollected = new System.Windows.Forms.Button();
  58. this.GetGridOnly = new System.Windows.Forms.CheckBox();
  59. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  60. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  66. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  71. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  72. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  73. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  77. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  78. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  79. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  80. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  81. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  82. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.MidSource = new System.Windows.Forms.BindingSource(this.components);
  86. this.ChooseAll = new System.Windows.Forms.Button();
  87. this.ExportFileDialog = new System.Windows.Forms.FolderBrowserDialog();
  88. this.pi_date = new System.Windows.Forms.Label();
  89. this.CleanBarCode = new System.Windows.Forms.Button();
  90. this.MenuSetting = new System.Windows.Forms.Button();
  91. this.Menu = new System.Windows.Forms.ContextMenuStrip(this.components);
  92. this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
  93. this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
  94. this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
  95. this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
  96. this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
  97. this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
  98. this.下载模板ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  99. this.ImportExcel = new System.Windows.Forms.OpenFileDialog();
  100. this.pi_class = new System.Windows.Forms.Label();
  101. this.cu_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
  102. this.groupBoxWithBorder1 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  103. this.label18 = new System.Windows.Forms.Label();
  104. this.MidBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  105. this.MidBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  106. this.label16 = new System.Windows.Forms.Label();
  107. this.SingleBoxEnd = new UAS_LabelMachine.CustomControl.EnterTextBox();
  108. this.SingleBoxBegin = new UAS_LabelMachine.CustomControl.EnterTextBox();
  109. this.label12 = new System.Windows.Forms.Label();
  110. this.label7 = new System.Windows.Forms.Label();
  111. this.pr_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
  112. this.CollectionProcess = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  113. this.Capacity = new System.Windows.Forms.Label();
  114. this.Process_midboxcode = new System.Windows.Forms.Label();
  115. this.Process_outboxcode = new System.Windows.Forms.Label();
  116. this.TotalCount = new System.Windows.Forms.Label();
  117. this.label17 = new System.Windows.Forms.Label();
  118. this.CollectedCount = new System.Windows.Forms.Label();
  119. this.label14 = new System.Windows.Forms.Label();
  120. this.label11 = new System.Windows.Forms.Label();
  121. this.label13 = new System.Windows.Forms.Label();
  122. this.Installed = new System.Windows.Forms.Label();
  123. this.Process = new System.Windows.Forms.Label();
  124. this.sg_separator = new UAS_LabelMachine.CustomControl.EnterTextBox();
  125. this.Input = new UAS_LabelMachine.CustomControl.EnterTextBox();
  126. this.griddetno = new UAS_LabelMachine.CustomControl.EnterTextBox();
  127. this.sg_code = new UAS_LabelMachine.CustomControl.SearchTextBox();
  128. this.MessageLog = new UAS_LabelMachine.CustomControl.RichText.RichTextAutoBottom();
  129. this.LabelInf = new UAS_LabelMachine.CustomControl.DataGridViewWithSerialNum();
  130. this.Choose = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  131. this.pib_ifpick = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  132. this.pib_ifprint = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  133. this.pib_id1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.pib_pdno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.pib_prodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.pr_orispeccode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.pib_brand = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.pib_madein = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.pr_zxbzs = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.pr_unit = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.pib_lotno = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.pib_datecode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  143. this.pib_datecode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  144. this.pib_qty = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.pib_barcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.pib_custbarcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.pd_pocode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.pd_custprodcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  149. this.pd_custprodspec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.pr_spec = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.pib_outboxcode1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.pib_outboxcode2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.pi_inoutno = new UAS_LabelMachine.CustomControl.BlurSearch();
  154. this.SingleLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  155. this.label8 = new System.Windows.Forms.Label();
  156. this.SingleDocRefresh = new System.Windows.Forms.LinkLabel();
  157. this.SingleLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  158. this.SingleLabelPrint = new System.Windows.Forms.Button();
  159. this.SingleLabelAutoPrint = new System.Windows.Forms.CheckBox();
  160. this.SingleLabelCombox = new System.Windows.Forms.ComboBox();
  161. this.MidLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  162. this.label9 = new System.Windows.Forms.Label();
  163. this.MidDocRefresh = new System.Windows.Forms.LinkLabel();
  164. this.MidLabelNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
  165. this.label5 = new System.Windows.Forms.Label();
  166. this.label4 = new System.Windows.Forms.Label();
  167. this.MidLabelPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  168. this.label15 = new System.Windows.Forms.Label();
  169. this.MidBoxCapacity = new System.Windows.Forms.NumericUpDown();
  170. this.MidLabelPrint = new System.Windows.Forms.Button();
  171. this.MidLabelAutoPrint = new System.Windows.Forms.CheckBox();
  172. this.MidLabelCombox = new System.Windows.Forms.ComboBox();
  173. this.OutBoxLabel = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  174. this.groupBoxWithBorder2 = new UAS_LabelMachine.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  175. this.cu_print_outpo = new System.Windows.Forms.CheckBox();
  176. this.cu_print_outdc = new System.Windows.Forms.CheckBox();
  177. this.cu_print_outlotno = new System.Windows.Forms.CheckBox();
  178. this.cu_print_outprod = new System.Windows.Forms.CheckBox();
  179. this.label19 = new System.Windows.Forms.Label();
  180. this.OutDocRefresh = new System.Windows.Forms.LinkLabel();
  181. this.LogingOut = new System.Windows.Forms.LinkLabel();
  182. this.GetOutBoxCode = new System.Windows.Forms.Button();
  183. this.OutBoxNum = new UAS_LabelMachine.CustomControl.EnterTextBox();
  184. this.label10 = new System.Windows.Forms.Label();
  185. this.label6 = new System.Windows.Forms.Label();
  186. this.OutBoxPrinter = new UAS_LabelMachine.CustomControl.PrinterCombox();
  187. this.OutboxCapacity = new System.Windows.Forms.NumericUpDown();
  188. this.OutBoxLabelPrint = new System.Windows.Forms.Button();
  189. this.OutBoxLabelAutoPrint = new System.Windows.Forms.CheckBox();
  190. this.OutBoxCombox = new System.Windows.Forms.ComboBox();
  191. ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).BeginInit();
  192. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).BeginInit();
  193. this.Menu.SuspendLayout();
  194. this.groupBoxWithBorder1.SuspendLayout();
  195. this.CollectionProcess.SuspendLayout();
  196. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).BeginInit();
  197. this.SingleLabel.SuspendLayout();
  198. this.MidLabel.SuspendLayout();
  199. ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).BeginInit();
  200. this.OutBoxLabel.SuspendLayout();
  201. this.groupBoxWithBorder2.SuspendLayout();
  202. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).BeginInit();
  203. this.SuspendLayout();
  204. //
  205. // pi_inoutno_label
  206. //
  207. this.pi_inoutno_label.AutoSize = true;
  208. this.pi_inoutno_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  209. this.pi_inoutno_label.Location = new System.Drawing.Point(3, 10);
  210. this.pi_inoutno_label.Name = "pi_inoutno_label";
  211. this.pi_inoutno_label.Size = new System.Drawing.Size(65, 20);
  212. this.pi_inoutno_label.TabIndex = 3;
  213. this.pi_inoutno_label.Text = "出货单号";
  214. //
  215. // label1
  216. //
  217. this.label1.AutoSize = true;
  218. this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  219. this.label1.Location = new System.Drawing.Point(3, 66);
  220. this.label1.Name = "label1";
  221. this.label1.Size = new System.Drawing.Size(65, 20);
  222. this.label1.TabIndex = 31;
  223. this.label1.Text = "采集策略";
  224. //
  225. // label2
  226. //
  227. this.label2.AutoSize = true;
  228. this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  229. this.label2.Location = new System.Drawing.Point(5, 106);
  230. this.label2.Name = "label2";
  231. this.label2.Size = new System.Drawing.Size(65, 20);
  232. this.label2.TabIndex = 33;
  233. this.label2.Text = "当前采集";
  234. //
  235. // label22
  236. //
  237. this.label22.AutoSize = true;
  238. this.label22.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  239. this.label22.Location = new System.Drawing.Point(72, 106);
  240. this.label22.Name = "label22";
  241. this.label22.Size = new System.Drawing.Size(65, 20);
  242. this.label22.TabIndex = 34;
  243. this.label22.Text = "明细序号";
  244. //
  245. // AutoMatch
  246. //
  247. this.AutoMatch.AutoSize = true;
  248. this.AutoMatch.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  249. this.AutoMatch.Location = new System.Drawing.Point(144, 106);
  250. this.AutoMatch.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  251. this.AutoMatch.Name = "AutoMatch";
  252. this.AutoMatch.Size = new System.Drawing.Size(84, 24);
  253. this.AutoMatch.TabIndex = 49;
  254. this.AutoMatch.Text = "自动匹配";
  255. this.AutoMatch.UseVisualStyleBackColor = true;
  256. //
  257. // pr_code_label
  258. //
  259. this.pr_code_label.AutoSize = true;
  260. this.pr_code_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  261. this.pr_code_label.Location = new System.Drawing.Point(72, 158);
  262. this.pr_code_label.Name = "pr_code_label";
  263. this.pr_code_label.Size = new System.Drawing.Size(65, 20);
  264. this.pr_code_label.TabIndex = 51;
  265. this.pr_code_label.Text = "物料编号";
  266. //
  267. // label24
  268. //
  269. this.label24.AutoSize = true;
  270. this.label24.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  271. this.label24.Location = new System.Drawing.Point(9, 218);
  272. this.label24.Name = "label24";
  273. this.label24.Size = new System.Drawing.Size(51, 20);
  274. this.label24.TabIndex = 55;
  275. this.label24.Text = "输入框";
  276. //
  277. // CollectionUnit
  278. //
  279. this.CollectionUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  280. this.CollectionUnit.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  281. this.CollectionUnit.FormattingEnabled = true;
  282. this.CollectionUnit.Items.AddRange(new object[] {
  283. "盘",
  284. "盒",
  285. "全部"});
  286. this.CollectionUnit.Location = new System.Drawing.Point(296, 182);
  287. this.CollectionUnit.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  288. this.CollectionUnit.Name = "CollectionUnit";
  289. this.CollectionUnit.Size = new System.Drawing.Size(54, 25);
  290. this.CollectionUnit.TabIndex = 41;
  291. //
  292. // CollectionUnit_label
  293. //
  294. this.CollectionUnit_label.AutoSize = true;
  295. this.CollectionUnit_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  296. this.CollectionUnit_label.Location = new System.Drawing.Point(228, 182);
  297. this.CollectionUnit_label.Name = "CollectionUnit_label";
  298. this.CollectionUnit_label.Size = new System.Drawing.Size(65, 20);
  299. this.CollectionUnit_label.TabIndex = 56;
  300. this.CollectionUnit_label.Text = "采集单位";
  301. //
  302. // GenerateBarCode
  303. //
  304. this.GenerateBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  305. this.GenerateBarCode.Location = new System.Drawing.Point(374, 178);
  306. this.GenerateBarCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  307. this.GenerateBarCode.Name = "GenerateBarCode";
  308. this.GenerateBarCode.Size = new System.Drawing.Size(68, 26);
  309. this.GenerateBarCode.TabIndex = 41;
  310. this.GenerateBarCode.Text = "生成条码";
  311. this.GenerateBarCode.UseVisualStyleBackColor = true;
  312. this.GenerateBarCode.Click += new System.EventHandler(this.GenerateBarCode_Click);
  313. //
  314. // SaveGrid
  315. //
  316. this.SaveGrid.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  317. this.SaveGrid.Location = new System.Drawing.Point(448, 216);
  318. this.SaveGrid.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  319. this.SaveGrid.Name = "SaveGrid";
  320. this.SaveGrid.Size = new System.Drawing.Size(68, 26);
  321. this.SaveGrid.TabIndex = 59;
  322. this.SaveGrid.Text = "上传条码";
  323. this.SaveGrid.UseVisualStyleBackColor = true;
  324. this.SaveGrid.Click += new System.EventHandler(this.SaveGrid_Click);
  325. //
  326. // sg_separator_label
  327. //
  328. this.sg_separator_label.AutoSize = true;
  329. this.sg_separator_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  330. this.sg_separator_label.Location = new System.Drawing.Point(233, 66);
  331. this.sg_separator_label.Name = "sg_separator_label";
  332. this.sg_separator_label.Size = new System.Drawing.Size(51, 20);
  333. this.sg_separator_label.TabIndex = 61;
  334. this.sg_separator_label.Text = "分隔符";
  335. //
  336. // Si_ItemDGV
  337. //
  338. this.Si_ItemDGV.AllowUserToAddRows = false;
  339. this.Si_ItemDGV.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
  340. this.Si_ItemDGV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  341. this.Si_ItemDGV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  342. this.si_detno,
  343. this.si_index,
  344. this.si_kind,
  345. this.si_indexstring,
  346. this.si_length,
  347. this.si_expression,
  348. this.si_item,
  349. this.si_expressionitem});
  350. this.Si_ItemDGV.Location = new System.Drawing.Point(324, 11);
  351. this.Si_ItemDGV.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  352. this.Si_ItemDGV.Name = "Si_ItemDGV";
  353. this.Si_ItemDGV.RowTemplate.Height = 23;
  354. this.Si_ItemDGV.Size = new System.Drawing.Size(134, 149);
  355. this.Si_ItemDGV.TabIndex = 65;
  356. //
  357. // si_detno
  358. //
  359. this.si_detno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  360. this.si_detno.DataPropertyName = "si_detno";
  361. this.si_detno.Frozen = true;
  362. this.si_detno.HeaderText = "顺序";
  363. this.si_detno.Name = "si_detno";
  364. this.si_detno.ReadOnly = true;
  365. this.si_detno.Width = 60;
  366. //
  367. // si_index
  368. //
  369. this.si_index.DataPropertyName = "si_index";
  370. this.si_index.HeaderText = "起始位置";
  371. this.si_index.Name = "si_index";
  372. this.si_index.Visible = false;
  373. //
  374. // si_kind
  375. //
  376. this.si_kind.DataPropertyName = "si_kind";
  377. this.si_kind.HeaderText = "解析方式";
  378. this.si_kind.Name = "si_kind";
  379. this.si_kind.Visible = false;
  380. //
  381. // si_indexstring
  382. //
  383. this.si_indexstring.DataPropertyName = "si_indexstring";
  384. this.si_indexstring.HeaderText = "索引字符";
  385. this.si_indexstring.Name = "si_indexstring";
  386. this.si_indexstring.Visible = false;
  387. //
  388. // si_length
  389. //
  390. this.si_length.DataPropertyName = "si_length";
  391. this.si_length.HeaderText = "长度";
  392. this.si_length.Name = "si_length";
  393. this.si_length.Visible = false;
  394. //
  395. // si_expression
  396. //
  397. this.si_expression.DataPropertyName = "si_expression";
  398. this.si_expression.HeaderText = "正则表达式";
  399. this.si_expression.Name = "si_expression";
  400. this.si_expression.Visible = false;
  401. //
  402. // si_item
  403. //
  404. this.si_item.DataPropertyName = "si_item";
  405. this.si_item.Frozen = true;
  406. this.si_item.HeaderText = "采集项目";
  407. this.si_item.Name = "si_item";
  408. this.si_item.ReadOnly = true;
  409. this.si_item.Width = 80;
  410. //
  411. // si_expressionitem
  412. //
  413. this.si_expressionitem.DataPropertyName = "si_expressionitem";
  414. this.si_expressionitem.Frozen = true;
  415. this.si_expressionitem.HeaderText = "正则项次";
  416. this.si_expressionitem.Name = "si_expressionitem";
  417. this.si_expressionitem.Visible = false;
  418. //
  419. // CleanDetail
  420. //
  421. this.CleanDetail.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  422. this.CleanDetail.Location = new System.Drawing.Point(374, 216);
  423. this.CleanDetail.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  424. this.CleanDetail.Name = "CleanDetail";
  425. this.CleanDetail.Size = new System.Drawing.Size(68, 26);
  426. this.CleanDetail.TabIndex = 66;
  427. this.CleanDetail.Text = "清除明细";
  428. this.CleanDetail.UseVisualStyleBackColor = true;
  429. this.CleanDetail.Click += new System.EventHandler(this.CleanDetail_Click);
  430. //
  431. // pib_id
  432. //
  433. this.pib_id.AutoSize = true;
  434. this.pib_id.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  435. this.pib_id.Location = new System.Drawing.Point(142, 160);
  436. this.pib_id.Name = "pib_id";
  437. this.pib_id.Size = new System.Drawing.Size(0, 20);
  438. this.pib_id.TabIndex = 69;
  439. this.pib_id.Visible = false;
  440. //
  441. // pi_cardcode_label
  442. //
  443. this.pi_cardcode_label.AutoSize = true;
  444. this.pi_cardcode_label.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  445. this.pi_cardcode_label.Location = new System.Drawing.Point(3, 38);
  446. this.pi_cardcode_label.Name = "pi_cardcode_label";
  447. this.pi_cardcode_label.Size = new System.Drawing.Size(65, 20);
  448. this.pi_cardcode_label.TabIndex = 72;
  449. this.pi_cardcode_label.Text = "客户编号";
  450. //
  451. // Fresh
  452. //
  453. this.Fresh.AutoSize = true;
  454. this.Fresh.Location = new System.Drawing.Point(228, 14);
  455. this.Fresh.Name = "Fresh";
  456. this.Fresh.Size = new System.Drawing.Size(29, 12);
  457. this.Fresh.TabIndex = 73;
  458. this.Fresh.TabStop = true;
  459. this.Fresh.Text = "刷新";
  460. this.Fresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Refresh_LinkClicked);
  461. //
  462. // label3
  463. //
  464. this.label3.AutoSize = true;
  465. this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  466. this.label3.Location = new System.Drawing.Point(5, 587);
  467. this.label3.Name = "label3";
  468. this.label3.Size = new System.Drawing.Size(74, 21);
  469. this.label3.TabIndex = 29;
  470. this.label3.Text = "输出日志";
  471. //
  472. // CleanInputAfterCollect
  473. //
  474. this.CleanInputAfterCollect.AutoSize = true;
  475. this.CleanInputAfterCollect.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  476. this.CleanInputAfterCollect.Location = new System.Drawing.Point(231, 218);
  477. this.CleanInputAfterCollect.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  478. this.CleanInputAfterCollect.Name = "CleanInputAfterCollect";
  479. this.CleanInputAfterCollect.Size = new System.Drawing.Size(123, 21);
  480. this.CleanInputAfterCollect.TabIndex = 74;
  481. this.CleanInputAfterCollect.Text = "采集后清除输入框";
  482. this.CleanInputAfterCollect.UseVisualStyleBackColor = true;
  483. //
  484. // AllCollected
  485. //
  486. this.AllCollected.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  487. this.AllCollected.Location = new System.Drawing.Point(522, 216);
  488. this.AllCollected.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  489. this.AllCollected.Name = "AllCollected";
  490. this.AllCollected.Size = new System.Drawing.Size(68, 26);
  491. this.AllCollected.TabIndex = 75;
  492. this.AllCollected.Text = "全部已采";
  493. this.AllCollected.UseVisualStyleBackColor = true;
  494. this.AllCollected.Click += new System.EventHandler(this.AllCollected_Click);
  495. //
  496. // GetGridOnly
  497. //
  498. this.GetGridOnly.AutoSize = true;
  499. this.GetGridOnly.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  500. this.GetGridOnly.Location = new System.Drawing.Point(230, 38);
  501. this.GetGridOnly.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  502. this.GetGridOnly.Name = "GetGridOnly";
  503. this.GetGridOnly.Size = new System.Drawing.Size(77, 20);
  504. this.GetGridOnly.TabIndex = 82;
  505. this.GetGridOnly.Text = "仅获取表格";
  506. this.GetGridOnly.UseVisualStyleBackColor = true;
  507. //
  508. // dataGridViewCheckBoxColumn1
  509. //
  510. this.dataGridViewCheckBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  511. this.dataGridViewCheckBoxColumn1.HeaderText = "勾选";
  512. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  513. this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  514. this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  515. this.dataGridViewCheckBoxColumn1.Width = 60;
  516. //
  517. // dataGridViewTextBoxColumn1
  518. //
  519. this.dataGridViewTextBoxColumn1.DataPropertyName = "si_detno";
  520. this.dataGridViewTextBoxColumn1.HeaderText = "bi_id";
  521. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  522. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  523. this.dataGridViewTextBoxColumn1.Visible = false;
  524. this.dataGridViewTextBoxColumn1.Width = 80;
  525. //
  526. // dataGridViewTextBoxColumn2
  527. //
  528. this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  529. this.dataGridViewTextBoxColumn2.DataPropertyName = "si_index";
  530. this.dataGridViewTextBoxColumn2.HeaderText = "明细序号";
  531. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  532. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  533. this.dataGridViewTextBoxColumn2.Visible = false;
  534. this.dataGridViewTextBoxColumn2.Width = 96;
  535. //
  536. // dataGridViewTextBoxColumn3
  537. //
  538. this.dataGridViewTextBoxColumn3.DataPropertyName = "bi_prodcode";
  539. this.dataGridViewTextBoxColumn3.HeaderText = "物料编号";
  540. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  541. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  542. this.dataGridViewTextBoxColumn3.Visible = false;
  543. this.dataGridViewTextBoxColumn3.Width = 78;
  544. //
  545. // dataGridViewTextBoxColumn4
  546. //
  547. this.dataGridViewTextBoxColumn4.DataPropertyName = "si_indexstring";
  548. this.dataGridViewTextBoxColumn4.HeaderText = "MPN";
  549. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  550. this.dataGridViewTextBoxColumn4.Visible = false;
  551. this.dataGridViewTextBoxColumn4.Width = 54;
  552. //
  553. // dataGridViewTextBoxColumn5
  554. //
  555. this.dataGridViewTextBoxColumn5.DataPropertyName = "si_length";
  556. this.dataGridViewTextBoxColumn5.HeaderText = "LotNo";
  557. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  558. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  559. this.dataGridViewTextBoxColumn5.Visible = false;
  560. this.dataGridViewTextBoxColumn5.Width = 48;
  561. //
  562. // dataGridViewTextBoxColumn6
  563. //
  564. this.dataGridViewTextBoxColumn6.DataPropertyName = "si_expression";
  565. this.dataGridViewTextBoxColumn6.HeaderText = "DateCode";
  566. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  567. this.dataGridViewTextBoxColumn6.Visible = false;
  568. this.dataGridViewTextBoxColumn6.Width = 60;
  569. //
  570. // dataGridViewTextBoxColumn7
  571. //
  572. this.dataGridViewTextBoxColumn7.DataPropertyName = "bi_inqty";
  573. this.dataGridViewTextBoxColumn7.HeaderText = "数量";
  574. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  575. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  576. this.dataGridViewTextBoxColumn7.Width = 80;
  577. //
  578. // dataGridViewTextBoxColumn8
  579. //
  580. this.dataGridViewTextBoxColumn8.DataPropertyName = "pib_custbarcode";
  581. this.dataGridViewTextBoxColumn8.HeaderText = "唯一条码";
  582. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  583. this.dataGridViewTextBoxColumn8.Width = 90;
  584. //
  585. // dataGridViewTextBoxColumn9
  586. //
  587. this.dataGridViewTextBoxColumn9.DataPropertyName = "pib_cusoutboxcode";
  588. this.dataGridViewTextBoxColumn9.HeaderText = "中盒号";
  589. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  590. this.dataGridViewTextBoxColumn9.Width = 78;
  591. //
  592. // dataGridViewTextBoxColumn10
  593. //
  594. this.dataGridViewTextBoxColumn10.HeaderText = "外箱号";
  595. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  596. this.dataGridViewTextBoxColumn10.Visible = false;
  597. this.dataGridViewTextBoxColumn10.Width = 108;
  598. //
  599. // dataGridViewTextBoxColumn11
  600. //
  601. this.dataGridViewTextBoxColumn11.DataPropertyName = "si_item";
  602. this.dataGridViewTextBoxColumn11.HeaderText = "采集项次";
  603. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  604. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  605. this.dataGridViewTextBoxColumn11.Width = 54;
  606. //
  607. // dataGridViewTextBoxColumn12
  608. //
  609. this.dataGridViewTextBoxColumn12.DataPropertyName = "si_kind";
  610. this.dataGridViewTextBoxColumn12.HeaderText = "解析方式";
  611. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  612. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  613. this.dataGridViewTextBoxColumn12.Width = 78;
  614. //
  615. // dataGridViewTextBoxColumn13
  616. //
  617. this.dataGridViewTextBoxColumn13.DataPropertyName = "si_expression";
  618. this.dataGridViewTextBoxColumn13.HeaderText = "正则表达式";
  619. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  620. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  621. this.dataGridViewTextBoxColumn13.Width = 66;
  622. //
  623. // dataGridViewTextBoxColumn14
  624. //
  625. this.dataGridViewTextBoxColumn14.DataPropertyName = "si_index";
  626. this.dataGridViewTextBoxColumn14.HeaderText = "起始位置";
  627. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  628. this.dataGridViewTextBoxColumn14.Width = 78;
  629. //
  630. // dataGridViewTextBoxColumn15
  631. //
  632. this.dataGridViewTextBoxColumn15.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  633. this.dataGridViewTextBoxColumn15.DataPropertyName = "si_length";
  634. this.dataGridViewTextBoxColumn15.HeaderText = "字符长度";
  635. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  636. this.dataGridViewTextBoxColumn15.Width = 90;
  637. //
  638. // dataGridViewTextBoxColumn16
  639. //
  640. this.dataGridViewTextBoxColumn16.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  641. this.dataGridViewTextBoxColumn16.DataPropertyName = "pib_outboxcode2";
  642. this.dataGridViewTextBoxColumn16.HeaderText = "外箱号";
  643. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  644. this.dataGridViewTextBoxColumn16.Width = 90;
  645. //
  646. // dataGridViewCheckBoxColumn2
  647. //
  648. this.dataGridViewCheckBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  649. this.dataGridViewCheckBoxColumn2.DataPropertyName = "pib_ifpick";
  650. this.dataGridViewCheckBoxColumn2.HeaderText = "已采集";
  651. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  652. this.dataGridViewCheckBoxColumn2.Width = 60;
  653. //
  654. // dataGridViewCheckBoxColumn3
  655. //
  656. this.dataGridViewCheckBoxColumn3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  657. this.dataGridViewCheckBoxColumn3.DataPropertyName = "pib_ifprint";
  658. this.dataGridViewCheckBoxColumn3.HeaderText = "已打印";
  659. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  660. this.dataGridViewCheckBoxColumn3.Width = 60;
  661. //
  662. // dataGridViewTextBoxColumn17
  663. //
  664. this.dataGridViewTextBoxColumn17.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  665. this.dataGridViewTextBoxColumn17.DataPropertyName = "si_detno";
  666. this.dataGridViewTextBoxColumn17.HeaderText = "顺序";
  667. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  668. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  669. this.dataGridViewTextBoxColumn17.Width = 60;
  670. //
  671. // dataGridViewTextBoxColumn18
  672. //
  673. this.dataGridViewTextBoxColumn18.DataPropertyName = "si_index";
  674. this.dataGridViewTextBoxColumn18.HeaderText = "起始位置";
  675. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  676. this.dataGridViewTextBoxColumn18.Visible = false;
  677. //
  678. // dataGridViewTextBoxColumn19
  679. //
  680. this.dataGridViewTextBoxColumn19.DataPropertyName = "si_kind";
  681. this.dataGridViewTextBoxColumn19.HeaderText = "解析方式";
  682. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  683. this.dataGridViewTextBoxColumn19.Visible = false;
  684. //
  685. // dataGridViewTextBoxColumn20
  686. //
  687. this.dataGridViewTextBoxColumn20.DataPropertyName = "si_indexstring";
  688. this.dataGridViewTextBoxColumn20.HeaderText = "索引字符";
  689. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  690. this.dataGridViewTextBoxColumn20.Visible = false;
  691. //
  692. // dataGridViewTextBoxColumn21
  693. //
  694. this.dataGridViewTextBoxColumn21.DataPropertyName = "si_length";
  695. this.dataGridViewTextBoxColumn21.HeaderText = "长度";
  696. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  697. this.dataGridViewTextBoxColumn21.Visible = false;
  698. //
  699. // dataGridViewTextBoxColumn22
  700. //
  701. this.dataGridViewTextBoxColumn22.DataPropertyName = "si_expression";
  702. this.dataGridViewTextBoxColumn22.HeaderText = "正则表达式";
  703. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  704. this.dataGridViewTextBoxColumn22.Visible = false;
  705. //
  706. // dataGridViewTextBoxColumn23
  707. //
  708. this.dataGridViewTextBoxColumn23.DataPropertyName = "si_item";
  709. this.dataGridViewTextBoxColumn23.HeaderText = "采集项目";
  710. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  711. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  712. this.dataGridViewTextBoxColumn23.Width = 80;
  713. //
  714. // ChooseAll
  715. //
  716. this.ChooseAll.Location = new System.Drawing.Point(4, 252);
  717. this.ChooseAll.Margin = new System.Windows.Forms.Padding(2);
  718. this.ChooseAll.Name = "ChooseAll";
  719. this.ChooseAll.Size = new System.Drawing.Size(38, 22);
  720. this.ChooseAll.TabIndex = 84;
  721. this.ChooseAll.Text = "全选";
  722. this.ChooseAll.UseVisualStyleBackColor = true;
  723. this.ChooseAll.Click += new System.EventHandler(this.ChooseAll_Click);
  724. //
  725. // pi_date
  726. //
  727. this.pi_date.AutoSize = true;
  728. this.pi_date.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  729. this.pi_date.Location = new System.Drawing.Point(5, 158);
  730. this.pi_date.Name = "pi_date";
  731. this.pi_date.Size = new System.Drawing.Size(0, 20);
  732. this.pi_date.TabIndex = 86;
  733. this.pi_date.Visible = false;
  734. //
  735. // CleanBarCode
  736. //
  737. this.CleanBarCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  738. this.CleanBarCode.Location = new System.Drawing.Point(449, 178);
  739. this.CleanBarCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  740. this.CleanBarCode.Name = "CleanBarCode";
  741. this.CleanBarCode.Size = new System.Drawing.Size(68, 26);
  742. this.CleanBarCode.TabIndex = 87;
  743. this.CleanBarCode.Text = "清空条码";
  744. this.CleanBarCode.UseVisualStyleBackColor = true;
  745. this.CleanBarCode.Click += new System.EventHandler(this.CleanBarCode_Click);
  746. //
  747. // MenuSetting
  748. //
  749. this.MenuSetting.Location = new System.Drawing.Point(230, 112);
  750. this.MenuSetting.Name = "MenuSetting";
  751. this.MenuSetting.Size = new System.Drawing.Size(88, 23);
  752. this.MenuSetting.TabIndex = 89;
  753. this.MenuSetting.Text = "后台管理";
  754. this.MenuSetting.UseVisualStyleBackColor = true;
  755. this.MenuSetting.Click += new System.EventHandler(this.MenuSetting_Click);
  756. //
  757. // Menu
  758. //
  759. this.Menu.ImageScalingSize = new System.Drawing.Size(32, 32);
  760. this.Menu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  761. this.toolStripMenuItem1,
  762. this.toolStripMenuItem2,
  763. this.toolStripMenuItem3,
  764. this.toolStripMenuItem4,
  765. this.toolStripMenuItem5,
  766. this.toolStripMenuItem6,
  767. this.下载模板ToolStripMenuItem});
  768. this.Menu.Name = "Menu";
  769. this.Menu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  770. this.Menu.Size = new System.Drawing.Size(149, 158);
  771. this.Menu.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Menu_ItemClicked);
  772. //
  773. // toolStripMenuItem1
  774. //
  775. this.toolStripMenuItem1.Name = "toolStripMenuItem1";
  776. this.toolStripMenuItem1.Size = new System.Drawing.Size(148, 22);
  777. this.toolStripMenuItem1.Text = "采集策略设置";
  778. //
  779. // toolStripMenuItem2
  780. //
  781. this.toolStripMenuItem2.Name = "toolStripMenuItem2";
  782. this.toolStripMenuItem2.Size = new System.Drawing.Size(148, 22);
  783. this.toolStripMenuItem2.Text = "附加信息设置";
  784. //
  785. // toolStripMenuItem3
  786. //
  787. this.toolStripMenuItem3.Name = "toolStripMenuItem3";
  788. this.toolStripMenuItem3.Size = new System.Drawing.Size(148, 22);
  789. this.toolStripMenuItem3.Text = "导出数据";
  790. //
  791. // toolStripMenuItem4
  792. //
  793. this.toolStripMenuItem4.Name = "toolStripMenuItem4";
  794. this.toolStripMenuItem4.Size = new System.Drawing.Size(148, 22);
  795. this.toolStripMenuItem4.Text = "权限设置";
  796. //
  797. // toolStripMenuItem5
  798. //
  799. this.toolStripMenuItem5.Name = "toolStripMenuItem5";
  800. this.toolStripMenuItem5.Size = new System.Drawing.Size(148, 22);
  801. this.toolStripMenuItem5.Text = "标签维护";
  802. //
  803. // toolStripMenuItem6
  804. //
  805. this.toolStripMenuItem6.Name = "toolStripMenuItem6";
  806. this.toolStripMenuItem6.Size = new System.Drawing.Size(148, 22);
  807. this.toolStripMenuItem6.Text = "条码导入生成";
  808. //
  809. // 下载模板ToolStripMenuItem
  810. //
  811. this.下载模板ToolStripMenuItem.Name = "下载模板ToolStripMenuItem";
  812. this.下载模板ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
  813. this.下载模板ToolStripMenuItem.Text = "下载模板";
  814. //
  815. // ImportExcel
  816. //
  817. this.ImportExcel.FileName = "ImportExcel";
  818. //
  819. // pi_class
  820. //
  821. this.pi_class.AutoSize = true;
  822. this.pi_class.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  823. this.pi_class.Location = new System.Drawing.Point(100, 255);
  824. this.pi_class.Name = "pi_class";
  825. this.pi_class.Size = new System.Drawing.Size(0, 20);
  826. this.pi_class.TabIndex = 90;
  827. this.pi_class.Visible = false;
  828. //
  829. // cu_code
  830. //
  831. this.cu_code.AllPower = null;
  832. this.cu_code.Caller = null;
  833. this.cu_code.Condition = null;
  834. this.cu_code.DBTitle = null;
  835. this.cu_code.FormName = null;
  836. this.cu_code.Location = new System.Drawing.Point(76, 38);
  837. this.cu_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  838. this.cu_code.Name = "cu_code";
  839. this.cu_code.Power = null;
  840. this.cu_code.ReturnData = null;
  841. this.cu_code.SelectField = null;
  842. this.cu_code.SetValueField = null;
  843. this.cu_code.Size = new System.Drawing.Size(149, 21);
  844. this.cu_code.TabIndex = 88;
  845. this.cu_code.TableName = null;
  846. this.cu_code.TextBoxEnable = false;
  847. this.cu_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.cu_code_UserControlTextChanged);
  848. //
  849. // groupBoxWithBorder1
  850. //
  851. this.groupBoxWithBorder1.Controls.Add(this.label18);
  852. this.groupBoxWithBorder1.Controls.Add(this.MidBoxEnd);
  853. this.groupBoxWithBorder1.Controls.Add(this.MidBoxBegin);
  854. this.groupBoxWithBorder1.Controls.Add(this.label16);
  855. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxEnd);
  856. this.groupBoxWithBorder1.Controls.Add(this.SingleBoxBegin);
  857. this.groupBoxWithBorder1.Controls.Add(this.label12);
  858. this.groupBoxWithBorder1.Controls.Add(this.label7);
  859. this.groupBoxWithBorder1.Location = new System.Drawing.Point(598, 6);
  860. this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(2);
  861. this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
  862. this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(2);
  863. this.groupBoxWithBorder1.Size = new System.Drawing.Size(151, 238);
  864. this.groupBoxWithBorder1.TabIndex = 81;
  865. this.groupBoxWithBorder1.TabStop = false;
  866. this.groupBoxWithBorder1.Text = " 打印参数设置";
  867. //
  868. // label18
  869. //
  870. this.label18.AutoSize = true;
  871. this.label18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  872. this.label18.Location = new System.Drawing.Point(68, 128);
  873. this.label18.Name = "label18";
  874. this.label18.Size = new System.Drawing.Size(13, 17);
  875. this.label18.TabIndex = 90;
  876. this.label18.Text = "-";
  877. //
  878. // MidBoxEnd
  879. //
  880. this.MidBoxEnd.ID = null;
  881. this.MidBoxEnd.Location = new System.Drawing.Point(88, 127);
  882. this.MidBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  883. this.MidBoxEnd.Name = "MidBoxEnd";
  884. this.MidBoxEnd.Size = new System.Drawing.Size(50, 21);
  885. this.MidBoxEnd.Str = null;
  886. this.MidBoxEnd.Str1 = null;
  887. this.MidBoxEnd.Str2 = null;
  888. this.MidBoxEnd.TabIndex = 89;
  889. //
  890. // MidBoxBegin
  891. //
  892. this.MidBoxBegin.ID = null;
  893. this.MidBoxBegin.Location = new System.Drawing.Point(13, 127);
  894. this.MidBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  895. this.MidBoxBegin.Name = "MidBoxBegin";
  896. this.MidBoxBegin.Size = new System.Drawing.Size(50, 21);
  897. this.MidBoxBegin.Str = null;
  898. this.MidBoxBegin.Str1 = null;
  899. this.MidBoxBegin.Str2 = null;
  900. this.MidBoxBegin.TabIndex = 88;
  901. //
  902. // label16
  903. //
  904. this.label16.AutoSize = true;
  905. this.label16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  906. this.label16.Location = new System.Drawing.Point(68, 54);
  907. this.label16.Name = "label16";
  908. this.label16.Size = new System.Drawing.Size(13, 17);
  909. this.label16.TabIndex = 87;
  910. this.label16.Text = "-";
  911. //
  912. // SingleBoxEnd
  913. //
  914. this.SingleBoxEnd.ID = null;
  915. this.SingleBoxEnd.Location = new System.Drawing.Point(87, 54);
  916. this.SingleBoxEnd.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  917. this.SingleBoxEnd.Name = "SingleBoxEnd";
  918. this.SingleBoxEnd.Size = new System.Drawing.Size(50, 21);
  919. this.SingleBoxEnd.Str = null;
  920. this.SingleBoxEnd.Str1 = null;
  921. this.SingleBoxEnd.Str2 = null;
  922. this.SingleBoxEnd.TabIndex = 86;
  923. //
  924. // SingleBoxBegin
  925. //
  926. this.SingleBoxBegin.ID = null;
  927. this.SingleBoxBegin.Location = new System.Drawing.Point(12, 54);
  928. this.SingleBoxBegin.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  929. this.SingleBoxBegin.Name = "SingleBoxBegin";
  930. this.SingleBoxBegin.Size = new System.Drawing.Size(50, 21);
  931. this.SingleBoxBegin.Str = null;
  932. this.SingleBoxBegin.Str1 = null;
  933. this.SingleBoxBegin.Str2 = null;
  934. this.SingleBoxBegin.TabIndex = 85;
  935. //
  936. // label12
  937. //
  938. this.label12.AutoSize = true;
  939. this.label12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  940. this.label12.Location = new System.Drawing.Point(12, 94);
  941. this.label12.Name = "label12";
  942. this.label12.Size = new System.Drawing.Size(56, 17);
  943. this.label12.TabIndex = 77;
  944. this.label12.Text = "中盒范围";
  945. //
  946. // label7
  947. //
  948. this.label7.AutoSize = true;
  949. this.label7.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  950. this.label7.Location = new System.Drawing.Point(12, 20);
  951. this.label7.Name = "label7";
  952. this.label7.Size = new System.Drawing.Size(56, 17);
  953. this.label7.TabIndex = 76;
  954. this.label7.Text = "单盘范围";
  955. //
  956. // pr_code
  957. //
  958. this.pr_code.AllPower = null;
  959. this.pr_code.Caller = null;
  960. this.pr_code.Condition = null;
  961. this.pr_code.DBTitle = null;
  962. this.pr_code.FormName = null;
  963. this.pr_code.Location = new System.Drawing.Point(76, 182);
  964. this.pr_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  965. this.pr_code.Name = "pr_code";
  966. this.pr_code.Power = null;
  967. this.pr_code.ReturnData = null;
  968. this.pr_code.SelectField = null;
  969. this.pr_code.SetValueField = null;
  970. this.pr_code.Size = new System.Drawing.Size(149, 21);
  971. this.pr_code.TabIndex = 68;
  972. this.pr_code.TableName = null;
  973. this.pr_code.TextBoxEnable = false;
  974. this.pr_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.pr_code_UserControlTextChanged);
  975. this.pr_code.SearchIconClick += new UAS_LabelMachine.CustomControl.SearchTextBox.Icon_Click(this.pr_code_SearchIconClick);
  976. //
  977. // CollectionProcess
  978. //
  979. this.CollectionProcess.Controls.Add(this.Capacity);
  980. this.CollectionProcess.Controls.Add(this.Process_midboxcode);
  981. this.CollectionProcess.Controls.Add(this.Process_outboxcode);
  982. this.CollectionProcess.Controls.Add(this.TotalCount);
  983. this.CollectionProcess.Controls.Add(this.label17);
  984. this.CollectionProcess.Controls.Add(this.CollectedCount);
  985. this.CollectionProcess.Controls.Add(this.label14);
  986. this.CollectionProcess.Controls.Add(this.label11);
  987. this.CollectionProcess.Controls.Add(this.label13);
  988. this.CollectionProcess.Controls.Add(this.Installed);
  989. this.CollectionProcess.Controls.Add(this.Process);
  990. this.CollectionProcess.Location = new System.Drawing.Point(464, 6);
  991. this.CollectionProcess.Margin = new System.Windows.Forms.Padding(2);
  992. this.CollectionProcess.Name = "CollectionProcess";
  993. this.CollectionProcess.Padding = new System.Windows.Forms.Padding(2);
  994. this.CollectionProcess.Size = new System.Drawing.Size(130, 155);
  995. this.CollectionProcess.TabIndex = 80;
  996. this.CollectionProcess.TabStop = false;
  997. this.CollectionProcess.Text = " ";
  998. //
  999. // Capacity
  1000. //
  1001. this.Capacity.AutoSize = true;
  1002. this.Capacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1003. this.Capacity.Location = new System.Drawing.Point(60, 64);
  1004. this.Capacity.Name = "Capacity";
  1005. this.Capacity.Size = new System.Drawing.Size(0, 17);
  1006. this.Capacity.TabIndex = 75;
  1007. //
  1008. // Process_midboxcode
  1009. //
  1010. this.Process_midboxcode.AutoSize = true;
  1011. this.Process_midboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1012. this.Process_midboxcode.Location = new System.Drawing.Point(60, 108);
  1013. this.Process_midboxcode.Name = "Process_midboxcode";
  1014. this.Process_midboxcode.Size = new System.Drawing.Size(15, 17);
  1015. this.Process_midboxcode.TabIndex = 74;
  1016. this.Process_midboxcode.Text = "0";
  1017. //
  1018. // Process_outboxcode
  1019. //
  1020. this.Process_outboxcode.AutoSize = true;
  1021. this.Process_outboxcode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1022. this.Process_outboxcode.Location = new System.Drawing.Point(60, 84);
  1023. this.Process_outboxcode.Name = "Process_outboxcode";
  1024. this.Process_outboxcode.Size = new System.Drawing.Size(15, 17);
  1025. this.Process_outboxcode.TabIndex = 73;
  1026. this.Process_outboxcode.Text = "0";
  1027. //
  1028. // TotalCount
  1029. //
  1030. this.TotalCount.AutoSize = true;
  1031. this.TotalCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1032. this.TotalCount.ForeColor = System.Drawing.Color.Blue;
  1033. this.TotalCount.Location = new System.Drawing.Point(94, 16);
  1034. this.TotalCount.Name = "TotalCount";
  1035. this.TotalCount.Size = new System.Drawing.Size(15, 17);
  1036. this.TotalCount.TabIndex = 72;
  1037. this.TotalCount.Text = "0";
  1038. //
  1039. // label17
  1040. //
  1041. this.label17.AutoSize = true;
  1042. this.label17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1043. this.label17.Location = new System.Drawing.Point(80, 16);
  1044. this.label17.Name = "label17";
  1045. this.label17.Size = new System.Drawing.Size(13, 17);
  1046. this.label17.TabIndex = 71;
  1047. this.label17.Text = "/";
  1048. //
  1049. // CollectedCount
  1050. //
  1051. this.CollectedCount.AutoSize = true;
  1052. this.CollectedCount.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1053. this.CollectedCount.ForeColor = System.Drawing.Color.Red;
  1054. this.CollectedCount.Location = new System.Drawing.Point(62, 16);
  1055. this.CollectedCount.Name = "CollectedCount";
  1056. this.CollectedCount.Size = new System.Drawing.Size(15, 17);
  1057. this.CollectedCount.TabIndex = 70;
  1058. this.CollectedCount.Text = "0";
  1059. //
  1060. // label14
  1061. //
  1062. this.label14.AutoSize = true;
  1063. this.label14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1064. this.label14.Location = new System.Drawing.Point(10, 86);
  1065. this.label14.Name = "label14";
  1066. this.label14.Size = new System.Drawing.Size(32, 17);
  1067. this.label14.TabIndex = 69;
  1068. this.label14.Text = "箱号";
  1069. //
  1070. // label11
  1071. //
  1072. this.label11.AutoSize = true;
  1073. this.label11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1074. this.label11.Location = new System.Drawing.Point(10, 108);
  1075. this.label11.Name = "label11";
  1076. this.label11.Size = new System.Drawing.Size(32, 17);
  1077. this.label11.TabIndex = 68;
  1078. this.label11.Text = "盒号";
  1079. //
  1080. // label13
  1081. //
  1082. this.label13.AutoSize = true;
  1083. this.label13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1084. this.label13.Location = new System.Drawing.Point(10, 44);
  1085. this.label13.Name = "label13";
  1086. this.label13.Size = new System.Drawing.Size(44, 17);
  1087. this.label13.TabIndex = 67;
  1088. this.label13.Text = "当前盒";
  1089. //
  1090. // Installed
  1091. //
  1092. this.Installed.AutoSize = true;
  1093. this.Installed.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1094. this.Installed.Location = new System.Drawing.Point(60, 44);
  1095. this.Installed.Name = "Installed";
  1096. this.Installed.Size = new System.Drawing.Size(0, 17);
  1097. this.Installed.TabIndex = 66;
  1098. //
  1099. // Process
  1100. //
  1101. this.Process.AutoSize = true;
  1102. this.Process.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1103. this.Process.Location = new System.Drawing.Point(10, 16);
  1104. this.Process.Name = "Process";
  1105. this.Process.Size = new System.Drawing.Size(44, 17);
  1106. this.Process.TabIndex = 65;
  1107. this.Process.Text = "总进度";
  1108. //
  1109. // sg_separator
  1110. //
  1111. this.sg_separator.Enabled = false;
  1112. this.sg_separator.ID = null;
  1113. this.sg_separator.Location = new System.Drawing.Point(290, 66);
  1114. this.sg_separator.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1115. this.sg_separator.Name = "sg_separator";
  1116. this.sg_separator.Size = new System.Drawing.Size(28, 21);
  1117. this.sg_separator.Str = null;
  1118. this.sg_separator.Str1 = null;
  1119. this.sg_separator.Str2 = null;
  1120. this.sg_separator.TabIndex = 62;
  1121. //
  1122. // Input
  1123. //
  1124. this.Input.ID = null;
  1125. this.Input.Location = new System.Drawing.Point(76, 218);
  1126. this.Input.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1127. this.Input.Name = "Input";
  1128. this.Input.Size = new System.Drawing.Size(150, 21);
  1129. this.Input.Str = null;
  1130. this.Input.Str1 = null;
  1131. this.Input.Str2 = null;
  1132. this.Input.TabIndex = 54;
  1133. this.Input.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Input_KeyDown);
  1134. //
  1135. // griddetno
  1136. //
  1137. this.griddetno.ID = null;
  1138. this.griddetno.Location = new System.Drawing.Point(76, 132);
  1139. this.griddetno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1140. this.griddetno.Name = "griddetno";
  1141. this.griddetno.Size = new System.Drawing.Size(102, 21);
  1142. this.griddetno.Str = null;
  1143. this.griddetno.Str1 = null;
  1144. this.griddetno.Str2 = null;
  1145. this.griddetno.TabIndex = 50;
  1146. this.griddetno.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetno_KeyDown);
  1147. //
  1148. // sg_code
  1149. //
  1150. this.sg_code.AllPower = null;
  1151. this.sg_code.Caller = null;
  1152. this.sg_code.Condition = null;
  1153. this.sg_code.DBTitle = null;
  1154. this.sg_code.FormName = null;
  1155. this.sg_code.Location = new System.Drawing.Point(76, 66);
  1156. this.sg_code.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1157. this.sg_code.Name = "sg_code";
  1158. this.sg_code.Power = null;
  1159. this.sg_code.ReturnData = null;
  1160. this.sg_code.SelectField = null;
  1161. this.sg_code.SetValueField = null;
  1162. this.sg_code.Size = new System.Drawing.Size(149, 21);
  1163. this.sg_code.TabIndex = 32;
  1164. this.sg_code.TableName = null;
  1165. this.sg_code.TextBoxEnable = false;
  1166. this.sg_code.UserControlTextChanged += new UAS_LabelMachine.CustomControl.SearchTextBox.OnTextChange(this.sg_code_UserControlTextChanged);
  1167. //
  1168. // MessageLog
  1169. //
  1170. this.MessageLog.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1171. this.MessageLog.Location = new System.Drawing.Point(4, 610);
  1172. this.MessageLog.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1173. this.MessageLog.Name = "MessageLog";
  1174. this.MessageLog.Size = new System.Drawing.Size(1249, 97);
  1175. this.MessageLog.TabIndex = 28;
  1176. this.MessageLog.Text = "";
  1177. //
  1178. // LabelInf
  1179. //
  1180. this.LabelInf.AllowUserToAddRows = false;
  1181. this.LabelInf.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
  1182. this.LabelInf.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
  1183. this.LabelInf.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  1184. this.LabelInf.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1185. this.Choose,
  1186. this.pib_ifpick,
  1187. this.pib_ifprint,
  1188. this.pib_id1,
  1189. this.pib_pdno,
  1190. this.pib_prodcode,
  1191. this.pr_orispeccode,
  1192. this.pib_brand,
  1193. this.pib_madein,
  1194. this.pr_zxbzs,
  1195. this.pr_unit,
  1196. this.pib_lotno,
  1197. this.pib_datecode,
  1198. this.pib_datecode1,
  1199. this.pib_qty,
  1200. this.pib_barcode,
  1201. this.pib_custbarcode,
  1202. this.pd_pocode,
  1203. this.pd_custprodcode,
  1204. this.pd_custprodspec,
  1205. this.pr_spec,
  1206. this.pib_outboxcode1,
  1207. this.pib_outboxcode2});
  1208. this.LabelInf.Location = new System.Drawing.Point(2, 252);
  1209. this.LabelInf.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1210. this.LabelInf.Name = "LabelInf";
  1211. this.LabelInf.RowTemplate.Height = 23;
  1212. this.LabelInf.Size = new System.Drawing.Size(1251, 333);
  1213. this.LabelInf.TabIndex = 27;
  1214. this.LabelInf.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellEndEdit);
  1215. this.LabelInf.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.LabelInf_CellMouseClick);
  1216. this.LabelInf.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(this.LabelInf_CellPainting);
  1217. this.LabelInf.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.LabelInf_CellValueChanged);
  1218. this.LabelInf.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.LabelInf_DataError);
  1219. //
  1220. // Choose
  1221. //
  1222. this.Choose.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1223. this.Choose.HeaderText = "勾选";
  1224. this.Choose.Name = "Choose";
  1225. this.Choose.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1226. this.Choose.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1227. this.Choose.Width = 55;
  1228. //
  1229. // pib_ifpick
  1230. //
  1231. this.pib_ifpick.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1232. this.pib_ifpick.DataPropertyName = "pib_ifpick";
  1233. this.pib_ifpick.HeaderText = "已采集";
  1234. this.pib_ifpick.Name = "pib_ifpick";
  1235. this.pib_ifpick.Width = 60;
  1236. //
  1237. // pib_ifprint
  1238. //
  1239. this.pib_ifprint.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1240. this.pib_ifprint.DataPropertyName = "pib_ifprint";
  1241. this.pib_ifprint.HeaderText = "已打印";
  1242. this.pib_ifprint.Name = "pib_ifprint";
  1243. this.pib_ifprint.Width = 60;
  1244. //
  1245. // pib_id1
  1246. //
  1247. this.pib_id1.DataPropertyName = "pib_id";
  1248. this.pib_id1.HeaderText = "pib_id";
  1249. this.pib_id1.Name = "pib_id1";
  1250. this.pib_id1.Visible = false;
  1251. this.pib_id1.Width = 66;
  1252. //
  1253. // pib_pdno
  1254. //
  1255. this.pib_pdno.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1256. this.pib_pdno.DataPropertyName = "pib_pdno";
  1257. this.pib_pdno.HeaderText = "明细序号";
  1258. this.pib_pdno.Name = "pib_pdno";
  1259. this.pib_pdno.ReadOnly = true;
  1260. this.pib_pdno.Width = 96;
  1261. //
  1262. // pib_prodcode
  1263. //
  1264. this.pib_prodcode.DataPropertyName = "pib_prodcode";
  1265. this.pib_prodcode.HeaderText = "物料编号";
  1266. this.pib_prodcode.Name = "pib_prodcode";
  1267. this.pib_prodcode.ReadOnly = true;
  1268. this.pib_prodcode.Width = 78;
  1269. //
  1270. // pr_orispeccode
  1271. //
  1272. this.pr_orispeccode.DataPropertyName = "pr_orispeccode";
  1273. this.pr_orispeccode.HeaderText = "MPN";
  1274. this.pr_orispeccode.Name = "pr_orispeccode";
  1275. this.pr_orispeccode.ReadOnly = true;
  1276. this.pr_orispeccode.Width = 48;
  1277. //
  1278. // pib_brand
  1279. //
  1280. this.pib_brand.DataPropertyName = "pib_brand";
  1281. this.pib_brand.HeaderText = "品牌";
  1282. this.pib_brand.Name = "pib_brand";
  1283. this.pib_brand.ReadOnly = true;
  1284. this.pib_brand.Width = 54;
  1285. //
  1286. // pib_madein
  1287. //
  1288. this.pib_madein.DataPropertyName = "pib_madein";
  1289. this.pib_madein.HeaderText = "产地";
  1290. this.pib_madein.Name = "pib_madein";
  1291. this.pib_madein.Width = 54;
  1292. //
  1293. // pr_zxbzs
  1294. //
  1295. this.pr_zxbzs.DataPropertyName = "pr_zxbzs";
  1296. this.pr_zxbzs.HeaderText = "最小包装数";
  1297. this.pr_zxbzs.Name = "pr_zxbzs";
  1298. this.pr_zxbzs.Visible = false;
  1299. this.pr_zxbzs.Width = 90;
  1300. //
  1301. // pr_unit
  1302. //
  1303. this.pr_unit.DataPropertyName = "pr_unit";
  1304. this.pr_unit.HeaderText = "单位";
  1305. this.pr_unit.Name = "pr_unit";
  1306. this.pr_unit.Visible = false;
  1307. this.pr_unit.Width = 54;
  1308. //
  1309. // pib_lotno
  1310. //
  1311. this.pib_lotno.DataPropertyName = "pib_lotno";
  1312. this.pib_lotno.HeaderText = "LotNo";
  1313. this.pib_lotno.Name = "pib_lotno";
  1314. this.pib_lotno.Width = 60;
  1315. //
  1316. // pib_datecode
  1317. //
  1318. this.pib_datecode.DataPropertyName = "pib_datecode";
  1319. this.pib_datecode.HeaderText = "DateCode";
  1320. this.pib_datecode.Name = "pib_datecode";
  1321. this.pib_datecode.Width = 78;
  1322. //
  1323. // pib_datecode1
  1324. //
  1325. this.pib_datecode1.DataPropertyName = "pib_datecode1";
  1326. this.pib_datecode1.HeaderText = "DateCode1";
  1327. this.pib_datecode1.Name = "pib_datecode1";
  1328. this.pib_datecode1.Visible = false;
  1329. this.pib_datecode1.Width = 84;
  1330. //
  1331. // pib_qty
  1332. //
  1333. this.pib_qty.DataPropertyName = "pib_qty";
  1334. this.pib_qty.HeaderText = "数量";
  1335. this.pib_qty.Name = "pib_qty";
  1336. this.pib_qty.ReadOnly = true;
  1337. this.pib_qty.Width = 54;
  1338. //
  1339. // pib_barcode
  1340. //
  1341. this.pib_barcode.DataPropertyName = "pib_barcode";
  1342. this.pib_barcode.HeaderText = "唯一条码";
  1343. this.pib_barcode.Name = "pib_barcode";
  1344. this.pib_barcode.ReadOnly = true;
  1345. this.pib_barcode.Width = 78;
  1346. //
  1347. // pib_custbarcode
  1348. //
  1349. this.pib_custbarcode.DataPropertyName = "pib_custbarcode";
  1350. this.pib_custbarcode.HeaderText = "客户条码";
  1351. this.pib_custbarcode.Name = "pib_custbarcode";
  1352. this.pib_custbarcode.ReadOnly = true;
  1353. this.pib_custbarcode.Width = 78;
  1354. //
  1355. // pd_pocode
  1356. //
  1357. this.pd_pocode.DataPropertyName = "pd_pocode";
  1358. this.pd_pocode.HeaderText = "客户PO";
  1359. this.pd_pocode.Name = "pd_pocode";
  1360. this.pd_pocode.ReadOnly = true;
  1361. this.pd_pocode.Width = 66;
  1362. //
  1363. // pd_custprodcode
  1364. //
  1365. this.pd_custprodcode.DataPropertyName = "pd_custprodcode";
  1366. this.pd_custprodcode.HeaderText = "客户料号";
  1367. this.pd_custprodcode.Name = "pd_custprodcode";
  1368. this.pd_custprodcode.ReadOnly = true;
  1369. this.pd_custprodcode.Width = 78;
  1370. //
  1371. // pd_custprodspec
  1372. //
  1373. this.pd_custprodspec.DataPropertyName = "pd_custprodspec";
  1374. this.pd_custprodspec.HeaderText = "客户型号";
  1375. this.pd_custprodspec.Name = "pd_custprodspec";
  1376. this.pd_custprodspec.ReadOnly = true;
  1377. this.pd_custprodspec.Width = 78;
  1378. //
  1379. // pr_spec
  1380. //
  1381. this.pr_spec.DataPropertyName = "pr_spec";
  1382. this.pr_spec.HeaderText = "规格";
  1383. this.pr_spec.Name = "pr_spec";
  1384. this.pr_spec.Visible = false;
  1385. this.pr_spec.Width = 54;
  1386. //
  1387. // pib_outboxcode1
  1388. //
  1389. this.pib_outboxcode1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1390. this.pib_outboxcode1.DataPropertyName = "pib_outboxcode1";
  1391. this.pib_outboxcode1.HeaderText = "中盒号";
  1392. this.pib_outboxcode1.Name = "pib_outboxcode1";
  1393. this.pib_outboxcode1.Width = 90;
  1394. //
  1395. // pib_outboxcode2
  1396. //
  1397. this.pib_outboxcode2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
  1398. this.pib_outboxcode2.DataPropertyName = "pib_outboxcode2";
  1399. this.pib_outboxcode2.HeaderText = "外箱号";
  1400. this.pib_outboxcode2.Name = "pib_outboxcode2";
  1401. this.pib_outboxcode2.Width = 90;
  1402. //
  1403. // pi_inoutno
  1404. //
  1405. this.pi_inoutno.Condition = null;
  1406. this.pi_inoutno.Field = null;
  1407. this.pi_inoutno.Location = new System.Drawing.Point(76, 10);
  1408. this.pi_inoutno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1409. this.pi_inoutno.Name = "pi_inoutno";
  1410. this.pi_inoutno.Size = new System.Drawing.Size(150, 21);
  1411. this.pi_inoutno.TabIndex = 2;
  1412. this.pi_inoutno.TableName = null;
  1413. this.pi_inoutno.Value = null;
  1414. this.pi_inoutno.ValueField = null;
  1415. this.pi_inoutno.UserKeyDown += new UAS_LabelMachine.CustomControl.BlurSearch.OnKeyDown(this.pi_inoutno_KeyDown);
  1416. //
  1417. // SingleLabel
  1418. //
  1419. this.SingleLabel.Controls.Add(this.label8);
  1420. this.SingleLabel.Controls.Add(this.SingleDocRefresh);
  1421. this.SingleLabel.Controls.Add(this.SingleLabelPrinter);
  1422. this.SingleLabel.Controls.Add(this.SingleLabelPrint);
  1423. this.SingleLabel.Controls.Add(this.SingleLabelAutoPrint);
  1424. this.SingleLabel.Controls.Add(this.SingleLabelCombox);
  1425. this.SingleLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1426. this.SingleLabel.Location = new System.Drawing.Point(754, 6);
  1427. this.SingleLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1428. this.SingleLabel.Name = "SingleLabel";
  1429. this.SingleLabel.Padding = new System.Windows.Forms.Padding(2);
  1430. this.SingleLabel.Size = new System.Drawing.Size(156, 238);
  1431. this.SingleLabel.TabIndex = 77;
  1432. this.SingleLabel.TabStop = false;
  1433. this.SingleLabel.Text = "单盘标签";
  1434. //
  1435. // label8
  1436. //
  1437. this.label8.AutoSize = true;
  1438. this.label8.Font = new System.Drawing.Font("微软雅黑", 10F);
  1439. this.label8.Location = new System.Drawing.Point(6, 24);
  1440. this.label8.Name = "label8";
  1441. this.label8.Size = new System.Drawing.Size(55, 20);
  1442. this.label8.TabIndex = 116;
  1443. this.label8.Text = "格式(T)";
  1444. //
  1445. // SingleDocRefresh
  1446. //
  1447. this.SingleDocRefresh.AutoSize = true;
  1448. this.SingleDocRefresh.Location = new System.Drawing.Point(58, 24);
  1449. this.SingleDocRefresh.Name = "SingleDocRefresh";
  1450. this.SingleDocRefresh.Size = new System.Drawing.Size(42, 21);
  1451. this.SingleDocRefresh.TabIndex = 89;
  1452. this.SingleDocRefresh.TabStop = true;
  1453. this.SingleDocRefresh.Text = "刷新";
  1454. this.SingleDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
  1455. //
  1456. // SingleLabelPrinter
  1457. //
  1458. this.SingleLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1459. this.SingleLabelPrinter.Location = new System.Drawing.Point(6, 78);
  1460. this.SingleLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1461. this.SingleLabelPrinter.Name = "SingleLabelPrinter";
  1462. this.SingleLabelPrinter.Size = new System.Drawing.Size(142, 25);
  1463. this.SingleLabelPrinter.TabIndex = 40;
  1464. this.SingleLabelPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
  1465. //
  1466. // SingleLabelPrint
  1467. //
  1468. this.SingleLabelPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  1469. this.SingleLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1470. this.SingleLabelPrint.Location = new System.Drawing.Point(80, 202);
  1471. this.SingleLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1472. this.SingleLabelPrint.Name = "SingleLabelPrint";
  1473. this.SingleLabelPrint.Size = new System.Drawing.Size(68, 26);
  1474. this.SingleLabelPrint.TabIndex = 36;
  1475. this.SingleLabelPrint.Text = "打印盘标";
  1476. this.SingleLabelPrint.UseVisualStyleBackColor = true;
  1477. this.SingleLabelPrint.Click += new System.EventHandler(this.SingleLabelPrint_Click);
  1478. //
  1479. // SingleLabelAutoPrint
  1480. //
  1481. this.SingleLabelAutoPrint.AutoSize = true;
  1482. this.SingleLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1483. this.SingleLabelAutoPrint.Location = new System.Drawing.Point(10, 110);
  1484. this.SingleLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1485. this.SingleLabelAutoPrint.Name = "SingleLabelAutoPrint";
  1486. this.SingleLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1487. this.SingleLabelAutoPrint.TabIndex = 30;
  1488. this.SingleLabelAutoPrint.Text = "自动打印";
  1489. this.SingleLabelAutoPrint.UseVisualStyleBackColor = true;
  1490. //
  1491. // SingleLabelCombox
  1492. //
  1493. this.SingleLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1494. this.SingleLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1495. this.SingleLabelCombox.FormattingEnabled = true;
  1496. this.SingleLabelCombox.Location = new System.Drawing.Point(7, 46);
  1497. this.SingleLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1498. this.SingleLabelCombox.Name = "SingleLabelCombox";
  1499. this.SingleLabelCombox.Size = new System.Drawing.Size(143, 25);
  1500. this.SingleLabelCombox.TabIndex = 0;
  1501. this.SingleLabelCombox.SelectedIndexChanged += new System.EventHandler(this.SingleLabelCombox_SelectedIndexChanged);
  1502. //
  1503. // MidLabel
  1504. //
  1505. this.MidLabel.Controls.Add(this.label9);
  1506. this.MidLabel.Controls.Add(this.MidDocRefresh);
  1507. this.MidLabel.Controls.Add(this.MidLabelNum);
  1508. this.MidLabel.Controls.Add(this.label5);
  1509. this.MidLabel.Controls.Add(this.label4);
  1510. this.MidLabel.Controls.Add(this.MidLabelPrinter);
  1511. this.MidLabel.Controls.Add(this.label15);
  1512. this.MidLabel.Controls.Add(this.MidBoxCapacity);
  1513. this.MidLabel.Controls.Add(this.MidLabelPrint);
  1514. this.MidLabel.Controls.Add(this.MidLabelAutoPrint);
  1515. this.MidLabel.Controls.Add(this.MidLabelCombox);
  1516. this.MidLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1517. this.MidLabel.Location = new System.Drawing.Point(912, 6);
  1518. this.MidLabel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1519. this.MidLabel.Name = "MidLabel";
  1520. this.MidLabel.Padding = new System.Windows.Forms.Padding(2);
  1521. this.MidLabel.Size = new System.Drawing.Size(158, 238);
  1522. this.MidLabel.TabIndex = 78;
  1523. this.MidLabel.TabStop = false;
  1524. this.MidLabel.Text = "内盒标签";
  1525. //
  1526. // label9
  1527. //
  1528. this.label9.AutoSize = true;
  1529. this.label9.Font = new System.Drawing.Font("微软雅黑", 10F);
  1530. this.label9.Location = new System.Drawing.Point(6, 24);
  1531. this.label9.Name = "label9";
  1532. this.label9.Size = new System.Drawing.Size(55, 20);
  1533. this.label9.TabIndex = 117;
  1534. this.label9.Text = "格式(T)";
  1535. //
  1536. // MidDocRefresh
  1537. //
  1538. this.MidDocRefresh.AutoSize = true;
  1539. this.MidDocRefresh.Location = new System.Drawing.Point(60, 24);
  1540. this.MidDocRefresh.Name = "MidDocRefresh";
  1541. this.MidDocRefresh.Size = new System.Drawing.Size(42, 21);
  1542. this.MidDocRefresh.TabIndex = 90;
  1543. this.MidDocRefresh.TabStop = true;
  1544. this.MidDocRefresh.Text = "刷新";
  1545. this.MidDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
  1546. //
  1547. // MidLabelNum
  1548. //
  1549. this.MidLabelNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1550. this.MidLabelNum.ID = null;
  1551. this.MidLabelNum.Location = new System.Drawing.Point(51, 165);
  1552. this.MidLabelNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1553. this.MidLabelNum.Name = "MidLabelNum";
  1554. this.MidLabelNum.Size = new System.Drawing.Size(64, 23);
  1555. this.MidLabelNum.Str = null;
  1556. this.MidLabelNum.Str1 = null;
  1557. this.MidLabelNum.Str2 = null;
  1558. this.MidLabelNum.TabIndex = 56;
  1559. //
  1560. // label5
  1561. //
  1562. this.label5.AutoSize = true;
  1563. this.label5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1564. this.label5.Location = new System.Drawing.Point(6, 170);
  1565. this.label5.Name = "label5";
  1566. this.label5.Size = new System.Drawing.Size(32, 17);
  1567. this.label5.TabIndex = 50;
  1568. this.label5.Text = "盒号";
  1569. //
  1570. // label4
  1571. //
  1572. this.label4.AutoSize = true;
  1573. this.label4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1574. this.label4.Location = new System.Drawing.Point(6, 138);
  1575. this.label4.Name = "label4";
  1576. this.label4.Size = new System.Drawing.Size(32, 17);
  1577. this.label4.TabIndex = 49;
  1578. this.label4.Text = "容量";
  1579. //
  1580. // MidLabelPrinter
  1581. //
  1582. this.MidLabelPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1583. this.MidLabelPrinter.Location = new System.Drawing.Point(6, 78);
  1584. this.MidLabelPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1585. this.MidLabelPrinter.Name = "MidLabelPrinter";
  1586. this.MidLabelPrinter.Size = new System.Drawing.Size(142, 25);
  1587. this.MidLabelPrinter.TabIndex = 41;
  1588. this.MidLabelPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
  1589. //
  1590. // label15
  1591. //
  1592. this.label15.AutoSize = true;
  1593. this.label15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1594. this.label15.Location = new System.Drawing.Point(102, 138);
  1595. this.label15.Name = "label15";
  1596. this.label15.Size = new System.Drawing.Size(20, 17);
  1597. this.label15.TabIndex = 40;
  1598. this.label15.Text = "盘";
  1599. //
  1600. // MidBoxCapacity
  1601. //
  1602. this.MidBoxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1603. this.MidBoxCapacity.Location = new System.Drawing.Point(52, 135);
  1604. this.MidBoxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1605. this.MidBoxCapacity.Name = "MidBoxCapacity";
  1606. this.MidBoxCapacity.Size = new System.Drawing.Size(44, 23);
  1607. this.MidBoxCapacity.TabIndex = 30;
  1608. this.MidBoxCapacity.Leave += new System.EventHandler(this.MidBoxCapacity_Leave);
  1609. //
  1610. // MidLabelPrint
  1611. //
  1612. this.MidLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1613. this.MidLabelPrint.Location = new System.Drawing.Point(80, 202);
  1614. this.MidLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1615. this.MidLabelPrint.Name = "MidLabelPrint";
  1616. this.MidLabelPrint.Size = new System.Drawing.Size(68, 26);
  1617. this.MidLabelPrint.TabIndex = 42;
  1618. this.MidLabelPrint.Text = "打印盒签";
  1619. this.MidLabelPrint.UseVisualStyleBackColor = true;
  1620. this.MidLabelPrint.Click += new System.EventHandler(this.MidLabelPrint_Click);
  1621. //
  1622. // MidLabelAutoPrint
  1623. //
  1624. this.MidLabelAutoPrint.AutoSize = true;
  1625. this.MidLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1626. this.MidLabelAutoPrint.Location = new System.Drawing.Point(10, 110);
  1627. this.MidLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1628. this.MidLabelAutoPrint.Name = "MidLabelAutoPrint";
  1629. this.MidLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1630. this.MidLabelAutoPrint.TabIndex = 41;
  1631. this.MidLabelAutoPrint.Text = "自动打印";
  1632. this.MidLabelAutoPrint.UseVisualStyleBackColor = true;
  1633. //
  1634. // MidLabelCombox
  1635. //
  1636. this.MidLabelCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1637. this.MidLabelCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1638. this.MidLabelCombox.FormattingEnabled = true;
  1639. this.MidLabelCombox.Location = new System.Drawing.Point(7, 46);
  1640. this.MidLabelCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1641. this.MidLabelCombox.Name = "MidLabelCombox";
  1642. this.MidLabelCombox.Size = new System.Drawing.Size(143, 25);
  1643. this.MidLabelCombox.TabIndex = 40;
  1644. this.MidLabelCombox.SelectedIndexChanged += new System.EventHandler(this.MidLabelCombox_SelectedIndexChanged);
  1645. //
  1646. // OutBoxLabel
  1647. //
  1648. this.OutBoxLabel.Controls.Add(this.groupBoxWithBorder2);
  1649. this.OutBoxLabel.Controls.Add(this.label19);
  1650. this.OutBoxLabel.Controls.Add(this.OutDocRefresh);
  1651. this.OutBoxLabel.Controls.Add(this.LogingOut);
  1652. this.OutBoxLabel.Controls.Add(this.GetOutBoxCode);
  1653. this.OutBoxLabel.Controls.Add(this.OutBoxNum);
  1654. this.OutBoxLabel.Controls.Add(this.label10);
  1655. this.OutBoxLabel.Controls.Add(this.label6);
  1656. this.OutBoxLabel.Controls.Add(this.OutBoxPrinter);
  1657. this.OutBoxLabel.Controls.Add(this.OutboxCapacity);
  1658. this.OutBoxLabel.Controls.Add(this.OutBoxLabelPrint);
  1659. this.OutBoxLabel.Controls.Add(this.OutBoxLabelAutoPrint);
  1660. this.OutBoxLabel.Controls.Add(this.OutBoxCombox);
  1661. this.OutBoxLabel.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1662. this.OutBoxLabel.Location = new System.Drawing.Point(1075, 6);
  1663. this.OutBoxLabel.Margin = new System.Windows.Forms.Padding(2);
  1664. this.OutBoxLabel.Name = "OutBoxLabel";
  1665. this.OutBoxLabel.Padding = new System.Windows.Forms.Padding(2);
  1666. this.OutBoxLabel.Size = new System.Drawing.Size(178, 238);
  1667. this.OutBoxLabel.TabIndex = 79;
  1668. this.OutBoxLabel.TabStop = false;
  1669. this.OutBoxLabel.Text = "外箱标签";
  1670. //
  1671. // groupBoxWithBorder2
  1672. //
  1673. this.groupBoxWithBorder2.Controls.Add(this.cu_print_outpo);
  1674. this.groupBoxWithBorder2.Controls.Add(this.cu_print_outdc);
  1675. this.groupBoxWithBorder2.Controls.Add(this.cu_print_outlotno);
  1676. this.groupBoxWithBorder2.Controls.Add(this.cu_print_outprod);
  1677. this.groupBoxWithBorder2.Font = new System.Drawing.Font("微软雅黑", 9F);
  1678. this.groupBoxWithBorder2.Location = new System.Drawing.Point(5, 108);
  1679. this.groupBoxWithBorder2.Margin = new System.Windows.Forms.Padding(2);
  1680. this.groupBoxWithBorder2.Name = "groupBoxWithBorder2";
  1681. this.groupBoxWithBorder2.Padding = new System.Windows.Forms.Padding(2);
  1682. this.groupBoxWithBorder2.Size = new System.Drawing.Size(87, 124);
  1683. this.groupBoxWithBorder2.TabIndex = 91;
  1684. this.groupBoxWithBorder2.TabStop = false;
  1685. this.groupBoxWithBorder2.Text = "合并条件";
  1686. //
  1687. // cu_print_outpo
  1688. //
  1689. this.cu_print_outpo.AutoSize = true;
  1690. this.cu_print_outpo.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1691. this.cu_print_outpo.Location = new System.Drawing.Point(7, 47);
  1692. this.cu_print_outpo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1693. this.cu_print_outpo.Name = "cu_print_outpo";
  1694. this.cu_print_outpo.Size = new System.Drawing.Size(75, 21);
  1695. this.cu_print_outpo.TabIndex = 94;
  1696. this.cu_print_outpo.Text = "客户合同";
  1697. this.cu_print_outpo.UseVisualStyleBackColor = true;
  1698. //
  1699. // cu_print_outdc
  1700. //
  1701. this.cu_print_outdc.AutoSize = true;
  1702. this.cu_print_outdc.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1703. this.cu_print_outdc.Location = new System.Drawing.Point(7, 97);
  1704. this.cu_print_outdc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1705. this.cu_print_outdc.Name = "cu_print_outdc";
  1706. this.cu_print_outdc.Size = new System.Drawing.Size(44, 21);
  1707. this.cu_print_outdc.TabIndex = 93;
  1708. this.cu_print_outdc.Text = "DC";
  1709. this.cu_print_outdc.UseVisualStyleBackColor = true;
  1710. //
  1711. // cu_print_outlotno
  1712. //
  1713. this.cu_print_outlotno.AutoSize = true;
  1714. this.cu_print_outlotno.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1715. this.cu_print_outlotno.Location = new System.Drawing.Point(7, 72);
  1716. this.cu_print_outlotno.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1717. this.cu_print_outlotno.Name = "cu_print_outlotno";
  1718. this.cu_print_outlotno.Size = new System.Drawing.Size(63, 21);
  1719. this.cu_print_outlotno.TabIndex = 92;
  1720. this.cu_print_outlotno.Text = "LotNo";
  1721. this.cu_print_outlotno.UseVisualStyleBackColor = true;
  1722. //
  1723. // cu_print_outprod
  1724. //
  1725. this.cu_print_outprod.AutoSize = true;
  1726. this.cu_print_outprod.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1727. this.cu_print_outprod.Location = new System.Drawing.Point(7, 22);
  1728. this.cu_print_outprod.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1729. this.cu_print_outprod.Name = "cu_print_outprod";
  1730. this.cu_print_outprod.Size = new System.Drawing.Size(75, 21);
  1731. this.cu_print_outprod.TabIndex = 91;
  1732. this.cu_print_outprod.Text = "客户料号";
  1733. this.cu_print_outprod.UseVisualStyleBackColor = true;
  1734. //
  1735. // label19
  1736. //
  1737. this.label19.AutoSize = true;
  1738. this.label19.Font = new System.Drawing.Font("微软雅黑", 10F);
  1739. this.label19.Location = new System.Drawing.Point(4, 24);
  1740. this.label19.Name = "label19";
  1741. this.label19.Size = new System.Drawing.Size(55, 20);
  1742. this.label19.TabIndex = 118;
  1743. this.label19.Text = "格式(T)";
  1744. //
  1745. // OutDocRefresh
  1746. //
  1747. this.OutDocRefresh.AutoSize = true;
  1748. this.OutDocRefresh.Location = new System.Drawing.Point(58, 24);
  1749. this.OutDocRefresh.Name = "OutDocRefresh";
  1750. this.OutDocRefresh.Size = new System.Drawing.Size(42, 21);
  1751. this.OutDocRefresh.TabIndex = 91;
  1752. this.OutDocRefresh.TabStop = true;
  1753. this.OutDocRefresh.Text = "刷新";
  1754. this.OutDocRefresh.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocRefresh_LinkClicked);
  1755. //
  1756. // LogingOut
  1757. //
  1758. this.LogingOut.AutoSize = true;
  1759. this.LogingOut.Location = new System.Drawing.Point(112, 14);
  1760. this.LogingOut.Name = "LogingOut";
  1761. this.LogingOut.Size = new System.Drawing.Size(42, 21);
  1762. this.LogingOut.TabIndex = 77;
  1763. this.LogingOut.TabStop = true;
  1764. this.LogingOut.Text = "注销";
  1765. this.LogingOut.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LogingOut_LinkClicked);
  1766. //
  1767. // GetOutBoxCode
  1768. //
  1769. this.GetOutBoxCode.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1770. this.GetOutBoxCode.Location = new System.Drawing.Point(101, 167);
  1771. this.GetOutBoxCode.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1772. this.GetOutBoxCode.Name = "GetOutBoxCode";
  1773. this.GetOutBoxCode.Size = new System.Drawing.Size(68, 26);
  1774. this.GetOutBoxCode.TabIndex = 93;
  1775. this.GetOutBoxCode.Text = "获取箱号";
  1776. this.GetOutBoxCode.UseVisualStyleBackColor = true;
  1777. this.GetOutBoxCode.Click += new System.EventHandler(this.GetOutBoxCode_Click);
  1778. //
  1779. // OutBoxNum
  1780. //
  1781. this.OutBoxNum.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1782. this.OutBoxNum.ID = null;
  1783. this.OutBoxNum.Location = new System.Drawing.Point(130, 136);
  1784. this.OutBoxNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1785. this.OutBoxNum.Name = "OutBoxNum";
  1786. this.OutBoxNum.Size = new System.Drawing.Size(37, 23);
  1787. this.OutBoxNum.Str = null;
  1788. this.OutBoxNum.Str1 = null;
  1789. this.OutBoxNum.Str2 = null;
  1790. this.OutBoxNum.TabIndex = 91;
  1791. //
  1792. // label10
  1793. //
  1794. this.label10.AutoSize = true;
  1795. this.label10.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1796. this.label10.Location = new System.Drawing.Point(91, 139);
  1797. this.label10.Name = "label10";
  1798. this.label10.Size = new System.Drawing.Size(32, 17);
  1799. this.label10.TabIndex = 90;
  1800. this.label10.Text = "箱号";
  1801. //
  1802. // label6
  1803. //
  1804. this.label6.AutoSize = true;
  1805. this.label6.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1806. this.label6.Location = new System.Drawing.Point(91, 112);
  1807. this.label6.Name = "label6";
  1808. this.label6.Size = new System.Drawing.Size(32, 17);
  1809. this.label6.TabIndex = 87;
  1810. this.label6.Text = "容量";
  1811. //
  1812. // OutBoxPrinter
  1813. //
  1814. this.OutBoxPrinter.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1815. this.OutBoxPrinter.Location = new System.Drawing.Point(8, 78);
  1816. this.OutBoxPrinter.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
  1817. this.OutBoxPrinter.Name = "OutBoxPrinter";
  1818. this.OutBoxPrinter.Size = new System.Drawing.Size(158, 25);
  1819. this.OutBoxPrinter.TabIndex = 82;
  1820. this.OutBoxPrinter.UserOnSelectIndexChange += new UAS_LabelMachine.CustomControl.PrinterCombox.OnSelectIndexChange(this.LabelPrinter_UserOnSelectIndexChange);
  1821. //
  1822. // OutboxCapacity
  1823. //
  1824. this.OutboxCapacity.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1825. this.OutboxCapacity.Location = new System.Drawing.Point(128, 109);
  1826. this.OutboxCapacity.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1827. this.OutboxCapacity.Name = "OutboxCapacity";
  1828. this.OutboxCapacity.Size = new System.Drawing.Size(38, 23);
  1829. this.OutboxCapacity.TabIndex = 84;
  1830. this.OutboxCapacity.Value = new decimal(new int[] {
  1831. 1,
  1832. 0,
  1833. 0,
  1834. 0});
  1835. this.OutboxCapacity.Leave += new System.EventHandler(this.MidBoxCapacity_Leave);
  1836. //
  1837. // OutBoxLabelPrint
  1838. //
  1839. this.OutBoxLabelPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1840. this.OutBoxLabelPrint.Location = new System.Drawing.Point(101, 202);
  1841. this.OutBoxLabelPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1842. this.OutBoxLabelPrint.Name = "OutBoxLabelPrint";
  1843. this.OutBoxLabelPrint.Size = new System.Drawing.Size(68, 26);
  1844. this.OutBoxLabelPrint.TabIndex = 80;
  1845. this.OutBoxLabelPrint.Text = "打印箱标";
  1846. this.OutBoxLabelPrint.UseVisualStyleBackColor = true;
  1847. this.OutBoxLabelPrint.Click += new System.EventHandler(this.OutBoxLabelPrint_Click);
  1848. //
  1849. // OutBoxLabelAutoPrint
  1850. //
  1851. this.OutBoxLabelAutoPrint.AutoSize = true;
  1852. this.OutBoxLabelAutoPrint.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1853. this.OutBoxLabelAutoPrint.Location = new System.Drawing.Point(9, 106);
  1854. this.OutBoxLabelAutoPrint.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1855. this.OutBoxLabelAutoPrint.Name = "OutBoxLabelAutoPrint";
  1856. this.OutBoxLabelAutoPrint.Size = new System.Drawing.Size(75, 21);
  1857. this.OutBoxLabelAutoPrint.TabIndex = 79;
  1858. this.OutBoxLabelAutoPrint.Text = "自动打印";
  1859. this.OutBoxLabelAutoPrint.UseVisualStyleBackColor = true;
  1860. this.OutBoxLabelAutoPrint.Visible = false;
  1861. //
  1862. // OutBoxCombox
  1863. //
  1864. this.OutBoxCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  1865. this.OutBoxCombox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1866. this.OutBoxCombox.FormattingEnabled = true;
  1867. this.OutBoxCombox.Location = new System.Drawing.Point(7, 46);
  1868. this.OutBoxCombox.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1869. this.OutBoxCombox.Name = "OutBoxCombox";
  1870. this.OutBoxCombox.Size = new System.Drawing.Size(158, 25);
  1871. this.OutBoxCombox.TabIndex = 78;
  1872. this.OutBoxCombox.SelectedIndexChanged += new System.EventHandler(this.OutBoxCombox_SelectedIndexChanged);
  1873. //
  1874. // UAS_出货标签打印
  1875. //
  1876. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1877. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1878. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(229)))), ((int)(((byte)(233)))), ((int)(((byte)(206)))));
  1879. this.ClientSize = new System.Drawing.Size(1258, 715);
  1880. this.Controls.Add(this.pi_class);
  1881. this.Controls.Add(this.MenuSetting);
  1882. this.Controls.Add(this.cu_code);
  1883. this.Controls.Add(this.CleanBarCode);
  1884. this.Controls.Add(this.pi_date);
  1885. this.Controls.Add(this.groupBoxWithBorder1);
  1886. this.Controls.Add(this.ChooseAll);
  1887. this.Controls.Add(this.GetGridOnly);
  1888. this.Controls.Add(this.AllCollected);
  1889. this.Controls.Add(this.CleanInputAfterCollect);
  1890. this.Controls.Add(this.Fresh);
  1891. this.Controls.Add(this.pi_cardcode_label);
  1892. this.Controls.Add(this.pib_id);
  1893. this.Controls.Add(this.pr_code);
  1894. this.Controls.Add(this.CleanDetail);
  1895. this.Controls.Add(this.Si_ItemDGV);
  1896. this.Controls.Add(this.CollectionProcess);
  1897. this.Controls.Add(this.sg_separator);
  1898. this.Controls.Add(this.sg_separator_label);
  1899. this.Controls.Add(this.SaveGrid);
  1900. this.Controls.Add(this.GenerateBarCode);
  1901. this.Controls.Add(this.CollectionUnit_label);
  1902. this.Controls.Add(this.CollectionUnit);
  1903. this.Controls.Add(this.label24);
  1904. this.Controls.Add(this.Input);
  1905. this.Controls.Add(this.pr_code_label);
  1906. this.Controls.Add(this.griddetno);
  1907. this.Controls.Add(this.AutoMatch);
  1908. this.Controls.Add(this.label22);
  1909. this.Controls.Add(this.label2);
  1910. this.Controls.Add(this.sg_code);
  1911. this.Controls.Add(this.label1);
  1912. this.Controls.Add(this.label3);
  1913. this.Controls.Add(this.MessageLog);
  1914. this.Controls.Add(this.LabelInf);
  1915. this.Controls.Add(this.pi_inoutno_label);
  1916. this.Controls.Add(this.pi_inoutno);
  1917. this.Controls.Add(this.SingleLabel);
  1918. this.Controls.Add(this.MidLabel);
  1919. this.Controls.Add(this.OutBoxLabel);
  1920. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  1921. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1922. this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  1923. this.Name = "UAS_出货标签打印";
  1924. this.Text = " UAS-出货标签管理";
  1925. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  1926. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.贴标机条码打印_FormClosing);
  1927. this.Load += new System.EventHandler(this.贴标机条码打印_Load);
  1928. this.SizeChanged += new System.EventHandler(this.贴标机条码打印_SizeChanged);
  1929. ((System.ComponentModel.ISupportInitialize)(this.Si_ItemDGV)).EndInit();
  1930. ((System.ComponentModel.ISupportInitialize)(this.MidSource)).EndInit();
  1931. this.Menu.ResumeLayout(false);
  1932. this.groupBoxWithBorder1.ResumeLayout(false);
  1933. this.groupBoxWithBorder1.PerformLayout();
  1934. this.CollectionProcess.ResumeLayout(false);
  1935. this.CollectionProcess.PerformLayout();
  1936. ((System.ComponentModel.ISupportInitialize)(this.LabelInf)).EndInit();
  1937. this.SingleLabel.ResumeLayout(false);
  1938. this.SingleLabel.PerformLayout();
  1939. this.MidLabel.ResumeLayout(false);
  1940. this.MidLabel.PerformLayout();
  1941. ((System.ComponentModel.ISupportInitialize)(this.MidBoxCapacity)).EndInit();
  1942. this.OutBoxLabel.ResumeLayout(false);
  1943. this.OutBoxLabel.PerformLayout();
  1944. this.groupBoxWithBorder2.ResumeLayout(false);
  1945. this.groupBoxWithBorder2.PerformLayout();
  1946. ((System.ComponentModel.ISupportInitialize)(this.OutboxCapacity)).EndInit();
  1947. this.ResumeLayout(false);
  1948. this.PerformLayout();
  1949. }
  1950. #endregion
  1951. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder OutBoxLabel;
  1952. private CustomControl.EnterTextBox OutBoxNum;
  1953. private System.Windows.Forms.Label label10;
  1954. private CustomControl.PrinterCombox OutBoxPrinter;
  1955. private System.Windows.Forms.Button OutBoxLabelPrint;
  1956. private System.Windows.Forms.ComboBox OutBoxCombox;
  1957. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  1958. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1959. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1960. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1961. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  1962. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  1963. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  1964. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  1965. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1966. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  1967. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  1968. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  1969. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  1970. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  1971. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  1972. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  1973. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  1974. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  1975. private System.Windows.Forms.Label label6;
  1976. private System.Windows.Forms.NumericUpDown OutboxCapacity;
  1977. private System.Windows.Forms.CheckBox OutBoxLabelAutoPrint;
  1978. private System.Windows.Forms.ComboBox MidLabelCombox;
  1979. private System.Windows.Forms.CheckBox MidLabelAutoPrint;
  1980. private System.Windows.Forms.Button MidLabelPrint;
  1981. private System.Windows.Forms.NumericUpDown MidBoxCapacity;
  1982. private System.Windows.Forms.Label label15;
  1983. private CustomControl.PrinterCombox MidLabelPrinter;
  1984. private System.Windows.Forms.Label label4;
  1985. private System.Windows.Forms.Label label5;
  1986. private CustomControl.EnterTextBox MidLabelNum;
  1987. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MidLabel;
  1988. private System.Windows.Forms.ComboBox SingleLabelCombox;
  1989. private System.Windows.Forms.CheckBox SingleLabelAutoPrint;
  1990. private System.Windows.Forms.Button SingleLabelPrint;
  1991. private CustomControl.PrinterCombox SingleLabelPrinter;
  1992. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder SingleLabel;
  1993. private CustomControl.BlurSearch pi_inoutno;
  1994. private System.Windows.Forms.Label pi_inoutno_label;
  1995. private CustomControl.DataGridViewWithSerialNum LabelInf;
  1996. private CustomControl.RichText.RichTextAutoBottom MessageLog;
  1997. private System.Windows.Forms.Label label1;
  1998. private System.Windows.Forms.Label label2;
  1999. private System.Windows.Forms.Label label22;
  2000. private System.Windows.Forms.CheckBox AutoMatch;
  2001. private CustomControl.EnterTextBox griddetno;
  2002. private System.Windows.Forms.Label pr_code_label;
  2003. private CustomControl.EnterTextBox Input;
  2004. private System.Windows.Forms.Label label24;
  2005. private System.Windows.Forms.ComboBox CollectionUnit;
  2006. private System.Windows.Forms.Label CollectionUnit_label;
  2007. private System.Windows.Forms.Button GenerateBarCode;
  2008. private System.Windows.Forms.Button SaveGrid;
  2009. private System.Windows.Forms.Label sg_separator_label;
  2010. private CustomControl.EnterTextBox sg_separator;
  2011. private System.Windows.Forms.Label Process;
  2012. private System.Windows.Forms.Label Installed;
  2013. private System.Windows.Forms.Label label13;
  2014. private System.Windows.Forms.Label label11;
  2015. private System.Windows.Forms.Label label14;
  2016. private System.Windows.Forms.Label CollectedCount;
  2017. private System.Windows.Forms.Label label17;
  2018. private System.Windows.Forms.Label TotalCount;
  2019. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder CollectionProcess;
  2020. private System.Windows.Forms.DataGridView Si_ItemDGV;
  2021. private System.Windows.Forms.Button CleanDetail;
  2022. private CustomControl.SearchTextBox sg_code;
  2023. private CustomControl.SearchTextBox pr_code;
  2024. private System.Windows.Forms.Label pib_id;
  2025. private System.Windows.Forms.Label Process_midboxcode;
  2026. private System.Windows.Forms.Label Process_outboxcode;
  2027. private System.Windows.Forms.Label Capacity;
  2028. private System.Windows.Forms.Label pi_cardcode_label;
  2029. private System.Windows.Forms.LinkLabel Fresh;
  2030. private System.Windows.Forms.Label label3;
  2031. private System.Windows.Forms.CheckBox CleanInputAfterCollect;
  2032. private System.Windows.Forms.Button AllCollected;
  2033. private System.Windows.Forms.Button GetOutBoxCode;
  2034. private System.Windows.Forms.LinkLabel LogingOut;
  2035. private System.Windows.Forms.CheckBox GetGridOnly;
  2036. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  2037. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  2038. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  2039. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  2040. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  2041. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  2042. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  2043. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  2044. private System.Windows.Forms.BindingSource MidSource;
  2045. private System.Windows.Forms.Button ChooseAll;
  2046. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
  2047. private System.Windows.Forms.Label label7;
  2048. private System.Windows.Forms.Label label12;
  2049. private CustomControl.EnterTextBox SingleBoxEnd;
  2050. private CustomControl.EnterTextBox SingleBoxBegin;
  2051. private System.Windows.Forms.Label label16;
  2052. private System.Windows.Forms.Label label18;
  2053. private CustomControl.EnterTextBox MidBoxEnd;
  2054. private CustomControl.EnterTextBox MidBoxBegin;
  2055. private System.Windows.Forms.FolderBrowserDialog ExportFileDialog;
  2056. private System.Windows.Forms.DataGridViewTextBoxColumn si_detno;
  2057. private System.Windows.Forms.DataGridViewTextBoxColumn si_index;
  2058. private System.Windows.Forms.DataGridViewTextBoxColumn si_kind;
  2059. private System.Windows.Forms.DataGridViewTextBoxColumn si_indexstring;
  2060. private System.Windows.Forms.DataGridViewTextBoxColumn si_length;
  2061. private System.Windows.Forms.DataGridViewTextBoxColumn si_expression;
  2062. private System.Windows.Forms.DataGridViewTextBoxColumn si_item;
  2063. private System.Windows.Forms.DataGridViewTextBoxColumn si_expressionitem;
  2064. private System.Windows.Forms.Label pi_date;
  2065. private System.Windows.Forms.Button CleanBarCode;
  2066. private CustomControl.SearchTextBox cu_code;
  2067. private System.Windows.Forms.LinkLabel SingleDocRefresh;
  2068. private System.Windows.Forms.LinkLabel MidDocRefresh;
  2069. private System.Windows.Forms.LinkLabel OutDocRefresh;
  2070. private System.Windows.Forms.Label label8;
  2071. private System.Windows.Forms.Label label9;
  2072. private System.Windows.Forms.Label label19;
  2073. private System.Windows.Forms.Button MenuSetting;
  2074. private System.Windows.Forms.ContextMenuStrip Menu;
  2075. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
  2076. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem2;
  2077. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem3;
  2078. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem4;
  2079. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem5;
  2080. private System.Windows.Forms.OpenFileDialog ImportExcel;
  2081. private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem6;
  2082. private System.Windows.Forms.DataGridViewCheckBoxColumn Choose;
  2083. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifpick;
  2084. private System.Windows.Forms.DataGridViewCheckBoxColumn pib_ifprint;
  2085. private System.Windows.Forms.DataGridViewTextBoxColumn pib_id1;
  2086. private System.Windows.Forms.DataGridViewTextBoxColumn pib_pdno;
  2087. private System.Windows.Forms.DataGridViewTextBoxColumn pib_prodcode;
  2088. private System.Windows.Forms.DataGridViewTextBoxColumn pr_orispeccode;
  2089. private System.Windows.Forms.DataGridViewTextBoxColumn pib_brand;
  2090. private System.Windows.Forms.DataGridViewTextBoxColumn pib_madein;
  2091. private System.Windows.Forms.DataGridViewTextBoxColumn pr_zxbzs;
  2092. private System.Windows.Forms.DataGridViewTextBoxColumn pr_unit;
  2093. private System.Windows.Forms.DataGridViewTextBoxColumn pib_lotno;
  2094. private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode;
  2095. private System.Windows.Forms.DataGridViewTextBoxColumn pib_datecode1;
  2096. private System.Windows.Forms.DataGridViewTextBoxColumn pib_qty;
  2097. private System.Windows.Forms.DataGridViewTextBoxColumn pib_barcode;
  2098. private System.Windows.Forms.DataGridViewTextBoxColumn pib_custbarcode;
  2099. private System.Windows.Forms.DataGridViewTextBoxColumn pd_pocode;
  2100. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodcode;
  2101. private System.Windows.Forms.DataGridViewTextBoxColumn pd_custprodspec;
  2102. private System.Windows.Forms.DataGridViewTextBoxColumn pr_spec;
  2103. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode1;
  2104. private System.Windows.Forms.DataGridViewTextBoxColumn pib_outboxcode2;
  2105. private System.Windows.Forms.Label pi_class;
  2106. private System.Windows.Forms.ToolStripMenuItem 下载模板ToolStripMenuItem;
  2107. private System.Windows.Forms.CheckBox cu_print_outprod;
  2108. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder2;
  2109. private System.Windows.Forms.CheckBox cu_print_outdc;
  2110. private System.Windows.Forms.CheckBox cu_print_outlotno;
  2111. private System.Windows.Forms.CheckBox cu_print_outpo;
  2112. }
  2113. }