CellTargetSettingForm.Designer.cs 261 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686
  1. namespace YangjieTester.元件目标设置
  2. {
  3. partial class CellTargetSettingForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.uiLabel1 = new Sunny.UI.UILabel();
  29. this.cob印字CCD检测NG料盒 = new PlcUiControl.PlcUiComboBox();
  30. this.uiLabel2 = new Sunny.UI.UILabel();
  31. this.cob3D检测NG料盒 = new PlcUiControl.PlcUiComboBox();
  32. this.cob测试4BIN12 = new PlcUiControl.PlcUiComboBox();
  33. this.cob测试3BIN12 = new PlcUiControl.PlcUiComboBox();
  34. this.cob测试2BIN12 = new PlcUiControl.PlcUiComboBox();
  35. this.cob测试1BIN12 = new PlcUiControl.PlcUiComboBox();
  36. this.uiLabel20 = new Sunny.UI.UILabel();
  37. this.cob测试4BIN11 = new PlcUiControl.PlcUiComboBox();
  38. this.cob测试3BIN11 = new PlcUiControl.PlcUiComboBox();
  39. this.cob测试2BIN11 = new PlcUiControl.PlcUiComboBox();
  40. this.cob测试1BIN11 = new PlcUiControl.PlcUiComboBox();
  41. this.cob测试4BIN10 = new PlcUiControl.PlcUiComboBox();
  42. this.cob测试3BIN10 = new PlcUiControl.PlcUiComboBox();
  43. this.cob测试2BIN10 = new PlcUiControl.PlcUiComboBox();
  44. this.cob测试1BIN10 = new PlcUiControl.PlcUiComboBox();
  45. this.cob测试4BIN9 = new PlcUiControl.PlcUiComboBox();
  46. this.cob测试3BIN9 = new PlcUiControl.PlcUiComboBox();
  47. this.cob测试2BIN9 = new PlcUiControl.PlcUiComboBox();
  48. this.cob测试1BIN9 = new PlcUiControl.PlcUiComboBox();
  49. this.cob测试4BIN8 = new PlcUiControl.PlcUiComboBox();
  50. this.cob测试3BIN8 = new PlcUiControl.PlcUiComboBox();
  51. this.cob测试2BIN8 = new PlcUiControl.PlcUiComboBox();
  52. this.cob测试1BIN8 = new PlcUiControl.PlcUiComboBox();
  53. this.cob测试4BIN7 = new PlcUiControl.PlcUiComboBox();
  54. this.cob测试3BIN7 = new PlcUiControl.PlcUiComboBox();
  55. this.cob测试2BIN7 = new PlcUiControl.PlcUiComboBox();
  56. this.cob测试1BIN7 = new PlcUiControl.PlcUiComboBox();
  57. this.cob测试4BIN6 = new PlcUiControl.PlcUiComboBox();
  58. this.cob测试3BIN6 = new PlcUiControl.PlcUiComboBox();
  59. this.cob测试2BIN6 = new PlcUiControl.PlcUiComboBox();
  60. this.cob测试1BIN6 = new PlcUiControl.PlcUiComboBox();
  61. this.cob测试4BIN5 = new PlcUiControl.PlcUiComboBox();
  62. this.cob测试3BIN5 = new PlcUiControl.PlcUiComboBox();
  63. this.cob测试2BIN5 = new PlcUiControl.PlcUiComboBox();
  64. this.cob测试1BIN5 = new PlcUiControl.PlcUiComboBox();
  65. this.cob测试4BIN4 = new PlcUiControl.PlcUiComboBox();
  66. this.cob测试3BIN4 = new PlcUiControl.PlcUiComboBox();
  67. this.cob测试2BIN4 = new PlcUiControl.PlcUiComboBox();
  68. this.cob测试1BIN4 = new PlcUiControl.PlcUiComboBox();
  69. this.cob测试4BIN3 = new PlcUiControl.PlcUiComboBox();
  70. this.cob测试3BIN3 = new PlcUiControl.PlcUiComboBox();
  71. this.cob测试2BIN3 = new PlcUiControl.PlcUiComboBox();
  72. this.cob测试1BIN3 = new PlcUiControl.PlcUiComboBox();
  73. this.cob测试4BIN2 = new PlcUiControl.PlcUiComboBox();
  74. this.cob测试3BIN2 = new PlcUiControl.PlcUiComboBox();
  75. this.cob测试2BIN2 = new PlcUiControl.PlcUiComboBox();
  76. this.cob测试1BIN2 = new PlcUiControl.PlcUiComboBox();
  77. this.cob热测BIN1 = new PlcUiControl.PlcUiComboBox();
  78. this.cob测试4BIN1 = new PlcUiControl.PlcUiComboBox();
  79. this.cob测试3BIN1 = new PlcUiControl.PlcUiComboBox();
  80. this.cob测试2BIN1 = new PlcUiControl.PlcUiComboBox();
  81. this.uiLabel19 = new Sunny.UI.UILabel();
  82. this.uiLabel18 = new Sunny.UI.UILabel();
  83. this.uiLabel17 = new Sunny.UI.UILabel();
  84. this.uiLabel16 = new Sunny.UI.UILabel();
  85. this.uiLabel15 = new Sunny.UI.UILabel();
  86. this.uiLabel14 = new Sunny.UI.UILabel();
  87. this.uiLabel13 = new Sunny.UI.UILabel();
  88. this.uiLabel12 = new Sunny.UI.UILabel();
  89. this.uiLabel11 = new Sunny.UI.UILabel();
  90. this.uiLabel10 = new Sunny.UI.UILabel();
  91. this.uiLabel9 = new Sunny.UI.UILabel();
  92. this.uiLabel8 = new Sunny.UI.UILabel();
  93. this.uiLabel7 = new Sunny.UI.UILabel();
  94. this.uiLabel6 = new Sunny.UI.UILabel();
  95. this.uiLabel5 = new Sunny.UI.UILabel();
  96. this.uiLabel4 = new Sunny.UI.UILabel();
  97. this.uiLabel3 = new Sunny.UI.UILabel();
  98. this.cob测试1BIN1 = new PlcUiControl.PlcUiComboBox();
  99. this.cob测试5BIN1 = new PlcUiControl.PlcUiComboBox();
  100. this.uiLabel21 = new Sunny.UI.UILabel();
  101. this.cob热测BIN2 = new PlcUiControl.PlcUiComboBox();
  102. this.cob热测BIN3 = new PlcUiControl.PlcUiComboBox();
  103. this.cob热测BIN4 = new PlcUiControl.PlcUiComboBox();
  104. this.cob热测BIN5 = new PlcUiControl.PlcUiComboBox();
  105. this.cob热测BIN6 = new PlcUiControl.PlcUiComboBox();
  106. this.cob热测BIN7 = new PlcUiControl.PlcUiComboBox();
  107. this.cob热测BIN8 = new PlcUiControl.PlcUiComboBox();
  108. this.cob热测BIN9 = new PlcUiControl.PlcUiComboBox();
  109. this.cob热测BIN10 = new PlcUiControl.PlcUiComboBox();
  110. this.cob热测BIN11 = new PlcUiControl.PlcUiComboBox();
  111. this.cob热测BIN12 = new PlcUiControl.PlcUiComboBox();
  112. this.cob测试5BIN2 = new PlcUiControl.PlcUiComboBox();
  113. this.cob测试5BIN3 = new PlcUiControl.PlcUiComboBox();
  114. this.cob测试5BIN6 = new PlcUiControl.PlcUiComboBox();
  115. this.cob测试5BIN5 = new PlcUiControl.PlcUiComboBox();
  116. this.cob测试5BIN4 = new PlcUiControl.PlcUiComboBox();
  117. this.cob测试5BIN9 = new PlcUiControl.PlcUiComboBox();
  118. this.cob测试5BIN8 = new PlcUiControl.PlcUiComboBox();
  119. this.cob测试5BIN7 = new PlcUiControl.PlcUiComboBox();
  120. this.cob测试5BIN10 = new PlcUiControl.PlcUiComboBox();
  121. this.cob测试5BIN11 = new PlcUiControl.PlcUiComboBox();
  122. this.cob测试5BIN12 = new PlcUiControl.PlcUiComboBox();
  123. this.cob表面CCD检测NG料盒 = new PlcUiControl.PlcUiComboBox();
  124. this.uiLabel22 = new Sunny.UI.UILabel();
  125. this.cob电测BIN12 = new PlcUiControl.PlcUiComboBox();
  126. this.cob电测BIN11 = new PlcUiControl.PlcUiComboBox();
  127. this.cob电测BIN10 = new PlcUiControl.PlcUiComboBox();
  128. this.cob电测BIN9 = new PlcUiControl.PlcUiComboBox();
  129. this.cob电测BIN8 = new PlcUiControl.PlcUiComboBox();
  130. this.cob电测BIN7 = new PlcUiControl.PlcUiComboBox();
  131. this.cob电测BIN6 = new PlcUiControl.PlcUiComboBox();
  132. this.cob电测BIN5 = new PlcUiControl.PlcUiComboBox();
  133. this.cob电测BIN4 = new PlcUiControl.PlcUiComboBox();
  134. this.cob电测BIN3 = new PlcUiControl.PlcUiComboBox();
  135. this.cob电测BIN2 = new PlcUiControl.PlcUiComboBox();
  136. this.uiLabel23 = new Sunny.UI.UILabel();
  137. this.cob电测BIN1 = new PlcUiControl.PlcUiComboBox();
  138. this.SuspendLayout();
  139. //
  140. // uiLabel1
  141. //
  142. this.uiLabel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  143. this.uiLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  144. this.uiLabel1.Location = new System.Drawing.Point(21, 72);
  145. this.uiLabel1.Name = "uiLabel1";
  146. this.uiLabel1.Size = new System.Drawing.Size(148, 23);
  147. this.uiLabel1.TabIndex = 1;
  148. this.uiLabel1.Text = "印字CCD检测NG料盒";
  149. //
  150. // cob印字CCD检测NG料盒
  151. //
  152. this.cob印字CCD检测NG料盒.DataSource = null;
  153. this.cob印字CCD检测NG料盒.DisabilityTriggerNode = null;
  154. this.cob印字CCD检测NG料盒.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  155. this.cob印字CCD检测NG料盒.FillColor = System.Drawing.Color.White;
  156. this.cob印字CCD检测NG料盒.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  157. this.cob印字CCD检测NG料盒.InvisibilityTriggerNode = null;
  158. this.cob印字CCD检测NG料盒.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  159. this.cob印字CCD检测NG料盒.Items.AddRange(new object[] {
  160. "0,",
  161. "41.料盒4-1",
  162. "42.料盒4-2",
  163. "43.料盒4-3",
  164. "44.料盒4-4",
  165. "51.料盒5-1",
  166. "52.料盒5-2",
  167. "53.料盒5-3",
  168. "54.料盒5-4"});
  169. this.cob印字CCD检测NG料盒.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  170. this.cob印字CCD检测NG料盒.Location = new System.Drawing.Point(24, 102);
  171. this.cob印字CCD检测NG料盒.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  172. this.cob印字CCD检测NG料盒.MinimumSize = new System.Drawing.Size(63, 0);
  173. this.cob印字CCD检测NG料盒.Name = "cob印字CCD检测NG料盒";
  174. this.cob印字CCD检测NG料盒.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  175. this.cob印字CCD检测NG料盒.ReadNode = new Node("Application.A23_LaserMarking_Auto.ui自定义结果去向", NodeType.UDINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  176. "料盒4(1-4)");
  177. this.cob印字CCD检测NG料盒.Size = new System.Drawing.Size(127, 23);
  178. this.cob印字CCD检测NG料盒.SymbolSize = 24;
  179. this.cob印字CCD检测NG料盒.TabIndex = 2;
  180. this.cob印字CCD检测NG料盒.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  181. this.cob印字CCD检测NG料盒.UseItemNumberPreffix = true;
  182. this.cob印字CCD检测NG料盒.Watermark = "";
  183. this.cob印字CCD检测NG料盒.WriteNode = new Node("Application.A23_LaserMarking_Auto.ui自定义结果去向", NodeType.UDINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  184. "料盒4(1-4)");
  185. //
  186. // uiLabel2
  187. //
  188. this.uiLabel2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  189. this.uiLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  190. this.uiLabel2.Location = new System.Drawing.Point(21, 217);
  191. this.uiLabel2.Name = "uiLabel2";
  192. this.uiLabel2.Size = new System.Drawing.Size(130, 23);
  193. this.uiLabel2.TabIndex = 3;
  194. this.uiLabel2.Text = "3D检测NG料盒";
  195. //
  196. // cob3D检测NG料盒
  197. //
  198. this.cob3D检测NG料盒.DataSource = null;
  199. this.cob3D检测NG料盒.DisabilityTriggerNode = null;
  200. this.cob3D检测NG料盒.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  201. this.cob3D检测NG料盒.FillColor = System.Drawing.Color.White;
  202. this.cob3D检测NG料盒.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  203. this.cob3D检测NG料盒.InvisibilityTriggerNode = null;
  204. this.cob3D检测NG料盒.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  205. this.cob3D检测NG料盒.Items.AddRange(new object[] {
  206. "0,",
  207. "41.料盒4-1",
  208. "42.料盒4-2",
  209. "43.料盒4-3",
  210. "44.料盒4-4",
  211. "51.料盒5-1",
  212. "52.料盒5-2",
  213. "53.料盒5-3",
  214. "54.料盒5-4"});
  215. this.cob3D检测NG料盒.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  216. this.cob3D检测NG料盒.Location = new System.Drawing.Point(24, 245);
  217. this.cob3D检测NG料盒.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  218. this.cob3D检测NG料盒.MinimumSize = new System.Drawing.Size(63, 0);
  219. this.cob3D检测NG料盒.Name = "cob3D检测NG料盒";
  220. this.cob3D检测NG料盒.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  221. this.cob3D检测NG料盒.ReadNode = new Node("Application.A27_3DTestStation_Auto.ar自定义结果去向", NodeType.UDINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  222. "料盒4(1-4)");
  223. this.cob3D检测NG料盒.Size = new System.Drawing.Size(127, 23);
  224. this.cob3D检测NG料盒.SymbolSize = 24;
  225. this.cob3D检测NG料盒.TabIndex = 4;
  226. this.cob3D检测NG料盒.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  227. this.cob3D检测NG料盒.UseItemNumberPreffix = true;
  228. this.cob3D检测NG料盒.Watermark = "";
  229. this.cob3D检测NG料盒.WriteNode = new Node("Application.A27_3DTestStation_Auto.ar自定义结果去向", NodeType.UDINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  230. "料盒4(1-4)");
  231. //
  232. // cob测试4BIN12
  233. //
  234. this.cob测试4BIN12.DataSource = null;
  235. this.cob测试4BIN12.DisabilityTriggerNode = null;
  236. this.cob测试4BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  237. this.cob测试4BIN12.FillColor = System.Drawing.Color.White;
  238. this.cob测试4BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  239. this.cob测试4BIN12.InvisibilityTriggerNode = null;
  240. this.cob测试4BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  241. this.cob测试4BIN12.Items.AddRange(new object[] {
  242. "0,",
  243. "1.编带",
  244. "11.料盒1-1",
  245. "12.料盒1-2",
  246. "13.料盒1-3",
  247. "14.料盒1-4",
  248. "21.料盒2-1",
  249. "22.料盒2-2",
  250. "23.料盒2-3",
  251. "24.料盒2-4",
  252. "31.料盒3-1",
  253. "32.料盒3-2",
  254. "33.料盒3-3",
  255. "34.料盒3-4",
  256. "41.料盒4-1",
  257. "42.料盒4-2",
  258. "43.料盒4-3",
  259. "44.料盒4-4",
  260. "51.料盒5-1",
  261. "52.料盒5-2",
  262. "53.料盒5-3",
  263. "54.料盒5-4"});
  264. this.cob测试4BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  265. this.cob测试4BIN12.Location = new System.Drawing.Point(839, 460);
  266. this.cob测试4BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  267. this.cob测试4BIN12.MaxDropDownItems = 20;
  268. this.cob测试4BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  269. this.cob测试4BIN12.Name = "cob测试4BIN12";
  270. this.cob测试4BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  271. this.cob测试4BIN12.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  272. this.cob测试4BIN12.ScrollBarHandleWidth = 20;
  273. this.cob测试4BIN12.ScrollBarWidth = 20;
  274. this.cob测试4BIN12.Size = new System.Drawing.Size(127, 23);
  275. this.cob测试4BIN12.SymbolSize = 24;
  276. this.cob测试4BIN12.TabIndex = 236;
  277. this.cob测试4BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  278. this.cob测试4BIN12.UseItemNumberPreffix = true;
  279. this.cob测试4BIN12.Watermark = "";
  280. this.cob测试4BIN12.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  281. //
  282. // cob测试3BIN12
  283. //
  284. this.cob测试3BIN12.DataSource = null;
  285. this.cob测试3BIN12.DisabilityTriggerNode = null;
  286. this.cob测试3BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  287. this.cob测试3BIN12.FillColor = System.Drawing.Color.White;
  288. this.cob测试3BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  289. this.cob测试3BIN12.InvisibilityTriggerNode = null;
  290. this.cob测试3BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  291. this.cob测试3BIN12.Items.AddRange(new object[] {
  292. "0,",
  293. "1.编带",
  294. "11.料盒1-1",
  295. "12.料盒1-2",
  296. "13.料盒1-3",
  297. "14.料盒1-4",
  298. "21.料盒2-1",
  299. "22.料盒2-2",
  300. "23.料盒2-3",
  301. "24.料盒2-4",
  302. "31.料盒3-1",
  303. "32.料盒3-2",
  304. "33.料盒3-3",
  305. "34.料盒3-4",
  306. "41.料盒4-1",
  307. "42.料盒4-2",
  308. "43.料盒4-3",
  309. "44.料盒4-4",
  310. "51.料盒5-1",
  311. "52.料盒5-2",
  312. "53.料盒5-3",
  313. "54.料盒5-4"});
  314. this.cob测试3BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  315. this.cob测试3BIN12.Location = new System.Drawing.Point(704, 460);
  316. this.cob测试3BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  317. this.cob测试3BIN12.MaxDropDownItems = 20;
  318. this.cob测试3BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  319. this.cob测试3BIN12.Name = "cob测试3BIN12";
  320. this.cob测试3BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  321. this.cob测试3BIN12.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  322. this.cob测试3BIN12.ScrollBarHandleWidth = 20;
  323. this.cob测试3BIN12.ScrollBarWidth = 20;
  324. this.cob测试3BIN12.Size = new System.Drawing.Size(127, 23);
  325. this.cob测试3BIN12.SymbolSize = 24;
  326. this.cob测试3BIN12.TabIndex = 235;
  327. this.cob测试3BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  328. this.cob测试3BIN12.UseItemNumberPreffix = true;
  329. this.cob测试3BIN12.Watermark = "";
  330. this.cob测试3BIN12.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  331. //
  332. // cob测试2BIN12
  333. //
  334. this.cob测试2BIN12.DataSource = null;
  335. this.cob测试2BIN12.DisabilityTriggerNode = null;
  336. this.cob测试2BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  337. this.cob测试2BIN12.FillColor = System.Drawing.Color.White;
  338. this.cob测试2BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  339. this.cob测试2BIN12.InvisibilityTriggerNode = null;
  340. this.cob测试2BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  341. this.cob测试2BIN12.Items.AddRange(new object[] {
  342. "0,",
  343. "1.编带",
  344. "11.料盒1-1",
  345. "12.料盒1-2",
  346. "13.料盒1-3",
  347. "14.料盒1-4",
  348. "21.料盒2-1",
  349. "22.料盒2-2",
  350. "23.料盒2-3",
  351. "24.料盒2-4",
  352. "31.料盒3-1",
  353. "32.料盒3-2",
  354. "33.料盒3-3",
  355. "34.料盒3-4",
  356. "41.料盒4-1",
  357. "42.料盒4-2",
  358. "43.料盒4-3",
  359. "44.料盒4-4",
  360. "51.料盒5-1",
  361. "52.料盒5-2",
  362. "53.料盒5-3",
  363. "54.料盒5-4"});
  364. this.cob测试2BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  365. this.cob测试2BIN12.Location = new System.Drawing.Point(569, 460);
  366. this.cob测试2BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  367. this.cob测试2BIN12.MaxDropDownItems = 20;
  368. this.cob测试2BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  369. this.cob测试2BIN12.Name = "cob测试2BIN12";
  370. this.cob测试2BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  371. this.cob测试2BIN12.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  372. this.cob测试2BIN12.ScrollBarHandleWidth = 20;
  373. this.cob测试2BIN12.ScrollBarWidth = 20;
  374. this.cob测试2BIN12.Size = new System.Drawing.Size(127, 23);
  375. this.cob测试2BIN12.SymbolSize = 24;
  376. this.cob测试2BIN12.TabIndex = 234;
  377. this.cob测试2BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  378. this.cob测试2BIN12.UseItemNumberPreffix = true;
  379. this.cob测试2BIN12.Watermark = "";
  380. this.cob测试2BIN12.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  381. //
  382. // cob测试1BIN12
  383. //
  384. this.cob测试1BIN12.DataSource = null;
  385. this.cob测试1BIN12.DisabilityTriggerNode = null;
  386. this.cob测试1BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  387. this.cob测试1BIN12.FillColor = System.Drawing.Color.White;
  388. this.cob测试1BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  389. this.cob测试1BIN12.InvisibilityTriggerNode = null;
  390. this.cob测试1BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  391. this.cob测试1BIN12.Items.AddRange(new object[] {
  392. "0,",
  393. "1.编带",
  394. "11.料盒1-1",
  395. "12.料盒1-2",
  396. "13.料盒1-3",
  397. "14.料盒1-4",
  398. "21.料盒2-1",
  399. "22.料盒2-2",
  400. "23.料盒2-3",
  401. "24.料盒2-4",
  402. "31.料盒3-1",
  403. "32.料盒3-2",
  404. "33.料盒3-3",
  405. "34.料盒3-4",
  406. "41.料盒4-1",
  407. "42.料盒4-2",
  408. "43.料盒4-3",
  409. "44.料盒4-4",
  410. "51.料盒5-1",
  411. "52.料盒5-2",
  412. "53.料盒5-3",
  413. "54.料盒5-4"});
  414. this.cob测试1BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  415. this.cob测试1BIN12.Location = new System.Drawing.Point(432, 460);
  416. this.cob测试1BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  417. this.cob测试1BIN12.MaxDropDownItems = 20;
  418. this.cob测试1BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  419. this.cob测试1BIN12.Name = "cob测试1BIN12";
  420. this.cob测试1BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  421. this.cob测试1BIN12.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  422. this.cob测试1BIN12.ScrollBarHandleWidth = 20;
  423. this.cob测试1BIN12.ScrollBarWidth = 20;
  424. this.cob测试1BIN12.Size = new System.Drawing.Size(127, 23);
  425. this.cob测试1BIN12.SymbolSize = 24;
  426. this.cob测试1BIN12.TabIndex = 233;
  427. this.cob测试1BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  428. this.cob测试1BIN12.UseItemNumberPreffix = true;
  429. this.cob测试1BIN12.Watermark = "";
  430. this.cob测试1BIN12.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  431. //
  432. // uiLabel20
  433. //
  434. this.uiLabel20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  435. this.uiLabel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  436. this.uiLabel20.Location = new System.Drawing.Point(211, 461);
  437. this.uiLabel20.Name = "uiLabel20";
  438. this.uiLabel20.Size = new System.Drawing.Size(80, 23);
  439. this.uiLabel20.TabIndex = 232;
  440. this.uiLabel20.Text = "BIN12";
  441. this.uiLabel20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  442. //
  443. // cob测试4BIN11
  444. //
  445. this.cob测试4BIN11.DataSource = null;
  446. this.cob测试4BIN11.DisabilityTriggerNode = null;
  447. this.cob测试4BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  448. this.cob测试4BIN11.FillColor = System.Drawing.Color.White;
  449. this.cob测试4BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  450. this.cob测试4BIN11.InvisibilityTriggerNode = null;
  451. this.cob测试4BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  452. this.cob测试4BIN11.Items.AddRange(new object[] {
  453. "0,",
  454. "1.编带",
  455. "11.料盒1-1",
  456. "12.料盒1-2",
  457. "13.料盒1-3",
  458. "14.料盒1-4",
  459. "21.料盒2-1",
  460. "22.料盒2-2",
  461. "23.料盒2-3",
  462. "24.料盒2-4",
  463. "31.料盒3-1",
  464. "32.料盒3-2",
  465. "33.料盒3-3",
  466. "34.料盒3-4",
  467. "41.料盒4-1",
  468. "42.料盒4-2",
  469. "43.料盒4-3",
  470. "44.料盒4-4",
  471. "51.料盒5-1",
  472. "52.料盒5-2",
  473. "53.料盒5-3",
  474. "54.料盒5-4"});
  475. this.cob测试4BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  476. this.cob测试4BIN11.Location = new System.Drawing.Point(839, 427);
  477. this.cob测试4BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  478. this.cob测试4BIN11.MaxDropDownItems = 20;
  479. this.cob测试4BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  480. this.cob测试4BIN11.Name = "cob测试4BIN11";
  481. this.cob测试4BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  482. this.cob测试4BIN11.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  483. this.cob测试4BIN11.ScrollBarHandleWidth = 20;
  484. this.cob测试4BIN11.ScrollBarWidth = 20;
  485. this.cob测试4BIN11.Size = new System.Drawing.Size(127, 23);
  486. this.cob测试4BIN11.SymbolSize = 24;
  487. this.cob测试4BIN11.TabIndex = 230;
  488. this.cob测试4BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  489. this.cob测试4BIN11.UseItemNumberPreffix = true;
  490. this.cob测试4BIN11.Watermark = "";
  491. this.cob测试4BIN11.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  492. //
  493. // cob测试3BIN11
  494. //
  495. this.cob测试3BIN11.DataSource = null;
  496. this.cob测试3BIN11.DisabilityTriggerNode = null;
  497. this.cob测试3BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  498. this.cob测试3BIN11.FillColor = System.Drawing.Color.White;
  499. this.cob测试3BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  500. this.cob测试3BIN11.InvisibilityTriggerNode = null;
  501. this.cob测试3BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  502. this.cob测试3BIN11.Items.AddRange(new object[] {
  503. "0,",
  504. "1.编带",
  505. "11.料盒1-1",
  506. "12.料盒1-2",
  507. "13.料盒1-3",
  508. "14.料盒1-4",
  509. "21.料盒2-1",
  510. "22.料盒2-2",
  511. "23.料盒2-3",
  512. "24.料盒2-4",
  513. "31.料盒3-1",
  514. "32.料盒3-2",
  515. "33.料盒3-3",
  516. "34.料盒3-4",
  517. "41.料盒4-1",
  518. "42.料盒4-2",
  519. "43.料盒4-3",
  520. "44.料盒4-4",
  521. "51.料盒5-1",
  522. "52.料盒5-2",
  523. "53.料盒5-3",
  524. "54.料盒5-4"});
  525. this.cob测试3BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  526. this.cob测试3BIN11.Location = new System.Drawing.Point(704, 427);
  527. this.cob测试3BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  528. this.cob测试3BIN11.MaxDropDownItems = 20;
  529. this.cob测试3BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  530. this.cob测试3BIN11.Name = "cob测试3BIN11";
  531. this.cob测试3BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  532. this.cob测试3BIN11.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  533. this.cob测试3BIN11.ScrollBarHandleWidth = 20;
  534. this.cob测试3BIN11.ScrollBarWidth = 20;
  535. this.cob测试3BIN11.Size = new System.Drawing.Size(127, 23);
  536. this.cob测试3BIN11.SymbolSize = 24;
  537. this.cob测试3BIN11.TabIndex = 229;
  538. this.cob测试3BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  539. this.cob测试3BIN11.UseItemNumberPreffix = true;
  540. this.cob测试3BIN11.Watermark = "";
  541. this.cob测试3BIN11.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  542. //
  543. // cob测试2BIN11
  544. //
  545. this.cob测试2BIN11.DataSource = null;
  546. this.cob测试2BIN11.DisabilityTriggerNode = null;
  547. this.cob测试2BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  548. this.cob测试2BIN11.FillColor = System.Drawing.Color.White;
  549. this.cob测试2BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  550. this.cob测试2BIN11.InvisibilityTriggerNode = null;
  551. this.cob测试2BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  552. this.cob测试2BIN11.Items.AddRange(new object[] {
  553. "0,",
  554. "1.编带",
  555. "11.料盒1-1",
  556. "12.料盒1-2",
  557. "13.料盒1-3",
  558. "14.料盒1-4",
  559. "21.料盒2-1",
  560. "22.料盒2-2",
  561. "23.料盒2-3",
  562. "24.料盒2-4",
  563. "31.料盒3-1",
  564. "32.料盒3-2",
  565. "33.料盒3-3",
  566. "34.料盒3-4",
  567. "41.料盒4-1",
  568. "42.料盒4-2",
  569. "43.料盒4-3",
  570. "44.料盒4-4",
  571. "51.料盒5-1",
  572. "52.料盒5-2",
  573. "53.料盒5-3",
  574. "54.料盒5-4"});
  575. this.cob测试2BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  576. this.cob测试2BIN11.Location = new System.Drawing.Point(569, 427);
  577. this.cob测试2BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  578. this.cob测试2BIN11.MaxDropDownItems = 20;
  579. this.cob测试2BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  580. this.cob测试2BIN11.Name = "cob测试2BIN11";
  581. this.cob测试2BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  582. this.cob测试2BIN11.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  583. this.cob测试2BIN11.ScrollBarHandleWidth = 20;
  584. this.cob测试2BIN11.ScrollBarWidth = 20;
  585. this.cob测试2BIN11.Size = new System.Drawing.Size(127, 23);
  586. this.cob测试2BIN11.SymbolSize = 24;
  587. this.cob测试2BIN11.TabIndex = 228;
  588. this.cob测试2BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  589. this.cob测试2BIN11.UseItemNumberPreffix = true;
  590. this.cob测试2BIN11.Watermark = "";
  591. this.cob测试2BIN11.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  592. //
  593. // cob测试1BIN11
  594. //
  595. this.cob测试1BIN11.DataSource = null;
  596. this.cob测试1BIN11.DisabilityTriggerNode = null;
  597. this.cob测试1BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  598. this.cob测试1BIN11.FillColor = System.Drawing.Color.White;
  599. this.cob测试1BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  600. this.cob测试1BIN11.InvisibilityTriggerNode = null;
  601. this.cob测试1BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  602. this.cob测试1BIN11.Items.AddRange(new object[] {
  603. "0,",
  604. "1.编带",
  605. "11.料盒1-1",
  606. "12.料盒1-2",
  607. "13.料盒1-3",
  608. "14.料盒1-4",
  609. "21.料盒2-1",
  610. "22.料盒2-2",
  611. "23.料盒2-3",
  612. "24.料盒2-4",
  613. "31.料盒3-1",
  614. "32.料盒3-2",
  615. "33.料盒3-3",
  616. "34.料盒3-4",
  617. "41.料盒4-1",
  618. "42.料盒4-2",
  619. "43.料盒4-3",
  620. "44.料盒4-4",
  621. "51.料盒5-1",
  622. "52.料盒5-2",
  623. "53.料盒5-3",
  624. "54.料盒5-4"});
  625. this.cob测试1BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  626. this.cob测试1BIN11.Location = new System.Drawing.Point(432, 427);
  627. this.cob测试1BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  628. this.cob测试1BIN11.MaxDropDownItems = 20;
  629. this.cob测试1BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  630. this.cob测试1BIN11.Name = "cob测试1BIN11";
  631. this.cob测试1BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  632. this.cob测试1BIN11.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  633. this.cob测试1BIN11.ScrollBarHandleWidth = 20;
  634. this.cob测试1BIN11.ScrollBarWidth = 20;
  635. this.cob测试1BIN11.Size = new System.Drawing.Size(127, 23);
  636. this.cob测试1BIN11.SymbolSize = 24;
  637. this.cob测试1BIN11.TabIndex = 227;
  638. this.cob测试1BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  639. this.cob测试1BIN11.UseItemNumberPreffix = true;
  640. this.cob测试1BIN11.Watermark = "";
  641. this.cob测试1BIN11.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  642. //
  643. // cob测试4BIN10
  644. //
  645. this.cob测试4BIN10.DataSource = null;
  646. this.cob测试4BIN10.DisabilityTriggerNode = null;
  647. this.cob测试4BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  648. this.cob测试4BIN10.FillColor = System.Drawing.Color.White;
  649. this.cob测试4BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  650. this.cob测试4BIN10.InvisibilityTriggerNode = null;
  651. this.cob测试4BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  652. this.cob测试4BIN10.Items.AddRange(new object[] {
  653. "0,",
  654. "1.编带",
  655. "11.料盒1-1",
  656. "12.料盒1-2",
  657. "13.料盒1-3",
  658. "14.料盒1-4",
  659. "21.料盒2-1",
  660. "22.料盒2-2",
  661. "23.料盒2-3",
  662. "24.料盒2-4",
  663. "31.料盒3-1",
  664. "32.料盒3-2",
  665. "33.料盒3-3",
  666. "34.料盒3-4",
  667. "41.料盒4-1",
  668. "42.料盒4-2",
  669. "43.料盒4-3",
  670. "44.料盒4-4",
  671. "51.料盒5-1",
  672. "52.料盒5-2",
  673. "53.料盒5-3",
  674. "54.料盒5-4"});
  675. this.cob测试4BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  676. this.cob测试4BIN10.Location = new System.Drawing.Point(839, 394);
  677. this.cob测试4BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  678. this.cob测试4BIN10.MaxDropDownItems = 20;
  679. this.cob测试4BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  680. this.cob测试4BIN10.Name = "cob测试4BIN10";
  681. this.cob测试4BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  682. this.cob测试4BIN10.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  683. this.cob测试4BIN10.ScrollBarHandleWidth = 20;
  684. this.cob测试4BIN10.ScrollBarWidth = 20;
  685. this.cob测试4BIN10.Size = new System.Drawing.Size(127, 23);
  686. this.cob测试4BIN10.SymbolSize = 24;
  687. this.cob测试4BIN10.TabIndex = 225;
  688. this.cob测试4BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  689. this.cob测试4BIN10.UseItemNumberPreffix = true;
  690. this.cob测试4BIN10.Watermark = "";
  691. this.cob测试4BIN10.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  692. //
  693. // cob测试3BIN10
  694. //
  695. this.cob测试3BIN10.DataSource = null;
  696. this.cob测试3BIN10.DisabilityTriggerNode = null;
  697. this.cob测试3BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  698. this.cob测试3BIN10.FillColor = System.Drawing.Color.White;
  699. this.cob测试3BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  700. this.cob测试3BIN10.InvisibilityTriggerNode = null;
  701. this.cob测试3BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  702. this.cob测试3BIN10.Items.AddRange(new object[] {
  703. "0,",
  704. "1.编带",
  705. "11.料盒1-1",
  706. "12.料盒1-2",
  707. "13.料盒1-3",
  708. "14.料盒1-4",
  709. "21.料盒2-1",
  710. "22.料盒2-2",
  711. "23.料盒2-3",
  712. "24.料盒2-4",
  713. "31.料盒3-1",
  714. "32.料盒3-2",
  715. "33.料盒3-3",
  716. "34.料盒3-4",
  717. "41.料盒4-1",
  718. "42.料盒4-2",
  719. "43.料盒4-3",
  720. "44.料盒4-4",
  721. "51.料盒5-1",
  722. "52.料盒5-2",
  723. "53.料盒5-3",
  724. "54.料盒5-4"});
  725. this.cob测试3BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  726. this.cob测试3BIN10.Location = new System.Drawing.Point(704, 394);
  727. this.cob测试3BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  728. this.cob测试3BIN10.MaxDropDownItems = 20;
  729. this.cob测试3BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  730. this.cob测试3BIN10.Name = "cob测试3BIN10";
  731. this.cob测试3BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  732. this.cob测试3BIN10.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  733. this.cob测试3BIN10.ScrollBarHandleWidth = 20;
  734. this.cob测试3BIN10.ScrollBarWidth = 20;
  735. this.cob测试3BIN10.Size = new System.Drawing.Size(127, 23);
  736. this.cob测试3BIN10.SymbolSize = 24;
  737. this.cob测试3BIN10.TabIndex = 224;
  738. this.cob测试3BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  739. this.cob测试3BIN10.UseItemNumberPreffix = true;
  740. this.cob测试3BIN10.Watermark = "";
  741. this.cob测试3BIN10.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  742. //
  743. // cob测试2BIN10
  744. //
  745. this.cob测试2BIN10.DataSource = null;
  746. this.cob测试2BIN10.DisabilityTriggerNode = null;
  747. this.cob测试2BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  748. this.cob测试2BIN10.FillColor = System.Drawing.Color.White;
  749. this.cob测试2BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  750. this.cob测试2BIN10.InvisibilityTriggerNode = null;
  751. this.cob测试2BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  752. this.cob测试2BIN10.Items.AddRange(new object[] {
  753. "0,",
  754. "1.编带",
  755. "11.料盒1-1",
  756. "12.料盒1-2",
  757. "13.料盒1-3",
  758. "14.料盒1-4",
  759. "21.料盒2-1",
  760. "22.料盒2-2",
  761. "23.料盒2-3",
  762. "24.料盒2-4",
  763. "31.料盒3-1",
  764. "32.料盒3-2",
  765. "33.料盒3-3",
  766. "34.料盒3-4",
  767. "41.料盒4-1",
  768. "42.料盒4-2",
  769. "43.料盒4-3",
  770. "44.料盒4-4",
  771. "51.料盒5-1",
  772. "52.料盒5-2",
  773. "53.料盒5-3",
  774. "54.料盒5-4"});
  775. this.cob测试2BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  776. this.cob测试2BIN10.Location = new System.Drawing.Point(569, 394);
  777. this.cob测试2BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  778. this.cob测试2BIN10.MaxDropDownItems = 20;
  779. this.cob测试2BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  780. this.cob测试2BIN10.Name = "cob测试2BIN10";
  781. this.cob测试2BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  782. this.cob测试2BIN10.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  783. this.cob测试2BIN10.ScrollBarHandleWidth = 20;
  784. this.cob测试2BIN10.ScrollBarWidth = 20;
  785. this.cob测试2BIN10.Size = new System.Drawing.Size(127, 23);
  786. this.cob测试2BIN10.SymbolSize = 24;
  787. this.cob测试2BIN10.TabIndex = 223;
  788. this.cob测试2BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  789. this.cob测试2BIN10.UseItemNumberPreffix = true;
  790. this.cob测试2BIN10.Watermark = "";
  791. this.cob测试2BIN10.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  792. //
  793. // cob测试1BIN10
  794. //
  795. this.cob测试1BIN10.DataSource = null;
  796. this.cob测试1BIN10.DisabilityTriggerNode = null;
  797. this.cob测试1BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  798. this.cob测试1BIN10.FillColor = System.Drawing.Color.White;
  799. this.cob测试1BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  800. this.cob测试1BIN10.InvisibilityTriggerNode = null;
  801. this.cob测试1BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  802. this.cob测试1BIN10.Items.AddRange(new object[] {
  803. "0,",
  804. "1.编带",
  805. "11.料盒1-1",
  806. "12.料盒1-2",
  807. "13.料盒1-3",
  808. "14.料盒1-4",
  809. "21.料盒2-1",
  810. "22.料盒2-2",
  811. "23.料盒2-3",
  812. "24.料盒2-4",
  813. "31.料盒3-1",
  814. "32.料盒3-2",
  815. "33.料盒3-3",
  816. "34.料盒3-4",
  817. "41.料盒4-1",
  818. "42.料盒4-2",
  819. "43.料盒4-3",
  820. "44.料盒4-4",
  821. "51.料盒5-1",
  822. "52.料盒5-2",
  823. "53.料盒5-3",
  824. "54.料盒5-4"});
  825. this.cob测试1BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  826. this.cob测试1BIN10.Location = new System.Drawing.Point(432, 394);
  827. this.cob测试1BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  828. this.cob测试1BIN10.MaxDropDownItems = 20;
  829. this.cob测试1BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  830. this.cob测试1BIN10.Name = "cob测试1BIN10";
  831. this.cob测试1BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  832. this.cob测试1BIN10.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  833. this.cob测试1BIN10.ScrollBarHandleWidth = 20;
  834. this.cob测试1BIN10.ScrollBarWidth = 20;
  835. this.cob测试1BIN10.Size = new System.Drawing.Size(127, 23);
  836. this.cob测试1BIN10.SymbolSize = 24;
  837. this.cob测试1BIN10.TabIndex = 222;
  838. this.cob测试1BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  839. this.cob测试1BIN10.UseItemNumberPreffix = true;
  840. this.cob测试1BIN10.Watermark = "";
  841. this.cob测试1BIN10.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  842. //
  843. // cob测试4BIN9
  844. //
  845. this.cob测试4BIN9.DataSource = null;
  846. this.cob测试4BIN9.DisabilityTriggerNode = null;
  847. this.cob测试4BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  848. this.cob测试4BIN9.FillColor = System.Drawing.Color.White;
  849. this.cob测试4BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  850. this.cob测试4BIN9.InvisibilityTriggerNode = null;
  851. this.cob测试4BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  852. this.cob测试4BIN9.Items.AddRange(new object[] {
  853. "0,",
  854. "1.编带",
  855. "11.料盒1-1",
  856. "12.料盒1-2",
  857. "13.料盒1-3",
  858. "14.料盒1-4",
  859. "21.料盒2-1",
  860. "22.料盒2-2",
  861. "23.料盒2-3",
  862. "24.料盒2-4",
  863. "31.料盒3-1",
  864. "32.料盒3-2",
  865. "33.料盒3-3",
  866. "34.料盒3-4",
  867. "41.料盒4-1",
  868. "42.料盒4-2",
  869. "43.料盒4-3",
  870. "44.料盒4-4",
  871. "51.料盒5-1",
  872. "52.料盒5-2",
  873. "53.料盒5-3",
  874. "54.料盒5-4"});
  875. this.cob测试4BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  876. this.cob测试4BIN9.Location = new System.Drawing.Point(839, 361);
  877. this.cob测试4BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  878. this.cob测试4BIN9.MaxDropDownItems = 20;
  879. this.cob测试4BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  880. this.cob测试4BIN9.Name = "cob测试4BIN9";
  881. this.cob测试4BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  882. this.cob测试4BIN9.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  883. this.cob测试4BIN9.ScrollBarHandleWidth = 20;
  884. this.cob测试4BIN9.ScrollBarWidth = 20;
  885. this.cob测试4BIN9.Size = new System.Drawing.Size(127, 23);
  886. this.cob测试4BIN9.SymbolSize = 24;
  887. this.cob测试4BIN9.TabIndex = 220;
  888. this.cob测试4BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  889. this.cob测试4BIN9.UseItemNumberPreffix = true;
  890. this.cob测试4BIN9.Watermark = "";
  891. this.cob测试4BIN9.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  892. //
  893. // cob测试3BIN9
  894. //
  895. this.cob测试3BIN9.DataSource = null;
  896. this.cob测试3BIN9.DisabilityTriggerNode = null;
  897. this.cob测试3BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  898. this.cob测试3BIN9.FillColor = System.Drawing.Color.White;
  899. this.cob测试3BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  900. this.cob测试3BIN9.InvisibilityTriggerNode = null;
  901. this.cob测试3BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  902. this.cob测试3BIN9.Items.AddRange(new object[] {
  903. "0,",
  904. "1.编带",
  905. "11.料盒1-1",
  906. "12.料盒1-2",
  907. "13.料盒1-3",
  908. "14.料盒1-4",
  909. "21.料盒2-1",
  910. "22.料盒2-2",
  911. "23.料盒2-3",
  912. "24.料盒2-4",
  913. "31.料盒3-1",
  914. "32.料盒3-2",
  915. "33.料盒3-3",
  916. "34.料盒3-4",
  917. "41.料盒4-1",
  918. "42.料盒4-2",
  919. "43.料盒4-3",
  920. "44.料盒4-4",
  921. "51.料盒5-1",
  922. "52.料盒5-2",
  923. "53.料盒5-3",
  924. "54.料盒5-4"});
  925. this.cob测试3BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  926. this.cob测试3BIN9.Location = new System.Drawing.Point(704, 361);
  927. this.cob测试3BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  928. this.cob测试3BIN9.MaxDropDownItems = 20;
  929. this.cob测试3BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  930. this.cob测试3BIN9.Name = "cob测试3BIN9";
  931. this.cob测试3BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  932. this.cob测试3BIN9.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  933. this.cob测试3BIN9.ScrollBarHandleWidth = 20;
  934. this.cob测试3BIN9.ScrollBarWidth = 20;
  935. this.cob测试3BIN9.Size = new System.Drawing.Size(127, 23);
  936. this.cob测试3BIN9.SymbolSize = 24;
  937. this.cob测试3BIN9.TabIndex = 219;
  938. this.cob测试3BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  939. this.cob测试3BIN9.UseItemNumberPreffix = true;
  940. this.cob测试3BIN9.Watermark = "";
  941. this.cob测试3BIN9.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  942. //
  943. // cob测试2BIN9
  944. //
  945. this.cob测试2BIN9.DataSource = null;
  946. this.cob测试2BIN9.DisabilityTriggerNode = null;
  947. this.cob测试2BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  948. this.cob测试2BIN9.FillColor = System.Drawing.Color.White;
  949. this.cob测试2BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  950. this.cob测试2BIN9.InvisibilityTriggerNode = null;
  951. this.cob测试2BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  952. this.cob测试2BIN9.Items.AddRange(new object[] {
  953. "0,",
  954. "1.编带",
  955. "11.料盒1-1",
  956. "12.料盒1-2",
  957. "13.料盒1-3",
  958. "14.料盒1-4",
  959. "21.料盒2-1",
  960. "22.料盒2-2",
  961. "23.料盒2-3",
  962. "24.料盒2-4",
  963. "31.料盒3-1",
  964. "32.料盒3-2",
  965. "33.料盒3-3",
  966. "34.料盒3-4",
  967. "41.料盒4-1",
  968. "42.料盒4-2",
  969. "43.料盒4-3",
  970. "44.料盒4-4",
  971. "51.料盒5-1",
  972. "52.料盒5-2",
  973. "53.料盒5-3",
  974. "54.料盒5-4"});
  975. this.cob测试2BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  976. this.cob测试2BIN9.Location = new System.Drawing.Point(569, 361);
  977. this.cob测试2BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  978. this.cob测试2BIN9.MaxDropDownItems = 20;
  979. this.cob测试2BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  980. this.cob测试2BIN9.Name = "cob测试2BIN9";
  981. this.cob测试2BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  982. this.cob测试2BIN9.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  983. this.cob测试2BIN9.ScrollBarHandleWidth = 20;
  984. this.cob测试2BIN9.ScrollBarWidth = 20;
  985. this.cob测试2BIN9.Size = new System.Drawing.Size(127, 23);
  986. this.cob测试2BIN9.SymbolSize = 24;
  987. this.cob测试2BIN9.TabIndex = 218;
  988. this.cob测试2BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  989. this.cob测试2BIN9.UseItemNumberPreffix = true;
  990. this.cob测试2BIN9.Watermark = "";
  991. this.cob测试2BIN9.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  992. //
  993. // cob测试1BIN9
  994. //
  995. this.cob测试1BIN9.DataSource = null;
  996. this.cob测试1BIN9.DisabilityTriggerNode = null;
  997. this.cob测试1BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  998. this.cob测试1BIN9.FillColor = System.Drawing.Color.White;
  999. this.cob测试1BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1000. this.cob测试1BIN9.InvisibilityTriggerNode = null;
  1001. this.cob测试1BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1002. this.cob测试1BIN9.Items.AddRange(new object[] {
  1003. "0,",
  1004. "1.编带",
  1005. "11.料盒1-1",
  1006. "12.料盒1-2",
  1007. "13.料盒1-3",
  1008. "14.料盒1-4",
  1009. "21.料盒2-1",
  1010. "22.料盒2-2",
  1011. "23.料盒2-3",
  1012. "24.料盒2-4",
  1013. "31.料盒3-1",
  1014. "32.料盒3-2",
  1015. "33.料盒3-3",
  1016. "34.料盒3-4",
  1017. "41.料盒4-1",
  1018. "42.料盒4-2",
  1019. "43.料盒4-3",
  1020. "44.料盒4-4",
  1021. "51.料盒5-1",
  1022. "52.料盒5-2",
  1023. "53.料盒5-3",
  1024. "54.料盒5-4"});
  1025. this.cob测试1BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1026. this.cob测试1BIN9.Location = new System.Drawing.Point(432, 361);
  1027. this.cob测试1BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1028. this.cob测试1BIN9.MaxDropDownItems = 20;
  1029. this.cob测试1BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  1030. this.cob测试1BIN9.Name = "cob测试1BIN9";
  1031. this.cob测试1BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1032. this.cob测试1BIN9.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  1033. this.cob测试1BIN9.ScrollBarHandleWidth = 20;
  1034. this.cob测试1BIN9.ScrollBarWidth = 20;
  1035. this.cob测试1BIN9.Size = new System.Drawing.Size(127, 23);
  1036. this.cob测试1BIN9.SymbolSize = 24;
  1037. this.cob测试1BIN9.TabIndex = 217;
  1038. this.cob测试1BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1039. this.cob测试1BIN9.UseItemNumberPreffix = true;
  1040. this.cob测试1BIN9.Watermark = "";
  1041. this.cob测试1BIN9.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  1042. //
  1043. // cob测试4BIN8
  1044. //
  1045. this.cob测试4BIN8.DataSource = null;
  1046. this.cob测试4BIN8.DisabilityTriggerNode = null;
  1047. this.cob测试4BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1048. this.cob测试4BIN8.FillColor = System.Drawing.Color.White;
  1049. this.cob测试4BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1050. this.cob测试4BIN8.InvisibilityTriggerNode = null;
  1051. this.cob测试4BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1052. this.cob测试4BIN8.Items.AddRange(new object[] {
  1053. "0,",
  1054. "1.编带",
  1055. "11.料盒1-1",
  1056. "12.料盒1-2",
  1057. "13.料盒1-3",
  1058. "14.料盒1-4",
  1059. "21.料盒2-1",
  1060. "22.料盒2-2",
  1061. "23.料盒2-3",
  1062. "24.料盒2-4",
  1063. "31.料盒3-1",
  1064. "32.料盒3-2",
  1065. "33.料盒3-3",
  1066. "34.料盒3-4",
  1067. "41.料盒4-1",
  1068. "42.料盒4-2",
  1069. "43.料盒4-3",
  1070. "44.料盒4-4",
  1071. "51.料盒5-1",
  1072. "52.料盒5-2",
  1073. "53.料盒5-3",
  1074. "54.料盒5-4"});
  1075. this.cob测试4BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1076. this.cob测试4BIN8.Location = new System.Drawing.Point(839, 328);
  1077. this.cob测试4BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1078. this.cob测试4BIN8.MaxDropDownItems = 20;
  1079. this.cob测试4BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  1080. this.cob测试4BIN8.Name = "cob测试4BIN8";
  1081. this.cob测试4BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1082. this.cob测试4BIN8.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1083. this.cob测试4BIN8.ScrollBarHandleWidth = 20;
  1084. this.cob测试4BIN8.ScrollBarWidth = 20;
  1085. this.cob测试4BIN8.Size = new System.Drawing.Size(127, 23);
  1086. this.cob测试4BIN8.SymbolSize = 24;
  1087. this.cob测试4BIN8.TabIndex = 215;
  1088. this.cob测试4BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1089. this.cob测试4BIN8.UseItemNumberPreffix = true;
  1090. this.cob测试4BIN8.Watermark = "";
  1091. this.cob测试4BIN8.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1092. //
  1093. // cob测试3BIN8
  1094. //
  1095. this.cob测试3BIN8.DataSource = null;
  1096. this.cob测试3BIN8.DisabilityTriggerNode = null;
  1097. this.cob测试3BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1098. this.cob测试3BIN8.FillColor = System.Drawing.Color.White;
  1099. this.cob测试3BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1100. this.cob测试3BIN8.InvisibilityTriggerNode = null;
  1101. this.cob测试3BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1102. this.cob测试3BIN8.Items.AddRange(new object[] {
  1103. "0,",
  1104. "1.编带",
  1105. "11.料盒1-1",
  1106. "12.料盒1-2",
  1107. "13.料盒1-3",
  1108. "14.料盒1-4",
  1109. "21.料盒2-1",
  1110. "22.料盒2-2",
  1111. "23.料盒2-3",
  1112. "24.料盒2-4",
  1113. "31.料盒3-1",
  1114. "32.料盒3-2",
  1115. "33.料盒3-3",
  1116. "34.料盒3-4",
  1117. "41.料盒4-1",
  1118. "42.料盒4-2",
  1119. "43.料盒4-3",
  1120. "44.料盒4-4",
  1121. "51.料盒5-1",
  1122. "52.料盒5-2",
  1123. "53.料盒5-3",
  1124. "54.料盒5-4"});
  1125. this.cob测试3BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1126. this.cob测试3BIN8.Location = new System.Drawing.Point(704, 328);
  1127. this.cob测试3BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1128. this.cob测试3BIN8.MaxDropDownItems = 20;
  1129. this.cob测试3BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  1130. this.cob测试3BIN8.Name = "cob测试3BIN8";
  1131. this.cob测试3BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1132. this.cob测试3BIN8.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1133. this.cob测试3BIN8.ScrollBarHandleWidth = 20;
  1134. this.cob测试3BIN8.ScrollBarWidth = 20;
  1135. this.cob测试3BIN8.Size = new System.Drawing.Size(127, 23);
  1136. this.cob测试3BIN8.SymbolSize = 24;
  1137. this.cob测试3BIN8.TabIndex = 214;
  1138. this.cob测试3BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1139. this.cob测试3BIN8.UseItemNumberPreffix = true;
  1140. this.cob测试3BIN8.Watermark = "";
  1141. this.cob测试3BIN8.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1142. //
  1143. // cob测试2BIN8
  1144. //
  1145. this.cob测试2BIN8.DataSource = null;
  1146. this.cob测试2BIN8.DisabilityTriggerNode = null;
  1147. this.cob测试2BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1148. this.cob测试2BIN8.FillColor = System.Drawing.Color.White;
  1149. this.cob测试2BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1150. this.cob测试2BIN8.InvisibilityTriggerNode = null;
  1151. this.cob测试2BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1152. this.cob测试2BIN8.Items.AddRange(new object[] {
  1153. "0,",
  1154. "1.编带",
  1155. "11.料盒1-1",
  1156. "12.料盒1-2",
  1157. "13.料盒1-3",
  1158. "14.料盒1-4",
  1159. "21.料盒2-1",
  1160. "22.料盒2-2",
  1161. "23.料盒2-3",
  1162. "24.料盒2-4",
  1163. "31.料盒3-1",
  1164. "32.料盒3-2",
  1165. "33.料盒3-3",
  1166. "34.料盒3-4",
  1167. "41.料盒4-1",
  1168. "42.料盒4-2",
  1169. "43.料盒4-3",
  1170. "44.料盒4-4",
  1171. "51.料盒5-1",
  1172. "52.料盒5-2",
  1173. "53.料盒5-3",
  1174. "54.料盒5-4"});
  1175. this.cob测试2BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1176. this.cob测试2BIN8.Location = new System.Drawing.Point(569, 328);
  1177. this.cob测试2BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1178. this.cob测试2BIN8.MaxDropDownItems = 20;
  1179. this.cob测试2BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  1180. this.cob测试2BIN8.Name = "cob测试2BIN8";
  1181. this.cob测试2BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1182. this.cob测试2BIN8.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1183. this.cob测试2BIN8.ScrollBarHandleWidth = 20;
  1184. this.cob测试2BIN8.ScrollBarWidth = 20;
  1185. this.cob测试2BIN8.Size = new System.Drawing.Size(127, 23);
  1186. this.cob测试2BIN8.SymbolSize = 24;
  1187. this.cob测试2BIN8.TabIndex = 213;
  1188. this.cob测试2BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1189. this.cob测试2BIN8.UseItemNumberPreffix = true;
  1190. this.cob测试2BIN8.Watermark = "";
  1191. this.cob测试2BIN8.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1192. //
  1193. // cob测试1BIN8
  1194. //
  1195. this.cob测试1BIN8.DataSource = null;
  1196. this.cob测试1BIN8.DisabilityTriggerNode = null;
  1197. this.cob测试1BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1198. this.cob测试1BIN8.FillColor = System.Drawing.Color.White;
  1199. this.cob测试1BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1200. this.cob测试1BIN8.InvisibilityTriggerNode = null;
  1201. this.cob测试1BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1202. this.cob测试1BIN8.Items.AddRange(new object[] {
  1203. "0,",
  1204. "1.编带",
  1205. "11.料盒1-1",
  1206. "12.料盒1-2",
  1207. "13.料盒1-3",
  1208. "14.料盒1-4",
  1209. "21.料盒2-1",
  1210. "22.料盒2-2",
  1211. "23.料盒2-3",
  1212. "24.料盒2-4",
  1213. "31.料盒3-1",
  1214. "32.料盒3-2",
  1215. "33.料盒3-3",
  1216. "34.料盒3-4",
  1217. "41.料盒4-1",
  1218. "42.料盒4-2",
  1219. "43.料盒4-3",
  1220. "44.料盒4-4",
  1221. "51.料盒5-1",
  1222. "52.料盒5-2",
  1223. "53.料盒5-3",
  1224. "54.料盒5-4"});
  1225. this.cob测试1BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1226. this.cob测试1BIN8.Location = new System.Drawing.Point(432, 328);
  1227. this.cob测试1BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1228. this.cob测试1BIN8.MaxDropDownItems = 20;
  1229. this.cob测试1BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  1230. this.cob测试1BIN8.Name = "cob测试1BIN8";
  1231. this.cob测试1BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1232. this.cob测试1BIN8.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1233. this.cob测试1BIN8.ScrollBarHandleWidth = 20;
  1234. this.cob测试1BIN8.ScrollBarWidth = 20;
  1235. this.cob测试1BIN8.Size = new System.Drawing.Size(127, 23);
  1236. this.cob测试1BIN8.SymbolSize = 24;
  1237. this.cob测试1BIN8.TabIndex = 212;
  1238. this.cob测试1BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1239. this.cob测试1BIN8.UseItemNumberPreffix = true;
  1240. this.cob测试1BIN8.Watermark = "";
  1241. this.cob测试1BIN8.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  1242. //
  1243. // cob测试4BIN7
  1244. //
  1245. this.cob测试4BIN7.DataSource = null;
  1246. this.cob测试4BIN7.DisabilityTriggerNode = null;
  1247. this.cob测试4BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1248. this.cob测试4BIN7.FillColor = System.Drawing.Color.White;
  1249. this.cob测试4BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1250. this.cob测试4BIN7.InvisibilityTriggerNode = null;
  1251. this.cob测试4BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1252. this.cob测试4BIN7.Items.AddRange(new object[] {
  1253. "0,",
  1254. "1.编带",
  1255. "11.料盒1-1",
  1256. "12.料盒1-2",
  1257. "13.料盒1-3",
  1258. "14.料盒1-4",
  1259. "21.料盒2-1",
  1260. "22.料盒2-2",
  1261. "23.料盒2-3",
  1262. "24.料盒2-4",
  1263. "31.料盒3-1",
  1264. "32.料盒3-2",
  1265. "33.料盒3-3",
  1266. "34.料盒3-4",
  1267. "41.料盒4-1",
  1268. "42.料盒4-2",
  1269. "43.料盒4-3",
  1270. "44.料盒4-4",
  1271. "51.料盒5-1",
  1272. "52.料盒5-2",
  1273. "53.料盒5-3",
  1274. "54.料盒5-4"});
  1275. this.cob测试4BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1276. this.cob测试4BIN7.Location = new System.Drawing.Point(839, 295);
  1277. this.cob测试4BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1278. this.cob测试4BIN7.MaxDropDownItems = 20;
  1279. this.cob测试4BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  1280. this.cob测试4BIN7.Name = "cob测试4BIN7";
  1281. this.cob测试4BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1282. this.cob测试4BIN7.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1283. this.cob测试4BIN7.ScrollBarHandleWidth = 20;
  1284. this.cob测试4BIN7.ScrollBarWidth = 20;
  1285. this.cob测试4BIN7.Size = new System.Drawing.Size(127, 23);
  1286. this.cob测试4BIN7.SymbolSize = 24;
  1287. this.cob测试4BIN7.TabIndex = 210;
  1288. this.cob测试4BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1289. this.cob测试4BIN7.UseItemNumberPreffix = true;
  1290. this.cob测试4BIN7.Watermark = "";
  1291. this.cob测试4BIN7.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1292. //
  1293. // cob测试3BIN7
  1294. //
  1295. this.cob测试3BIN7.DataSource = null;
  1296. this.cob测试3BIN7.DisabilityTriggerNode = null;
  1297. this.cob测试3BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1298. this.cob测试3BIN7.FillColor = System.Drawing.Color.White;
  1299. this.cob测试3BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1300. this.cob测试3BIN7.InvisibilityTriggerNode = null;
  1301. this.cob测试3BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1302. this.cob测试3BIN7.Items.AddRange(new object[] {
  1303. "0,",
  1304. "1.编带",
  1305. "11.料盒1-1",
  1306. "12.料盒1-2",
  1307. "13.料盒1-3",
  1308. "14.料盒1-4",
  1309. "21.料盒2-1",
  1310. "22.料盒2-2",
  1311. "23.料盒2-3",
  1312. "24.料盒2-4",
  1313. "31.料盒3-1",
  1314. "32.料盒3-2",
  1315. "33.料盒3-3",
  1316. "34.料盒3-4",
  1317. "41.料盒4-1",
  1318. "42.料盒4-2",
  1319. "43.料盒4-3",
  1320. "44.料盒4-4",
  1321. "51.料盒5-1",
  1322. "52.料盒5-2",
  1323. "53.料盒5-3",
  1324. "54.料盒5-4"});
  1325. this.cob测试3BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1326. this.cob测试3BIN7.Location = new System.Drawing.Point(704, 295);
  1327. this.cob测试3BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1328. this.cob测试3BIN7.MaxDropDownItems = 20;
  1329. this.cob测试3BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  1330. this.cob测试3BIN7.Name = "cob测试3BIN7";
  1331. this.cob测试3BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1332. this.cob测试3BIN7.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1333. this.cob测试3BIN7.ScrollBarHandleWidth = 20;
  1334. this.cob测试3BIN7.ScrollBarWidth = 20;
  1335. this.cob测试3BIN7.Size = new System.Drawing.Size(127, 23);
  1336. this.cob测试3BIN7.SymbolSize = 24;
  1337. this.cob测试3BIN7.TabIndex = 209;
  1338. this.cob测试3BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1339. this.cob测试3BIN7.UseItemNumberPreffix = true;
  1340. this.cob测试3BIN7.Watermark = "";
  1341. this.cob测试3BIN7.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1342. //
  1343. // cob测试2BIN7
  1344. //
  1345. this.cob测试2BIN7.DataSource = null;
  1346. this.cob测试2BIN7.DisabilityTriggerNode = null;
  1347. this.cob测试2BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1348. this.cob测试2BIN7.FillColor = System.Drawing.Color.White;
  1349. this.cob测试2BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1350. this.cob测试2BIN7.InvisibilityTriggerNode = null;
  1351. this.cob测试2BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1352. this.cob测试2BIN7.Items.AddRange(new object[] {
  1353. "0,",
  1354. "1.编带",
  1355. "11.料盒1-1",
  1356. "12.料盒1-2",
  1357. "13.料盒1-3",
  1358. "14.料盒1-4",
  1359. "21.料盒2-1",
  1360. "22.料盒2-2",
  1361. "23.料盒2-3",
  1362. "24.料盒2-4",
  1363. "31.料盒3-1",
  1364. "32.料盒3-2",
  1365. "33.料盒3-3",
  1366. "34.料盒3-4",
  1367. "41.料盒4-1",
  1368. "42.料盒4-2",
  1369. "43.料盒4-3",
  1370. "44.料盒4-4",
  1371. "51.料盒5-1",
  1372. "52.料盒5-2",
  1373. "53.料盒5-3",
  1374. "54.料盒5-4"});
  1375. this.cob测试2BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1376. this.cob测试2BIN7.Location = new System.Drawing.Point(569, 295);
  1377. this.cob测试2BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1378. this.cob测试2BIN7.MaxDropDownItems = 20;
  1379. this.cob测试2BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  1380. this.cob测试2BIN7.Name = "cob测试2BIN7";
  1381. this.cob测试2BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1382. this.cob测试2BIN7.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1383. this.cob测试2BIN7.ScrollBarHandleWidth = 20;
  1384. this.cob测试2BIN7.ScrollBarWidth = 20;
  1385. this.cob测试2BIN7.Size = new System.Drawing.Size(127, 23);
  1386. this.cob测试2BIN7.SymbolSize = 24;
  1387. this.cob测试2BIN7.TabIndex = 208;
  1388. this.cob测试2BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1389. this.cob测试2BIN7.UseItemNumberPreffix = true;
  1390. this.cob测试2BIN7.Watermark = "";
  1391. this.cob测试2BIN7.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1392. //
  1393. // cob测试1BIN7
  1394. //
  1395. this.cob测试1BIN7.DataSource = null;
  1396. this.cob测试1BIN7.DisabilityTriggerNode = null;
  1397. this.cob测试1BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1398. this.cob测试1BIN7.FillColor = System.Drawing.Color.White;
  1399. this.cob测试1BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1400. this.cob测试1BIN7.InvisibilityTriggerNode = null;
  1401. this.cob测试1BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1402. this.cob测试1BIN7.Items.AddRange(new object[] {
  1403. "0,",
  1404. "1.编带",
  1405. "11.料盒1-1",
  1406. "12.料盒1-2",
  1407. "13.料盒1-3",
  1408. "14.料盒1-4",
  1409. "21.料盒2-1",
  1410. "22.料盒2-2",
  1411. "23.料盒2-3",
  1412. "24.料盒2-4",
  1413. "31.料盒3-1",
  1414. "32.料盒3-2",
  1415. "33.料盒3-3",
  1416. "34.料盒3-4",
  1417. "41.料盒4-1",
  1418. "42.料盒4-2",
  1419. "43.料盒4-3",
  1420. "44.料盒4-4",
  1421. "51.料盒5-1",
  1422. "52.料盒5-2",
  1423. "53.料盒5-3",
  1424. "54.料盒5-4"});
  1425. this.cob测试1BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1426. this.cob测试1BIN7.Location = new System.Drawing.Point(432, 295);
  1427. this.cob测试1BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1428. this.cob测试1BIN7.MaxDropDownItems = 20;
  1429. this.cob测试1BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  1430. this.cob测试1BIN7.Name = "cob测试1BIN7";
  1431. this.cob测试1BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1432. this.cob测试1BIN7.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1433. this.cob测试1BIN7.ScrollBarHandleWidth = 20;
  1434. this.cob测试1BIN7.ScrollBarWidth = 20;
  1435. this.cob测试1BIN7.Size = new System.Drawing.Size(127, 23);
  1436. this.cob测试1BIN7.SymbolSize = 24;
  1437. this.cob测试1BIN7.TabIndex = 207;
  1438. this.cob测试1BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1439. this.cob测试1BIN7.UseItemNumberPreffix = true;
  1440. this.cob测试1BIN7.Watermark = "";
  1441. this.cob测试1BIN7.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  1442. //
  1443. // cob测试4BIN6
  1444. //
  1445. this.cob测试4BIN6.DataSource = null;
  1446. this.cob测试4BIN6.DisabilityTriggerNode = null;
  1447. this.cob测试4BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1448. this.cob测试4BIN6.FillColor = System.Drawing.Color.White;
  1449. this.cob测试4BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1450. this.cob测试4BIN6.InvisibilityTriggerNode = null;
  1451. this.cob测试4BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1452. this.cob测试4BIN6.Items.AddRange(new object[] {
  1453. "0,",
  1454. "1.编带",
  1455. "11.料盒1-1",
  1456. "12.料盒1-2",
  1457. "13.料盒1-3",
  1458. "14.料盒1-4",
  1459. "21.料盒2-1",
  1460. "22.料盒2-2",
  1461. "23.料盒2-3",
  1462. "24.料盒2-4",
  1463. "31.料盒3-1",
  1464. "32.料盒3-2",
  1465. "33.料盒3-3",
  1466. "34.料盒3-4",
  1467. "41.料盒4-1",
  1468. "42.料盒4-2",
  1469. "43.料盒4-3",
  1470. "44.料盒4-4",
  1471. "51.料盒5-1",
  1472. "52.料盒5-2",
  1473. "53.料盒5-3",
  1474. "54.料盒5-4"});
  1475. this.cob测试4BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1476. this.cob测试4BIN6.Location = new System.Drawing.Point(839, 262);
  1477. this.cob测试4BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1478. this.cob测试4BIN6.MaxDropDownItems = 20;
  1479. this.cob测试4BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  1480. this.cob测试4BIN6.Name = "cob测试4BIN6";
  1481. this.cob测试4BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1482. this.cob测试4BIN6.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1483. this.cob测试4BIN6.ScrollBarHandleWidth = 20;
  1484. this.cob测试4BIN6.ScrollBarWidth = 20;
  1485. this.cob测试4BIN6.Size = new System.Drawing.Size(127, 23);
  1486. this.cob测试4BIN6.SymbolSize = 24;
  1487. this.cob测试4BIN6.TabIndex = 205;
  1488. this.cob测试4BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1489. this.cob测试4BIN6.UseItemNumberPreffix = true;
  1490. this.cob测试4BIN6.Watermark = "";
  1491. this.cob测试4BIN6.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1492. //
  1493. // cob测试3BIN6
  1494. //
  1495. this.cob测试3BIN6.DataSource = null;
  1496. this.cob测试3BIN6.DisabilityTriggerNode = null;
  1497. this.cob测试3BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1498. this.cob测试3BIN6.FillColor = System.Drawing.Color.White;
  1499. this.cob测试3BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1500. this.cob测试3BIN6.InvisibilityTriggerNode = null;
  1501. this.cob测试3BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1502. this.cob测试3BIN6.Items.AddRange(new object[] {
  1503. "0,",
  1504. "1.编带",
  1505. "11.料盒1-1",
  1506. "12.料盒1-2",
  1507. "13.料盒1-3",
  1508. "14.料盒1-4",
  1509. "21.料盒2-1",
  1510. "22.料盒2-2",
  1511. "23.料盒2-3",
  1512. "24.料盒2-4",
  1513. "31.料盒3-1",
  1514. "32.料盒3-2",
  1515. "33.料盒3-3",
  1516. "34.料盒3-4",
  1517. "41.料盒4-1",
  1518. "42.料盒4-2",
  1519. "43.料盒4-3",
  1520. "44.料盒4-4",
  1521. "51.料盒5-1",
  1522. "52.料盒5-2",
  1523. "53.料盒5-3",
  1524. "54.料盒5-4"});
  1525. this.cob测试3BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1526. this.cob测试3BIN6.Location = new System.Drawing.Point(704, 262);
  1527. this.cob测试3BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1528. this.cob测试3BIN6.MaxDropDownItems = 20;
  1529. this.cob测试3BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  1530. this.cob测试3BIN6.Name = "cob测试3BIN6";
  1531. this.cob测试3BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1532. this.cob测试3BIN6.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1533. this.cob测试3BIN6.ScrollBarHandleWidth = 20;
  1534. this.cob测试3BIN6.ScrollBarWidth = 20;
  1535. this.cob测试3BIN6.Size = new System.Drawing.Size(127, 23);
  1536. this.cob测试3BIN6.SymbolSize = 24;
  1537. this.cob测试3BIN6.TabIndex = 204;
  1538. this.cob测试3BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1539. this.cob测试3BIN6.UseItemNumberPreffix = true;
  1540. this.cob测试3BIN6.Watermark = "";
  1541. this.cob测试3BIN6.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1542. //
  1543. // cob测试2BIN6
  1544. //
  1545. this.cob测试2BIN6.DataSource = null;
  1546. this.cob测试2BIN6.DisabilityTriggerNode = null;
  1547. this.cob测试2BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1548. this.cob测试2BIN6.FillColor = System.Drawing.Color.White;
  1549. this.cob测试2BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1550. this.cob测试2BIN6.InvisibilityTriggerNode = null;
  1551. this.cob测试2BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1552. this.cob测试2BIN6.Items.AddRange(new object[] {
  1553. "0,",
  1554. "1.编带",
  1555. "11.料盒1-1",
  1556. "12.料盒1-2",
  1557. "13.料盒1-3",
  1558. "14.料盒1-4",
  1559. "21.料盒2-1",
  1560. "22.料盒2-2",
  1561. "23.料盒2-3",
  1562. "24.料盒2-4",
  1563. "31.料盒3-1",
  1564. "32.料盒3-2",
  1565. "33.料盒3-3",
  1566. "34.料盒3-4",
  1567. "41.料盒4-1",
  1568. "42.料盒4-2",
  1569. "43.料盒4-3",
  1570. "44.料盒4-4",
  1571. "51.料盒5-1",
  1572. "52.料盒5-2",
  1573. "53.料盒5-3",
  1574. "54.料盒5-4"});
  1575. this.cob测试2BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1576. this.cob测试2BIN6.Location = new System.Drawing.Point(569, 262);
  1577. this.cob测试2BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1578. this.cob测试2BIN6.MaxDropDownItems = 20;
  1579. this.cob测试2BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  1580. this.cob测试2BIN6.Name = "cob测试2BIN6";
  1581. this.cob测试2BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1582. this.cob测试2BIN6.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1583. this.cob测试2BIN6.ScrollBarHandleWidth = 20;
  1584. this.cob测试2BIN6.ScrollBarWidth = 20;
  1585. this.cob测试2BIN6.Size = new System.Drawing.Size(127, 23);
  1586. this.cob测试2BIN6.SymbolSize = 24;
  1587. this.cob测试2BIN6.TabIndex = 203;
  1588. this.cob测试2BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1589. this.cob测试2BIN6.UseItemNumberPreffix = true;
  1590. this.cob测试2BIN6.Watermark = "";
  1591. this.cob测试2BIN6.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1592. //
  1593. // cob测试1BIN6
  1594. //
  1595. this.cob测试1BIN6.DataSource = null;
  1596. this.cob测试1BIN6.DisabilityTriggerNode = null;
  1597. this.cob测试1BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1598. this.cob测试1BIN6.FillColor = System.Drawing.Color.White;
  1599. this.cob测试1BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1600. this.cob测试1BIN6.InvisibilityTriggerNode = null;
  1601. this.cob测试1BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1602. this.cob测试1BIN6.Items.AddRange(new object[] {
  1603. "0,",
  1604. "1.编带",
  1605. "11.料盒1-1",
  1606. "12.料盒1-2",
  1607. "13.料盒1-3",
  1608. "14.料盒1-4",
  1609. "21.料盒2-1",
  1610. "22.料盒2-2",
  1611. "23.料盒2-3",
  1612. "24.料盒2-4",
  1613. "31.料盒3-1",
  1614. "32.料盒3-2",
  1615. "33.料盒3-3",
  1616. "34.料盒3-4",
  1617. "41.料盒4-1",
  1618. "42.料盒4-2",
  1619. "43.料盒4-3",
  1620. "44.料盒4-4",
  1621. "51.料盒5-1",
  1622. "52.料盒5-2",
  1623. "53.料盒5-3",
  1624. "54.料盒5-4"});
  1625. this.cob测试1BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1626. this.cob测试1BIN6.Location = new System.Drawing.Point(432, 262);
  1627. this.cob测试1BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1628. this.cob测试1BIN6.MaxDropDownItems = 20;
  1629. this.cob测试1BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  1630. this.cob测试1BIN6.Name = "cob测试1BIN6";
  1631. this.cob测试1BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1632. this.cob测试1BIN6.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1633. this.cob测试1BIN6.ScrollBarHandleWidth = 20;
  1634. this.cob测试1BIN6.ScrollBarWidth = 20;
  1635. this.cob测试1BIN6.Size = new System.Drawing.Size(127, 23);
  1636. this.cob测试1BIN6.SymbolSize = 24;
  1637. this.cob测试1BIN6.TabIndex = 202;
  1638. this.cob测试1BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1639. this.cob测试1BIN6.UseItemNumberPreffix = true;
  1640. this.cob测试1BIN6.Watermark = "";
  1641. this.cob测试1BIN6.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  1642. //
  1643. // cob测试4BIN5
  1644. //
  1645. this.cob测试4BIN5.DataSource = null;
  1646. this.cob测试4BIN5.DisabilityTriggerNode = null;
  1647. this.cob测试4BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1648. this.cob测试4BIN5.FillColor = System.Drawing.Color.White;
  1649. this.cob测试4BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1650. this.cob测试4BIN5.InvisibilityTriggerNode = null;
  1651. this.cob测试4BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1652. this.cob测试4BIN5.Items.AddRange(new object[] {
  1653. "0,",
  1654. "1.编带",
  1655. "11.料盒1-1",
  1656. "12.料盒1-2",
  1657. "13.料盒1-3",
  1658. "14.料盒1-4",
  1659. "21.料盒2-1",
  1660. "22.料盒2-2",
  1661. "23.料盒2-3",
  1662. "24.料盒2-4",
  1663. "31.料盒3-1",
  1664. "32.料盒3-2",
  1665. "33.料盒3-3",
  1666. "34.料盒3-4",
  1667. "41.料盒4-1",
  1668. "42.料盒4-2",
  1669. "43.料盒4-3",
  1670. "44.料盒4-4",
  1671. "51.料盒5-1",
  1672. "52.料盒5-2",
  1673. "53.料盒5-3",
  1674. "54.料盒5-4"});
  1675. this.cob测试4BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1676. this.cob测试4BIN5.Location = new System.Drawing.Point(839, 229);
  1677. this.cob测试4BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1678. this.cob测试4BIN5.MaxDropDownItems = 20;
  1679. this.cob测试4BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  1680. this.cob测试4BIN5.Name = "cob测试4BIN5";
  1681. this.cob测试4BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1682. this.cob测试4BIN5.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1683. this.cob测试4BIN5.ScrollBarHandleWidth = 20;
  1684. this.cob测试4BIN5.ScrollBarWidth = 20;
  1685. this.cob测试4BIN5.Size = new System.Drawing.Size(127, 23);
  1686. this.cob测试4BIN5.SymbolSize = 24;
  1687. this.cob测试4BIN5.TabIndex = 200;
  1688. this.cob测试4BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1689. this.cob测试4BIN5.UseItemNumberPreffix = true;
  1690. this.cob测试4BIN5.Watermark = "";
  1691. this.cob测试4BIN5.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1692. //
  1693. // cob测试3BIN5
  1694. //
  1695. this.cob测试3BIN5.DataSource = null;
  1696. this.cob测试3BIN5.DisabilityTriggerNode = null;
  1697. this.cob测试3BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1698. this.cob测试3BIN5.FillColor = System.Drawing.Color.White;
  1699. this.cob测试3BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1700. this.cob测试3BIN5.InvisibilityTriggerNode = null;
  1701. this.cob测试3BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1702. this.cob测试3BIN5.Items.AddRange(new object[] {
  1703. "0,",
  1704. "1.编带",
  1705. "11.料盒1-1",
  1706. "12.料盒1-2",
  1707. "13.料盒1-3",
  1708. "14.料盒1-4",
  1709. "21.料盒2-1",
  1710. "22.料盒2-2",
  1711. "23.料盒2-3",
  1712. "24.料盒2-4",
  1713. "31.料盒3-1",
  1714. "32.料盒3-2",
  1715. "33.料盒3-3",
  1716. "34.料盒3-4",
  1717. "41.料盒4-1",
  1718. "42.料盒4-2",
  1719. "43.料盒4-3",
  1720. "44.料盒4-4",
  1721. "51.料盒5-1",
  1722. "52.料盒5-2",
  1723. "53.料盒5-3",
  1724. "54.料盒5-4"});
  1725. this.cob测试3BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1726. this.cob测试3BIN5.Location = new System.Drawing.Point(704, 229);
  1727. this.cob测试3BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1728. this.cob测试3BIN5.MaxDropDownItems = 20;
  1729. this.cob测试3BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  1730. this.cob测试3BIN5.Name = "cob测试3BIN5";
  1731. this.cob测试3BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1732. this.cob测试3BIN5.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1733. this.cob测试3BIN5.ScrollBarHandleWidth = 20;
  1734. this.cob测试3BIN5.ScrollBarWidth = 20;
  1735. this.cob测试3BIN5.Size = new System.Drawing.Size(127, 23);
  1736. this.cob测试3BIN5.SymbolSize = 24;
  1737. this.cob测试3BIN5.TabIndex = 199;
  1738. this.cob测试3BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1739. this.cob测试3BIN5.UseItemNumberPreffix = true;
  1740. this.cob测试3BIN5.Watermark = "";
  1741. this.cob测试3BIN5.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1742. //
  1743. // cob测试2BIN5
  1744. //
  1745. this.cob测试2BIN5.DataSource = null;
  1746. this.cob测试2BIN5.DisabilityTriggerNode = null;
  1747. this.cob测试2BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1748. this.cob测试2BIN5.FillColor = System.Drawing.Color.White;
  1749. this.cob测试2BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1750. this.cob测试2BIN5.InvisibilityTriggerNode = null;
  1751. this.cob测试2BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1752. this.cob测试2BIN5.Items.AddRange(new object[] {
  1753. "0,",
  1754. "1.编带",
  1755. "11.料盒1-1",
  1756. "12.料盒1-2",
  1757. "13.料盒1-3",
  1758. "14.料盒1-4",
  1759. "21.料盒2-1",
  1760. "22.料盒2-2",
  1761. "23.料盒2-3",
  1762. "24.料盒2-4",
  1763. "31.料盒3-1",
  1764. "32.料盒3-2",
  1765. "33.料盒3-3",
  1766. "34.料盒3-4",
  1767. "41.料盒4-1",
  1768. "42.料盒4-2",
  1769. "43.料盒4-3",
  1770. "44.料盒4-4",
  1771. "51.料盒5-1",
  1772. "52.料盒5-2",
  1773. "53.料盒5-3",
  1774. "54.料盒5-4"});
  1775. this.cob测试2BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1776. this.cob测试2BIN5.Location = new System.Drawing.Point(569, 229);
  1777. this.cob测试2BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1778. this.cob测试2BIN5.MaxDropDownItems = 20;
  1779. this.cob测试2BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  1780. this.cob测试2BIN5.Name = "cob测试2BIN5";
  1781. this.cob测试2BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1782. this.cob测试2BIN5.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1783. this.cob测试2BIN5.ScrollBarHandleWidth = 20;
  1784. this.cob测试2BIN5.ScrollBarWidth = 20;
  1785. this.cob测试2BIN5.Size = new System.Drawing.Size(127, 23);
  1786. this.cob测试2BIN5.SymbolSize = 24;
  1787. this.cob测试2BIN5.TabIndex = 198;
  1788. this.cob测试2BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1789. this.cob测试2BIN5.UseItemNumberPreffix = true;
  1790. this.cob测试2BIN5.Watermark = "";
  1791. this.cob测试2BIN5.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1792. //
  1793. // cob测试1BIN5
  1794. //
  1795. this.cob测试1BIN5.DataSource = null;
  1796. this.cob测试1BIN5.DisabilityTriggerNode = null;
  1797. this.cob测试1BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1798. this.cob测试1BIN5.FillColor = System.Drawing.Color.White;
  1799. this.cob测试1BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1800. this.cob测试1BIN5.InvisibilityTriggerNode = null;
  1801. this.cob测试1BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1802. this.cob测试1BIN5.Items.AddRange(new object[] {
  1803. "0,",
  1804. "1.编带",
  1805. "11.料盒1-1",
  1806. "12.料盒1-2",
  1807. "13.料盒1-3",
  1808. "14.料盒1-4",
  1809. "21.料盒2-1",
  1810. "22.料盒2-2",
  1811. "23.料盒2-3",
  1812. "24.料盒2-4",
  1813. "31.料盒3-1",
  1814. "32.料盒3-2",
  1815. "33.料盒3-3",
  1816. "34.料盒3-4",
  1817. "41.料盒4-1",
  1818. "42.料盒4-2",
  1819. "43.料盒4-3",
  1820. "44.料盒4-4",
  1821. "51.料盒5-1",
  1822. "52.料盒5-2",
  1823. "53.料盒5-3",
  1824. "54.料盒5-4"});
  1825. this.cob测试1BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1826. this.cob测试1BIN5.Location = new System.Drawing.Point(432, 229);
  1827. this.cob测试1BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1828. this.cob测试1BIN5.MaxDropDownItems = 20;
  1829. this.cob测试1BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  1830. this.cob测试1BIN5.Name = "cob测试1BIN5";
  1831. this.cob测试1BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1832. this.cob测试1BIN5.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1833. this.cob测试1BIN5.ScrollBarHandleWidth = 20;
  1834. this.cob测试1BIN5.ScrollBarWidth = 20;
  1835. this.cob测试1BIN5.Size = new System.Drawing.Size(127, 23);
  1836. this.cob测试1BIN5.SymbolSize = 24;
  1837. this.cob测试1BIN5.TabIndex = 197;
  1838. this.cob测试1BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1839. this.cob测试1BIN5.UseItemNumberPreffix = true;
  1840. this.cob测试1BIN5.Watermark = "";
  1841. this.cob测试1BIN5.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  1842. //
  1843. // cob测试4BIN4
  1844. //
  1845. this.cob测试4BIN4.DataSource = null;
  1846. this.cob测试4BIN4.DisabilityTriggerNode = null;
  1847. this.cob测试4BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1848. this.cob测试4BIN4.FillColor = System.Drawing.Color.White;
  1849. this.cob测试4BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1850. this.cob测试4BIN4.InvisibilityTriggerNode = null;
  1851. this.cob测试4BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1852. this.cob测试4BIN4.Items.AddRange(new object[] {
  1853. "0,",
  1854. "1.编带",
  1855. "11.料盒1-1",
  1856. "12.料盒1-2",
  1857. "13.料盒1-3",
  1858. "14.料盒1-4",
  1859. "21.料盒2-1",
  1860. "22.料盒2-2",
  1861. "23.料盒2-3",
  1862. "24.料盒2-4",
  1863. "31.料盒3-1",
  1864. "32.料盒3-2",
  1865. "33.料盒3-3",
  1866. "34.料盒3-4",
  1867. "41.料盒4-1",
  1868. "42.料盒4-2",
  1869. "43.料盒4-3",
  1870. "44.料盒4-4",
  1871. "51.料盒5-1",
  1872. "52.料盒5-2",
  1873. "53.料盒5-3",
  1874. "54.料盒5-4"});
  1875. this.cob测试4BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1876. this.cob测试4BIN4.Location = new System.Drawing.Point(839, 196);
  1877. this.cob测试4BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1878. this.cob测试4BIN4.MaxDropDownItems = 20;
  1879. this.cob测试4BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  1880. this.cob测试4BIN4.Name = "cob测试4BIN4";
  1881. this.cob测试4BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1882. this.cob测试4BIN4.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1883. this.cob测试4BIN4.ScrollBarHandleWidth = 20;
  1884. this.cob测试4BIN4.ScrollBarWidth = 20;
  1885. this.cob测试4BIN4.Size = new System.Drawing.Size(127, 23);
  1886. this.cob测试4BIN4.SymbolSize = 24;
  1887. this.cob测试4BIN4.TabIndex = 195;
  1888. this.cob测试4BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1889. this.cob测试4BIN4.UseItemNumberPreffix = true;
  1890. this.cob测试4BIN4.Watermark = "";
  1891. this.cob测试4BIN4.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1892. //
  1893. // cob测试3BIN4
  1894. //
  1895. this.cob测试3BIN4.DataSource = null;
  1896. this.cob测试3BIN4.DisabilityTriggerNode = null;
  1897. this.cob测试3BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1898. this.cob测试3BIN4.FillColor = System.Drawing.Color.White;
  1899. this.cob测试3BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1900. this.cob测试3BIN4.InvisibilityTriggerNode = null;
  1901. this.cob测试3BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1902. this.cob测试3BIN4.Items.AddRange(new object[] {
  1903. "0,",
  1904. "1.编带",
  1905. "11.料盒1-1",
  1906. "12.料盒1-2",
  1907. "13.料盒1-3",
  1908. "14.料盒1-4",
  1909. "21.料盒2-1",
  1910. "22.料盒2-2",
  1911. "23.料盒2-3",
  1912. "24.料盒2-4",
  1913. "31.料盒3-1",
  1914. "32.料盒3-2",
  1915. "33.料盒3-3",
  1916. "34.料盒3-4",
  1917. "41.料盒4-1",
  1918. "42.料盒4-2",
  1919. "43.料盒4-3",
  1920. "44.料盒4-4",
  1921. "51.料盒5-1",
  1922. "52.料盒5-2",
  1923. "53.料盒5-3",
  1924. "54.料盒5-4"});
  1925. this.cob测试3BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1926. this.cob测试3BIN4.Location = new System.Drawing.Point(704, 196);
  1927. this.cob测试3BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1928. this.cob测试3BIN4.MaxDropDownItems = 20;
  1929. this.cob测试3BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  1930. this.cob测试3BIN4.Name = "cob测试3BIN4";
  1931. this.cob测试3BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1932. this.cob测试3BIN4.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1933. this.cob测试3BIN4.ScrollBarHandleWidth = 20;
  1934. this.cob测试3BIN4.ScrollBarWidth = 20;
  1935. this.cob测试3BIN4.Size = new System.Drawing.Size(127, 23);
  1936. this.cob测试3BIN4.SymbolSize = 24;
  1937. this.cob测试3BIN4.TabIndex = 194;
  1938. this.cob测试3BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1939. this.cob测试3BIN4.UseItemNumberPreffix = true;
  1940. this.cob测试3BIN4.Watermark = "";
  1941. this.cob测试3BIN4.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1942. //
  1943. // cob测试2BIN4
  1944. //
  1945. this.cob测试2BIN4.DataSource = null;
  1946. this.cob测试2BIN4.DisabilityTriggerNode = null;
  1947. this.cob测试2BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1948. this.cob测试2BIN4.FillColor = System.Drawing.Color.White;
  1949. this.cob测试2BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1950. this.cob测试2BIN4.InvisibilityTriggerNode = null;
  1951. this.cob测试2BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  1952. this.cob测试2BIN4.Items.AddRange(new object[] {
  1953. "0,",
  1954. "1.编带",
  1955. "11.料盒1-1",
  1956. "12.料盒1-2",
  1957. "13.料盒1-3",
  1958. "14.料盒1-4",
  1959. "21.料盒2-1",
  1960. "22.料盒2-2",
  1961. "23.料盒2-3",
  1962. "24.料盒2-4",
  1963. "31.料盒3-1",
  1964. "32.料盒3-2",
  1965. "33.料盒3-3",
  1966. "34.料盒3-4",
  1967. "41.料盒4-1",
  1968. "42.料盒4-2",
  1969. "43.料盒4-3",
  1970. "44.料盒4-4",
  1971. "51.料盒5-1",
  1972. "52.料盒5-2",
  1973. "53.料盒5-3",
  1974. "54.料盒5-4"});
  1975. this.cob测试2BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  1976. this.cob测试2BIN4.Location = new System.Drawing.Point(569, 196);
  1977. this.cob测试2BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1978. this.cob测试2BIN4.MaxDropDownItems = 20;
  1979. this.cob测试2BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  1980. this.cob测试2BIN4.Name = "cob测试2BIN4";
  1981. this.cob测试2BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  1982. this.cob测试2BIN4.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1983. this.cob测试2BIN4.ScrollBarHandleWidth = 20;
  1984. this.cob测试2BIN4.ScrollBarWidth = 20;
  1985. this.cob测试2BIN4.Size = new System.Drawing.Size(127, 23);
  1986. this.cob测试2BIN4.SymbolSize = 24;
  1987. this.cob测试2BIN4.TabIndex = 193;
  1988. this.cob测试2BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  1989. this.cob测试2BIN4.UseItemNumberPreffix = true;
  1990. this.cob测试2BIN4.Watermark = "";
  1991. this.cob测试2BIN4.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  1992. //
  1993. // cob测试1BIN4
  1994. //
  1995. this.cob测试1BIN4.DataSource = null;
  1996. this.cob测试1BIN4.DisabilityTriggerNode = null;
  1997. this.cob测试1BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  1998. this.cob测试1BIN4.FillColor = System.Drawing.Color.White;
  1999. this.cob测试1BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2000. this.cob测试1BIN4.InvisibilityTriggerNode = null;
  2001. this.cob测试1BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2002. this.cob测试1BIN4.Items.AddRange(new object[] {
  2003. "0,",
  2004. "1.编带",
  2005. "11.料盒1-1",
  2006. "12.料盒1-2",
  2007. "13.料盒1-3",
  2008. "14.料盒1-4",
  2009. "21.料盒2-1",
  2010. "22.料盒2-2",
  2011. "23.料盒2-3",
  2012. "24.料盒2-4",
  2013. "31.料盒3-1",
  2014. "32.料盒3-2",
  2015. "33.料盒3-3",
  2016. "34.料盒3-4",
  2017. "41.料盒4-1",
  2018. "42.料盒4-2",
  2019. "43.料盒4-3",
  2020. "44.料盒4-4",
  2021. "51.料盒5-1",
  2022. "52.料盒5-2",
  2023. "53.料盒5-3",
  2024. "54.料盒5-4"});
  2025. this.cob测试1BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2026. this.cob测试1BIN4.Location = new System.Drawing.Point(432, 196);
  2027. this.cob测试1BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2028. this.cob测试1BIN4.MaxDropDownItems = 20;
  2029. this.cob测试1BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  2030. this.cob测试1BIN4.Name = "cob测试1BIN4";
  2031. this.cob测试1BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2032. this.cob测试1BIN4.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  2033. this.cob测试1BIN4.ScrollBarHandleWidth = 20;
  2034. this.cob测试1BIN4.ScrollBarWidth = 20;
  2035. this.cob测试1BIN4.Size = new System.Drawing.Size(127, 23);
  2036. this.cob测试1BIN4.SymbolSize = 24;
  2037. this.cob测试1BIN4.TabIndex = 192;
  2038. this.cob测试1BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2039. this.cob测试1BIN4.UseItemNumberPreffix = true;
  2040. this.cob测试1BIN4.Watermark = "";
  2041. this.cob测试1BIN4.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  2042. //
  2043. // cob测试4BIN3
  2044. //
  2045. this.cob测试4BIN3.DataSource = null;
  2046. this.cob测试4BIN3.DisabilityTriggerNode = null;
  2047. this.cob测试4BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2048. this.cob测试4BIN3.FillColor = System.Drawing.Color.White;
  2049. this.cob测试4BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2050. this.cob测试4BIN3.InvisibilityTriggerNode = null;
  2051. this.cob测试4BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2052. this.cob测试4BIN3.Items.AddRange(new object[] {
  2053. "0,",
  2054. "1.编带",
  2055. "11.料盒1-1",
  2056. "12.料盒1-2",
  2057. "13.料盒1-3",
  2058. "14.料盒1-4",
  2059. "21.料盒2-1",
  2060. "22.料盒2-2",
  2061. "23.料盒2-3",
  2062. "24.料盒2-4",
  2063. "31.料盒3-1",
  2064. "32.料盒3-2",
  2065. "33.料盒3-3",
  2066. "34.料盒3-4",
  2067. "41.料盒4-1",
  2068. "42.料盒4-2",
  2069. "43.料盒4-3",
  2070. "44.料盒4-4",
  2071. "51.料盒5-1",
  2072. "52.料盒5-2",
  2073. "53.料盒5-3",
  2074. "54.料盒5-4"});
  2075. this.cob测试4BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2076. this.cob测试4BIN3.Location = new System.Drawing.Point(839, 163);
  2077. this.cob测试4BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2078. this.cob测试4BIN3.MaxDropDownItems = 20;
  2079. this.cob测试4BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  2080. this.cob测试4BIN3.Name = "cob测试4BIN3";
  2081. this.cob测试4BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2082. this.cob测试4BIN3.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2083. this.cob测试4BIN3.ScrollBarHandleWidth = 20;
  2084. this.cob测试4BIN3.ScrollBarWidth = 20;
  2085. this.cob测试4BIN3.Size = new System.Drawing.Size(127, 23);
  2086. this.cob测试4BIN3.SymbolSize = 24;
  2087. this.cob测试4BIN3.TabIndex = 190;
  2088. this.cob测试4BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2089. this.cob测试4BIN3.UseItemNumberPreffix = true;
  2090. this.cob测试4BIN3.Watermark = "";
  2091. this.cob测试4BIN3.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2092. //
  2093. // cob测试3BIN3
  2094. //
  2095. this.cob测试3BIN3.DataSource = null;
  2096. this.cob测试3BIN3.DisabilityTriggerNode = null;
  2097. this.cob测试3BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2098. this.cob测试3BIN3.FillColor = System.Drawing.Color.White;
  2099. this.cob测试3BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2100. this.cob测试3BIN3.InvisibilityTriggerNode = null;
  2101. this.cob测试3BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2102. this.cob测试3BIN3.Items.AddRange(new object[] {
  2103. "0,",
  2104. "1.编带",
  2105. "11.料盒1-1",
  2106. "12.料盒1-2",
  2107. "13.料盒1-3",
  2108. "14.料盒1-4",
  2109. "21.料盒2-1",
  2110. "22.料盒2-2",
  2111. "23.料盒2-3",
  2112. "24.料盒2-4",
  2113. "31.料盒3-1",
  2114. "32.料盒3-2",
  2115. "33.料盒3-3",
  2116. "34.料盒3-4",
  2117. "41.料盒4-1",
  2118. "42.料盒4-2",
  2119. "43.料盒4-3",
  2120. "44.料盒4-4",
  2121. "51.料盒5-1",
  2122. "52.料盒5-2",
  2123. "53.料盒5-3",
  2124. "54.料盒5-4"});
  2125. this.cob测试3BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2126. this.cob测试3BIN3.Location = new System.Drawing.Point(704, 163);
  2127. this.cob测试3BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2128. this.cob测试3BIN3.MaxDropDownItems = 20;
  2129. this.cob测试3BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  2130. this.cob测试3BIN3.Name = "cob测试3BIN3";
  2131. this.cob测试3BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2132. this.cob测试3BIN3.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2133. this.cob测试3BIN3.ScrollBarHandleWidth = 20;
  2134. this.cob测试3BIN3.ScrollBarWidth = 20;
  2135. this.cob测试3BIN3.Size = new System.Drawing.Size(127, 23);
  2136. this.cob测试3BIN3.SymbolSize = 24;
  2137. this.cob测试3BIN3.TabIndex = 189;
  2138. this.cob测试3BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2139. this.cob测试3BIN3.UseItemNumberPreffix = true;
  2140. this.cob测试3BIN3.Watermark = "";
  2141. this.cob测试3BIN3.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2142. //
  2143. // cob测试2BIN3
  2144. //
  2145. this.cob测试2BIN3.DataSource = null;
  2146. this.cob测试2BIN3.DisabilityTriggerNode = null;
  2147. this.cob测试2BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2148. this.cob测试2BIN3.FillColor = System.Drawing.Color.White;
  2149. this.cob测试2BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2150. this.cob测试2BIN3.InvisibilityTriggerNode = null;
  2151. this.cob测试2BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2152. this.cob测试2BIN3.Items.AddRange(new object[] {
  2153. "0,",
  2154. "1.编带",
  2155. "11.料盒1-1",
  2156. "12.料盒1-2",
  2157. "13.料盒1-3",
  2158. "14.料盒1-4",
  2159. "21.料盒2-1",
  2160. "22.料盒2-2",
  2161. "23.料盒2-3",
  2162. "24.料盒2-4",
  2163. "31.料盒3-1",
  2164. "32.料盒3-2",
  2165. "33.料盒3-3",
  2166. "34.料盒3-4",
  2167. "41.料盒4-1",
  2168. "42.料盒4-2",
  2169. "43.料盒4-3",
  2170. "44.料盒4-4",
  2171. "51.料盒5-1",
  2172. "52.料盒5-2",
  2173. "53.料盒5-3",
  2174. "54.料盒5-4"});
  2175. this.cob测试2BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2176. this.cob测试2BIN3.Location = new System.Drawing.Point(569, 163);
  2177. this.cob测试2BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2178. this.cob测试2BIN3.MaxDropDownItems = 20;
  2179. this.cob测试2BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  2180. this.cob测试2BIN3.Name = "cob测试2BIN3";
  2181. this.cob测试2BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2182. this.cob测试2BIN3.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2183. this.cob测试2BIN3.ScrollBarHandleWidth = 20;
  2184. this.cob测试2BIN3.ScrollBarWidth = 20;
  2185. this.cob测试2BIN3.Size = new System.Drawing.Size(127, 23);
  2186. this.cob测试2BIN3.SymbolSize = 24;
  2187. this.cob测试2BIN3.TabIndex = 188;
  2188. this.cob测试2BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2189. this.cob测试2BIN3.UseItemNumberPreffix = true;
  2190. this.cob测试2BIN3.Watermark = "";
  2191. this.cob测试2BIN3.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2192. //
  2193. // cob测试1BIN3
  2194. //
  2195. this.cob测试1BIN3.DataSource = null;
  2196. this.cob测试1BIN3.DisabilityTriggerNode = null;
  2197. this.cob测试1BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2198. this.cob测试1BIN3.FillColor = System.Drawing.Color.White;
  2199. this.cob测试1BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2200. this.cob测试1BIN3.InvisibilityTriggerNode = null;
  2201. this.cob测试1BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2202. this.cob测试1BIN3.Items.AddRange(new object[] {
  2203. "0,",
  2204. "1.编带",
  2205. "11.料盒1-1",
  2206. "12.料盒1-2",
  2207. "13.料盒1-3",
  2208. "14.料盒1-4",
  2209. "21.料盒2-1",
  2210. "22.料盒2-2",
  2211. "23.料盒2-3",
  2212. "24.料盒2-4",
  2213. "31.料盒3-1",
  2214. "32.料盒3-2",
  2215. "33.料盒3-3",
  2216. "34.料盒3-4",
  2217. "41.料盒4-1",
  2218. "42.料盒4-2",
  2219. "43.料盒4-3",
  2220. "44.料盒4-4",
  2221. "51.料盒5-1",
  2222. "52.料盒5-2",
  2223. "53.料盒5-3",
  2224. "54.料盒5-4"});
  2225. this.cob测试1BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2226. this.cob测试1BIN3.Location = new System.Drawing.Point(432, 163);
  2227. this.cob测试1BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2228. this.cob测试1BIN3.MaxDropDownItems = 20;
  2229. this.cob测试1BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  2230. this.cob测试1BIN3.Name = "cob测试1BIN3";
  2231. this.cob测试1BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2232. this.cob测试1BIN3.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2233. this.cob测试1BIN3.ScrollBarHandleWidth = 20;
  2234. this.cob测试1BIN3.ScrollBarWidth = 20;
  2235. this.cob测试1BIN3.Size = new System.Drawing.Size(127, 23);
  2236. this.cob测试1BIN3.SymbolSize = 24;
  2237. this.cob测试1BIN3.TabIndex = 187;
  2238. this.cob测试1BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2239. this.cob测试1BIN3.UseItemNumberPreffix = true;
  2240. this.cob测试1BIN3.Watermark = "";
  2241. this.cob测试1BIN3.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2242. //
  2243. // cob测试4BIN2
  2244. //
  2245. this.cob测试4BIN2.DataSource = null;
  2246. this.cob测试4BIN2.DisabilityTriggerNode = null;
  2247. this.cob测试4BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2248. this.cob测试4BIN2.FillColor = System.Drawing.Color.White;
  2249. this.cob测试4BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2250. this.cob测试4BIN2.InvisibilityTriggerNode = null;
  2251. this.cob测试4BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2252. this.cob测试4BIN2.Items.AddRange(new object[] {
  2253. "0,",
  2254. "1.编带",
  2255. "11.料盒1-1",
  2256. "12.料盒1-2",
  2257. "13.料盒1-3",
  2258. "14.料盒1-4",
  2259. "21.料盒2-1",
  2260. "22.料盒2-2",
  2261. "23.料盒2-3",
  2262. "24.料盒2-4",
  2263. "31.料盒3-1",
  2264. "32.料盒3-2",
  2265. "33.料盒3-3",
  2266. "34.料盒3-4",
  2267. "41.料盒4-1",
  2268. "42.料盒4-2",
  2269. "43.料盒4-3",
  2270. "44.料盒4-4",
  2271. "51.料盒5-1",
  2272. "52.料盒5-2",
  2273. "53.料盒5-3",
  2274. "54.料盒5-4"});
  2275. this.cob测试4BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2276. this.cob测试4BIN2.Location = new System.Drawing.Point(839, 130);
  2277. this.cob测试4BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2278. this.cob测试4BIN2.MaxDropDownItems = 20;
  2279. this.cob测试4BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  2280. this.cob测试4BIN2.Name = "cob测试4BIN2";
  2281. this.cob测试4BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2282. this.cob测试4BIN2.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2283. this.cob测试4BIN2.ScrollBarHandleWidth = 20;
  2284. this.cob测试4BIN2.ScrollBarWidth = 20;
  2285. this.cob测试4BIN2.Size = new System.Drawing.Size(127, 23);
  2286. this.cob测试4BIN2.SymbolSize = 24;
  2287. this.cob测试4BIN2.TabIndex = 185;
  2288. this.cob测试4BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2289. this.cob测试4BIN2.UseItemNumberPreffix = true;
  2290. this.cob测试4BIN2.Watermark = "";
  2291. this.cob测试4BIN2.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2292. //
  2293. // cob测试3BIN2
  2294. //
  2295. this.cob测试3BIN2.DataSource = null;
  2296. this.cob测试3BIN2.DisabilityTriggerNode = null;
  2297. this.cob测试3BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2298. this.cob测试3BIN2.FillColor = System.Drawing.Color.White;
  2299. this.cob测试3BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2300. this.cob测试3BIN2.InvisibilityTriggerNode = null;
  2301. this.cob测试3BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2302. this.cob测试3BIN2.Items.AddRange(new object[] {
  2303. "0,",
  2304. "1.编带",
  2305. "11.料盒1-1",
  2306. "12.料盒1-2",
  2307. "13.料盒1-3",
  2308. "14.料盒1-4",
  2309. "21.料盒2-1",
  2310. "22.料盒2-2",
  2311. "23.料盒2-3",
  2312. "24.料盒2-4",
  2313. "31.料盒3-1",
  2314. "32.料盒3-2",
  2315. "33.料盒3-3",
  2316. "34.料盒3-4",
  2317. "41.料盒4-1",
  2318. "42.料盒4-2",
  2319. "43.料盒4-3",
  2320. "44.料盒4-4",
  2321. "51.料盒5-1",
  2322. "52.料盒5-2",
  2323. "53.料盒5-3",
  2324. "54.料盒5-4"});
  2325. this.cob测试3BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2326. this.cob测试3BIN2.Location = new System.Drawing.Point(704, 130);
  2327. this.cob测试3BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2328. this.cob测试3BIN2.MaxDropDownItems = 20;
  2329. this.cob测试3BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  2330. this.cob测试3BIN2.Name = "cob测试3BIN2";
  2331. this.cob测试3BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2332. this.cob测试3BIN2.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2333. this.cob测试3BIN2.ScrollBarHandleWidth = 20;
  2334. this.cob测试3BIN2.ScrollBarWidth = 20;
  2335. this.cob测试3BIN2.Size = new System.Drawing.Size(127, 23);
  2336. this.cob测试3BIN2.SymbolSize = 24;
  2337. this.cob测试3BIN2.TabIndex = 184;
  2338. this.cob测试3BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2339. this.cob测试3BIN2.UseItemNumberPreffix = true;
  2340. this.cob测试3BIN2.Watermark = "";
  2341. this.cob测试3BIN2.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2342. //
  2343. // cob测试2BIN2
  2344. //
  2345. this.cob测试2BIN2.DataSource = null;
  2346. this.cob测试2BIN2.DisabilityTriggerNode = null;
  2347. this.cob测试2BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2348. this.cob测试2BIN2.FillColor = System.Drawing.Color.White;
  2349. this.cob测试2BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2350. this.cob测试2BIN2.InvisibilityTriggerNode = null;
  2351. this.cob测试2BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2352. this.cob测试2BIN2.Items.AddRange(new object[] {
  2353. "0,",
  2354. "1.编带",
  2355. "11.料盒1-1",
  2356. "12.料盒1-2",
  2357. "13.料盒1-3",
  2358. "14.料盒1-4",
  2359. "21.料盒2-1",
  2360. "22.料盒2-2",
  2361. "23.料盒2-3",
  2362. "24.料盒2-4",
  2363. "31.料盒3-1",
  2364. "32.料盒3-2",
  2365. "33.料盒3-3",
  2366. "34.料盒3-4",
  2367. "41.料盒4-1",
  2368. "42.料盒4-2",
  2369. "43.料盒4-3",
  2370. "44.料盒4-4",
  2371. "51.料盒5-1",
  2372. "52.料盒5-2",
  2373. "53.料盒5-3",
  2374. "54.料盒5-4"});
  2375. this.cob测试2BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2376. this.cob测试2BIN2.Location = new System.Drawing.Point(569, 130);
  2377. this.cob测试2BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2378. this.cob测试2BIN2.MaxDropDownItems = 20;
  2379. this.cob测试2BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  2380. this.cob测试2BIN2.Name = "cob测试2BIN2";
  2381. this.cob测试2BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2382. this.cob测试2BIN2.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2383. this.cob测试2BIN2.ScrollBarHandleWidth = 20;
  2384. this.cob测试2BIN2.ScrollBarWidth = 20;
  2385. this.cob测试2BIN2.Size = new System.Drawing.Size(127, 23);
  2386. this.cob测试2BIN2.SymbolSize = 24;
  2387. this.cob测试2BIN2.TabIndex = 183;
  2388. this.cob测试2BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2389. this.cob测试2BIN2.UseItemNumberPreffix = true;
  2390. this.cob测试2BIN2.Watermark = "";
  2391. this.cob测试2BIN2.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2392. //
  2393. // cob测试1BIN2
  2394. //
  2395. this.cob测试1BIN2.DataSource = null;
  2396. this.cob测试1BIN2.DisabilityTriggerNode = null;
  2397. this.cob测试1BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2398. this.cob测试1BIN2.FillColor = System.Drawing.Color.White;
  2399. this.cob测试1BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2400. this.cob测试1BIN2.InvisibilityTriggerNode = null;
  2401. this.cob测试1BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2402. this.cob测试1BIN2.Items.AddRange(new object[] {
  2403. "0,",
  2404. "1.编带",
  2405. "11.料盒1-1",
  2406. "12.料盒1-2",
  2407. "13.料盒1-3",
  2408. "14.料盒1-4",
  2409. "21.料盒2-1",
  2410. "22.料盒2-2",
  2411. "23.料盒2-3",
  2412. "24.料盒2-4",
  2413. "31.料盒3-1",
  2414. "32.料盒3-2",
  2415. "33.料盒3-3",
  2416. "34.料盒3-4",
  2417. "41.料盒4-1",
  2418. "42.料盒4-2",
  2419. "43.料盒4-3",
  2420. "44.料盒4-4",
  2421. "51.料盒5-1",
  2422. "52.料盒5-2",
  2423. "53.料盒5-3",
  2424. "54.料盒5-4"});
  2425. this.cob测试1BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2426. this.cob测试1BIN2.Location = new System.Drawing.Point(432, 130);
  2427. this.cob测试1BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2428. this.cob测试1BIN2.MaxDropDownItems = 20;
  2429. this.cob测试1BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  2430. this.cob测试1BIN2.Name = "cob测试1BIN2";
  2431. this.cob测试1BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2432. this.cob测试1BIN2.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2433. this.cob测试1BIN2.ScrollBarHandleWidth = 20;
  2434. this.cob测试1BIN2.ScrollBarWidth = 20;
  2435. this.cob测试1BIN2.Size = new System.Drawing.Size(127, 23);
  2436. this.cob测试1BIN2.SymbolSize = 24;
  2437. this.cob测试1BIN2.TabIndex = 182;
  2438. this.cob测试1BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2439. this.cob测试1BIN2.UseItemNumberPreffix = true;
  2440. this.cob测试1BIN2.Watermark = "";
  2441. this.cob测试1BIN2.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2442. //
  2443. // cob热测BIN1
  2444. //
  2445. this.cob热测BIN1.DataSource = null;
  2446. this.cob热测BIN1.DisabilityTriggerNode = null;
  2447. this.cob热测BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2448. this.cob热测BIN1.FillColor = System.Drawing.Color.White;
  2449. this.cob热测BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2450. this.cob热测BIN1.InvisibilityTriggerNode = null;
  2451. this.cob热测BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2452. this.cob热测BIN1.Items.AddRange(new object[] {
  2453. "0,",
  2454. "1.编带",
  2455. "31.料盒3-1",
  2456. "32.料盒3-2",
  2457. "33.料盒3-3",
  2458. "34.料盒3-4",
  2459. "41.料盒4-1",
  2460. "42.料盒4-2",
  2461. "43.料盒4-3",
  2462. "44.料盒4-4",
  2463. "51.料盒5-1",
  2464. "52.料盒5-2",
  2465. "53.料盒5-3",
  2466. "54.料盒5-4"});
  2467. this.cob热测BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2468. this.cob热测BIN1.Location = new System.Drawing.Point(974, 97);
  2469. this.cob热测BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2470. this.cob热测BIN1.MaxDropDownItems = 20;
  2471. this.cob热测BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2472. this.cob热测BIN1.Name = "cob热测BIN1";
  2473. this.cob热测BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2474. this.cob热测BIN1.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2475. this.cob热测BIN1.ScrollBarHandleWidth = 20;
  2476. this.cob热测BIN1.ScrollBarWidth = 20;
  2477. this.cob热测BIN1.Size = new System.Drawing.Size(127, 23);
  2478. this.cob热测BIN1.SymbolSize = 24;
  2479. this.cob热测BIN1.TabIndex = 181;
  2480. this.cob热测BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2481. this.cob热测BIN1.UseItemNumberPreffix = true;
  2482. this.cob热测BIN1.Watermark = "";
  2483. this.cob热测BIN1.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2484. //
  2485. // cob测试4BIN1
  2486. //
  2487. this.cob测试4BIN1.DataSource = null;
  2488. this.cob测试4BIN1.DisabilityTriggerNode = null;
  2489. this.cob测试4BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2490. this.cob测试4BIN1.FillColor = System.Drawing.Color.White;
  2491. this.cob测试4BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2492. this.cob测试4BIN1.InvisibilityTriggerNode = null;
  2493. this.cob测试4BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2494. this.cob测试4BIN1.Items.AddRange(new object[] {
  2495. "0,",
  2496. "1.编带",
  2497. "11.料盒1-1",
  2498. "12.料盒1-2",
  2499. "13.料盒1-3",
  2500. "14.料盒1-4",
  2501. "21.料盒2-1",
  2502. "22.料盒2-2",
  2503. "23.料盒2-3",
  2504. "24.料盒2-4",
  2505. "31.料盒3-1",
  2506. "32.料盒3-2",
  2507. "33.料盒3-3",
  2508. "34.料盒3-4",
  2509. "41.料盒4-1",
  2510. "42.料盒4-2",
  2511. "43.料盒4-3",
  2512. "44.料盒4-4",
  2513. "51.料盒5-1",
  2514. "52.料盒5-2",
  2515. "53.料盒5-3",
  2516. "54.料盒5-4"});
  2517. this.cob测试4BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2518. this.cob测试4BIN1.Location = new System.Drawing.Point(839, 97);
  2519. this.cob测试4BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2520. this.cob测试4BIN1.MaxDropDownItems = 20;
  2521. this.cob测试4BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2522. this.cob测试4BIN1.Name = "cob测试4BIN1";
  2523. this.cob测试4BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2524. this.cob测试4BIN1.ReadNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[1]", NodeType.UINT, null);
  2525. this.cob测试4BIN1.ScrollBarHandleWidth = 20;
  2526. this.cob测试4BIN1.ScrollBarWidth = 20;
  2527. this.cob测试4BIN1.Size = new System.Drawing.Size(127, 23);
  2528. this.cob测试4BIN1.SymbolSize = 24;
  2529. this.cob测试4BIN1.TabIndex = 180;
  2530. this.cob测试4BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2531. this.cob测试4BIN1.UseItemNumberPreffix = true;
  2532. this.cob测试4BIN1.Watermark = "";
  2533. this.cob测试4BIN1.WriteNode = new Node("Application.A07_TestStation_Auto.ar自定义结果去向[1]", NodeType.UINT, null);
  2534. //
  2535. // cob测试3BIN1
  2536. //
  2537. this.cob测试3BIN1.DataSource = null;
  2538. this.cob测试3BIN1.DisabilityTriggerNode = null;
  2539. this.cob测试3BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2540. this.cob测试3BIN1.FillColor = System.Drawing.Color.White;
  2541. this.cob测试3BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2542. this.cob测试3BIN1.InvisibilityTriggerNode = null;
  2543. this.cob测试3BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2544. this.cob测试3BIN1.Items.AddRange(new object[] {
  2545. "0,",
  2546. "1.编带",
  2547. "11.料盒1-1",
  2548. "12.料盒1-2",
  2549. "13.料盒1-3",
  2550. "14.料盒1-4",
  2551. "21.料盒2-1",
  2552. "22.料盒2-2",
  2553. "23.料盒2-3",
  2554. "24.料盒2-4",
  2555. "31.料盒3-1",
  2556. "32.料盒3-2",
  2557. "33.料盒3-3",
  2558. "34.料盒3-4",
  2559. "41.料盒4-1",
  2560. "42.料盒4-2",
  2561. "43.料盒4-3",
  2562. "44.料盒4-4",
  2563. "51.料盒5-1",
  2564. "52.料盒5-2",
  2565. "53.料盒5-3",
  2566. "54.料盒5-4"});
  2567. this.cob测试3BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2568. this.cob测试3BIN1.Location = new System.Drawing.Point(704, 97);
  2569. this.cob测试3BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2570. this.cob测试3BIN1.MaxDropDownItems = 20;
  2571. this.cob测试3BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2572. this.cob测试3BIN1.Name = "cob测试3BIN1";
  2573. this.cob测试3BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2574. this.cob测试3BIN1.ReadNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[1]", NodeType.UINT, null);
  2575. this.cob测试3BIN1.ScrollBarHandleWidth = 20;
  2576. this.cob测试3BIN1.ScrollBarWidth = 20;
  2577. this.cob测试3BIN1.Size = new System.Drawing.Size(127, 23);
  2578. this.cob测试3BIN1.SymbolSize = 24;
  2579. this.cob测试3BIN1.TabIndex = 179;
  2580. this.cob测试3BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2581. this.cob测试3BIN1.UseItemNumberPreffix = true;
  2582. this.cob测试3BIN1.Watermark = "";
  2583. this.cob测试3BIN1.WriteNode = new Node("Application.A06_TestStation_Auto.ar自定义结果去向[1]", NodeType.UINT, null);
  2584. //
  2585. // cob测试2BIN1
  2586. //
  2587. this.cob测试2BIN1.DataSource = null;
  2588. this.cob测试2BIN1.DisabilityTriggerNode = null;
  2589. this.cob测试2BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2590. this.cob测试2BIN1.FillColor = System.Drawing.Color.White;
  2591. this.cob测试2BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2592. this.cob测试2BIN1.InvisibilityTriggerNode = null;
  2593. this.cob测试2BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2594. this.cob测试2BIN1.Items.AddRange(new object[] {
  2595. "0,",
  2596. "1.编带",
  2597. "11.料盒1-1",
  2598. "12.料盒1-2",
  2599. "13.料盒1-3",
  2600. "14.料盒1-4",
  2601. "21.料盒2-1",
  2602. "22.料盒2-2",
  2603. "23.料盒2-3",
  2604. "24.料盒2-4",
  2605. "31.料盒3-1",
  2606. "32.料盒3-2",
  2607. "33.料盒3-3",
  2608. "34.料盒3-4",
  2609. "41.料盒4-1",
  2610. "42.料盒4-2",
  2611. "43.料盒4-3",
  2612. "44.料盒4-4",
  2613. "51.料盒5-1",
  2614. "52.料盒5-2",
  2615. "53.料盒5-3",
  2616. "54.料盒5-4"});
  2617. this.cob测试2BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2618. this.cob测试2BIN1.Location = new System.Drawing.Point(569, 97);
  2619. this.cob测试2BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2620. this.cob测试2BIN1.MaxDropDownItems = 20;
  2621. this.cob测试2BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2622. this.cob测试2BIN1.Name = "cob测试2BIN1";
  2623. this.cob测试2BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2624. this.cob测试2BIN1.ReadNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2625. this.cob测试2BIN1.ScrollBarHandleWidth = 20;
  2626. this.cob测试2BIN1.ScrollBarWidth = 20;
  2627. this.cob测试2BIN1.Size = new System.Drawing.Size(127, 23);
  2628. this.cob测试2BIN1.SymbolSize = 24;
  2629. this.cob测试2BIN1.TabIndex = 178;
  2630. this.cob测试2BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2631. this.cob测试2BIN1.UseItemNumberPreffix = true;
  2632. this.cob测试2BIN1.Watermark = "";
  2633. this.cob测试2BIN1.WriteNode = new Node("Application.A05_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2634. //
  2635. // uiLabel19
  2636. //
  2637. this.uiLabel19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2638. this.uiLabel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2639. this.uiLabel19.Location = new System.Drawing.Point(1143, 72);
  2640. this.uiLabel19.Name = "uiLabel19";
  2641. this.uiLabel19.Size = new System.Drawing.Size(72, 23);
  2642. this.uiLabel19.TabIndex = 177;
  2643. this.uiLabel19.Text = "测试5";
  2644. //
  2645. // uiLabel18
  2646. //
  2647. this.uiLabel18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2648. this.uiLabel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2649. this.uiLabel18.Location = new System.Drawing.Point(1015, 72);
  2650. this.uiLabel18.Name = "uiLabel18";
  2651. this.uiLabel18.Size = new System.Drawing.Size(72, 23);
  2652. this.uiLabel18.TabIndex = 176;
  2653. this.uiLabel18.Text = "热测";
  2654. //
  2655. // uiLabel17
  2656. //
  2657. this.uiLabel17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2658. this.uiLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2659. this.uiLabel17.Location = new System.Drawing.Point(879, 72);
  2660. this.uiLabel17.Name = "uiLabel17";
  2661. this.uiLabel17.Size = new System.Drawing.Size(72, 23);
  2662. this.uiLabel17.TabIndex = 175;
  2663. this.uiLabel17.Text = "测试4";
  2664. //
  2665. // uiLabel16
  2666. //
  2667. this.uiLabel16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2668. this.uiLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2669. this.uiLabel16.Location = new System.Drawing.Point(743, 72);
  2670. this.uiLabel16.Name = "uiLabel16";
  2671. this.uiLabel16.Size = new System.Drawing.Size(72, 23);
  2672. this.uiLabel16.TabIndex = 174;
  2673. this.uiLabel16.Text = "测试3";
  2674. //
  2675. // uiLabel15
  2676. //
  2677. this.uiLabel15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2678. this.uiLabel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2679. this.uiLabel15.Location = new System.Drawing.Point(607, 72);
  2680. this.uiLabel15.Name = "uiLabel15";
  2681. this.uiLabel15.Size = new System.Drawing.Size(72, 23);
  2682. this.uiLabel15.TabIndex = 173;
  2683. this.uiLabel15.Text = "测试2";
  2684. //
  2685. // uiLabel14
  2686. //
  2687. this.uiLabel14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2688. this.uiLabel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2689. this.uiLabel14.Location = new System.Drawing.Point(469, 72);
  2690. this.uiLabel14.Name = "uiLabel14";
  2691. this.uiLabel14.Size = new System.Drawing.Size(72, 23);
  2692. this.uiLabel14.TabIndex = 172;
  2693. this.uiLabel14.Text = "测试1";
  2694. //
  2695. // uiLabel13
  2696. //
  2697. this.uiLabel13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2698. this.uiLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2699. this.uiLabel13.Location = new System.Drawing.Point(211, 428);
  2700. this.uiLabel13.Name = "uiLabel13";
  2701. this.uiLabel13.Size = new System.Drawing.Size(80, 23);
  2702. this.uiLabel13.TabIndex = 171;
  2703. this.uiLabel13.Text = "BIN11";
  2704. this.uiLabel13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2705. //
  2706. // uiLabel12
  2707. //
  2708. this.uiLabel12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2709. this.uiLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2710. this.uiLabel12.Location = new System.Drawing.Point(211, 395);
  2711. this.uiLabel12.Name = "uiLabel12";
  2712. this.uiLabel12.Size = new System.Drawing.Size(80, 23);
  2713. this.uiLabel12.TabIndex = 170;
  2714. this.uiLabel12.Text = "BIN10";
  2715. this.uiLabel12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2716. //
  2717. // uiLabel11
  2718. //
  2719. this.uiLabel11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2720. this.uiLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2721. this.uiLabel11.Location = new System.Drawing.Point(211, 362);
  2722. this.uiLabel11.Name = "uiLabel11";
  2723. this.uiLabel11.Size = new System.Drawing.Size(80, 23);
  2724. this.uiLabel11.TabIndex = 169;
  2725. this.uiLabel11.Text = "BIN9";
  2726. this.uiLabel11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2727. //
  2728. // uiLabel10
  2729. //
  2730. this.uiLabel10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2731. this.uiLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2732. this.uiLabel10.Location = new System.Drawing.Point(211, 329);
  2733. this.uiLabel10.Name = "uiLabel10";
  2734. this.uiLabel10.Size = new System.Drawing.Size(80, 23);
  2735. this.uiLabel10.TabIndex = 168;
  2736. this.uiLabel10.Text = "BIN8";
  2737. this.uiLabel10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2738. //
  2739. // uiLabel9
  2740. //
  2741. this.uiLabel9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2742. this.uiLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2743. this.uiLabel9.Location = new System.Drawing.Point(211, 296);
  2744. this.uiLabel9.Name = "uiLabel9";
  2745. this.uiLabel9.Size = new System.Drawing.Size(80, 23);
  2746. this.uiLabel9.TabIndex = 167;
  2747. this.uiLabel9.Text = "BIN7";
  2748. this.uiLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2749. //
  2750. // uiLabel8
  2751. //
  2752. this.uiLabel8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2753. this.uiLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2754. this.uiLabel8.Location = new System.Drawing.Point(211, 263);
  2755. this.uiLabel8.Name = "uiLabel8";
  2756. this.uiLabel8.Size = new System.Drawing.Size(80, 23);
  2757. this.uiLabel8.TabIndex = 166;
  2758. this.uiLabel8.Text = "BIN6";
  2759. this.uiLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2760. //
  2761. // uiLabel7
  2762. //
  2763. this.uiLabel7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2764. this.uiLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2765. this.uiLabel7.Location = new System.Drawing.Point(211, 230);
  2766. this.uiLabel7.Name = "uiLabel7";
  2767. this.uiLabel7.Size = new System.Drawing.Size(80, 23);
  2768. this.uiLabel7.TabIndex = 165;
  2769. this.uiLabel7.Text = "BIN5";
  2770. this.uiLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2771. //
  2772. // uiLabel6
  2773. //
  2774. this.uiLabel6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2775. this.uiLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2776. this.uiLabel6.Location = new System.Drawing.Point(211, 197);
  2777. this.uiLabel6.Name = "uiLabel6";
  2778. this.uiLabel6.Size = new System.Drawing.Size(80, 23);
  2779. this.uiLabel6.TabIndex = 164;
  2780. this.uiLabel6.Text = "BIN4";
  2781. this.uiLabel6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2782. //
  2783. // uiLabel5
  2784. //
  2785. this.uiLabel5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2786. this.uiLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2787. this.uiLabel5.Location = new System.Drawing.Point(211, 164);
  2788. this.uiLabel5.Name = "uiLabel5";
  2789. this.uiLabel5.Size = new System.Drawing.Size(80, 23);
  2790. this.uiLabel5.TabIndex = 163;
  2791. this.uiLabel5.Text = "BIN3";
  2792. this.uiLabel5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2793. //
  2794. // uiLabel4
  2795. //
  2796. this.uiLabel4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2797. this.uiLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2798. this.uiLabel4.Location = new System.Drawing.Point(211, 131);
  2799. this.uiLabel4.Name = "uiLabel4";
  2800. this.uiLabel4.Size = new System.Drawing.Size(80, 23);
  2801. this.uiLabel4.TabIndex = 162;
  2802. this.uiLabel4.Text = "BIN2";
  2803. this.uiLabel4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2804. //
  2805. // uiLabel3
  2806. //
  2807. this.uiLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2808. this.uiLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2809. this.uiLabel3.Location = new System.Drawing.Point(211, 98);
  2810. this.uiLabel3.Name = "uiLabel3";
  2811. this.uiLabel3.Size = new System.Drawing.Size(80, 23);
  2812. this.uiLabel3.TabIndex = 161;
  2813. this.uiLabel3.Text = "BIN1";
  2814. this.uiLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2815. //
  2816. // cob测试1BIN1
  2817. //
  2818. this.cob测试1BIN1.DataSource = null;
  2819. this.cob测试1BIN1.DisabilityTriggerNode = null;
  2820. this.cob测试1BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2821. this.cob测试1BIN1.FillColor = System.Drawing.Color.White;
  2822. this.cob测试1BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2823. this.cob测试1BIN1.InvisibilityTriggerNode = null;
  2824. this.cob测试1BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2825. this.cob测试1BIN1.Items.AddRange(new object[] {
  2826. "0,",
  2827. "1.编带",
  2828. "11.料盒1-1",
  2829. "12.料盒1-2",
  2830. "13.料盒1-3",
  2831. "14.料盒1-4",
  2832. "21.料盒2-1",
  2833. "22.料盒2-2",
  2834. "23.料盒2-3",
  2835. "24.料盒2-4",
  2836. "31.料盒3-1",
  2837. "32.料盒3-2",
  2838. "33.料盒3-3",
  2839. "34.料盒3-4",
  2840. "41.料盒4-1",
  2841. "42.料盒4-2",
  2842. "43.料盒4-3",
  2843. "44.料盒4-4",
  2844. "51.料盒5-1",
  2845. "52.料盒5-2",
  2846. "53.料盒5-3",
  2847. "54.料盒5-4"});
  2848. this.cob测试1BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2849. this.cob测试1BIN1.Location = new System.Drawing.Point(432, 97);
  2850. this.cob测试1BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2851. this.cob测试1BIN1.MaxDropDownItems = 20;
  2852. this.cob测试1BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2853. this.cob测试1BIN1.Name = "cob测试1BIN1";
  2854. this.cob测试1BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2855. this.cob测试1BIN1.ReadNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2856. this.cob测试1BIN1.ScrollBarHandleWidth = 20;
  2857. this.cob测试1BIN1.ScrollBarWidth = 20;
  2858. this.cob测试1BIN1.Size = new System.Drawing.Size(127, 23);
  2859. this.cob测试1BIN1.SymbolSize = 24;
  2860. this.cob测试1BIN1.TabIndex = 160;
  2861. this.cob测试1BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2862. this.cob测试1BIN1.UseItemNumberPreffix = true;
  2863. this.cob测试1BIN1.Watermark = "";
  2864. this.cob测试1BIN1.WriteNode = new Node("Application.A04_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2865. //
  2866. // cob测试5BIN1
  2867. //
  2868. this.cob测试5BIN1.DataSource = null;
  2869. this.cob测试5BIN1.DisabilityTriggerNode = null;
  2870. this.cob测试5BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2871. this.cob测试5BIN1.FillColor = System.Drawing.Color.White;
  2872. this.cob测试5BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2873. this.cob测试5BIN1.InvisibilityTriggerNode = null;
  2874. this.cob测试5BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2875. this.cob测试5BIN1.Items.AddRange(new object[] {
  2876. "0,",
  2877. "1.编带",
  2878. "41.料盒4-1",
  2879. "42.料盒4-2",
  2880. "43.料盒4-3",
  2881. "44.料盒4-4",
  2882. "51.料盒5-1",
  2883. "52.料盒5-2",
  2884. "53.料盒5-3",
  2885. "54.料盒5-4"});
  2886. this.cob测试5BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2887. this.cob测试5BIN1.Location = new System.Drawing.Point(1109, 97);
  2888. this.cob测试5BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2889. this.cob测试5BIN1.MaxDropDownItems = 20;
  2890. this.cob测试5BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  2891. this.cob测试5BIN1.Name = "cob测试5BIN1";
  2892. this.cob测试5BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2893. this.cob测试5BIN1.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2894. this.cob测试5BIN1.ScrollBarHandleWidth = 20;
  2895. this.cob测试5BIN1.ScrollBarWidth = 20;
  2896. this.cob测试5BIN1.Size = new System.Drawing.Size(127, 23);
  2897. this.cob测试5BIN1.SymbolSize = 24;
  2898. this.cob测试5BIN1.TabIndex = 238;
  2899. this.cob测试5BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2900. this.cob测试5BIN1.UseItemNumberPreffix = true;
  2901. this.cob测试5BIN1.Watermark = "";
  2902. this.cob测试5BIN1.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  2903. //
  2904. // uiLabel21
  2905. //
  2906. this.uiLabel21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2907. this.uiLabel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2908. this.uiLabel21.Location = new System.Drawing.Point(216, 72);
  2909. this.uiLabel21.Name = "uiLabel21";
  2910. this.uiLabel21.Size = new System.Drawing.Size(80, 23);
  2911. this.uiLabel21.TabIndex = 250;
  2912. this.uiLabel21.Text = "测试BIN号";
  2913. this.uiLabel21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  2914. //
  2915. // cob热测BIN2
  2916. //
  2917. this.cob热测BIN2.DataSource = null;
  2918. this.cob热测BIN2.DisabilityTriggerNode = null;
  2919. this.cob热测BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2920. this.cob热测BIN2.FillColor = System.Drawing.Color.White;
  2921. this.cob热测BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2922. this.cob热测BIN2.InvisibilityTriggerNode = null;
  2923. this.cob热测BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2924. this.cob热测BIN2.Items.AddRange(new object[] {
  2925. "0,",
  2926. "1.编带",
  2927. "31.料盒3-1",
  2928. "32.料盒3-2",
  2929. "33.料盒3-3",
  2930. "34.料盒3-4",
  2931. "41.料盒4-1",
  2932. "42.料盒4-2",
  2933. "43.料盒4-3",
  2934. "44.料盒4-4",
  2935. "51.料盒5-1",
  2936. "52.料盒5-2",
  2937. "53.料盒5-3",
  2938. "54.料盒5-4"});
  2939. this.cob热测BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2940. this.cob热测BIN2.Location = new System.Drawing.Point(974, 130);
  2941. this.cob热测BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2942. this.cob热测BIN2.MaxDropDownItems = 20;
  2943. this.cob热测BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  2944. this.cob热测BIN2.Name = "cob热测BIN2";
  2945. this.cob热测BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2946. this.cob热测BIN2.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2947. this.cob热测BIN2.ScrollBarHandleWidth = 20;
  2948. this.cob热测BIN2.ScrollBarWidth = 20;
  2949. this.cob热测BIN2.Size = new System.Drawing.Size(127, 23);
  2950. this.cob热测BIN2.SymbolSize = 24;
  2951. this.cob热测BIN2.TabIndex = 251;
  2952. this.cob热测BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2953. this.cob热测BIN2.UseItemNumberPreffix = true;
  2954. this.cob热测BIN2.Watermark = "";
  2955. this.cob热测BIN2.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  2956. //
  2957. // cob热测BIN3
  2958. //
  2959. this.cob热测BIN3.DataSource = null;
  2960. this.cob热测BIN3.DisabilityTriggerNode = null;
  2961. this.cob热测BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  2962. this.cob热测BIN3.FillColor = System.Drawing.Color.White;
  2963. this.cob热测BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2964. this.cob热测BIN3.InvisibilityTriggerNode = null;
  2965. this.cob热测BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  2966. this.cob热测BIN3.Items.AddRange(new object[] {
  2967. "0,",
  2968. "1.编带",
  2969. "31.料盒3-1",
  2970. "32.料盒3-2",
  2971. "33.料盒3-3",
  2972. "34.料盒3-4",
  2973. "41.料盒4-1",
  2974. "42.料盒4-2",
  2975. "43.料盒4-3",
  2976. "44.料盒4-4",
  2977. "51.料盒5-1",
  2978. "52.料盒5-2",
  2979. "53.料盒5-3",
  2980. "54.料盒5-4"});
  2981. this.cob热测BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  2982. this.cob热测BIN3.Location = new System.Drawing.Point(974, 163);
  2983. this.cob热测BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2984. this.cob热测BIN3.MaxDropDownItems = 20;
  2985. this.cob热测BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  2986. this.cob热测BIN3.Name = "cob热测BIN3";
  2987. this.cob热测BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  2988. this.cob热测BIN3.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2989. this.cob热测BIN3.ScrollBarHandleWidth = 20;
  2990. this.cob热测BIN3.ScrollBarWidth = 20;
  2991. this.cob热测BIN3.Size = new System.Drawing.Size(127, 23);
  2992. this.cob热测BIN3.SymbolSize = 24;
  2993. this.cob热测BIN3.TabIndex = 252;
  2994. this.cob热测BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  2995. this.cob热测BIN3.UseItemNumberPreffix = true;
  2996. this.cob热测BIN3.Watermark = "";
  2997. this.cob热测BIN3.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  2998. //
  2999. // cob热测BIN4
  3000. //
  3001. this.cob热测BIN4.DataSource = null;
  3002. this.cob热测BIN4.DisabilityTriggerNode = null;
  3003. this.cob热测BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3004. this.cob热测BIN4.FillColor = System.Drawing.Color.White;
  3005. this.cob热测BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3006. this.cob热测BIN4.InvisibilityTriggerNode = null;
  3007. this.cob热测BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3008. this.cob热测BIN4.Items.AddRange(new object[] {
  3009. "0,",
  3010. "1.编带",
  3011. "31.料盒3-1",
  3012. "32.料盒3-2",
  3013. "33.料盒3-3",
  3014. "34.料盒3-4",
  3015. "41.料盒4-1",
  3016. "42.料盒4-2",
  3017. "43.料盒4-3",
  3018. "44.料盒4-4",
  3019. "51.料盒5-1",
  3020. "52.料盒5-2",
  3021. "53.料盒5-3",
  3022. "54.料盒5-4"});
  3023. this.cob热测BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3024. this.cob热测BIN4.Location = new System.Drawing.Point(974, 196);
  3025. this.cob热测BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3026. this.cob热测BIN4.MaxDropDownItems = 20;
  3027. this.cob热测BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  3028. this.cob热测BIN4.Name = "cob热测BIN4";
  3029. this.cob热测BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3030. this.cob热测BIN4.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  3031. this.cob热测BIN4.ScrollBarHandleWidth = 20;
  3032. this.cob热测BIN4.ScrollBarWidth = 20;
  3033. this.cob热测BIN4.Size = new System.Drawing.Size(127, 23);
  3034. this.cob热测BIN4.SymbolSize = 24;
  3035. this.cob热测BIN4.TabIndex = 253;
  3036. this.cob热测BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3037. this.cob热测BIN4.UseItemNumberPreffix = true;
  3038. this.cob热测BIN4.Watermark = "";
  3039. this.cob热测BIN4.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  3040. //
  3041. // cob热测BIN5
  3042. //
  3043. this.cob热测BIN5.DataSource = null;
  3044. this.cob热测BIN5.DisabilityTriggerNode = null;
  3045. this.cob热测BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3046. this.cob热测BIN5.FillColor = System.Drawing.Color.White;
  3047. this.cob热测BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3048. this.cob热测BIN5.InvisibilityTriggerNode = null;
  3049. this.cob热测BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3050. this.cob热测BIN5.Items.AddRange(new object[] {
  3051. "0,",
  3052. "1.编带",
  3053. "31.料盒3-1",
  3054. "32.料盒3-2",
  3055. "33.料盒3-3",
  3056. "34.料盒3-4",
  3057. "41.料盒4-1",
  3058. "42.料盒4-2",
  3059. "43.料盒4-3",
  3060. "44.料盒4-4",
  3061. "51.料盒5-1",
  3062. "52.料盒5-2",
  3063. "53.料盒5-3",
  3064. "54.料盒5-4"});
  3065. this.cob热测BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3066. this.cob热测BIN5.Location = new System.Drawing.Point(974, 229);
  3067. this.cob热测BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3068. this.cob热测BIN5.MaxDropDownItems = 20;
  3069. this.cob热测BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  3070. this.cob热测BIN5.Name = "cob热测BIN5";
  3071. this.cob热测BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3072. this.cob热测BIN5.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  3073. this.cob热测BIN5.ScrollBarHandleWidth = 20;
  3074. this.cob热测BIN5.ScrollBarWidth = 20;
  3075. this.cob热测BIN5.Size = new System.Drawing.Size(127, 23);
  3076. this.cob热测BIN5.SymbolSize = 24;
  3077. this.cob热测BIN5.TabIndex = 254;
  3078. this.cob热测BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3079. this.cob热测BIN5.UseItemNumberPreffix = true;
  3080. this.cob热测BIN5.Watermark = "";
  3081. this.cob热测BIN5.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  3082. //
  3083. // cob热测BIN6
  3084. //
  3085. this.cob热测BIN6.DataSource = null;
  3086. this.cob热测BIN6.DisabilityTriggerNode = null;
  3087. this.cob热测BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3088. this.cob热测BIN6.FillColor = System.Drawing.Color.White;
  3089. this.cob热测BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3090. this.cob热测BIN6.InvisibilityTriggerNode = null;
  3091. this.cob热测BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3092. this.cob热测BIN6.Items.AddRange(new object[] {
  3093. "0,",
  3094. "1.编带",
  3095. "31.料盒3-1",
  3096. "32.料盒3-2",
  3097. "33.料盒3-3",
  3098. "34.料盒3-4",
  3099. "41.料盒4-1",
  3100. "42.料盒4-2",
  3101. "43.料盒4-3",
  3102. "44.料盒4-4",
  3103. "51.料盒5-1",
  3104. "52.料盒5-2",
  3105. "53.料盒5-3",
  3106. "54.料盒5-4"});
  3107. this.cob热测BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3108. this.cob热测BIN6.Location = new System.Drawing.Point(974, 262);
  3109. this.cob热测BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3110. this.cob热测BIN6.MaxDropDownItems = 20;
  3111. this.cob热测BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  3112. this.cob热测BIN6.Name = "cob热测BIN6";
  3113. this.cob热测BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3114. this.cob热测BIN6.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  3115. this.cob热测BIN6.ScrollBarHandleWidth = 20;
  3116. this.cob热测BIN6.ScrollBarWidth = 20;
  3117. this.cob热测BIN6.Size = new System.Drawing.Size(127, 23);
  3118. this.cob热测BIN6.SymbolSize = 24;
  3119. this.cob热测BIN6.TabIndex = 255;
  3120. this.cob热测BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3121. this.cob热测BIN6.UseItemNumberPreffix = true;
  3122. this.cob热测BIN6.Watermark = "";
  3123. this.cob热测BIN6.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  3124. //
  3125. // cob热测BIN7
  3126. //
  3127. this.cob热测BIN7.DataSource = null;
  3128. this.cob热测BIN7.DisabilityTriggerNode = null;
  3129. this.cob热测BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3130. this.cob热测BIN7.FillColor = System.Drawing.Color.White;
  3131. this.cob热测BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3132. this.cob热测BIN7.InvisibilityTriggerNode = null;
  3133. this.cob热测BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3134. this.cob热测BIN7.Items.AddRange(new object[] {
  3135. "0,",
  3136. "1.编带",
  3137. "31.料盒3-1",
  3138. "32.料盒3-2",
  3139. "33.料盒3-3",
  3140. "34.料盒3-4",
  3141. "41.料盒4-1",
  3142. "42.料盒4-2",
  3143. "43.料盒4-3",
  3144. "44.料盒4-4",
  3145. "51.料盒5-1",
  3146. "52.料盒5-2",
  3147. "53.料盒5-3",
  3148. "54.料盒5-4"});
  3149. this.cob热测BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3150. this.cob热测BIN7.Location = new System.Drawing.Point(974, 295);
  3151. this.cob热测BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3152. this.cob热测BIN7.MaxDropDownItems = 20;
  3153. this.cob热测BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  3154. this.cob热测BIN7.Name = "cob热测BIN7";
  3155. this.cob热测BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3156. this.cob热测BIN7.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  3157. this.cob热测BIN7.ScrollBarHandleWidth = 20;
  3158. this.cob热测BIN7.ScrollBarWidth = 20;
  3159. this.cob热测BIN7.Size = new System.Drawing.Size(127, 23);
  3160. this.cob热测BIN7.SymbolSize = 24;
  3161. this.cob热测BIN7.TabIndex = 256;
  3162. this.cob热测BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3163. this.cob热测BIN7.UseItemNumberPreffix = true;
  3164. this.cob热测BIN7.Watermark = "";
  3165. this.cob热测BIN7.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  3166. //
  3167. // cob热测BIN8
  3168. //
  3169. this.cob热测BIN8.DataSource = null;
  3170. this.cob热测BIN8.DisabilityTriggerNode = null;
  3171. this.cob热测BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3172. this.cob热测BIN8.FillColor = System.Drawing.Color.White;
  3173. this.cob热测BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3174. this.cob热测BIN8.InvisibilityTriggerNode = null;
  3175. this.cob热测BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3176. this.cob热测BIN8.Items.AddRange(new object[] {
  3177. "0,",
  3178. "1.编带",
  3179. "31.料盒3-1",
  3180. "32.料盒3-2",
  3181. "33.料盒3-3",
  3182. "34.料盒3-4",
  3183. "41.料盒4-1",
  3184. "42.料盒4-2",
  3185. "43.料盒4-3",
  3186. "44.料盒4-4",
  3187. "51.料盒5-1",
  3188. "52.料盒5-2",
  3189. "53.料盒5-3",
  3190. "54.料盒5-4"});
  3191. this.cob热测BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3192. this.cob热测BIN8.Location = new System.Drawing.Point(974, 328);
  3193. this.cob热测BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3194. this.cob热测BIN8.MaxDropDownItems = 20;
  3195. this.cob热测BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  3196. this.cob热测BIN8.Name = "cob热测BIN8";
  3197. this.cob热测BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3198. this.cob热测BIN8.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  3199. this.cob热测BIN8.ScrollBarHandleWidth = 20;
  3200. this.cob热测BIN8.ScrollBarWidth = 20;
  3201. this.cob热测BIN8.Size = new System.Drawing.Size(127, 23);
  3202. this.cob热测BIN8.SymbolSize = 24;
  3203. this.cob热测BIN8.TabIndex = 257;
  3204. this.cob热测BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3205. this.cob热测BIN8.UseItemNumberPreffix = true;
  3206. this.cob热测BIN8.Watermark = "";
  3207. this.cob热测BIN8.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  3208. //
  3209. // cob热测BIN9
  3210. //
  3211. this.cob热测BIN9.DataSource = null;
  3212. this.cob热测BIN9.DisabilityTriggerNode = null;
  3213. this.cob热测BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3214. this.cob热测BIN9.FillColor = System.Drawing.Color.White;
  3215. this.cob热测BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3216. this.cob热测BIN9.InvisibilityTriggerNode = null;
  3217. this.cob热测BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3218. this.cob热测BIN9.Items.AddRange(new object[] {
  3219. "0,",
  3220. "1.编带",
  3221. "31.料盒3-1",
  3222. "32.料盒3-2",
  3223. "33.料盒3-3",
  3224. "34.料盒3-4",
  3225. "41.料盒4-1",
  3226. "42.料盒4-2",
  3227. "43.料盒4-3",
  3228. "44.料盒4-4",
  3229. "51.料盒5-1",
  3230. "52.料盒5-2",
  3231. "53.料盒5-3",
  3232. "54.料盒5-4"});
  3233. this.cob热测BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3234. this.cob热测BIN9.Location = new System.Drawing.Point(974, 361);
  3235. this.cob热测BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3236. this.cob热测BIN9.MaxDropDownItems = 20;
  3237. this.cob热测BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  3238. this.cob热测BIN9.Name = "cob热测BIN9";
  3239. this.cob热测BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3240. this.cob热测BIN9.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  3241. this.cob热测BIN9.ScrollBarHandleWidth = 20;
  3242. this.cob热测BIN9.ScrollBarWidth = 20;
  3243. this.cob热测BIN9.Size = new System.Drawing.Size(127, 23);
  3244. this.cob热测BIN9.SymbolSize = 24;
  3245. this.cob热测BIN9.TabIndex = 258;
  3246. this.cob热测BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3247. this.cob热测BIN9.UseItemNumberPreffix = true;
  3248. this.cob热测BIN9.Watermark = "";
  3249. this.cob热测BIN9.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  3250. //
  3251. // cob热测BIN10
  3252. //
  3253. this.cob热测BIN10.DataSource = null;
  3254. this.cob热测BIN10.DisabilityTriggerNode = null;
  3255. this.cob热测BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3256. this.cob热测BIN10.FillColor = System.Drawing.Color.White;
  3257. this.cob热测BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3258. this.cob热测BIN10.InvisibilityTriggerNode = null;
  3259. this.cob热测BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3260. this.cob热测BIN10.Items.AddRange(new object[] {
  3261. "0,",
  3262. "1.编带",
  3263. "31.料盒3-1",
  3264. "32.料盒3-2",
  3265. "33.料盒3-3",
  3266. "34.料盒3-4",
  3267. "41.料盒4-1",
  3268. "42.料盒4-2",
  3269. "43.料盒4-3",
  3270. "44.料盒4-4",
  3271. "51.料盒5-1",
  3272. "52.料盒5-2",
  3273. "53.料盒5-3",
  3274. "54.料盒5-4"});
  3275. this.cob热测BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3276. this.cob热测BIN10.Location = new System.Drawing.Point(974, 394);
  3277. this.cob热测BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3278. this.cob热测BIN10.MaxDropDownItems = 20;
  3279. this.cob热测BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  3280. this.cob热测BIN10.Name = "cob热测BIN10";
  3281. this.cob热测BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3282. this.cob热测BIN10.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  3283. this.cob热测BIN10.ScrollBarHandleWidth = 20;
  3284. this.cob热测BIN10.ScrollBarWidth = 20;
  3285. this.cob热测BIN10.Size = new System.Drawing.Size(127, 23);
  3286. this.cob热测BIN10.SymbolSize = 24;
  3287. this.cob热测BIN10.TabIndex = 259;
  3288. this.cob热测BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3289. this.cob热测BIN10.UseItemNumberPreffix = true;
  3290. this.cob热测BIN10.Watermark = "";
  3291. this.cob热测BIN10.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  3292. //
  3293. // cob热测BIN11
  3294. //
  3295. this.cob热测BIN11.DataSource = null;
  3296. this.cob热测BIN11.DisabilityTriggerNode = null;
  3297. this.cob热测BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3298. this.cob热测BIN11.FillColor = System.Drawing.Color.White;
  3299. this.cob热测BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3300. this.cob热测BIN11.InvisibilityTriggerNode = null;
  3301. this.cob热测BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3302. this.cob热测BIN11.Items.AddRange(new object[] {
  3303. "0,",
  3304. "1.编带",
  3305. "31.料盒3-1",
  3306. "32.料盒3-2",
  3307. "33.料盒3-3",
  3308. "34.料盒3-4",
  3309. "41.料盒4-1",
  3310. "42.料盒4-2",
  3311. "43.料盒4-3",
  3312. "44.料盒4-4",
  3313. "51.料盒5-1",
  3314. "52.料盒5-2",
  3315. "53.料盒5-3",
  3316. "54.料盒5-4"});
  3317. this.cob热测BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3318. this.cob热测BIN11.Location = new System.Drawing.Point(974, 427);
  3319. this.cob热测BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3320. this.cob热测BIN11.MaxDropDownItems = 20;
  3321. this.cob热测BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  3322. this.cob热测BIN11.Name = "cob热测BIN11";
  3323. this.cob热测BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3324. this.cob热测BIN11.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  3325. this.cob热测BIN11.ScrollBarHandleWidth = 20;
  3326. this.cob热测BIN11.ScrollBarWidth = 20;
  3327. this.cob热测BIN11.Size = new System.Drawing.Size(127, 23);
  3328. this.cob热测BIN11.SymbolSize = 24;
  3329. this.cob热测BIN11.TabIndex = 260;
  3330. this.cob热测BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3331. this.cob热测BIN11.UseItemNumberPreffix = true;
  3332. this.cob热测BIN11.Watermark = "";
  3333. this.cob热测BIN11.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  3334. //
  3335. // cob热测BIN12
  3336. //
  3337. this.cob热测BIN12.DataSource = null;
  3338. this.cob热测BIN12.DisabilityTriggerNode = null;
  3339. this.cob热测BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3340. this.cob热测BIN12.FillColor = System.Drawing.Color.White;
  3341. this.cob热测BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3342. this.cob热测BIN12.InvisibilityTriggerNode = null;
  3343. this.cob热测BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3344. this.cob热测BIN12.Items.AddRange(new object[] {
  3345. "0,",
  3346. "1.编带",
  3347. "31.料盒3-1",
  3348. "32.料盒3-2",
  3349. "33.料盒3-3",
  3350. "34.料盒3-4",
  3351. "41.料盒4-1",
  3352. "42.料盒4-2",
  3353. "43.料盒4-3",
  3354. "44.料盒4-4",
  3355. "51.料盒5-1",
  3356. "52.料盒5-2",
  3357. "53.料盒5-3",
  3358. "54.料盒5-4"});
  3359. this.cob热测BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3360. this.cob热测BIN12.Location = new System.Drawing.Point(974, 460);
  3361. this.cob热测BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3362. this.cob热测BIN12.MaxDropDownItems = 20;
  3363. this.cob热测BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  3364. this.cob热测BIN12.Name = "cob热测BIN12";
  3365. this.cob热测BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3366. this.cob热测BIN12.ReadNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  3367. this.cob热测BIN12.ScrollBarHandleWidth = 20;
  3368. this.cob热测BIN12.ScrollBarWidth = 20;
  3369. this.cob热测BIN12.Size = new System.Drawing.Size(127, 23);
  3370. this.cob热测BIN12.SymbolSize = 24;
  3371. this.cob热测BIN12.TabIndex = 261;
  3372. this.cob热测BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3373. this.cob热测BIN12.UseItemNumberPreffix = true;
  3374. this.cob热测BIN12.Watermark = "";
  3375. this.cob热测BIN12.WriteNode = new Node("Application.A14_ThermalTest_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  3376. //
  3377. // cob测试5BIN2
  3378. //
  3379. this.cob测试5BIN2.DataSource = null;
  3380. this.cob测试5BIN2.DisabilityTriggerNode = null;
  3381. this.cob测试5BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3382. this.cob测试5BIN2.FillColor = System.Drawing.Color.White;
  3383. this.cob测试5BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3384. this.cob测试5BIN2.InvisibilityTriggerNode = null;
  3385. this.cob测试5BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3386. this.cob测试5BIN2.Items.AddRange(new object[] {
  3387. "0,",
  3388. "1.编带",
  3389. "41.料盒4-1",
  3390. "42.料盒4-2",
  3391. "43.料盒4-3",
  3392. "44.料盒4-4",
  3393. "51.料盒5-1",
  3394. "52.料盒5-2",
  3395. "53.料盒5-3",
  3396. "54.料盒5-4"});
  3397. this.cob测试5BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3398. this.cob测试5BIN2.Location = new System.Drawing.Point(1109, 130);
  3399. this.cob测试5BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3400. this.cob测试5BIN2.MaxDropDownItems = 20;
  3401. this.cob测试5BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  3402. this.cob测试5BIN2.Name = "cob测试5BIN2";
  3403. this.cob测试5BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3404. this.cob测试5BIN2.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  3405. this.cob测试5BIN2.ScrollBarHandleWidth = 20;
  3406. this.cob测试5BIN2.ScrollBarWidth = 20;
  3407. this.cob测试5BIN2.Size = new System.Drawing.Size(127, 23);
  3408. this.cob测试5BIN2.SymbolSize = 24;
  3409. this.cob测试5BIN2.TabIndex = 262;
  3410. this.cob测试5BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3411. this.cob测试5BIN2.UseItemNumberPreffix = true;
  3412. this.cob测试5BIN2.Watermark = "";
  3413. this.cob测试5BIN2.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[2]", NodeType.UINT, null);
  3414. //
  3415. // cob测试5BIN3
  3416. //
  3417. this.cob测试5BIN3.DataSource = null;
  3418. this.cob测试5BIN3.DisabilityTriggerNode = null;
  3419. this.cob测试5BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3420. this.cob测试5BIN3.FillColor = System.Drawing.Color.White;
  3421. this.cob测试5BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3422. this.cob测试5BIN3.InvisibilityTriggerNode = null;
  3423. this.cob测试5BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3424. this.cob测试5BIN3.Items.AddRange(new object[] {
  3425. "0,",
  3426. "1.编带",
  3427. "41.料盒4-1",
  3428. "42.料盒4-2",
  3429. "43.料盒4-3",
  3430. "44.料盒4-4",
  3431. "51.料盒5-1",
  3432. "52.料盒5-2",
  3433. "53.料盒5-3",
  3434. "54.料盒5-4"});
  3435. this.cob测试5BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3436. this.cob测试5BIN3.Location = new System.Drawing.Point(1109, 163);
  3437. this.cob测试5BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3438. this.cob测试5BIN3.MaxDropDownItems = 20;
  3439. this.cob测试5BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  3440. this.cob测试5BIN3.Name = "cob测试5BIN3";
  3441. this.cob测试5BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3442. this.cob测试5BIN3.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  3443. this.cob测试5BIN3.ScrollBarHandleWidth = 20;
  3444. this.cob测试5BIN3.ScrollBarWidth = 20;
  3445. this.cob测试5BIN3.Size = new System.Drawing.Size(127, 23);
  3446. this.cob测试5BIN3.SymbolSize = 24;
  3447. this.cob测试5BIN3.TabIndex = 263;
  3448. this.cob测试5BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3449. this.cob测试5BIN3.UseItemNumberPreffix = true;
  3450. this.cob测试5BIN3.Watermark = "";
  3451. this.cob测试5BIN3.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[3]", NodeType.UINT, null);
  3452. //
  3453. // cob测试5BIN6
  3454. //
  3455. this.cob测试5BIN6.DataSource = null;
  3456. this.cob测试5BIN6.DisabilityTriggerNode = null;
  3457. this.cob测试5BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3458. this.cob测试5BIN6.FillColor = System.Drawing.Color.White;
  3459. this.cob测试5BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3460. this.cob测试5BIN6.InvisibilityTriggerNode = null;
  3461. this.cob测试5BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3462. this.cob测试5BIN6.Items.AddRange(new object[] {
  3463. "0,",
  3464. "1.编带",
  3465. "41.料盒4-1",
  3466. "42.料盒4-2",
  3467. "43.料盒4-3",
  3468. "44.料盒4-4",
  3469. "51.料盒5-1",
  3470. "52.料盒5-2",
  3471. "53.料盒5-3",
  3472. "54.料盒5-4"});
  3473. this.cob测试5BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3474. this.cob测试5BIN6.Location = new System.Drawing.Point(1109, 262);
  3475. this.cob测试5BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3476. this.cob测试5BIN6.MaxDropDownItems = 20;
  3477. this.cob测试5BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  3478. this.cob测试5BIN6.Name = "cob测试5BIN6";
  3479. this.cob测试5BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3480. this.cob测试5BIN6.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  3481. this.cob测试5BIN6.ScrollBarHandleWidth = 20;
  3482. this.cob测试5BIN6.ScrollBarWidth = 20;
  3483. this.cob测试5BIN6.Size = new System.Drawing.Size(127, 23);
  3484. this.cob测试5BIN6.SymbolSize = 24;
  3485. this.cob测试5BIN6.TabIndex = 266;
  3486. this.cob测试5BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3487. this.cob测试5BIN6.UseItemNumberPreffix = true;
  3488. this.cob测试5BIN6.Watermark = "";
  3489. this.cob测试5BIN6.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[6]", NodeType.UINT, null);
  3490. //
  3491. // cob测试5BIN5
  3492. //
  3493. this.cob测试5BIN5.DataSource = null;
  3494. this.cob测试5BIN5.DisabilityTriggerNode = null;
  3495. this.cob测试5BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3496. this.cob测试5BIN5.FillColor = System.Drawing.Color.White;
  3497. this.cob测试5BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3498. this.cob测试5BIN5.InvisibilityTriggerNode = null;
  3499. this.cob测试5BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3500. this.cob测试5BIN5.Items.AddRange(new object[] {
  3501. "0,",
  3502. "1.编带",
  3503. "41.料盒4-1",
  3504. "42.料盒4-2",
  3505. "43.料盒4-3",
  3506. "44.料盒4-4",
  3507. "51.料盒5-1",
  3508. "52.料盒5-2",
  3509. "53.料盒5-3",
  3510. "54.料盒5-4"});
  3511. this.cob测试5BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3512. this.cob测试5BIN5.Location = new System.Drawing.Point(1109, 229);
  3513. this.cob测试5BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3514. this.cob测试5BIN5.MaxDropDownItems = 20;
  3515. this.cob测试5BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  3516. this.cob测试5BIN5.Name = "cob测试5BIN5";
  3517. this.cob测试5BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3518. this.cob测试5BIN5.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  3519. this.cob测试5BIN5.ScrollBarHandleWidth = 20;
  3520. this.cob测试5BIN5.ScrollBarWidth = 20;
  3521. this.cob测试5BIN5.Size = new System.Drawing.Size(127, 23);
  3522. this.cob测试5BIN5.SymbolSize = 24;
  3523. this.cob测试5BIN5.TabIndex = 265;
  3524. this.cob测试5BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3525. this.cob测试5BIN5.UseItemNumberPreffix = true;
  3526. this.cob测试5BIN5.Watermark = "";
  3527. this.cob测试5BIN5.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[5]", NodeType.UINT, null);
  3528. //
  3529. // cob测试5BIN4
  3530. //
  3531. this.cob测试5BIN4.DataSource = null;
  3532. this.cob测试5BIN4.DisabilityTriggerNode = null;
  3533. this.cob测试5BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3534. this.cob测试5BIN4.FillColor = System.Drawing.Color.White;
  3535. this.cob测试5BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3536. this.cob测试5BIN4.InvisibilityTriggerNode = null;
  3537. this.cob测试5BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3538. this.cob测试5BIN4.Items.AddRange(new object[] {
  3539. "0,",
  3540. "1.编带",
  3541. "41.料盒4-1",
  3542. "42.料盒4-2",
  3543. "43.料盒4-3",
  3544. "44.料盒4-4",
  3545. "51.料盒5-1",
  3546. "52.料盒5-2",
  3547. "53.料盒5-3",
  3548. "54.料盒5-4"});
  3549. this.cob测试5BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3550. this.cob测试5BIN4.Location = new System.Drawing.Point(1109, 196);
  3551. this.cob测试5BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3552. this.cob测试5BIN4.MaxDropDownItems = 20;
  3553. this.cob测试5BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  3554. this.cob测试5BIN4.Name = "cob测试5BIN4";
  3555. this.cob测试5BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3556. this.cob测试5BIN4.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  3557. this.cob测试5BIN4.ScrollBarHandleWidth = 20;
  3558. this.cob测试5BIN4.ScrollBarWidth = 20;
  3559. this.cob测试5BIN4.Size = new System.Drawing.Size(127, 23);
  3560. this.cob测试5BIN4.SymbolSize = 24;
  3561. this.cob测试5BIN4.TabIndex = 264;
  3562. this.cob测试5BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3563. this.cob测试5BIN4.UseItemNumberPreffix = true;
  3564. this.cob测试5BIN4.Watermark = "";
  3565. this.cob测试5BIN4.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[4]", NodeType.UINT, null);
  3566. //
  3567. // cob测试5BIN9
  3568. //
  3569. this.cob测试5BIN9.DataSource = null;
  3570. this.cob测试5BIN9.DisabilityTriggerNode = null;
  3571. this.cob测试5BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3572. this.cob测试5BIN9.FillColor = System.Drawing.Color.White;
  3573. this.cob测试5BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3574. this.cob测试5BIN9.InvisibilityTriggerNode = null;
  3575. this.cob测试5BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3576. this.cob测试5BIN9.Items.AddRange(new object[] {
  3577. "0,",
  3578. "1.编带",
  3579. "41.料盒4-1",
  3580. "42.料盒4-2",
  3581. "43.料盒4-3",
  3582. "44.料盒4-4",
  3583. "51.料盒5-1",
  3584. "52.料盒5-2",
  3585. "53.料盒5-3",
  3586. "54.料盒5-4"});
  3587. this.cob测试5BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3588. this.cob测试5BIN9.Location = new System.Drawing.Point(1109, 361);
  3589. this.cob测试5BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3590. this.cob测试5BIN9.MaxDropDownItems = 20;
  3591. this.cob测试5BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  3592. this.cob测试5BIN9.Name = "cob测试5BIN9";
  3593. this.cob测试5BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3594. this.cob测试5BIN9.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  3595. this.cob测试5BIN9.ScrollBarHandleWidth = 20;
  3596. this.cob测试5BIN9.ScrollBarWidth = 20;
  3597. this.cob测试5BIN9.Size = new System.Drawing.Size(127, 23);
  3598. this.cob测试5BIN9.SymbolSize = 24;
  3599. this.cob测试5BIN9.TabIndex = 269;
  3600. this.cob测试5BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3601. this.cob测试5BIN9.UseItemNumberPreffix = true;
  3602. this.cob测试5BIN9.Watermark = "";
  3603. this.cob测试5BIN9.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[9]", NodeType.UINT, null);
  3604. //
  3605. // cob测试5BIN8
  3606. //
  3607. this.cob测试5BIN8.DataSource = null;
  3608. this.cob测试5BIN8.DisabilityTriggerNode = null;
  3609. this.cob测试5BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3610. this.cob测试5BIN8.FillColor = System.Drawing.Color.White;
  3611. this.cob测试5BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3612. this.cob测试5BIN8.InvisibilityTriggerNode = null;
  3613. this.cob测试5BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3614. this.cob测试5BIN8.Items.AddRange(new object[] {
  3615. "0,",
  3616. "1.编带",
  3617. "41.料盒4-1",
  3618. "42.料盒4-2",
  3619. "43.料盒4-3",
  3620. "44.料盒4-4",
  3621. "51.料盒5-1",
  3622. "52.料盒5-2",
  3623. "53.料盒5-3",
  3624. "54.料盒5-4"});
  3625. this.cob测试5BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3626. this.cob测试5BIN8.Location = new System.Drawing.Point(1109, 328);
  3627. this.cob测试5BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3628. this.cob测试5BIN8.MaxDropDownItems = 20;
  3629. this.cob测试5BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  3630. this.cob测试5BIN8.Name = "cob测试5BIN8";
  3631. this.cob测试5BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3632. this.cob测试5BIN8.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  3633. this.cob测试5BIN8.ScrollBarHandleWidth = 20;
  3634. this.cob测试5BIN8.ScrollBarWidth = 20;
  3635. this.cob测试5BIN8.Size = new System.Drawing.Size(127, 23);
  3636. this.cob测试5BIN8.SymbolSize = 24;
  3637. this.cob测试5BIN8.TabIndex = 268;
  3638. this.cob测试5BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3639. this.cob测试5BIN8.UseItemNumberPreffix = true;
  3640. this.cob测试5BIN8.Watermark = "";
  3641. this.cob测试5BIN8.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[8]", NodeType.UINT, null);
  3642. //
  3643. // cob测试5BIN7
  3644. //
  3645. this.cob测试5BIN7.DataSource = null;
  3646. this.cob测试5BIN7.DisabilityTriggerNode = null;
  3647. this.cob测试5BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3648. this.cob测试5BIN7.FillColor = System.Drawing.Color.White;
  3649. this.cob测试5BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3650. this.cob测试5BIN7.InvisibilityTriggerNode = null;
  3651. this.cob测试5BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3652. this.cob测试5BIN7.Items.AddRange(new object[] {
  3653. "0,",
  3654. "1.编带",
  3655. "41.料盒4-1",
  3656. "42.料盒4-2",
  3657. "43.料盒4-3",
  3658. "44.料盒4-4",
  3659. "51.料盒5-1",
  3660. "52.料盒5-2",
  3661. "53.料盒5-3",
  3662. "54.料盒5-4"});
  3663. this.cob测试5BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3664. this.cob测试5BIN7.Location = new System.Drawing.Point(1109, 295);
  3665. this.cob测试5BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3666. this.cob测试5BIN7.MaxDropDownItems = 20;
  3667. this.cob测试5BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  3668. this.cob测试5BIN7.Name = "cob测试5BIN7";
  3669. this.cob测试5BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3670. this.cob测试5BIN7.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  3671. this.cob测试5BIN7.ScrollBarHandleWidth = 20;
  3672. this.cob测试5BIN7.ScrollBarWidth = 20;
  3673. this.cob测试5BIN7.Size = new System.Drawing.Size(127, 23);
  3674. this.cob测试5BIN7.SymbolSize = 24;
  3675. this.cob测试5BIN7.TabIndex = 267;
  3676. this.cob测试5BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3677. this.cob测试5BIN7.UseItemNumberPreffix = true;
  3678. this.cob测试5BIN7.Watermark = "";
  3679. this.cob测试5BIN7.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[7]", NodeType.UINT, null);
  3680. //
  3681. // cob测试5BIN10
  3682. //
  3683. this.cob测试5BIN10.DataSource = null;
  3684. this.cob测试5BIN10.DisabilityTriggerNode = null;
  3685. this.cob测试5BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3686. this.cob测试5BIN10.FillColor = System.Drawing.Color.White;
  3687. this.cob测试5BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3688. this.cob测试5BIN10.InvisibilityTriggerNode = null;
  3689. this.cob测试5BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3690. this.cob测试5BIN10.Items.AddRange(new object[] {
  3691. "0,",
  3692. "1.编带",
  3693. "41.料盒4-1",
  3694. "42.料盒4-2",
  3695. "43.料盒4-3",
  3696. "44.料盒4-4",
  3697. "51.料盒5-1",
  3698. "52.料盒5-2",
  3699. "53.料盒5-3",
  3700. "54.料盒5-4"});
  3701. this.cob测试5BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3702. this.cob测试5BIN10.Location = new System.Drawing.Point(1109, 394);
  3703. this.cob测试5BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3704. this.cob测试5BIN10.MaxDropDownItems = 20;
  3705. this.cob测试5BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  3706. this.cob测试5BIN10.Name = "cob测试5BIN10";
  3707. this.cob测试5BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3708. this.cob测试5BIN10.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  3709. this.cob测试5BIN10.ScrollBarHandleWidth = 20;
  3710. this.cob测试5BIN10.ScrollBarWidth = 20;
  3711. this.cob测试5BIN10.Size = new System.Drawing.Size(127, 23);
  3712. this.cob测试5BIN10.SymbolSize = 24;
  3713. this.cob测试5BIN10.TabIndex = 270;
  3714. this.cob测试5BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3715. this.cob测试5BIN10.UseItemNumberPreffix = true;
  3716. this.cob测试5BIN10.Watermark = "";
  3717. this.cob测试5BIN10.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[10]", NodeType.UINT, null);
  3718. //
  3719. // cob测试5BIN11
  3720. //
  3721. this.cob测试5BIN11.DataSource = null;
  3722. this.cob测试5BIN11.DisabilityTriggerNode = null;
  3723. this.cob测试5BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3724. this.cob测试5BIN11.FillColor = System.Drawing.Color.White;
  3725. this.cob测试5BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3726. this.cob测试5BIN11.InvisibilityTriggerNode = null;
  3727. this.cob测试5BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3728. this.cob测试5BIN11.Items.AddRange(new object[] {
  3729. "0,",
  3730. "1.编带",
  3731. "41.料盒4-1",
  3732. "42.料盒4-2",
  3733. "43.料盒4-3",
  3734. "44.料盒4-4",
  3735. "51.料盒5-1",
  3736. "52.料盒5-2",
  3737. "53.料盒5-3",
  3738. "54.料盒5-4"});
  3739. this.cob测试5BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3740. this.cob测试5BIN11.Location = new System.Drawing.Point(1109, 427);
  3741. this.cob测试5BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3742. this.cob测试5BIN11.MaxDropDownItems = 20;
  3743. this.cob测试5BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  3744. this.cob测试5BIN11.Name = "cob测试5BIN11";
  3745. this.cob测试5BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3746. this.cob测试5BIN11.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  3747. this.cob测试5BIN11.ScrollBarHandleWidth = 20;
  3748. this.cob测试5BIN11.ScrollBarWidth = 20;
  3749. this.cob测试5BIN11.Size = new System.Drawing.Size(127, 23);
  3750. this.cob测试5BIN11.SymbolSize = 24;
  3751. this.cob测试5BIN11.TabIndex = 271;
  3752. this.cob测试5BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3753. this.cob测试5BIN11.UseItemNumberPreffix = true;
  3754. this.cob测试5BIN11.Watermark = "";
  3755. this.cob测试5BIN11.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[11]", NodeType.UINT, null);
  3756. //
  3757. // cob测试5BIN12
  3758. //
  3759. this.cob测试5BIN12.DataSource = null;
  3760. this.cob测试5BIN12.DisabilityTriggerNode = null;
  3761. this.cob测试5BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3762. this.cob测试5BIN12.FillColor = System.Drawing.Color.White;
  3763. this.cob测试5BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3764. this.cob测试5BIN12.InvisibilityTriggerNode = null;
  3765. this.cob测试5BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3766. this.cob测试5BIN12.Items.AddRange(new object[] {
  3767. "0,",
  3768. "1.编带",
  3769. "41.料盒4-1",
  3770. "42.料盒4-2",
  3771. "43.料盒4-3",
  3772. "44.料盒4-4",
  3773. "51.料盒5-1",
  3774. "52.料盒5-2",
  3775. "53.料盒5-3",
  3776. "54.料盒5-4"});
  3777. this.cob测试5BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3778. this.cob测试5BIN12.Location = new System.Drawing.Point(1109, 460);
  3779. this.cob测试5BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3780. this.cob测试5BIN12.MaxDropDownItems = 20;
  3781. this.cob测试5BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  3782. this.cob测试5BIN12.Name = "cob测试5BIN12";
  3783. this.cob测试5BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3784. this.cob测试5BIN12.ReadNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  3785. this.cob测试5BIN12.ScrollBarHandleWidth = 20;
  3786. this.cob测试5BIN12.ScrollBarWidth = 20;
  3787. this.cob测试5BIN12.Size = new System.Drawing.Size(127, 23);
  3788. this.cob测试5BIN12.SymbolSize = 24;
  3789. this.cob测试5BIN12.TabIndex = 270;
  3790. this.cob测试5BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3791. this.cob测试5BIN12.UseItemNumberPreffix = true;
  3792. this.cob测试5BIN12.Watermark = "";
  3793. this.cob测试5BIN12.WriteNode = new Node("Application.A25_TestStation_Auto.ar自定义结果去向[12]", NodeType.UINT, null);
  3794. //
  3795. // cob表面CCD检测NG料盒
  3796. //
  3797. this.cob表面CCD检测NG料盒.DataSource = null;
  3798. this.cob表面CCD检测NG料盒.DisabilityTriggerNode = null;
  3799. this.cob表面CCD检测NG料盒.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3800. this.cob表面CCD检测NG料盒.FillColor = System.Drawing.Color.White;
  3801. this.cob表面CCD检测NG料盒.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3802. this.cob表面CCD检测NG料盒.InvisibilityTriggerNode = null;
  3803. this.cob表面CCD检测NG料盒.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3804. this.cob表面CCD检测NG料盒.Items.AddRange(new object[] {
  3805. "0,",
  3806. "41.料盒4-1",
  3807. "42.料盒4-2",
  3808. "43.料盒4-3",
  3809. "44.料盒4-4",
  3810. "51.料盒5-1",
  3811. "52.料盒5-2",
  3812. "53.料盒5-3",
  3813. "54.料盒5-4"});
  3814. this.cob表面CCD检测NG料盒.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3815. this.cob表面CCD检测NG料盒.Location = new System.Drawing.Point(24, 176);
  3816. this.cob表面CCD检测NG料盒.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3817. this.cob表面CCD检测NG料盒.MinimumSize = new System.Drawing.Size(63, 0);
  3818. this.cob表面CCD检测NG料盒.Name = "cob表面CCD检测NG料盒";
  3819. this.cob表面CCD检测NG料盒.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3820. this.cob表面CCD检测NG料盒.ReadNode = new Node("Application.GVL_A24_Auto.ui自定义结果去向", NodeType.UINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  3821. "料盒4(1-4)");
  3822. this.cob表面CCD检测NG料盒.Size = new System.Drawing.Size(127, 23);
  3823. this.cob表面CCD检测NG料盒.SymbolSize = 24;
  3824. this.cob表面CCD检测NG料盒.TabIndex = 273;
  3825. this.cob表面CCD检测NG料盒.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3826. this.cob表面CCD检测NG料盒.UseItemNumberPreffix = true;
  3827. this.cob表面CCD检测NG料盒.Watermark = "";
  3828. this.cob表面CCD检测NG料盒.WriteNode = new Node("Application.GVL_A24_Auto.ui自定义结果去向", NodeType.UINT, "1编带1;2编带2;11-12-13-14料盒1(1-4);21-22-23-24料盒2(1-4);31-32-33-34料盒3(1-4);41-42-43-44" +
  3829. "料盒4(1-4)");
  3830. //
  3831. // uiLabel22
  3832. //
  3833. this.uiLabel22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3834. this.uiLabel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3835. this.uiLabel22.Location = new System.Drawing.Point(21, 146);
  3836. this.uiLabel22.Name = "uiLabel22";
  3837. this.uiLabel22.Size = new System.Drawing.Size(148, 23);
  3838. this.uiLabel22.TabIndex = 272;
  3839. this.uiLabel22.Text = "表面CCD检测NG料盒";
  3840. //
  3841. // cob电测BIN12
  3842. //
  3843. this.cob电测BIN12.DataSource = null;
  3844. this.cob电测BIN12.DisabilityTriggerNode = null;
  3845. this.cob电测BIN12.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3846. this.cob电测BIN12.FillColor = System.Drawing.Color.White;
  3847. this.cob电测BIN12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3848. this.cob电测BIN12.InvisibilityTriggerNode = null;
  3849. this.cob电测BIN12.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3850. this.cob电测BIN12.Items.AddRange(new object[] {
  3851. "0,",
  3852. "1.编带",
  3853. "11.料盒1-1",
  3854. "12.料盒1-2",
  3855. "13.料盒1-3",
  3856. "14.料盒1-4",
  3857. "21.料盒2-1",
  3858. "22.料盒2-2",
  3859. "23.料盒2-3",
  3860. "24.料盒2-4",
  3861. "31.料盒3-1",
  3862. "32.料盒3-2",
  3863. "33.料盒3-3",
  3864. "34.料盒3-4",
  3865. "41.料盒4-1",
  3866. "42.料盒4-2",
  3867. "43.料盒4-3",
  3868. "44.料盒4-4",
  3869. "51.料盒5-1",
  3870. "52.料盒5-2",
  3871. "53.料盒5-3",
  3872. "54.料盒5-4"});
  3873. this.cob电测BIN12.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3874. this.cob电测BIN12.Location = new System.Drawing.Point(297, 460);
  3875. this.cob电测BIN12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3876. this.cob电测BIN12.MaxDropDownItems = 20;
  3877. this.cob电测BIN12.MinimumSize = new System.Drawing.Size(63, 0);
  3878. this.cob电测BIN12.Name = "cob电测BIN12";
  3879. this.cob电测BIN12.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3880. this.cob电测BIN12.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[12]", NodeType.UDINT, null);
  3881. this.cob电测BIN12.ScrollBarHandleWidth = 20;
  3882. this.cob电测BIN12.ScrollBarWidth = 20;
  3883. this.cob电测BIN12.Size = new System.Drawing.Size(127, 23);
  3884. this.cob电测BIN12.SymbolSize = 24;
  3885. this.cob电测BIN12.TabIndex = 286;
  3886. this.cob电测BIN12.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3887. this.cob电测BIN12.UseItemNumberPreffix = true;
  3888. this.cob电测BIN12.Watermark = "";
  3889. this.cob电测BIN12.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[12]", NodeType.UDINT, null);
  3890. //
  3891. // cob电测BIN11
  3892. //
  3893. this.cob电测BIN11.DataSource = null;
  3894. this.cob电测BIN11.DisabilityTriggerNode = null;
  3895. this.cob电测BIN11.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3896. this.cob电测BIN11.FillColor = System.Drawing.Color.White;
  3897. this.cob电测BIN11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3898. this.cob电测BIN11.InvisibilityTriggerNode = null;
  3899. this.cob电测BIN11.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3900. this.cob电测BIN11.Items.AddRange(new object[] {
  3901. "0,",
  3902. "1.编带",
  3903. "11.料盒1-1",
  3904. "12.料盒1-2",
  3905. "13.料盒1-3",
  3906. "14.料盒1-4",
  3907. "21.料盒2-1",
  3908. "22.料盒2-2",
  3909. "23.料盒2-3",
  3910. "24.料盒2-4",
  3911. "31.料盒3-1",
  3912. "32.料盒3-2",
  3913. "33.料盒3-3",
  3914. "34.料盒3-4",
  3915. "41.料盒4-1",
  3916. "42.料盒4-2",
  3917. "43.料盒4-3",
  3918. "44.料盒4-4",
  3919. "51.料盒5-1",
  3920. "52.料盒5-2",
  3921. "53.料盒5-3",
  3922. "54.料盒5-4"});
  3923. this.cob电测BIN11.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3924. this.cob电测BIN11.Location = new System.Drawing.Point(297, 427);
  3925. this.cob电测BIN11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3926. this.cob电测BIN11.MaxDropDownItems = 20;
  3927. this.cob电测BIN11.MinimumSize = new System.Drawing.Size(63, 0);
  3928. this.cob电测BIN11.Name = "cob电测BIN11";
  3929. this.cob电测BIN11.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3930. this.cob电测BIN11.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[11]", NodeType.UDINT, null);
  3931. this.cob电测BIN11.ScrollBarHandleWidth = 20;
  3932. this.cob电测BIN11.ScrollBarWidth = 20;
  3933. this.cob电测BIN11.Size = new System.Drawing.Size(127, 23);
  3934. this.cob电测BIN11.SymbolSize = 24;
  3935. this.cob电测BIN11.TabIndex = 285;
  3936. this.cob电测BIN11.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3937. this.cob电测BIN11.UseItemNumberPreffix = true;
  3938. this.cob电测BIN11.Watermark = "";
  3939. this.cob电测BIN11.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[11]", NodeType.UDINT, null);
  3940. //
  3941. // cob电测BIN10
  3942. //
  3943. this.cob电测BIN10.DataSource = null;
  3944. this.cob电测BIN10.DisabilityTriggerNode = null;
  3945. this.cob电测BIN10.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3946. this.cob电测BIN10.FillColor = System.Drawing.Color.White;
  3947. this.cob电测BIN10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3948. this.cob电测BIN10.InvisibilityTriggerNode = null;
  3949. this.cob电测BIN10.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  3950. this.cob电测BIN10.Items.AddRange(new object[] {
  3951. "0,",
  3952. "1.编带",
  3953. "11.料盒1-1",
  3954. "12.料盒1-2",
  3955. "13.料盒1-3",
  3956. "14.料盒1-4",
  3957. "21.料盒2-1",
  3958. "22.料盒2-2",
  3959. "23.料盒2-3",
  3960. "24.料盒2-4",
  3961. "31.料盒3-1",
  3962. "32.料盒3-2",
  3963. "33.料盒3-3",
  3964. "34.料盒3-4",
  3965. "41.料盒4-1",
  3966. "42.料盒4-2",
  3967. "43.料盒4-3",
  3968. "44.料盒4-4",
  3969. "51.料盒5-1",
  3970. "52.料盒5-2",
  3971. "53.料盒5-3",
  3972. "54.料盒5-4"});
  3973. this.cob电测BIN10.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  3974. this.cob电测BIN10.Location = new System.Drawing.Point(297, 394);
  3975. this.cob电测BIN10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3976. this.cob电测BIN10.MaxDropDownItems = 20;
  3977. this.cob电测BIN10.MinimumSize = new System.Drawing.Size(63, 0);
  3978. this.cob电测BIN10.Name = "cob电测BIN10";
  3979. this.cob电测BIN10.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  3980. this.cob电测BIN10.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[10]", NodeType.UDINT, null);
  3981. this.cob电测BIN10.ScrollBarHandleWidth = 20;
  3982. this.cob电测BIN10.ScrollBarWidth = 20;
  3983. this.cob电测BIN10.Size = new System.Drawing.Size(127, 23);
  3984. this.cob电测BIN10.SymbolSize = 24;
  3985. this.cob电测BIN10.TabIndex = 284;
  3986. this.cob电测BIN10.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  3987. this.cob电测BIN10.UseItemNumberPreffix = true;
  3988. this.cob电测BIN10.Watermark = "";
  3989. this.cob电测BIN10.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[10]", NodeType.UDINT, null);
  3990. //
  3991. // cob电测BIN9
  3992. //
  3993. this.cob电测BIN9.DataSource = null;
  3994. this.cob电测BIN9.DisabilityTriggerNode = null;
  3995. this.cob电测BIN9.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  3996. this.cob电测BIN9.FillColor = System.Drawing.Color.White;
  3997. this.cob电测BIN9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3998. this.cob电测BIN9.InvisibilityTriggerNode = null;
  3999. this.cob电测BIN9.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4000. this.cob电测BIN9.Items.AddRange(new object[] {
  4001. "0,",
  4002. "1.编带",
  4003. "11.料盒1-1",
  4004. "12.料盒1-2",
  4005. "13.料盒1-3",
  4006. "14.料盒1-4",
  4007. "21.料盒2-1",
  4008. "22.料盒2-2",
  4009. "23.料盒2-3",
  4010. "24.料盒2-4",
  4011. "31.料盒3-1",
  4012. "32.料盒3-2",
  4013. "33.料盒3-3",
  4014. "34.料盒3-4",
  4015. "41.料盒4-1",
  4016. "42.料盒4-2",
  4017. "43.料盒4-3",
  4018. "44.料盒4-4",
  4019. "51.料盒5-1",
  4020. "52.料盒5-2",
  4021. "53.料盒5-3",
  4022. "54.料盒5-4"});
  4023. this.cob电测BIN9.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4024. this.cob电测BIN9.Location = new System.Drawing.Point(297, 361);
  4025. this.cob电测BIN9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4026. this.cob电测BIN9.MaxDropDownItems = 20;
  4027. this.cob电测BIN9.MinimumSize = new System.Drawing.Size(63, 0);
  4028. this.cob电测BIN9.Name = "cob电测BIN9";
  4029. this.cob电测BIN9.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4030. this.cob电测BIN9.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[9]", NodeType.UDINT, null);
  4031. this.cob电测BIN9.ScrollBarHandleWidth = 20;
  4032. this.cob电测BIN9.ScrollBarWidth = 20;
  4033. this.cob电测BIN9.Size = new System.Drawing.Size(127, 23);
  4034. this.cob电测BIN9.SymbolSize = 24;
  4035. this.cob电测BIN9.TabIndex = 283;
  4036. this.cob电测BIN9.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4037. this.cob电测BIN9.UseItemNumberPreffix = true;
  4038. this.cob电测BIN9.Watermark = "";
  4039. this.cob电测BIN9.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[9]", NodeType.UDINT, null);
  4040. //
  4041. // cob电测BIN8
  4042. //
  4043. this.cob电测BIN8.DataSource = null;
  4044. this.cob电测BIN8.DisabilityTriggerNode = null;
  4045. this.cob电测BIN8.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4046. this.cob电测BIN8.FillColor = System.Drawing.Color.White;
  4047. this.cob电测BIN8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4048. this.cob电测BIN8.InvisibilityTriggerNode = null;
  4049. this.cob电测BIN8.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4050. this.cob电测BIN8.Items.AddRange(new object[] {
  4051. "0,",
  4052. "1.编带",
  4053. "11.料盒1-1",
  4054. "12.料盒1-2",
  4055. "13.料盒1-3",
  4056. "14.料盒1-4",
  4057. "21.料盒2-1",
  4058. "22.料盒2-2",
  4059. "23.料盒2-3",
  4060. "24.料盒2-4",
  4061. "31.料盒3-1",
  4062. "32.料盒3-2",
  4063. "33.料盒3-3",
  4064. "34.料盒3-4",
  4065. "41.料盒4-1",
  4066. "42.料盒4-2",
  4067. "43.料盒4-3",
  4068. "44.料盒4-4",
  4069. "51.料盒5-1",
  4070. "52.料盒5-2",
  4071. "53.料盒5-3",
  4072. "54.料盒5-4"});
  4073. this.cob电测BIN8.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4074. this.cob电测BIN8.Location = new System.Drawing.Point(297, 328);
  4075. this.cob电测BIN8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4076. this.cob电测BIN8.MaxDropDownItems = 20;
  4077. this.cob电测BIN8.MinimumSize = new System.Drawing.Size(63, 0);
  4078. this.cob电测BIN8.Name = "cob电测BIN8";
  4079. this.cob电测BIN8.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4080. this.cob电测BIN8.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[8]", NodeType.UDINT, null);
  4081. this.cob电测BIN8.ScrollBarHandleWidth = 20;
  4082. this.cob电测BIN8.ScrollBarWidth = 20;
  4083. this.cob电测BIN8.Size = new System.Drawing.Size(127, 23);
  4084. this.cob电测BIN8.SymbolSize = 24;
  4085. this.cob电测BIN8.TabIndex = 282;
  4086. this.cob电测BIN8.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4087. this.cob电测BIN8.UseItemNumberPreffix = true;
  4088. this.cob电测BIN8.Watermark = "";
  4089. this.cob电测BIN8.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[8]", NodeType.UDINT, null);
  4090. //
  4091. // cob电测BIN7
  4092. //
  4093. this.cob电测BIN7.DataSource = null;
  4094. this.cob电测BIN7.DisabilityTriggerNode = null;
  4095. this.cob电测BIN7.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4096. this.cob电测BIN7.FillColor = System.Drawing.Color.White;
  4097. this.cob电测BIN7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4098. this.cob电测BIN7.InvisibilityTriggerNode = null;
  4099. this.cob电测BIN7.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4100. this.cob电测BIN7.Items.AddRange(new object[] {
  4101. "0,",
  4102. "1.编带",
  4103. "11.料盒1-1",
  4104. "12.料盒1-2",
  4105. "13.料盒1-3",
  4106. "14.料盒1-4",
  4107. "21.料盒2-1",
  4108. "22.料盒2-2",
  4109. "23.料盒2-3",
  4110. "24.料盒2-4",
  4111. "31.料盒3-1",
  4112. "32.料盒3-2",
  4113. "33.料盒3-3",
  4114. "34.料盒3-4",
  4115. "41.料盒4-1",
  4116. "42.料盒4-2",
  4117. "43.料盒4-3",
  4118. "44.料盒4-4",
  4119. "51.料盒5-1",
  4120. "52.料盒5-2",
  4121. "53.料盒5-3",
  4122. "54.料盒5-4"});
  4123. this.cob电测BIN7.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4124. this.cob电测BIN7.Location = new System.Drawing.Point(297, 295);
  4125. this.cob电测BIN7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4126. this.cob电测BIN7.MaxDropDownItems = 20;
  4127. this.cob电测BIN7.MinimumSize = new System.Drawing.Size(63, 0);
  4128. this.cob电测BIN7.Name = "cob电测BIN7";
  4129. this.cob电测BIN7.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4130. this.cob电测BIN7.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[7]", NodeType.UDINT, null);
  4131. this.cob电测BIN7.ScrollBarHandleWidth = 20;
  4132. this.cob电测BIN7.ScrollBarWidth = 20;
  4133. this.cob电测BIN7.Size = new System.Drawing.Size(127, 23);
  4134. this.cob电测BIN7.SymbolSize = 24;
  4135. this.cob电测BIN7.TabIndex = 281;
  4136. this.cob电测BIN7.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4137. this.cob电测BIN7.UseItemNumberPreffix = true;
  4138. this.cob电测BIN7.Watermark = "";
  4139. this.cob电测BIN7.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[7]", NodeType.UDINT, null);
  4140. //
  4141. // cob电测BIN6
  4142. //
  4143. this.cob电测BIN6.DataSource = null;
  4144. this.cob电测BIN6.DisabilityTriggerNode = null;
  4145. this.cob电测BIN6.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4146. this.cob电测BIN6.FillColor = System.Drawing.Color.White;
  4147. this.cob电测BIN6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4148. this.cob电测BIN6.InvisibilityTriggerNode = null;
  4149. this.cob电测BIN6.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4150. this.cob电测BIN6.Items.AddRange(new object[] {
  4151. "0,",
  4152. "1.编带",
  4153. "11.料盒1-1",
  4154. "12.料盒1-2",
  4155. "13.料盒1-3",
  4156. "14.料盒1-4",
  4157. "21.料盒2-1",
  4158. "22.料盒2-2",
  4159. "23.料盒2-3",
  4160. "24.料盒2-4",
  4161. "31.料盒3-1",
  4162. "32.料盒3-2",
  4163. "33.料盒3-3",
  4164. "34.料盒3-4",
  4165. "41.料盒4-1",
  4166. "42.料盒4-2",
  4167. "43.料盒4-3",
  4168. "44.料盒4-4",
  4169. "51.料盒5-1",
  4170. "52.料盒5-2",
  4171. "53.料盒5-3",
  4172. "54.料盒5-4"});
  4173. this.cob电测BIN6.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4174. this.cob电测BIN6.Location = new System.Drawing.Point(297, 262);
  4175. this.cob电测BIN6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4176. this.cob电测BIN6.MaxDropDownItems = 20;
  4177. this.cob电测BIN6.MinimumSize = new System.Drawing.Size(63, 0);
  4178. this.cob电测BIN6.Name = "cob电测BIN6";
  4179. this.cob电测BIN6.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4180. this.cob电测BIN6.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[6]", NodeType.UDINT, null);
  4181. this.cob电测BIN6.ScrollBarHandleWidth = 20;
  4182. this.cob电测BIN6.ScrollBarWidth = 20;
  4183. this.cob电测BIN6.Size = new System.Drawing.Size(127, 23);
  4184. this.cob电测BIN6.SymbolSize = 24;
  4185. this.cob电测BIN6.TabIndex = 280;
  4186. this.cob电测BIN6.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4187. this.cob电测BIN6.UseItemNumberPreffix = true;
  4188. this.cob电测BIN6.Watermark = "";
  4189. this.cob电测BIN6.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[6]", NodeType.UDINT, null);
  4190. //
  4191. // cob电测BIN5
  4192. //
  4193. this.cob电测BIN5.DataSource = null;
  4194. this.cob电测BIN5.DisabilityTriggerNode = null;
  4195. this.cob电测BIN5.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4196. this.cob电测BIN5.FillColor = System.Drawing.Color.White;
  4197. this.cob电测BIN5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4198. this.cob电测BIN5.InvisibilityTriggerNode = null;
  4199. this.cob电测BIN5.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4200. this.cob电测BIN5.Items.AddRange(new object[] {
  4201. "0,",
  4202. "1.编带",
  4203. "11.料盒1-1",
  4204. "12.料盒1-2",
  4205. "13.料盒1-3",
  4206. "14.料盒1-4",
  4207. "21.料盒2-1",
  4208. "22.料盒2-2",
  4209. "23.料盒2-3",
  4210. "24.料盒2-4",
  4211. "31.料盒3-1",
  4212. "32.料盒3-2",
  4213. "33.料盒3-3",
  4214. "34.料盒3-4",
  4215. "41.料盒4-1",
  4216. "42.料盒4-2",
  4217. "43.料盒4-3",
  4218. "44.料盒4-4",
  4219. "51.料盒5-1",
  4220. "52.料盒5-2",
  4221. "53.料盒5-3",
  4222. "54.料盒5-4"});
  4223. this.cob电测BIN5.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4224. this.cob电测BIN5.Location = new System.Drawing.Point(297, 229);
  4225. this.cob电测BIN5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4226. this.cob电测BIN5.MaxDropDownItems = 20;
  4227. this.cob电测BIN5.MinimumSize = new System.Drawing.Size(63, 0);
  4228. this.cob电测BIN5.Name = "cob电测BIN5";
  4229. this.cob电测BIN5.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4230. this.cob电测BIN5.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[5]", NodeType.UDINT, null);
  4231. this.cob电测BIN5.ScrollBarHandleWidth = 20;
  4232. this.cob电测BIN5.ScrollBarWidth = 20;
  4233. this.cob电测BIN5.Size = new System.Drawing.Size(127, 23);
  4234. this.cob电测BIN5.SymbolSize = 24;
  4235. this.cob电测BIN5.TabIndex = 279;
  4236. this.cob电测BIN5.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4237. this.cob电测BIN5.UseItemNumberPreffix = true;
  4238. this.cob电测BIN5.Watermark = "";
  4239. this.cob电测BIN5.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[5]", NodeType.UDINT, null);
  4240. //
  4241. // cob电测BIN4
  4242. //
  4243. this.cob电测BIN4.DataSource = null;
  4244. this.cob电测BIN4.DisabilityTriggerNode = null;
  4245. this.cob电测BIN4.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4246. this.cob电测BIN4.FillColor = System.Drawing.Color.White;
  4247. this.cob电测BIN4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4248. this.cob电测BIN4.InvisibilityTriggerNode = null;
  4249. this.cob电测BIN4.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4250. this.cob电测BIN4.Items.AddRange(new object[] {
  4251. "0,",
  4252. "1.编带",
  4253. "11.料盒1-1",
  4254. "12.料盒1-2",
  4255. "13.料盒1-3",
  4256. "14.料盒1-4",
  4257. "21.料盒2-1",
  4258. "22.料盒2-2",
  4259. "23.料盒2-3",
  4260. "24.料盒2-4",
  4261. "31.料盒3-1",
  4262. "32.料盒3-2",
  4263. "33.料盒3-3",
  4264. "34.料盒3-4",
  4265. "41.料盒4-1",
  4266. "42.料盒4-2",
  4267. "43.料盒4-3",
  4268. "44.料盒4-4",
  4269. "51.料盒5-1",
  4270. "52.料盒5-2",
  4271. "53.料盒5-3",
  4272. "54.料盒5-4"});
  4273. this.cob电测BIN4.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4274. this.cob电测BIN4.Location = new System.Drawing.Point(297, 196);
  4275. this.cob电测BIN4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4276. this.cob电测BIN4.MaxDropDownItems = 20;
  4277. this.cob电测BIN4.MinimumSize = new System.Drawing.Size(63, 0);
  4278. this.cob电测BIN4.Name = "cob电测BIN4";
  4279. this.cob电测BIN4.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4280. this.cob电测BIN4.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[4]", NodeType.UDINT, null);
  4281. this.cob电测BIN4.ScrollBarHandleWidth = 20;
  4282. this.cob电测BIN4.ScrollBarWidth = 20;
  4283. this.cob电测BIN4.Size = new System.Drawing.Size(127, 23);
  4284. this.cob电测BIN4.SymbolSize = 24;
  4285. this.cob电测BIN4.TabIndex = 278;
  4286. this.cob电测BIN4.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4287. this.cob电测BIN4.UseItemNumberPreffix = true;
  4288. this.cob电测BIN4.Watermark = "";
  4289. this.cob电测BIN4.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[4]", NodeType.UDINT, null);
  4290. //
  4291. // cob电测BIN3
  4292. //
  4293. this.cob电测BIN3.DataSource = null;
  4294. this.cob电测BIN3.DisabilityTriggerNode = null;
  4295. this.cob电测BIN3.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4296. this.cob电测BIN3.FillColor = System.Drawing.Color.White;
  4297. this.cob电测BIN3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4298. this.cob电测BIN3.InvisibilityTriggerNode = null;
  4299. this.cob电测BIN3.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4300. this.cob电测BIN3.Items.AddRange(new object[] {
  4301. "0,",
  4302. "1.编带",
  4303. "11.料盒1-1",
  4304. "12.料盒1-2",
  4305. "13.料盒1-3",
  4306. "14.料盒1-4",
  4307. "21.料盒2-1",
  4308. "22.料盒2-2",
  4309. "23.料盒2-3",
  4310. "24.料盒2-4",
  4311. "31.料盒3-1",
  4312. "32.料盒3-2",
  4313. "33.料盒3-3",
  4314. "34.料盒3-4",
  4315. "41.料盒4-1",
  4316. "42.料盒4-2",
  4317. "43.料盒4-3",
  4318. "44.料盒4-4",
  4319. "51.料盒5-1",
  4320. "52.料盒5-2",
  4321. "53.料盒5-3",
  4322. "54.料盒5-4"});
  4323. this.cob电测BIN3.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4324. this.cob电测BIN3.Location = new System.Drawing.Point(297, 163);
  4325. this.cob电测BIN3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4326. this.cob电测BIN3.MaxDropDownItems = 20;
  4327. this.cob电测BIN3.MinimumSize = new System.Drawing.Size(63, 0);
  4328. this.cob电测BIN3.Name = "cob电测BIN3";
  4329. this.cob电测BIN3.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4330. this.cob电测BIN3.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[3]", NodeType.UDINT, null);
  4331. this.cob电测BIN3.ScrollBarHandleWidth = 20;
  4332. this.cob电测BIN3.ScrollBarWidth = 20;
  4333. this.cob电测BIN3.Size = new System.Drawing.Size(127, 23);
  4334. this.cob电测BIN3.SymbolSize = 24;
  4335. this.cob电测BIN3.TabIndex = 277;
  4336. this.cob电测BIN3.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4337. this.cob电测BIN3.UseItemNumberPreffix = true;
  4338. this.cob电测BIN3.Watermark = "";
  4339. this.cob电测BIN3.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[3]", NodeType.UDINT, null);
  4340. //
  4341. // cob电测BIN2
  4342. //
  4343. this.cob电测BIN2.DataSource = null;
  4344. this.cob电测BIN2.DisabilityTriggerNode = null;
  4345. this.cob电测BIN2.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4346. this.cob电测BIN2.FillColor = System.Drawing.Color.White;
  4347. this.cob电测BIN2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4348. this.cob电测BIN2.InvisibilityTriggerNode = null;
  4349. this.cob电测BIN2.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4350. this.cob电测BIN2.Items.AddRange(new object[] {
  4351. "0,",
  4352. "1.编带",
  4353. "11.料盒1-1",
  4354. "12.料盒1-2",
  4355. "13.料盒1-3",
  4356. "14.料盒1-4",
  4357. "21.料盒2-1",
  4358. "22.料盒2-2",
  4359. "23.料盒2-3",
  4360. "24.料盒2-4",
  4361. "31.料盒3-1",
  4362. "32.料盒3-2",
  4363. "33.料盒3-3",
  4364. "34.料盒3-4",
  4365. "41.料盒4-1",
  4366. "42.料盒4-2",
  4367. "43.料盒4-3",
  4368. "44.料盒4-4",
  4369. "51.料盒5-1",
  4370. "52.料盒5-2",
  4371. "53.料盒5-3",
  4372. "54.料盒5-4"});
  4373. this.cob电测BIN2.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4374. this.cob电测BIN2.Location = new System.Drawing.Point(297, 130);
  4375. this.cob电测BIN2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4376. this.cob电测BIN2.MaxDropDownItems = 20;
  4377. this.cob电测BIN2.MinimumSize = new System.Drawing.Size(63, 0);
  4378. this.cob电测BIN2.Name = "cob电测BIN2";
  4379. this.cob电测BIN2.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4380. this.cob电测BIN2.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[2]", NodeType.UDINT, null);
  4381. this.cob电测BIN2.ScrollBarHandleWidth = 20;
  4382. this.cob电测BIN2.ScrollBarWidth = 20;
  4383. this.cob电测BIN2.Size = new System.Drawing.Size(127, 23);
  4384. this.cob电测BIN2.SymbolSize = 24;
  4385. this.cob电测BIN2.TabIndex = 276;
  4386. this.cob电测BIN2.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4387. this.cob电测BIN2.UseItemNumberPreffix = true;
  4388. this.cob电测BIN2.Watermark = "";
  4389. this.cob电测BIN2.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[2]", NodeType.UDINT, null);
  4390. //
  4391. // uiLabel23
  4392. //
  4393. this.uiLabel23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4394. this.uiLabel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4395. this.uiLabel23.Location = new System.Drawing.Point(334, 72);
  4396. this.uiLabel23.Name = "uiLabel23";
  4397. this.uiLabel23.Size = new System.Drawing.Size(72, 23);
  4398. this.uiLabel23.TabIndex = 275;
  4399. this.uiLabel23.Text = "电测";
  4400. //
  4401. // cob电测BIN1
  4402. //
  4403. this.cob电测BIN1.DataSource = null;
  4404. this.cob电测BIN1.DisabilityTriggerNode = null;
  4405. this.cob电测BIN1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;
  4406. this.cob电测BIN1.FillColor = System.Drawing.Color.White;
  4407. this.cob电测BIN1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4408. this.cob电测BIN1.InvisibilityTriggerNode = null;
  4409. this.cob电测BIN1.ItemHoverColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(200)))), ((int)(((byte)(255)))));
  4410. this.cob电测BIN1.Items.AddRange(new object[] {
  4411. "0,",
  4412. "1.编带",
  4413. "11.料盒1-1",
  4414. "12.料盒1-2",
  4415. "13.料盒1-3",
  4416. "14.料盒1-4",
  4417. "21.料盒2-1",
  4418. "22.料盒2-2",
  4419. "23.料盒2-3",
  4420. "24.料盒2-4",
  4421. "31.料盒3-1",
  4422. "32.料盒3-2",
  4423. "33.料盒3-3",
  4424. "34.料盒3-4",
  4425. "41.料盒4-1",
  4426. "42.料盒4-2",
  4427. "43.料盒4-3",
  4428. "44.料盒4-4",
  4429. "51.料盒5-1",
  4430. "52.料盒5-2",
  4431. "53.料盒5-3",
  4432. "54.料盒5-4"});
  4433. this.cob电测BIN1.ItemSelectForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(243)))), ((int)(((byte)(255)))));
  4434. this.cob电测BIN1.Location = new System.Drawing.Point(297, 97);
  4435. this.cob电测BIN1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4436. this.cob电测BIN1.MaxDropDownItems = 20;
  4437. this.cob电测BIN1.MinimumSize = new System.Drawing.Size(63, 0);
  4438. this.cob电测BIN1.Name = "cob电测BIN1";
  4439. this.cob电测BIN1.Padding = new System.Windows.Forms.Padding(0, 0, 30, 2);
  4440. this.cob电测BIN1.ReadNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  4441. this.cob电测BIN1.ScrollBarHandleWidth = 20;
  4442. this.cob电测BIN1.ScrollBarWidth = 20;
  4443. this.cob电测BIN1.Size = new System.Drawing.Size(127, 23);
  4444. this.cob电测BIN1.SymbolSize = 24;
  4445. this.cob电测BIN1.TabIndex = 274;
  4446. this.cob电测BIN1.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
  4447. this.cob电测BIN1.UseItemNumberPreffix = true;
  4448. this.cob电测BIN1.Watermark = "";
  4449. this.cob电测BIN1.WriteNode = new Node("Application.A02_TestStation_Auto.ar自定义结果去向[1]", NodeType.UDINT, null);
  4450. //
  4451. // CellTargetSettingForm
  4452. //
  4453. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  4454. this.ClientSize = new System.Drawing.Size(1396, 547);
  4455. this.Controls.Add(this.cob电测BIN12);
  4456. this.Controls.Add(this.cob电测BIN11);
  4457. this.Controls.Add(this.cob电测BIN10);
  4458. this.Controls.Add(this.cob电测BIN9);
  4459. this.Controls.Add(this.cob电测BIN8);
  4460. this.Controls.Add(this.cob电测BIN7);
  4461. this.Controls.Add(this.cob电测BIN6);
  4462. this.Controls.Add(this.cob电测BIN5);
  4463. this.Controls.Add(this.cob电测BIN4);
  4464. this.Controls.Add(this.cob电测BIN3);
  4465. this.Controls.Add(this.cob电测BIN2);
  4466. this.Controls.Add(this.uiLabel23);
  4467. this.Controls.Add(this.cob电测BIN1);
  4468. this.Controls.Add(this.cob表面CCD检测NG料盒);
  4469. this.Controls.Add(this.uiLabel22);
  4470. this.Controls.Add(this.cob测试5BIN12);
  4471. this.Controls.Add(this.cob测试5BIN11);
  4472. this.Controls.Add(this.cob测试5BIN10);
  4473. this.Controls.Add(this.cob测试5BIN9);
  4474. this.Controls.Add(this.cob测试5BIN8);
  4475. this.Controls.Add(this.cob测试5BIN7);
  4476. this.Controls.Add(this.cob测试5BIN6);
  4477. this.Controls.Add(this.cob测试5BIN5);
  4478. this.Controls.Add(this.cob测试5BIN4);
  4479. this.Controls.Add(this.cob测试5BIN3);
  4480. this.Controls.Add(this.cob测试5BIN2);
  4481. this.Controls.Add(this.cob热测BIN12);
  4482. this.Controls.Add(this.cob热测BIN11);
  4483. this.Controls.Add(this.cob热测BIN10);
  4484. this.Controls.Add(this.cob热测BIN9);
  4485. this.Controls.Add(this.cob热测BIN8);
  4486. this.Controls.Add(this.cob热测BIN7);
  4487. this.Controls.Add(this.cob热测BIN6);
  4488. this.Controls.Add(this.cob热测BIN5);
  4489. this.Controls.Add(this.cob热测BIN4);
  4490. this.Controls.Add(this.cob热测BIN3);
  4491. this.Controls.Add(this.cob热测BIN2);
  4492. this.Controls.Add(this.uiLabel21);
  4493. this.Controls.Add(this.cob测试5BIN1);
  4494. this.Controls.Add(this.cob测试4BIN12);
  4495. this.Controls.Add(this.cob测试3BIN12);
  4496. this.Controls.Add(this.cob测试2BIN12);
  4497. this.Controls.Add(this.cob测试1BIN12);
  4498. this.Controls.Add(this.uiLabel20);
  4499. this.Controls.Add(this.cob测试4BIN11);
  4500. this.Controls.Add(this.cob测试3BIN11);
  4501. this.Controls.Add(this.cob测试2BIN11);
  4502. this.Controls.Add(this.cob测试1BIN11);
  4503. this.Controls.Add(this.cob测试4BIN10);
  4504. this.Controls.Add(this.cob测试3BIN10);
  4505. this.Controls.Add(this.cob测试2BIN10);
  4506. this.Controls.Add(this.cob测试1BIN10);
  4507. this.Controls.Add(this.cob测试4BIN9);
  4508. this.Controls.Add(this.cob测试3BIN9);
  4509. this.Controls.Add(this.cob测试2BIN9);
  4510. this.Controls.Add(this.cob测试1BIN9);
  4511. this.Controls.Add(this.cob测试4BIN8);
  4512. this.Controls.Add(this.cob测试3BIN8);
  4513. this.Controls.Add(this.cob测试2BIN8);
  4514. this.Controls.Add(this.cob测试1BIN8);
  4515. this.Controls.Add(this.cob测试4BIN7);
  4516. this.Controls.Add(this.cob测试3BIN7);
  4517. this.Controls.Add(this.cob测试2BIN7);
  4518. this.Controls.Add(this.cob测试1BIN7);
  4519. this.Controls.Add(this.cob测试4BIN6);
  4520. this.Controls.Add(this.cob测试3BIN6);
  4521. this.Controls.Add(this.cob测试2BIN6);
  4522. this.Controls.Add(this.cob测试1BIN6);
  4523. this.Controls.Add(this.cob测试4BIN5);
  4524. this.Controls.Add(this.cob测试3BIN5);
  4525. this.Controls.Add(this.cob测试2BIN5);
  4526. this.Controls.Add(this.cob测试1BIN5);
  4527. this.Controls.Add(this.cob测试4BIN4);
  4528. this.Controls.Add(this.cob测试3BIN4);
  4529. this.Controls.Add(this.cob测试2BIN4);
  4530. this.Controls.Add(this.cob测试1BIN4);
  4531. this.Controls.Add(this.cob测试4BIN3);
  4532. this.Controls.Add(this.cob测试3BIN3);
  4533. this.Controls.Add(this.cob测试2BIN3);
  4534. this.Controls.Add(this.cob测试1BIN3);
  4535. this.Controls.Add(this.cob测试4BIN2);
  4536. this.Controls.Add(this.cob测试3BIN2);
  4537. this.Controls.Add(this.cob测试2BIN2);
  4538. this.Controls.Add(this.cob测试1BIN2);
  4539. this.Controls.Add(this.cob热测BIN1);
  4540. this.Controls.Add(this.cob测试4BIN1);
  4541. this.Controls.Add(this.cob测试3BIN1);
  4542. this.Controls.Add(this.cob测试2BIN1);
  4543. this.Controls.Add(this.uiLabel19);
  4544. this.Controls.Add(this.uiLabel18);
  4545. this.Controls.Add(this.uiLabel17);
  4546. this.Controls.Add(this.uiLabel16);
  4547. this.Controls.Add(this.uiLabel15);
  4548. this.Controls.Add(this.uiLabel14);
  4549. this.Controls.Add(this.uiLabel13);
  4550. this.Controls.Add(this.uiLabel12);
  4551. this.Controls.Add(this.uiLabel11);
  4552. this.Controls.Add(this.uiLabel10);
  4553. this.Controls.Add(this.uiLabel9);
  4554. this.Controls.Add(this.uiLabel8);
  4555. this.Controls.Add(this.uiLabel7);
  4556. this.Controls.Add(this.uiLabel6);
  4557. this.Controls.Add(this.uiLabel5);
  4558. this.Controls.Add(this.uiLabel4);
  4559. this.Controls.Add(this.uiLabel3);
  4560. this.Controls.Add(this.cob测试1BIN1);
  4561. this.Controls.Add(this.cob3D检测NG料盒);
  4562. this.Controls.Add(this.uiLabel2);
  4563. this.Controls.Add(this.cob印字CCD检测NG料盒);
  4564. this.Controls.Add(this.uiLabel1);
  4565. this.Name = "CellTargetSettingForm";
  4566. this.Text = "原件目标设置";
  4567. this.ResumeLayout(false);
  4568. }
  4569. #endregion
  4570. private Sunny.UI.UILabel uiLabel1;
  4571. private PlcUiControl.PlcUiComboBox cob印字CCD检测NG料盒;
  4572. private Sunny.UI.UILabel uiLabel2;
  4573. private PlcUiControl.PlcUiComboBox cob3D检测NG料盒;
  4574. private PlcUiControl.PlcUiComboBox cob测试4BIN12;
  4575. private PlcUiControl.PlcUiComboBox cob测试3BIN12;
  4576. private PlcUiControl.PlcUiComboBox cob测试2BIN12;
  4577. private PlcUiControl.PlcUiComboBox cob测试1BIN12;
  4578. private Sunny.UI.UILabel uiLabel20;
  4579. private PlcUiControl.PlcUiComboBox cob测试4BIN11;
  4580. private PlcUiControl.PlcUiComboBox cob测试3BIN11;
  4581. private PlcUiControl.PlcUiComboBox cob测试2BIN11;
  4582. private PlcUiControl.PlcUiComboBox cob测试1BIN11;
  4583. private PlcUiControl.PlcUiComboBox cob测试4BIN10;
  4584. private PlcUiControl.PlcUiComboBox cob测试3BIN10;
  4585. private PlcUiControl.PlcUiComboBox cob测试2BIN10;
  4586. private PlcUiControl.PlcUiComboBox cob测试1BIN10;
  4587. private PlcUiControl.PlcUiComboBox cob测试4BIN9;
  4588. private PlcUiControl.PlcUiComboBox cob测试3BIN9;
  4589. private PlcUiControl.PlcUiComboBox cob测试2BIN9;
  4590. private PlcUiControl.PlcUiComboBox cob测试1BIN9;
  4591. private PlcUiControl.PlcUiComboBox cob测试4BIN8;
  4592. private PlcUiControl.PlcUiComboBox cob测试3BIN8;
  4593. private PlcUiControl.PlcUiComboBox cob测试2BIN8;
  4594. private PlcUiControl.PlcUiComboBox cob测试1BIN8;
  4595. private PlcUiControl.PlcUiComboBox cob测试4BIN7;
  4596. private PlcUiControl.PlcUiComboBox cob测试3BIN7;
  4597. private PlcUiControl.PlcUiComboBox cob测试2BIN7;
  4598. private PlcUiControl.PlcUiComboBox cob测试1BIN7;
  4599. private PlcUiControl.PlcUiComboBox cob测试4BIN6;
  4600. private PlcUiControl.PlcUiComboBox cob测试3BIN6;
  4601. private PlcUiControl.PlcUiComboBox cob测试2BIN6;
  4602. private PlcUiControl.PlcUiComboBox cob测试1BIN6;
  4603. private PlcUiControl.PlcUiComboBox cob测试4BIN5;
  4604. private PlcUiControl.PlcUiComboBox cob测试3BIN5;
  4605. private PlcUiControl.PlcUiComboBox cob测试2BIN5;
  4606. private PlcUiControl.PlcUiComboBox cob测试1BIN5;
  4607. private PlcUiControl.PlcUiComboBox cob测试4BIN4;
  4608. private PlcUiControl.PlcUiComboBox cob测试3BIN4;
  4609. private PlcUiControl.PlcUiComboBox cob测试2BIN4;
  4610. private PlcUiControl.PlcUiComboBox cob测试1BIN4;
  4611. private PlcUiControl.PlcUiComboBox cob测试4BIN3;
  4612. private PlcUiControl.PlcUiComboBox cob测试3BIN3;
  4613. private PlcUiControl.PlcUiComboBox cob测试2BIN3;
  4614. private PlcUiControl.PlcUiComboBox cob测试1BIN3;
  4615. private PlcUiControl.PlcUiComboBox cob测试4BIN2;
  4616. private PlcUiControl.PlcUiComboBox cob测试3BIN2;
  4617. private PlcUiControl.PlcUiComboBox cob测试2BIN2;
  4618. private PlcUiControl.PlcUiComboBox cob测试1BIN2;
  4619. private PlcUiControl.PlcUiComboBox cob热测BIN1;
  4620. private PlcUiControl.PlcUiComboBox cob测试4BIN1;
  4621. private PlcUiControl.PlcUiComboBox cob测试3BIN1;
  4622. private PlcUiControl.PlcUiComboBox cob测试2BIN1;
  4623. private Sunny.UI.UILabel uiLabel19;
  4624. private Sunny.UI.UILabel uiLabel18;
  4625. private Sunny.UI.UILabel uiLabel17;
  4626. private Sunny.UI.UILabel uiLabel16;
  4627. private Sunny.UI.UILabel uiLabel15;
  4628. private Sunny.UI.UILabel uiLabel14;
  4629. private Sunny.UI.UILabel uiLabel13;
  4630. private Sunny.UI.UILabel uiLabel12;
  4631. private Sunny.UI.UILabel uiLabel11;
  4632. private Sunny.UI.UILabel uiLabel10;
  4633. private Sunny.UI.UILabel uiLabel9;
  4634. private Sunny.UI.UILabel uiLabel8;
  4635. private Sunny.UI.UILabel uiLabel7;
  4636. private Sunny.UI.UILabel uiLabel6;
  4637. private Sunny.UI.UILabel uiLabel5;
  4638. private Sunny.UI.UILabel uiLabel4;
  4639. private Sunny.UI.UILabel uiLabel3;
  4640. private PlcUiControl.PlcUiComboBox cob测试1BIN1;
  4641. private PlcUiControl.PlcUiComboBox cob测试5BIN1;
  4642. private Sunny.UI.UILabel uiLabel21;
  4643. private PlcUiControl.PlcUiComboBox cob热测BIN2;
  4644. private PlcUiControl.PlcUiComboBox cob热测BIN3;
  4645. private PlcUiControl.PlcUiComboBox cob热测BIN4;
  4646. private PlcUiControl.PlcUiComboBox cob热测BIN5;
  4647. private PlcUiControl.PlcUiComboBox cob热测BIN6;
  4648. private PlcUiControl.PlcUiComboBox cob热测BIN7;
  4649. private PlcUiControl.PlcUiComboBox cob热测BIN8;
  4650. private PlcUiControl.PlcUiComboBox cob热测BIN9;
  4651. private PlcUiControl.PlcUiComboBox cob热测BIN10;
  4652. private PlcUiControl.PlcUiComboBox cob热测BIN11;
  4653. private PlcUiControl.PlcUiComboBox cob热测BIN12;
  4654. private PlcUiControl.PlcUiComboBox cob测试5BIN2;
  4655. private PlcUiControl.PlcUiComboBox cob测试5BIN3;
  4656. private PlcUiControl.PlcUiComboBox cob测试5BIN6;
  4657. private PlcUiControl.PlcUiComboBox cob测试5BIN5;
  4658. private PlcUiControl.PlcUiComboBox cob测试5BIN4;
  4659. private PlcUiControl.PlcUiComboBox cob测试5BIN9;
  4660. private PlcUiControl.PlcUiComboBox cob测试5BIN8;
  4661. private PlcUiControl.PlcUiComboBox cob测试5BIN7;
  4662. private PlcUiControl.PlcUiComboBox cob测试5BIN10;
  4663. private PlcUiControl.PlcUiComboBox cob测试5BIN11;
  4664. private PlcUiControl.PlcUiComboBox cob测试5BIN12;
  4665. private PlcUiControl.PlcUiComboBox cob表面CCD检测NG料盒;
  4666. private Sunny.UI.UILabel uiLabel22;
  4667. private PlcUiControl.PlcUiComboBox cob电测BIN12;
  4668. private PlcUiControl.PlcUiComboBox cob电测BIN11;
  4669. private PlcUiControl.PlcUiComboBox cob电测BIN10;
  4670. private PlcUiControl.PlcUiComboBox cob电测BIN9;
  4671. private PlcUiControl.PlcUiComboBox cob电测BIN8;
  4672. private PlcUiControl.PlcUiComboBox cob电测BIN7;
  4673. private PlcUiControl.PlcUiComboBox cob电测BIN6;
  4674. private PlcUiControl.PlcUiComboBox cob电测BIN5;
  4675. private PlcUiControl.PlcUiComboBox cob电测BIN4;
  4676. private PlcUiControl.PlcUiComboBox cob电测BIN3;
  4677. private PlcUiControl.PlcUiComboBox cob电测BIN2;
  4678. private Sunny.UI.UILabel uiLabel23;
  4679. private PlcUiControl.PlcUiComboBox cob电测BIN1;
  4680. }
  4681. }