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

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