TestCountForm.Designer.cs 607 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404
  1. namespace YangjieTester.主界面
  2. {
  3. partial class TestCountForm
  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.plcUiNumberDisplay17 = new PlcUiControl.PlcUiNumberDisplay();
  29. this.plcUiNumberDisplay18 = new PlcUiControl.PlcUiNumberDisplay();
  30. this.plcUiNumberDisplay19 = new PlcUiControl.PlcUiNumberDisplay();
  31. this.plcUiNumberDisplay20 = new PlcUiControl.PlcUiNumberDisplay();
  32. this.plcUiNumberDisplay21 = new PlcUiControl.PlcUiNumberDisplay();
  33. this.plcUiNumberDisplay22 = new PlcUiControl.PlcUiNumberDisplay();
  34. this.plcUiNumberDisplay23 = new PlcUiControl.PlcUiNumberDisplay();
  35. this.plcUiNumberDisplay24 = new PlcUiControl.PlcUiNumberDisplay();
  36. this.plcUiNumberDisplay25 = new PlcUiControl.PlcUiNumberDisplay();
  37. this.plcUiNumberDisplay26 = new PlcUiControl.PlcUiNumberDisplay();
  38. this.plcUiNumberDisplay27 = new PlcUiControl.PlcUiNumberDisplay();
  39. this.plcUiNumberDisplay28 = new PlcUiControl.PlcUiNumberDisplay();
  40. this.plcUiNumberDisplay15 = new PlcUiControl.PlcUiNumberDisplay();
  41. this.plcUiNumberDisplay16 = new PlcUiControl.PlcUiNumberDisplay();
  42. this.plcUiNumberDisplay13 = new PlcUiControl.PlcUiNumberDisplay();
  43. this.plcUiNumberDisplay14 = new PlcUiControl.PlcUiNumberDisplay();
  44. this.plcUiNumberDisplay11 = new PlcUiControl.PlcUiNumberDisplay();
  45. this.plcUiNumberDisplay12 = new PlcUiControl.PlcUiNumberDisplay();
  46. this.plcUiNumberDisplay9 = new PlcUiControl.PlcUiNumberDisplay();
  47. this.plcUiNumberDisplay10 = new PlcUiControl.PlcUiNumberDisplay();
  48. this.plcUiNumberDisplay7 = new PlcUiControl.PlcUiNumberDisplay();
  49. this.plcUiNumberDisplay8 = new PlcUiControl.PlcUiNumberDisplay();
  50. this.uiLabel34 = new Sunny.UI.UILabel();
  51. this.txt测试1BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  52. this.uiLabel35 = new Sunny.UI.UILabel();
  53. this.txt测试1BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  54. this.uiLabel32 = new Sunny.UI.UILabel();
  55. this.txt测试1BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  56. this.uiLabel33 = new Sunny.UI.UILabel();
  57. this.txt测试1BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  58. this.uiLabel30 = new Sunny.UI.UILabel();
  59. this.txt测试1BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  60. this.uiLabel31 = new Sunny.UI.UILabel();
  61. this.txt测试1BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  62. this.uiLabel27 = new Sunny.UI.UILabel();
  63. this.txt测试1BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  64. this.uiLabel28 = new Sunny.UI.UILabel();
  65. this.txt测试1BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  66. this.uiLabel25 = new Sunny.UI.UILabel();
  67. this.txt测试1BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  68. this.uiLabel26 = new Sunny.UI.UILabel();
  69. this.txt测试1BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  70. this.plcUiNumberDisplay6 = new PlcUiControl.PlcUiNumberDisplay();
  71. this.plcUiNumberDisplay5 = new PlcUiControl.PlcUiNumberDisplay();
  72. this.plcUiNumberDisplay4 = new PlcUiControl.PlcUiNumberDisplay();
  73. this.uiLabel17 = new Sunny.UI.UILabel();
  74. this.txt测试1BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  75. this.uiLabel16 = new Sunny.UI.UILabel();
  76. this.uiLabel14 = new Sunny.UI.UILabel();
  77. this.txt测试1统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  78. this.uiLabel13 = new Sunny.UI.UILabel();
  79. this.txt测试1BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  80. this.uiLabel1 = new Sunny.UI.UILabel();
  81. this.uiLabel2 = new Sunny.UI.UILabel();
  82. this.uiLabel3 = new Sunny.UI.UILabel();
  83. this.plcUiNumberDisplay1 = new PlcUiControl.PlcUiNumberDisplay();
  84. this.plcUiNumberDisplay2 = new PlcUiControl.PlcUiNumberDisplay();
  85. this.plcUiNumberDisplay3 = new PlcUiControl.PlcUiNumberDisplay();
  86. this.plcUiNumberDisplay29 = new PlcUiControl.PlcUiNumberDisplay();
  87. this.plcUiNumberDisplay30 = new PlcUiControl.PlcUiNumberDisplay();
  88. this.plcUiNumberDisplay31 = new PlcUiControl.PlcUiNumberDisplay();
  89. this.plcUiNumberDisplay32 = new PlcUiControl.PlcUiNumberDisplay();
  90. this.plcUiNumberDisplay33 = new PlcUiControl.PlcUiNumberDisplay();
  91. this.plcUiNumberDisplay34 = new PlcUiControl.PlcUiNumberDisplay();
  92. this.plcUiNumberDisplay35 = new PlcUiControl.PlcUiNumberDisplay();
  93. this.plcUiNumberDisplay36 = new PlcUiControl.PlcUiNumberDisplay();
  94. this.plcUiNumberDisplay37 = new PlcUiControl.PlcUiNumberDisplay();
  95. this.plcUiNumberDisplay38 = new PlcUiControl.PlcUiNumberDisplay();
  96. this.plcUiNumberDisplay39 = new PlcUiControl.PlcUiNumberDisplay();
  97. this.plcUiNumberDisplay40 = new PlcUiControl.PlcUiNumberDisplay();
  98. this.plcUiNumberDisplay41 = new PlcUiControl.PlcUiNumberDisplay();
  99. this.plcUiNumberDisplay42 = new PlcUiControl.PlcUiNumberDisplay();
  100. this.plcUiNumberDisplay43 = new PlcUiControl.PlcUiNumberDisplay();
  101. this.plcUiNumberDisplay44 = new PlcUiControl.PlcUiNumberDisplay();
  102. this.plcUiNumberDisplay45 = new PlcUiControl.PlcUiNumberDisplay();
  103. this.plcUiNumberDisplay46 = new PlcUiControl.PlcUiNumberDisplay();
  104. this.plcUiNumberDisplay47 = new PlcUiControl.PlcUiNumberDisplay();
  105. this.txt测试2BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  106. this.txt测试2BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  107. this.txt测试2BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  108. this.txt测试2BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  109. this.txt测试2BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  110. this.txt测试2BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  111. this.txt测试2BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  112. this.txt测试2BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  113. this.txt测试2BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  114. this.txt测试2BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  115. this.plcUiNumberDisplay48 = new PlcUiControl.PlcUiNumberDisplay();
  116. this.plcUiNumberDisplay49 = new PlcUiControl.PlcUiNumberDisplay();
  117. this.plcUiNumberDisplay50 = new PlcUiControl.PlcUiNumberDisplay();
  118. this.txt测试2BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  119. this.txt测试2统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  120. this.txt测试2BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  121. this.uiLabel4 = new Sunny.UI.UILabel();
  122. this.uiLabel5 = new Sunny.UI.UILabel();
  123. this.uiLabel6 = new Sunny.UI.UILabel();
  124. this.uiLabel7 = new Sunny.UI.UILabel();
  125. this.uiLabel8 = new Sunny.UI.UILabel();
  126. this.uiTabControl1 = new Sunny.UI.UITabControl();
  127. this.tabPage7 = new System.Windows.Forms.TabPage();
  128. this.uiLabel103 = new Sunny.UI.UILabel();
  129. this.plcUiNumberDisplay151 = new PlcUiControl.PlcUiNumberDisplay();
  130. this.plcUiNumberDisplay152 = new PlcUiControl.PlcUiNumberDisplay();
  131. this.plcUiNumberDisplay153 = new PlcUiControl.PlcUiNumberDisplay();
  132. this.plcUiNumberDisplay154 = new PlcUiControl.PlcUiNumberDisplay();
  133. this.plcUiNumberDisplay155 = new PlcUiControl.PlcUiNumberDisplay();
  134. this.uiLabel104 = new Sunny.UI.UILabel();
  135. this.plcUiNumberDisplay156 = new PlcUiControl.PlcUiNumberDisplay();
  136. this.plcUiNumberInput1 = new PlcUiControl.PlcUiNumberInput();
  137. this.uiLabel105 = new Sunny.UI.UILabel();
  138. this.plcUiNumberDisplay157 = new PlcUiControl.PlcUiNumberDisplay();
  139. this.plcUiNumberInput2 = new PlcUiControl.PlcUiNumberInput();
  140. this.uiLabel106 = new Sunny.UI.UILabel();
  141. this.plcUiNumberDisplay158 = new PlcUiControl.PlcUiNumberDisplay();
  142. this.plcUiNumberInput3 = new PlcUiControl.PlcUiNumberInput();
  143. this.uiLabel107 = new Sunny.UI.UILabel();
  144. this.plcUiNumberDisplay159 = new PlcUiControl.PlcUiNumberDisplay();
  145. this.plcUiNumberInput4 = new PlcUiControl.PlcUiNumberInput();
  146. this.uiLabel108 = new Sunny.UI.UILabel();
  147. this.plcUiNumberDisplay160 = new PlcUiControl.PlcUiNumberDisplay();
  148. this.plcUiNumberInput5 = new PlcUiControl.PlcUiNumberInput();
  149. this.uiLabel109 = new Sunny.UI.UILabel();
  150. this.plcUiNumberDisplay161 = new PlcUiControl.PlcUiNumberDisplay();
  151. this.plcUiNumberInput6 = new PlcUiControl.PlcUiNumberInput();
  152. this.uiLabel110 = new Sunny.UI.UILabel();
  153. this.plcUiNumberDisplay162 = new PlcUiControl.PlcUiNumberDisplay();
  154. this.plcUiNumberInput7 = new PlcUiControl.PlcUiNumberInput();
  155. this.uiLabel111 = new Sunny.UI.UILabel();
  156. this.plcUiNumberDisplay163 = new PlcUiControl.PlcUiNumberDisplay();
  157. this.plcUiNumberInput8 = new PlcUiControl.PlcUiNumberInput();
  158. this.uiLabel112 = new Sunny.UI.UILabel();
  159. this.plcUiNumberDisplay164 = new PlcUiControl.PlcUiNumberDisplay();
  160. this.plcUiNumberInput9 = new PlcUiControl.PlcUiNumberInput();
  161. this.uiLabel113 = new Sunny.UI.UILabel();
  162. this.plcUiNumberDisplay165 = new PlcUiControl.PlcUiNumberDisplay();
  163. this.plcUiNumberInput10 = new PlcUiControl.PlcUiNumberInput();
  164. this.plcUiNumberDisplay166 = new PlcUiControl.PlcUiNumberDisplay();
  165. this.plcUiNumberDisplay167 = new PlcUiControl.PlcUiNumberDisplay();
  166. this.plcUiNumberDisplay168 = new PlcUiControl.PlcUiNumberDisplay();
  167. this.plcUiNumberDisplay169 = new PlcUiControl.PlcUiNumberDisplay();
  168. this.plcUiNumberDisplay170 = new PlcUiControl.PlcUiNumberDisplay();
  169. this.plcUiNumberDisplay171 = new PlcUiControl.PlcUiNumberDisplay();
  170. this.uiLabel114 = new Sunny.UI.UILabel();
  171. this.plcUiNumberInput11 = new PlcUiControl.PlcUiNumberInput();
  172. this.uiLabel115 = new Sunny.UI.UILabel();
  173. this.plcUiNumberDisplay172 = new PlcUiControl.PlcUiNumberDisplay();
  174. this.uiLabel116 = new Sunny.UI.UILabel();
  175. this.uiLabel117 = new Sunny.UI.UILabel();
  176. this.uiLabel118 = new Sunny.UI.UILabel();
  177. this.plcUiNumberDisplay173 = new PlcUiControl.PlcUiNumberDisplay();
  178. this.plcUiNumberDisplay174 = new PlcUiControl.PlcUiNumberDisplay();
  179. this.uiLabel119 = new Sunny.UI.UILabel();
  180. this.plcUiNumberInput12 = new PlcUiControl.PlcUiNumberInput();
  181. this.plcUiNumberDisplay175 = new PlcUiControl.PlcUiNumberDisplay();
  182. this.plcUiNumberInput13 = new PlcUiControl.PlcUiNumberInput();
  183. this.tabPage1 = new System.Windows.Forms.TabPage();
  184. this.tabPage2 = new System.Windows.Forms.TabPage();
  185. this.uiLabel9 = new Sunny.UI.UILabel();
  186. this.uiLabel10 = new Sunny.UI.UILabel();
  187. this.uiLabel11 = new Sunny.UI.UILabel();
  188. this.uiLabel12 = new Sunny.UI.UILabel();
  189. this.uiLabel15 = new Sunny.UI.UILabel();
  190. this.uiLabel18 = new Sunny.UI.UILabel();
  191. this.uiLabel19 = new Sunny.UI.UILabel();
  192. this.uiLabel20 = new Sunny.UI.UILabel();
  193. this.uiLabel21 = new Sunny.UI.UILabel();
  194. this.uiLabel22 = new Sunny.UI.UILabel();
  195. this.uiLabel23 = new Sunny.UI.UILabel();
  196. this.uiLabel24 = new Sunny.UI.UILabel();
  197. this.tabPage3 = new System.Windows.Forms.TabPage();
  198. this.uiLabel36 = new Sunny.UI.UILabel();
  199. this.uiLabel37 = new Sunny.UI.UILabel();
  200. this.uiLabel29 = new Sunny.UI.UILabel();
  201. this.uiLabel47 = new Sunny.UI.UILabel();
  202. this.uiLabel48 = new Sunny.UI.UILabel();
  203. this.uiLabel49 = new Sunny.UI.UILabel();
  204. this.uiLabel50 = new Sunny.UI.UILabel();
  205. this.uiLabel62 = new Sunny.UI.UILabel();
  206. this.uiLabel63 = new Sunny.UI.UILabel();
  207. this.uiLabel64 = new Sunny.UI.UILabel();
  208. this.uiLabel65 = new Sunny.UI.UILabel();
  209. this.uiLabel66 = new Sunny.UI.UILabel();
  210. this.uiLabel69 = new Sunny.UI.UILabel();
  211. this.uiLabel72 = new Sunny.UI.UILabel();
  212. this.uiLabel73 = new Sunny.UI.UILabel();
  213. this.uiLabel74 = new Sunny.UI.UILabel();
  214. this.uiLabel75 = new Sunny.UI.UILabel();
  215. this.plcUiNumberDisplay51 = new PlcUiControl.PlcUiNumberDisplay();
  216. this.plcUiNumberDisplay52 = new PlcUiControl.PlcUiNumberDisplay();
  217. this.plcUiNumberDisplay53 = new PlcUiControl.PlcUiNumberDisplay();
  218. this.plcUiNumberDisplay54 = new PlcUiControl.PlcUiNumberDisplay();
  219. this.plcUiNumberDisplay55 = new PlcUiControl.PlcUiNumberDisplay();
  220. this.plcUiNumberDisplay56 = new PlcUiControl.PlcUiNumberDisplay();
  221. this.plcUiNumberDisplay57 = new PlcUiControl.PlcUiNumberDisplay();
  222. this.plcUiNumberDisplay58 = new PlcUiControl.PlcUiNumberDisplay();
  223. this.plcUiNumberDisplay59 = new PlcUiControl.PlcUiNumberDisplay();
  224. this.plcUiNumberDisplay60 = new PlcUiControl.PlcUiNumberDisplay();
  225. this.plcUiNumberDisplay61 = new PlcUiControl.PlcUiNumberDisplay();
  226. this.plcUiNumberDisplay62 = new PlcUiControl.PlcUiNumberDisplay();
  227. this.plcUiNumberDisplay63 = new PlcUiControl.PlcUiNumberDisplay();
  228. this.plcUiNumberDisplay64 = new PlcUiControl.PlcUiNumberDisplay();
  229. this.plcUiNumberDisplay65 = new PlcUiControl.PlcUiNumberDisplay();
  230. this.plcUiNumberDisplay66 = new PlcUiControl.PlcUiNumberDisplay();
  231. this.plcUiNumberDisplay67 = new PlcUiControl.PlcUiNumberDisplay();
  232. this.plcUiNumberDisplay68 = new PlcUiControl.PlcUiNumberDisplay();
  233. this.plcUiNumberDisplay69 = new PlcUiControl.PlcUiNumberDisplay();
  234. this.plcUiNumberDisplay70 = new PlcUiControl.PlcUiNumberDisplay();
  235. this.plcUiNumberDisplay71 = new PlcUiControl.PlcUiNumberDisplay();
  236. this.plcUiNumberDisplay72 = new PlcUiControl.PlcUiNumberDisplay();
  237. this.txt测试3BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  238. this.txt测试3BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  239. this.txt测试3BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  240. this.txt测试3BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  241. this.txt测试3BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  242. this.txt测试3BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  243. this.txt测试3BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  244. this.txt测试3BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  245. this.txt测试3BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  246. this.txt测试3BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  247. this.plcUiNumberDisplay73 = new PlcUiControl.PlcUiNumberDisplay();
  248. this.plcUiNumberDisplay74 = new PlcUiControl.PlcUiNumberDisplay();
  249. this.plcUiNumberDisplay75 = new PlcUiControl.PlcUiNumberDisplay();
  250. this.txt测试3BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  251. this.txt测试3统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  252. this.txt测试3BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  253. this.tabPage4 = new System.Windows.Forms.TabPage();
  254. this.plcUiNumberDisplay89 = new PlcUiControl.PlcUiNumberDisplay();
  255. this.plcUiNumberDisplay90 = new PlcUiControl.PlcUiNumberDisplay();
  256. this.plcUiNumberDisplay91 = new PlcUiControl.PlcUiNumberDisplay();
  257. this.plcUiNumberDisplay92 = new PlcUiControl.PlcUiNumberDisplay();
  258. this.plcUiNumberDisplay93 = new PlcUiControl.PlcUiNumberDisplay();
  259. this.plcUiNumberDisplay94 = new PlcUiControl.PlcUiNumberDisplay();
  260. this.plcUiNumberDisplay95 = new PlcUiControl.PlcUiNumberDisplay();
  261. this.plcUiNumberDisplay96 = new PlcUiControl.PlcUiNumberDisplay();
  262. this.plcUiNumberDisplay97 = new PlcUiControl.PlcUiNumberDisplay();
  263. this.plcUiNumberDisplay98 = new PlcUiControl.PlcUiNumberDisplay();
  264. this.plcUiNumberDisplay99 = new PlcUiControl.PlcUiNumberDisplay();
  265. this.plcUiNumberDisplay100 = new PlcUiControl.PlcUiNumberDisplay();
  266. this.plcUiNumberDisplay76 = new PlcUiControl.PlcUiNumberDisplay();
  267. this.plcUiNumberDisplay77 = new PlcUiControl.PlcUiNumberDisplay();
  268. this.plcUiNumberDisplay78 = new PlcUiControl.PlcUiNumberDisplay();
  269. this.plcUiNumberDisplay79 = new PlcUiControl.PlcUiNumberDisplay();
  270. this.plcUiNumberDisplay80 = new PlcUiControl.PlcUiNumberDisplay();
  271. this.plcUiNumberDisplay81 = new PlcUiControl.PlcUiNumberDisplay();
  272. this.plcUiNumberDisplay82 = new PlcUiControl.PlcUiNumberDisplay();
  273. this.plcUiNumberDisplay83 = new PlcUiControl.PlcUiNumberDisplay();
  274. this.plcUiNumberDisplay84 = new PlcUiControl.PlcUiNumberDisplay();
  275. this.plcUiNumberDisplay85 = new PlcUiControl.PlcUiNumberDisplay();
  276. this.plcUiNumberDisplay86 = new PlcUiControl.PlcUiNumberDisplay();
  277. this.plcUiNumberDisplay87 = new PlcUiControl.PlcUiNumberDisplay();
  278. this.plcUiNumberDisplay88 = new PlcUiControl.PlcUiNumberDisplay();
  279. this.txt测试4统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  280. this.txt测试4BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  281. this.txt测试4BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  282. this.txt测试4BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  283. this.txt测试4BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  284. this.txt测试4BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  285. this.txt测试4BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  286. this.txt测试4BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  287. this.txt测试4BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  288. this.txt测试4BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  289. this.txt测试4BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  290. this.txt测试4BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  291. this.txt测试4BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  292. this.uiLabel38 = new Sunny.UI.UILabel();
  293. this.uiLabel39 = new Sunny.UI.UILabel();
  294. this.uiLabel40 = new Sunny.UI.UILabel();
  295. this.uiLabel41 = new Sunny.UI.UILabel();
  296. this.uiLabel42 = new Sunny.UI.UILabel();
  297. this.uiLabel43 = new Sunny.UI.UILabel();
  298. this.uiLabel44 = new Sunny.UI.UILabel();
  299. this.uiLabel45 = new Sunny.UI.UILabel();
  300. this.uiLabel46 = new Sunny.UI.UILabel();
  301. this.uiLabel51 = new Sunny.UI.UILabel();
  302. this.uiLabel52 = new Sunny.UI.UILabel();
  303. this.uiLabel53 = new Sunny.UI.UILabel();
  304. this.uiLabel54 = new Sunny.UI.UILabel();
  305. this.uiLabel55 = new Sunny.UI.UILabel();
  306. this.uiLabel56 = new Sunny.UI.UILabel();
  307. this.uiLabel57 = new Sunny.UI.UILabel();
  308. this.uiLabel58 = new Sunny.UI.UILabel();
  309. this.tabPage5 = new System.Windows.Forms.TabPage();
  310. this.plcUiNumberDisplay114 = new PlcUiControl.PlcUiNumberDisplay();
  311. this.plcUiNumberDisplay115 = new PlcUiControl.PlcUiNumberDisplay();
  312. this.plcUiNumberDisplay116 = new PlcUiControl.PlcUiNumberDisplay();
  313. this.plcUiNumberDisplay117 = new PlcUiControl.PlcUiNumberDisplay();
  314. this.plcUiNumberDisplay118 = new PlcUiControl.PlcUiNumberDisplay();
  315. this.plcUiNumberDisplay119 = new PlcUiControl.PlcUiNumberDisplay();
  316. this.plcUiNumberDisplay120 = new PlcUiControl.PlcUiNumberDisplay();
  317. this.plcUiNumberDisplay121 = new PlcUiControl.PlcUiNumberDisplay();
  318. this.plcUiNumberDisplay122 = new PlcUiControl.PlcUiNumberDisplay();
  319. this.plcUiNumberDisplay123 = new PlcUiControl.PlcUiNumberDisplay();
  320. this.plcUiNumberDisplay124 = new PlcUiControl.PlcUiNumberDisplay();
  321. this.plcUiNumberDisplay125 = new PlcUiControl.PlcUiNumberDisplay();
  322. this.plcUiNumberDisplay101 = new PlcUiControl.PlcUiNumberDisplay();
  323. this.plcUiNumberDisplay102 = new PlcUiControl.PlcUiNumberDisplay();
  324. this.plcUiNumberDisplay103 = new PlcUiControl.PlcUiNumberDisplay();
  325. this.plcUiNumberDisplay104 = new PlcUiControl.PlcUiNumberDisplay();
  326. this.plcUiNumberDisplay105 = new PlcUiControl.PlcUiNumberDisplay();
  327. this.plcUiNumberDisplay106 = new PlcUiControl.PlcUiNumberDisplay();
  328. this.plcUiNumberDisplay107 = new PlcUiControl.PlcUiNumberDisplay();
  329. this.plcUiNumberDisplay108 = new PlcUiControl.PlcUiNumberDisplay();
  330. this.plcUiNumberDisplay109 = new PlcUiControl.PlcUiNumberDisplay();
  331. this.plcUiNumberDisplay110 = new PlcUiControl.PlcUiNumberDisplay();
  332. this.plcUiNumberDisplay111 = new PlcUiControl.PlcUiNumberDisplay();
  333. this.plcUiNumberDisplay112 = new PlcUiControl.PlcUiNumberDisplay();
  334. this.plcUiNumberDisplay113 = new PlcUiControl.PlcUiNumberDisplay();
  335. this.txt热测统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  336. this.txt热测BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  337. this.txt热测BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  338. this.txt热测BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  339. this.txt热测BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  340. this.txt热测BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  341. this.txt热测BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  342. this.txt热测BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  343. this.txt热测BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  344. this.txt热测BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  345. this.txt热测BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  346. this.txt热测BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  347. this.txt热测BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  348. this.uiLabel59 = new Sunny.UI.UILabel();
  349. this.uiLabel60 = new Sunny.UI.UILabel();
  350. this.uiLabel61 = new Sunny.UI.UILabel();
  351. this.uiLabel67 = new Sunny.UI.UILabel();
  352. this.uiLabel68 = new Sunny.UI.UILabel();
  353. this.uiLabel70 = new Sunny.UI.UILabel();
  354. this.uiLabel71 = new Sunny.UI.UILabel();
  355. this.uiLabel76 = new Sunny.UI.UILabel();
  356. this.uiLabel77 = new Sunny.UI.UILabel();
  357. this.uiLabel78 = new Sunny.UI.UILabel();
  358. this.uiLabel79 = new Sunny.UI.UILabel();
  359. this.uiLabel80 = new Sunny.UI.UILabel();
  360. this.uiLabel81 = new Sunny.UI.UILabel();
  361. this.uiLabel82 = new Sunny.UI.UILabel();
  362. this.uiLabel83 = new Sunny.UI.UILabel();
  363. this.uiLabel84 = new Sunny.UI.UILabel();
  364. this.uiLabel85 = new Sunny.UI.UILabel();
  365. this.tabPage6 = new System.Windows.Forms.TabPage();
  366. this.plcUiNumberDisplay139 = new PlcUiControl.PlcUiNumberDisplay();
  367. this.plcUiNumberDisplay140 = new PlcUiControl.PlcUiNumberDisplay();
  368. this.plcUiNumberDisplay141 = new PlcUiControl.PlcUiNumberDisplay();
  369. this.plcUiNumberDisplay142 = new PlcUiControl.PlcUiNumberDisplay();
  370. this.plcUiNumberDisplay143 = new PlcUiControl.PlcUiNumberDisplay();
  371. this.plcUiNumberDisplay144 = new PlcUiControl.PlcUiNumberDisplay();
  372. this.plcUiNumberDisplay145 = new PlcUiControl.PlcUiNumberDisplay();
  373. this.plcUiNumberDisplay146 = new PlcUiControl.PlcUiNumberDisplay();
  374. this.plcUiNumberDisplay147 = new PlcUiControl.PlcUiNumberDisplay();
  375. this.plcUiNumberDisplay148 = new PlcUiControl.PlcUiNumberDisplay();
  376. this.plcUiNumberDisplay149 = new PlcUiControl.PlcUiNumberDisplay();
  377. this.plcUiNumberDisplay150 = new PlcUiControl.PlcUiNumberDisplay();
  378. this.plcUiNumberDisplay126 = new PlcUiControl.PlcUiNumberDisplay();
  379. this.plcUiNumberDisplay127 = new PlcUiControl.PlcUiNumberDisplay();
  380. this.plcUiNumberDisplay128 = new PlcUiControl.PlcUiNumberDisplay();
  381. this.plcUiNumberDisplay129 = new PlcUiControl.PlcUiNumberDisplay();
  382. this.plcUiNumberDisplay130 = new PlcUiControl.PlcUiNumberDisplay();
  383. this.plcUiNumberDisplay131 = new PlcUiControl.PlcUiNumberDisplay();
  384. this.plcUiNumberDisplay132 = new PlcUiControl.PlcUiNumberDisplay();
  385. this.plcUiNumberDisplay133 = new PlcUiControl.PlcUiNumberDisplay();
  386. this.plcUiNumberDisplay134 = new PlcUiControl.PlcUiNumberDisplay();
  387. this.plcUiNumberDisplay135 = new PlcUiControl.PlcUiNumberDisplay();
  388. this.plcUiNumberDisplay136 = new PlcUiControl.PlcUiNumberDisplay();
  389. this.plcUiNumberDisplay137 = new PlcUiControl.PlcUiNumberDisplay();
  390. this.plcUiNumberDisplay138 = new PlcUiControl.PlcUiNumberDisplay();
  391. this.txt测试5统计起始数量 = new PlcUiControl.PlcUiNumberInput();
  392. this.txt测试5BIN12占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  393. this.txt测试5BIN11占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  394. this.txt测试5BIN10占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  395. this.txt测试5BIN9占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  396. this.txt测试5BIN8占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  397. this.txt测试5BIN7占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  398. this.txt测试5BIN6占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  399. this.txt测试5BIN5占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  400. this.txt测试5BIN4占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  401. this.txt测试5BIN3占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  402. this.txt测试5BIN2占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  403. this.txt测试5BIN1占比上限百分比 = new PlcUiControl.PlcUiNumberInput();
  404. this.uiLabel86 = new Sunny.UI.UILabel();
  405. this.uiLabel87 = new Sunny.UI.UILabel();
  406. this.uiLabel88 = new Sunny.UI.UILabel();
  407. this.uiLabel89 = new Sunny.UI.UILabel();
  408. this.uiLabel90 = new Sunny.UI.UILabel();
  409. this.uiLabel91 = new Sunny.UI.UILabel();
  410. this.uiLabel92 = new Sunny.UI.UILabel();
  411. this.uiLabel93 = new Sunny.UI.UILabel();
  412. this.uiLabel94 = new Sunny.UI.UILabel();
  413. this.uiLabel95 = new Sunny.UI.UILabel();
  414. this.uiLabel96 = new Sunny.UI.UILabel();
  415. this.uiLabel97 = new Sunny.UI.UILabel();
  416. this.uiLabel98 = new Sunny.UI.UILabel();
  417. this.uiLabel99 = new Sunny.UI.UILabel();
  418. this.uiLabel100 = new Sunny.UI.UILabel();
  419. this.uiLabel101 = new Sunny.UI.UILabel();
  420. this.uiLabel102 = new Sunny.UI.UILabel();
  421. this.uiTabControl1.SuspendLayout();
  422. this.tabPage7.SuspendLayout();
  423. this.tabPage1.SuspendLayout();
  424. this.tabPage2.SuspendLayout();
  425. this.tabPage3.SuspendLayout();
  426. this.tabPage4.SuspendLayout();
  427. this.tabPage5.SuspendLayout();
  428. this.tabPage6.SuspendLayout();
  429. this.SuspendLayout();
  430. //
  431. // plcUiNumberDisplay17
  432. //
  433. this.plcUiNumberDisplay17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  434. this.plcUiNumberDisplay17.DecimalPlaces = 2;
  435. this.plcUiNumberDisplay17.DisabilityTriggerNode = null;
  436. this.plcUiNumberDisplay17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  437. this.plcUiNumberDisplay17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  438. this.plcUiNumberDisplay17.Gain = 1D;
  439. this.plcUiNumberDisplay17.IntegerDigits = 0;
  440. this.plcUiNumberDisplay17.InvisibilityTriggerNode = null;
  441. this.plcUiNumberDisplay17.Location = new System.Drawing.Point(243, 445);
  442. this.plcUiNumberDisplay17.Name = "plcUiNumberDisplay17";
  443. this.plcUiNumberDisplay17.Preffix = null;
  444. this.plcUiNumberDisplay17.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[12]", NodeType.REAL, null);
  445. this.plcUiNumberDisplay17.Size = new System.Drawing.Size(80, 27);
  446. this.plcUiNumberDisplay17.Suffix = "%";
  447. this.plcUiNumberDisplay17.TabIndex = 115;
  448. this.plcUiNumberDisplay17.Text = "1.00";
  449. this.plcUiNumberDisplay17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  450. this.plcUiNumberDisplay17.WriteNode = null;
  451. //
  452. // plcUiNumberDisplay18
  453. //
  454. this.plcUiNumberDisplay18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  455. this.plcUiNumberDisplay18.DecimalPlaces = 2;
  456. this.plcUiNumberDisplay18.DisabilityTriggerNode = null;
  457. this.plcUiNumberDisplay18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  458. this.plcUiNumberDisplay18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  459. this.plcUiNumberDisplay18.Gain = 1D;
  460. this.plcUiNumberDisplay18.IntegerDigits = 0;
  461. this.plcUiNumberDisplay18.InvisibilityTriggerNode = null;
  462. this.plcUiNumberDisplay18.Location = new System.Drawing.Point(243, 408);
  463. this.plcUiNumberDisplay18.Name = "plcUiNumberDisplay18";
  464. this.plcUiNumberDisplay18.Preffix = null;
  465. this.plcUiNumberDisplay18.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[11]", NodeType.REAL, null);
  466. this.plcUiNumberDisplay18.Size = new System.Drawing.Size(80, 27);
  467. this.plcUiNumberDisplay18.Suffix = "%";
  468. this.plcUiNumberDisplay18.TabIndex = 113;
  469. this.plcUiNumberDisplay18.Text = "1.00";
  470. this.plcUiNumberDisplay18.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  471. this.plcUiNumberDisplay18.WriteNode = null;
  472. //
  473. // plcUiNumberDisplay19
  474. //
  475. this.plcUiNumberDisplay19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  476. this.plcUiNumberDisplay19.DecimalPlaces = 2;
  477. this.plcUiNumberDisplay19.DisabilityTriggerNode = null;
  478. this.plcUiNumberDisplay19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  479. this.plcUiNumberDisplay19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  480. this.plcUiNumberDisplay19.Gain = 1D;
  481. this.plcUiNumberDisplay19.IntegerDigits = 0;
  482. this.plcUiNumberDisplay19.InvisibilityTriggerNode = null;
  483. this.plcUiNumberDisplay19.Location = new System.Drawing.Point(243, 371);
  484. this.plcUiNumberDisplay19.Name = "plcUiNumberDisplay19";
  485. this.plcUiNumberDisplay19.Preffix = null;
  486. this.plcUiNumberDisplay19.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[10]", NodeType.REAL, null);
  487. this.plcUiNumberDisplay19.Size = new System.Drawing.Size(80, 27);
  488. this.plcUiNumberDisplay19.Suffix = "%";
  489. this.plcUiNumberDisplay19.TabIndex = 111;
  490. this.plcUiNumberDisplay19.Text = "1.00";
  491. this.plcUiNumberDisplay19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  492. this.plcUiNumberDisplay19.WriteNode = null;
  493. //
  494. // plcUiNumberDisplay20
  495. //
  496. this.plcUiNumberDisplay20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  497. this.plcUiNumberDisplay20.DecimalPlaces = 2;
  498. this.plcUiNumberDisplay20.DisabilityTriggerNode = null;
  499. this.plcUiNumberDisplay20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  500. this.plcUiNumberDisplay20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  501. this.plcUiNumberDisplay20.Gain = 1D;
  502. this.plcUiNumberDisplay20.IntegerDigits = 0;
  503. this.plcUiNumberDisplay20.InvisibilityTriggerNode = null;
  504. this.plcUiNumberDisplay20.Location = new System.Drawing.Point(243, 334);
  505. this.plcUiNumberDisplay20.Name = "plcUiNumberDisplay20";
  506. this.plcUiNumberDisplay20.Preffix = null;
  507. this.plcUiNumberDisplay20.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[9]", NodeType.REAL, null);
  508. this.plcUiNumberDisplay20.Size = new System.Drawing.Size(80, 27);
  509. this.plcUiNumberDisplay20.Suffix = "%";
  510. this.plcUiNumberDisplay20.TabIndex = 109;
  511. this.plcUiNumberDisplay20.Text = "1.00";
  512. this.plcUiNumberDisplay20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  513. this.plcUiNumberDisplay20.WriteNode = null;
  514. //
  515. // plcUiNumberDisplay21
  516. //
  517. this.plcUiNumberDisplay21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  518. this.plcUiNumberDisplay21.DecimalPlaces = 2;
  519. this.plcUiNumberDisplay21.DisabilityTriggerNode = null;
  520. this.plcUiNumberDisplay21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  521. this.plcUiNumberDisplay21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  522. this.plcUiNumberDisplay21.Gain = 1D;
  523. this.plcUiNumberDisplay21.IntegerDigits = 0;
  524. this.plcUiNumberDisplay21.InvisibilityTriggerNode = null;
  525. this.plcUiNumberDisplay21.Location = new System.Drawing.Point(243, 297);
  526. this.plcUiNumberDisplay21.Name = "plcUiNumberDisplay21";
  527. this.plcUiNumberDisplay21.Preffix = null;
  528. this.plcUiNumberDisplay21.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[8]", NodeType.REAL, null);
  529. this.plcUiNumberDisplay21.Size = new System.Drawing.Size(80, 27);
  530. this.plcUiNumberDisplay21.Suffix = "%";
  531. this.plcUiNumberDisplay21.TabIndex = 107;
  532. this.plcUiNumberDisplay21.Text = "1.00";
  533. this.plcUiNumberDisplay21.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  534. this.plcUiNumberDisplay21.WriteNode = null;
  535. //
  536. // plcUiNumberDisplay22
  537. //
  538. this.plcUiNumberDisplay22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  539. this.plcUiNumberDisplay22.DecimalPlaces = 2;
  540. this.plcUiNumberDisplay22.DisabilityTriggerNode = null;
  541. this.plcUiNumberDisplay22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  542. this.plcUiNumberDisplay22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  543. this.plcUiNumberDisplay22.Gain = 1D;
  544. this.plcUiNumberDisplay22.IntegerDigits = 0;
  545. this.plcUiNumberDisplay22.InvisibilityTriggerNode = null;
  546. this.plcUiNumberDisplay22.Location = new System.Drawing.Point(243, 260);
  547. this.plcUiNumberDisplay22.Name = "plcUiNumberDisplay22";
  548. this.plcUiNumberDisplay22.Preffix = null;
  549. this.plcUiNumberDisplay22.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[7]", NodeType.REAL, null);
  550. this.plcUiNumberDisplay22.Size = new System.Drawing.Size(80, 27);
  551. this.plcUiNumberDisplay22.Suffix = "%";
  552. this.plcUiNumberDisplay22.TabIndex = 105;
  553. this.plcUiNumberDisplay22.Text = "1.00";
  554. this.plcUiNumberDisplay22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  555. this.plcUiNumberDisplay22.WriteNode = null;
  556. //
  557. // plcUiNumberDisplay23
  558. //
  559. this.plcUiNumberDisplay23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  560. this.plcUiNumberDisplay23.DecimalPlaces = 2;
  561. this.plcUiNumberDisplay23.DisabilityTriggerNode = null;
  562. this.plcUiNumberDisplay23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  563. this.plcUiNumberDisplay23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  564. this.plcUiNumberDisplay23.Gain = 1D;
  565. this.plcUiNumberDisplay23.IntegerDigits = 0;
  566. this.plcUiNumberDisplay23.InvisibilityTriggerNode = null;
  567. this.plcUiNumberDisplay23.Location = new System.Drawing.Point(243, 223);
  568. this.plcUiNumberDisplay23.Name = "plcUiNumberDisplay23";
  569. this.plcUiNumberDisplay23.Preffix = null;
  570. this.plcUiNumberDisplay23.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[6]", NodeType.REAL, null);
  571. this.plcUiNumberDisplay23.Size = new System.Drawing.Size(80, 27);
  572. this.plcUiNumberDisplay23.Suffix = "%";
  573. this.plcUiNumberDisplay23.TabIndex = 103;
  574. this.plcUiNumberDisplay23.Text = "1.00";
  575. this.plcUiNumberDisplay23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  576. this.plcUiNumberDisplay23.WriteNode = null;
  577. //
  578. // plcUiNumberDisplay24
  579. //
  580. this.plcUiNumberDisplay24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  581. this.plcUiNumberDisplay24.DecimalPlaces = 2;
  582. this.plcUiNumberDisplay24.DisabilityTriggerNode = null;
  583. this.plcUiNumberDisplay24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  584. this.plcUiNumberDisplay24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  585. this.plcUiNumberDisplay24.Gain = 1D;
  586. this.plcUiNumberDisplay24.IntegerDigits = 0;
  587. this.plcUiNumberDisplay24.InvisibilityTriggerNode = null;
  588. this.plcUiNumberDisplay24.Location = new System.Drawing.Point(243, 186);
  589. this.plcUiNumberDisplay24.Name = "plcUiNumberDisplay24";
  590. this.plcUiNumberDisplay24.Preffix = null;
  591. this.plcUiNumberDisplay24.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[5]", NodeType.REAL, null);
  592. this.plcUiNumberDisplay24.Size = new System.Drawing.Size(80, 27);
  593. this.plcUiNumberDisplay24.Suffix = "%";
  594. this.plcUiNumberDisplay24.TabIndex = 101;
  595. this.plcUiNumberDisplay24.Text = "1.00";
  596. this.plcUiNumberDisplay24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  597. this.plcUiNumberDisplay24.WriteNode = null;
  598. //
  599. // plcUiNumberDisplay25
  600. //
  601. this.plcUiNumberDisplay25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  602. this.plcUiNumberDisplay25.DecimalPlaces = 2;
  603. this.plcUiNumberDisplay25.DisabilityTriggerNode = null;
  604. this.plcUiNumberDisplay25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  605. this.plcUiNumberDisplay25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  606. this.plcUiNumberDisplay25.Gain = 1D;
  607. this.plcUiNumberDisplay25.IntegerDigits = 0;
  608. this.plcUiNumberDisplay25.InvisibilityTriggerNode = null;
  609. this.plcUiNumberDisplay25.Location = new System.Drawing.Point(243, 149);
  610. this.plcUiNumberDisplay25.Name = "plcUiNumberDisplay25";
  611. this.plcUiNumberDisplay25.Preffix = null;
  612. this.plcUiNumberDisplay25.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[4]", NodeType.REAL, null);
  613. this.plcUiNumberDisplay25.Size = new System.Drawing.Size(80, 27);
  614. this.plcUiNumberDisplay25.Suffix = "%";
  615. this.plcUiNumberDisplay25.TabIndex = 99;
  616. this.plcUiNumberDisplay25.Text = "1.00";
  617. this.plcUiNumberDisplay25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  618. this.plcUiNumberDisplay25.WriteNode = null;
  619. //
  620. // plcUiNumberDisplay26
  621. //
  622. this.plcUiNumberDisplay26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  623. this.plcUiNumberDisplay26.DecimalPlaces = 2;
  624. this.plcUiNumberDisplay26.DisabilityTriggerNode = null;
  625. this.plcUiNumberDisplay26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  626. this.plcUiNumberDisplay26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  627. this.plcUiNumberDisplay26.Gain = 1D;
  628. this.plcUiNumberDisplay26.IntegerDigits = 0;
  629. this.plcUiNumberDisplay26.InvisibilityTriggerNode = null;
  630. this.plcUiNumberDisplay26.Location = new System.Drawing.Point(243, 112);
  631. this.plcUiNumberDisplay26.Name = "plcUiNumberDisplay26";
  632. this.plcUiNumberDisplay26.Preffix = null;
  633. this.plcUiNumberDisplay26.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[3]", NodeType.REAL, null);
  634. this.plcUiNumberDisplay26.Size = new System.Drawing.Size(80, 27);
  635. this.plcUiNumberDisplay26.Suffix = "%";
  636. this.plcUiNumberDisplay26.TabIndex = 97;
  637. this.plcUiNumberDisplay26.Text = "1.00";
  638. this.plcUiNumberDisplay26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  639. this.plcUiNumberDisplay26.WriteNode = null;
  640. //
  641. // plcUiNumberDisplay27
  642. //
  643. this.plcUiNumberDisplay27.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  644. this.plcUiNumberDisplay27.DecimalPlaces = 2;
  645. this.plcUiNumberDisplay27.DisabilityTriggerNode = null;
  646. this.plcUiNumberDisplay27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  647. this.plcUiNumberDisplay27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  648. this.plcUiNumberDisplay27.Gain = 1D;
  649. this.plcUiNumberDisplay27.IntegerDigits = 0;
  650. this.plcUiNumberDisplay27.InvisibilityTriggerNode = null;
  651. this.plcUiNumberDisplay27.Location = new System.Drawing.Point(243, 75);
  652. this.plcUiNumberDisplay27.Name = "plcUiNumberDisplay27";
  653. this.plcUiNumberDisplay27.Preffix = null;
  654. this.plcUiNumberDisplay27.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[2]", NodeType.REAL, null);
  655. this.plcUiNumberDisplay27.Size = new System.Drawing.Size(80, 27);
  656. this.plcUiNumberDisplay27.Suffix = "%";
  657. this.plcUiNumberDisplay27.TabIndex = 95;
  658. this.plcUiNumberDisplay27.Text = "1.00";
  659. this.plcUiNumberDisplay27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  660. this.plcUiNumberDisplay27.WriteNode = null;
  661. //
  662. // plcUiNumberDisplay28
  663. //
  664. this.plcUiNumberDisplay28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  665. this.plcUiNumberDisplay28.DecimalPlaces = 2;
  666. this.plcUiNumberDisplay28.DisabilityTriggerNode = null;
  667. this.plcUiNumberDisplay28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  668. this.plcUiNumberDisplay28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  669. this.plcUiNumberDisplay28.Gain = 1D;
  670. this.plcUiNumberDisplay28.IntegerDigits = 0;
  671. this.plcUiNumberDisplay28.InvisibilityTriggerNode = null;
  672. this.plcUiNumberDisplay28.Location = new System.Drawing.Point(243, 38);
  673. this.plcUiNumberDisplay28.Name = "plcUiNumberDisplay28";
  674. this.plcUiNumberDisplay28.Preffix = null;
  675. this.plcUiNumberDisplay28.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin当前占比比率[1]", NodeType.REAL, null);
  676. this.plcUiNumberDisplay28.Size = new System.Drawing.Size(80, 27);
  677. this.plcUiNumberDisplay28.Suffix = "%";
  678. this.plcUiNumberDisplay28.TabIndex = 93;
  679. this.plcUiNumberDisplay28.Text = "1.00";
  680. this.plcUiNumberDisplay28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  681. this.plcUiNumberDisplay28.WriteNode = null;
  682. //
  683. // plcUiNumberDisplay15
  684. //
  685. this.plcUiNumberDisplay15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  686. this.plcUiNumberDisplay15.DecimalPlaces = 0;
  687. this.plcUiNumberDisplay15.DisabilityTriggerNode = null;
  688. this.plcUiNumberDisplay15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  689. this.plcUiNumberDisplay15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  690. this.plcUiNumberDisplay15.Gain = 1D;
  691. this.plcUiNumberDisplay15.IntegerDigits = 0;
  692. this.plcUiNumberDisplay15.InvisibilityTriggerNode = null;
  693. this.plcUiNumberDisplay15.Location = new System.Drawing.Point(157, 445);
  694. this.plcUiNumberDisplay15.Name = "plcUiNumberDisplay15";
  695. this.plcUiNumberDisplay15.Preffix = null;
  696. this.plcUiNumberDisplay15.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[12]", NodeType.UDINT, null);
  697. this.plcUiNumberDisplay15.Size = new System.Drawing.Size(80, 27);
  698. this.plcUiNumberDisplay15.Suffix = null;
  699. this.plcUiNumberDisplay15.TabIndex = 91;
  700. this.plcUiNumberDisplay15.Text = "1";
  701. this.plcUiNumberDisplay15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  702. this.plcUiNumberDisplay15.WriteNode = null;
  703. //
  704. // plcUiNumberDisplay16
  705. //
  706. this.plcUiNumberDisplay16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  707. this.plcUiNumberDisplay16.DecimalPlaces = 0;
  708. this.plcUiNumberDisplay16.DisabilityTriggerNode = null;
  709. this.plcUiNumberDisplay16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  710. this.plcUiNumberDisplay16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  711. this.plcUiNumberDisplay16.Gain = 1D;
  712. this.plcUiNumberDisplay16.IntegerDigits = 0;
  713. this.plcUiNumberDisplay16.InvisibilityTriggerNode = null;
  714. this.plcUiNumberDisplay16.Location = new System.Drawing.Point(157, 408);
  715. this.plcUiNumberDisplay16.Name = "plcUiNumberDisplay16";
  716. this.plcUiNumberDisplay16.Preffix = null;
  717. this.plcUiNumberDisplay16.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[11]", NodeType.UDINT, null);
  718. this.plcUiNumberDisplay16.Size = new System.Drawing.Size(80, 27);
  719. this.plcUiNumberDisplay16.Suffix = null;
  720. this.plcUiNumberDisplay16.TabIndex = 89;
  721. this.plcUiNumberDisplay16.Text = "1";
  722. this.plcUiNumberDisplay16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  723. this.plcUiNumberDisplay16.WriteNode = null;
  724. //
  725. // plcUiNumberDisplay13
  726. //
  727. this.plcUiNumberDisplay13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  728. this.plcUiNumberDisplay13.DecimalPlaces = 0;
  729. this.plcUiNumberDisplay13.DisabilityTriggerNode = null;
  730. this.plcUiNumberDisplay13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  731. this.plcUiNumberDisplay13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  732. this.plcUiNumberDisplay13.Gain = 1D;
  733. this.plcUiNumberDisplay13.IntegerDigits = 0;
  734. this.plcUiNumberDisplay13.InvisibilityTriggerNode = null;
  735. this.plcUiNumberDisplay13.Location = new System.Drawing.Point(157, 371);
  736. this.plcUiNumberDisplay13.Name = "plcUiNumberDisplay13";
  737. this.plcUiNumberDisplay13.Preffix = null;
  738. this.plcUiNumberDisplay13.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[10]", NodeType.UDINT, null);
  739. this.plcUiNumberDisplay13.Size = new System.Drawing.Size(80, 27);
  740. this.plcUiNumberDisplay13.Suffix = null;
  741. this.plcUiNumberDisplay13.TabIndex = 87;
  742. this.plcUiNumberDisplay13.Text = "1";
  743. this.plcUiNumberDisplay13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  744. this.plcUiNumberDisplay13.WriteNode = null;
  745. //
  746. // plcUiNumberDisplay14
  747. //
  748. this.plcUiNumberDisplay14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  749. this.plcUiNumberDisplay14.DecimalPlaces = 0;
  750. this.plcUiNumberDisplay14.DisabilityTriggerNode = null;
  751. this.plcUiNumberDisplay14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  752. this.plcUiNumberDisplay14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  753. this.plcUiNumberDisplay14.Gain = 1D;
  754. this.plcUiNumberDisplay14.IntegerDigits = 0;
  755. this.plcUiNumberDisplay14.InvisibilityTriggerNode = null;
  756. this.plcUiNumberDisplay14.Location = new System.Drawing.Point(157, 335);
  757. this.plcUiNumberDisplay14.Name = "plcUiNumberDisplay14";
  758. this.plcUiNumberDisplay14.Preffix = null;
  759. this.plcUiNumberDisplay14.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[9]", NodeType.UDINT, null);
  760. this.plcUiNumberDisplay14.Size = new System.Drawing.Size(80, 27);
  761. this.plcUiNumberDisplay14.Suffix = null;
  762. this.plcUiNumberDisplay14.TabIndex = 85;
  763. this.plcUiNumberDisplay14.Text = "1";
  764. this.plcUiNumberDisplay14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  765. this.plcUiNumberDisplay14.WriteNode = null;
  766. //
  767. // plcUiNumberDisplay11
  768. //
  769. this.plcUiNumberDisplay11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  770. this.plcUiNumberDisplay11.DecimalPlaces = 0;
  771. this.plcUiNumberDisplay11.DisabilityTriggerNode = null;
  772. this.plcUiNumberDisplay11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  773. this.plcUiNumberDisplay11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  774. this.plcUiNumberDisplay11.Gain = 1D;
  775. this.plcUiNumberDisplay11.IntegerDigits = 0;
  776. this.plcUiNumberDisplay11.InvisibilityTriggerNode = null;
  777. this.plcUiNumberDisplay11.Location = new System.Drawing.Point(157, 297);
  778. this.plcUiNumberDisplay11.Name = "plcUiNumberDisplay11";
  779. this.plcUiNumberDisplay11.Preffix = null;
  780. this.plcUiNumberDisplay11.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[8]", NodeType.UDINT, null);
  781. this.plcUiNumberDisplay11.Size = new System.Drawing.Size(80, 27);
  782. this.plcUiNumberDisplay11.Suffix = null;
  783. this.plcUiNumberDisplay11.TabIndex = 83;
  784. this.plcUiNumberDisplay11.Text = "1";
  785. this.plcUiNumberDisplay11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  786. this.plcUiNumberDisplay11.WriteNode = null;
  787. //
  788. // plcUiNumberDisplay12
  789. //
  790. this.plcUiNumberDisplay12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  791. this.plcUiNumberDisplay12.DecimalPlaces = 0;
  792. this.plcUiNumberDisplay12.DisabilityTriggerNode = null;
  793. this.plcUiNumberDisplay12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  794. this.plcUiNumberDisplay12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  795. this.plcUiNumberDisplay12.Gain = 1D;
  796. this.plcUiNumberDisplay12.IntegerDigits = 0;
  797. this.plcUiNumberDisplay12.InvisibilityTriggerNode = null;
  798. this.plcUiNumberDisplay12.Location = new System.Drawing.Point(157, 260);
  799. this.plcUiNumberDisplay12.Name = "plcUiNumberDisplay12";
  800. this.plcUiNumberDisplay12.Preffix = null;
  801. this.plcUiNumberDisplay12.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[7]", NodeType.UDINT, null);
  802. this.plcUiNumberDisplay12.Size = new System.Drawing.Size(80, 27);
  803. this.plcUiNumberDisplay12.Suffix = null;
  804. this.plcUiNumberDisplay12.TabIndex = 81;
  805. this.plcUiNumberDisplay12.Text = "1";
  806. this.plcUiNumberDisplay12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  807. this.plcUiNumberDisplay12.WriteNode = null;
  808. //
  809. // plcUiNumberDisplay9
  810. //
  811. this.plcUiNumberDisplay9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  812. this.plcUiNumberDisplay9.DecimalPlaces = 0;
  813. this.plcUiNumberDisplay9.DisabilityTriggerNode = null;
  814. this.plcUiNumberDisplay9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  815. this.plcUiNumberDisplay9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  816. this.plcUiNumberDisplay9.Gain = 1D;
  817. this.plcUiNumberDisplay9.IntegerDigits = 0;
  818. this.plcUiNumberDisplay9.InvisibilityTriggerNode = null;
  819. this.plcUiNumberDisplay9.Location = new System.Drawing.Point(157, 223);
  820. this.plcUiNumberDisplay9.Name = "plcUiNumberDisplay9";
  821. this.plcUiNumberDisplay9.Preffix = null;
  822. this.plcUiNumberDisplay9.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[6]", NodeType.UDINT, null);
  823. this.plcUiNumberDisplay9.Size = new System.Drawing.Size(80, 27);
  824. this.plcUiNumberDisplay9.Suffix = null;
  825. this.plcUiNumberDisplay9.TabIndex = 79;
  826. this.plcUiNumberDisplay9.Text = "1";
  827. this.plcUiNumberDisplay9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  828. this.plcUiNumberDisplay9.WriteNode = null;
  829. //
  830. // plcUiNumberDisplay10
  831. //
  832. this.plcUiNumberDisplay10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  833. this.plcUiNumberDisplay10.DecimalPlaces = 0;
  834. this.plcUiNumberDisplay10.DisabilityTriggerNode = null;
  835. this.plcUiNumberDisplay10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  836. this.plcUiNumberDisplay10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  837. this.plcUiNumberDisplay10.Gain = 1D;
  838. this.plcUiNumberDisplay10.IntegerDigits = 0;
  839. this.plcUiNumberDisplay10.InvisibilityTriggerNode = null;
  840. this.plcUiNumberDisplay10.Location = new System.Drawing.Point(157, 186);
  841. this.plcUiNumberDisplay10.Name = "plcUiNumberDisplay10";
  842. this.plcUiNumberDisplay10.Preffix = null;
  843. this.plcUiNumberDisplay10.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[5]", NodeType.UDINT, null);
  844. this.plcUiNumberDisplay10.Size = new System.Drawing.Size(80, 27);
  845. this.plcUiNumberDisplay10.Suffix = null;
  846. this.plcUiNumberDisplay10.TabIndex = 77;
  847. this.plcUiNumberDisplay10.Text = "1";
  848. this.plcUiNumberDisplay10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  849. this.plcUiNumberDisplay10.WriteNode = null;
  850. //
  851. // plcUiNumberDisplay7
  852. //
  853. this.plcUiNumberDisplay7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  854. this.plcUiNumberDisplay7.DecimalPlaces = 0;
  855. this.plcUiNumberDisplay7.DisabilityTriggerNode = null;
  856. this.plcUiNumberDisplay7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  857. this.plcUiNumberDisplay7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  858. this.plcUiNumberDisplay7.Gain = 1D;
  859. this.plcUiNumberDisplay7.IntegerDigits = 0;
  860. this.plcUiNumberDisplay7.InvisibilityTriggerNode = null;
  861. this.plcUiNumberDisplay7.Location = new System.Drawing.Point(157, 149);
  862. this.plcUiNumberDisplay7.Name = "plcUiNumberDisplay7";
  863. this.plcUiNumberDisplay7.Preffix = null;
  864. this.plcUiNumberDisplay7.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[4]", NodeType.UDINT, null);
  865. this.plcUiNumberDisplay7.Size = new System.Drawing.Size(80, 27);
  866. this.plcUiNumberDisplay7.Suffix = null;
  867. this.plcUiNumberDisplay7.TabIndex = 75;
  868. this.plcUiNumberDisplay7.Text = "1";
  869. this.plcUiNumberDisplay7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  870. this.plcUiNumberDisplay7.WriteNode = null;
  871. //
  872. // plcUiNumberDisplay8
  873. //
  874. this.plcUiNumberDisplay8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  875. this.plcUiNumberDisplay8.DecimalPlaces = 0;
  876. this.plcUiNumberDisplay8.DisabilityTriggerNode = null;
  877. this.plcUiNumberDisplay8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  878. this.plcUiNumberDisplay8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  879. this.plcUiNumberDisplay8.Gain = 1D;
  880. this.plcUiNumberDisplay8.IntegerDigits = 0;
  881. this.plcUiNumberDisplay8.InvisibilityTriggerNode = null;
  882. this.plcUiNumberDisplay8.Location = new System.Drawing.Point(157, 112);
  883. this.plcUiNumberDisplay8.Name = "plcUiNumberDisplay8";
  884. this.plcUiNumberDisplay8.Preffix = null;
  885. this.plcUiNumberDisplay8.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[3]", NodeType.UDINT, null);
  886. this.plcUiNumberDisplay8.Size = new System.Drawing.Size(80, 27);
  887. this.plcUiNumberDisplay8.Suffix = null;
  888. this.plcUiNumberDisplay8.TabIndex = 73;
  889. this.plcUiNumberDisplay8.Text = "1";
  890. this.plcUiNumberDisplay8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  891. this.plcUiNumberDisplay8.WriteNode = null;
  892. //
  893. // uiLabel34
  894. //
  895. this.uiLabel34.AutoSize = true;
  896. this.uiLabel34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  897. this.uiLabel34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  898. this.uiLabel34.Location = new System.Drawing.Point(22, 450);
  899. this.uiLabel34.Name = "uiLabel34";
  900. this.uiLabel34.Size = new System.Drawing.Size(47, 16);
  901. this.uiLabel34.TabIndex = 71;
  902. this.uiLabel34.Text = "BIN12";
  903. //
  904. // txt测试1BIN12占比上限百分比
  905. //
  906. this.txt测试1BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  907. this.txt测试1BIN12占比上限百分比.DisabilityTriggerNode = null;
  908. this.txt测试1BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  909. this.txt测试1BIN12占比上限百分比.Gain = 1D;
  910. this.txt测试1BIN12占比上限百分比.IntegerDigits = 0;
  911. this.txt测试1BIN12占比上限百分比.InvisibilityTriggerNode = null;
  912. this.txt测试1BIN12占比上限百分比.Location = new System.Drawing.Point(70, 445);
  913. this.txt测试1BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  914. this.txt测试1BIN12占比上限百分比.Minimum = 0D;
  915. this.txt测试1BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  916. this.txt测试1BIN12占比上限百分比.Name = "txt测试1BIN12占比上限百分比";
  917. this.txt测试1BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  918. this.txt测试1BIN12占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  919. this.txt测试1BIN12占比上限百分比.ShowText = false;
  920. this.txt测试1BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  921. this.txt测试1BIN12占比上限百分比.TabIndex = 70;
  922. this.txt测试1BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  923. this.txt测试1BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  924. this.txt测试1BIN12占比上限百分比.Watermark = "";
  925. this.txt测试1BIN12占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  926. //
  927. // uiLabel35
  928. //
  929. this.uiLabel35.AutoSize = true;
  930. this.uiLabel35.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  931. this.uiLabel35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  932. this.uiLabel35.Location = new System.Drawing.Point(22, 413);
  933. this.uiLabel35.Name = "uiLabel35";
  934. this.uiLabel35.Size = new System.Drawing.Size(47, 16);
  935. this.uiLabel35.TabIndex = 69;
  936. this.uiLabel35.Text = "BIN11";
  937. //
  938. // txt测试1BIN11占比上限百分比
  939. //
  940. this.txt测试1BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  941. this.txt测试1BIN11占比上限百分比.DisabilityTriggerNode = null;
  942. this.txt测试1BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  943. this.txt测试1BIN11占比上限百分比.Gain = 1D;
  944. this.txt测试1BIN11占比上限百分比.IntegerDigits = 0;
  945. this.txt测试1BIN11占比上限百分比.InvisibilityTriggerNode = null;
  946. this.txt测试1BIN11占比上限百分比.Location = new System.Drawing.Point(70, 408);
  947. this.txt测试1BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  948. this.txt测试1BIN11占比上限百分比.Minimum = 0D;
  949. this.txt测试1BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  950. this.txt测试1BIN11占比上限百分比.Name = "txt测试1BIN11占比上限百分比";
  951. this.txt测试1BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  952. this.txt测试1BIN11占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  953. this.txt测试1BIN11占比上限百分比.ShowText = false;
  954. this.txt测试1BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  955. this.txt测试1BIN11占比上限百分比.TabIndex = 68;
  956. this.txt测试1BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  957. this.txt测试1BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  958. this.txt测试1BIN11占比上限百分比.Watermark = "";
  959. this.txt测试1BIN11占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  960. //
  961. // uiLabel32
  962. //
  963. this.uiLabel32.AutoSize = true;
  964. this.uiLabel32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  965. this.uiLabel32.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  966. this.uiLabel32.Location = new System.Drawing.Point(22, 376);
  967. this.uiLabel32.Name = "uiLabel32";
  968. this.uiLabel32.Size = new System.Drawing.Size(47, 16);
  969. this.uiLabel32.TabIndex = 67;
  970. this.uiLabel32.Text = "BIN10";
  971. //
  972. // txt测试1BIN10占比上限百分比
  973. //
  974. this.txt测试1BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  975. this.txt测试1BIN10占比上限百分比.DisabilityTriggerNode = null;
  976. this.txt测试1BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  977. this.txt测试1BIN10占比上限百分比.Gain = 1D;
  978. this.txt测试1BIN10占比上限百分比.IntegerDigits = 0;
  979. this.txt测试1BIN10占比上限百分比.InvisibilityTriggerNode = null;
  980. this.txt测试1BIN10占比上限百分比.Location = new System.Drawing.Point(70, 371);
  981. this.txt测试1BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  982. this.txt测试1BIN10占比上限百分比.Minimum = 0D;
  983. this.txt测试1BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  984. this.txt测试1BIN10占比上限百分比.Name = "txt测试1BIN10占比上限百分比";
  985. this.txt测试1BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  986. this.txt测试1BIN10占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  987. this.txt测试1BIN10占比上限百分比.ShowText = false;
  988. this.txt测试1BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  989. this.txt测试1BIN10占比上限百分比.TabIndex = 66;
  990. this.txt测试1BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  991. this.txt测试1BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  992. this.txt测试1BIN10占比上限百分比.Watermark = "";
  993. this.txt测试1BIN10占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  994. //
  995. // uiLabel33
  996. //
  997. this.uiLabel33.AutoSize = true;
  998. this.uiLabel33.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  999. this.uiLabel33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1000. this.uiLabel33.Location = new System.Drawing.Point(22, 339);
  1001. this.uiLabel33.Name = "uiLabel33";
  1002. this.uiLabel33.Size = new System.Drawing.Size(39, 16);
  1003. this.uiLabel33.TabIndex = 65;
  1004. this.uiLabel33.Text = "BIN9";
  1005. //
  1006. // txt测试1BIN9占比上限百分比
  1007. //
  1008. this.txt测试1BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1009. this.txt测试1BIN9占比上限百分比.DisabilityTriggerNode = null;
  1010. this.txt测试1BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1011. this.txt测试1BIN9占比上限百分比.Gain = 1D;
  1012. this.txt测试1BIN9占比上限百分比.IntegerDigits = 0;
  1013. this.txt测试1BIN9占比上限百分比.InvisibilityTriggerNode = null;
  1014. this.txt测试1BIN9占比上限百分比.Location = new System.Drawing.Point(70, 334);
  1015. this.txt测试1BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1016. this.txt测试1BIN9占比上限百分比.Minimum = 0D;
  1017. this.txt测试1BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1018. this.txt测试1BIN9占比上限百分比.Name = "txt测试1BIN9占比上限百分比";
  1019. this.txt测试1BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1020. this.txt测试1BIN9占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  1021. this.txt测试1BIN9占比上限百分比.ShowText = false;
  1022. this.txt测试1BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1023. this.txt测试1BIN9占比上限百分比.TabIndex = 64;
  1024. this.txt测试1BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1025. this.txt测试1BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1026. this.txt测试1BIN9占比上限百分比.Watermark = "";
  1027. this.txt测试1BIN9占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  1028. //
  1029. // uiLabel30
  1030. //
  1031. this.uiLabel30.AutoSize = true;
  1032. this.uiLabel30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1033. this.uiLabel30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1034. this.uiLabel30.Location = new System.Drawing.Point(22, 302);
  1035. this.uiLabel30.Name = "uiLabel30";
  1036. this.uiLabel30.Size = new System.Drawing.Size(39, 16);
  1037. this.uiLabel30.TabIndex = 63;
  1038. this.uiLabel30.Text = "BIN8";
  1039. //
  1040. // txt测试1BIN8占比上限百分比
  1041. //
  1042. this.txt测试1BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1043. this.txt测试1BIN8占比上限百分比.DisabilityTriggerNode = null;
  1044. this.txt测试1BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1045. this.txt测试1BIN8占比上限百分比.Gain = 1D;
  1046. this.txt测试1BIN8占比上限百分比.IntegerDigits = 0;
  1047. this.txt测试1BIN8占比上限百分比.InvisibilityTriggerNode = null;
  1048. this.txt测试1BIN8占比上限百分比.Location = new System.Drawing.Point(70, 297);
  1049. this.txt测试1BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1050. this.txt测试1BIN8占比上限百分比.Minimum = 0D;
  1051. this.txt测试1BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1052. this.txt测试1BIN8占比上限百分比.Name = "txt测试1BIN8占比上限百分比";
  1053. this.txt测试1BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1054. this.txt测试1BIN8占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  1055. this.txt测试1BIN8占比上限百分比.ShowText = false;
  1056. this.txt测试1BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1057. this.txt测试1BIN8占比上限百分比.TabIndex = 62;
  1058. this.txt测试1BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1059. this.txt测试1BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1060. this.txt测试1BIN8占比上限百分比.Watermark = "";
  1061. this.txt测试1BIN8占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  1062. //
  1063. // uiLabel31
  1064. //
  1065. this.uiLabel31.AutoSize = true;
  1066. this.uiLabel31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1067. this.uiLabel31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1068. this.uiLabel31.Location = new System.Drawing.Point(22, 265);
  1069. this.uiLabel31.Name = "uiLabel31";
  1070. this.uiLabel31.Size = new System.Drawing.Size(39, 16);
  1071. this.uiLabel31.TabIndex = 61;
  1072. this.uiLabel31.Text = "BIN7";
  1073. //
  1074. // txt测试1BIN7占比上限百分比
  1075. //
  1076. this.txt测试1BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1077. this.txt测试1BIN7占比上限百分比.DisabilityTriggerNode = null;
  1078. this.txt测试1BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1079. this.txt测试1BIN7占比上限百分比.Gain = 1D;
  1080. this.txt测试1BIN7占比上限百分比.IntegerDigits = 0;
  1081. this.txt测试1BIN7占比上限百分比.InvisibilityTriggerNode = null;
  1082. this.txt测试1BIN7占比上限百分比.Location = new System.Drawing.Point(70, 260);
  1083. this.txt测试1BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1084. this.txt测试1BIN7占比上限百分比.Minimum = 0D;
  1085. this.txt测试1BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1086. this.txt测试1BIN7占比上限百分比.Name = "txt测试1BIN7占比上限百分比";
  1087. this.txt测试1BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1088. this.txt测试1BIN7占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  1089. this.txt测试1BIN7占比上限百分比.ShowText = false;
  1090. this.txt测试1BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1091. this.txt测试1BIN7占比上限百分比.TabIndex = 60;
  1092. this.txt测试1BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1093. this.txt测试1BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1094. this.txt测试1BIN7占比上限百分比.Watermark = "";
  1095. this.txt测试1BIN7占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  1096. //
  1097. // uiLabel27
  1098. //
  1099. this.uiLabel27.AutoSize = true;
  1100. this.uiLabel27.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1101. this.uiLabel27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1102. this.uiLabel27.Location = new System.Drawing.Point(22, 228);
  1103. this.uiLabel27.Name = "uiLabel27";
  1104. this.uiLabel27.Size = new System.Drawing.Size(39, 16);
  1105. this.uiLabel27.TabIndex = 59;
  1106. this.uiLabel27.Text = "BIN6";
  1107. //
  1108. // txt测试1BIN6占比上限百分比
  1109. //
  1110. this.txt测试1BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1111. this.txt测试1BIN6占比上限百分比.DisabilityTriggerNode = null;
  1112. this.txt测试1BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1113. this.txt测试1BIN6占比上限百分比.Gain = 1D;
  1114. this.txt测试1BIN6占比上限百分比.IntegerDigits = 0;
  1115. this.txt测试1BIN6占比上限百分比.InvisibilityTriggerNode = null;
  1116. this.txt测试1BIN6占比上限百分比.Location = new System.Drawing.Point(70, 223);
  1117. this.txt测试1BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1118. this.txt测试1BIN6占比上限百分比.Minimum = 0D;
  1119. this.txt测试1BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1120. this.txt测试1BIN6占比上限百分比.Name = "txt测试1BIN6占比上限百分比";
  1121. this.txt测试1BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1122. this.txt测试1BIN6占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  1123. this.txt测试1BIN6占比上限百分比.ShowText = false;
  1124. this.txt测试1BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1125. this.txt测试1BIN6占比上限百分比.TabIndex = 58;
  1126. this.txt测试1BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1127. this.txt测试1BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1128. this.txt测试1BIN6占比上限百分比.Watermark = "";
  1129. this.txt测试1BIN6占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  1130. //
  1131. // uiLabel28
  1132. //
  1133. this.uiLabel28.AutoSize = true;
  1134. this.uiLabel28.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1135. this.uiLabel28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1136. this.uiLabel28.Location = new System.Drawing.Point(22, 191);
  1137. this.uiLabel28.Name = "uiLabel28";
  1138. this.uiLabel28.Size = new System.Drawing.Size(39, 16);
  1139. this.uiLabel28.TabIndex = 57;
  1140. this.uiLabel28.Text = "BIN5";
  1141. //
  1142. // txt测试1BIN5占比上限百分比
  1143. //
  1144. this.txt测试1BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1145. this.txt测试1BIN5占比上限百分比.DisabilityTriggerNode = null;
  1146. this.txt测试1BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1147. this.txt测试1BIN5占比上限百分比.Gain = 1D;
  1148. this.txt测试1BIN5占比上限百分比.IntegerDigits = 0;
  1149. this.txt测试1BIN5占比上限百分比.InvisibilityTriggerNode = null;
  1150. this.txt测试1BIN5占比上限百分比.Location = new System.Drawing.Point(70, 186);
  1151. this.txt测试1BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1152. this.txt测试1BIN5占比上限百分比.Minimum = 0D;
  1153. this.txt测试1BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1154. this.txt测试1BIN5占比上限百分比.Name = "txt测试1BIN5占比上限百分比";
  1155. this.txt测试1BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1156. this.txt测试1BIN5占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  1157. this.txt测试1BIN5占比上限百分比.ShowText = false;
  1158. this.txt测试1BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1159. this.txt测试1BIN5占比上限百分比.TabIndex = 56;
  1160. this.txt测试1BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1161. this.txt测试1BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1162. this.txt测试1BIN5占比上限百分比.Watermark = "";
  1163. this.txt测试1BIN5占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  1164. //
  1165. // uiLabel25
  1166. //
  1167. this.uiLabel25.AutoSize = true;
  1168. this.uiLabel25.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1169. this.uiLabel25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1170. this.uiLabel25.Location = new System.Drawing.Point(22, 154);
  1171. this.uiLabel25.Name = "uiLabel25";
  1172. this.uiLabel25.Size = new System.Drawing.Size(39, 16);
  1173. this.uiLabel25.TabIndex = 55;
  1174. this.uiLabel25.Text = "BIN4";
  1175. //
  1176. // txt测试1BIN4占比上限百分比
  1177. //
  1178. this.txt测试1BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1179. this.txt测试1BIN4占比上限百分比.DisabilityTriggerNode = null;
  1180. this.txt测试1BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1181. this.txt测试1BIN4占比上限百分比.Gain = 1D;
  1182. this.txt测试1BIN4占比上限百分比.IntegerDigits = 0;
  1183. this.txt测试1BIN4占比上限百分比.InvisibilityTriggerNode = null;
  1184. this.txt测试1BIN4占比上限百分比.Location = new System.Drawing.Point(70, 149);
  1185. this.txt测试1BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1186. this.txt测试1BIN4占比上限百分比.Minimum = 0D;
  1187. this.txt测试1BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1188. this.txt测试1BIN4占比上限百分比.Name = "txt测试1BIN4占比上限百分比";
  1189. this.txt测试1BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1190. this.txt测试1BIN4占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  1191. this.txt测试1BIN4占比上限百分比.ShowText = false;
  1192. this.txt测试1BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1193. this.txt测试1BIN4占比上限百分比.TabIndex = 54;
  1194. this.txt测试1BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1195. this.txt测试1BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1196. this.txt测试1BIN4占比上限百分比.Watermark = "";
  1197. this.txt测试1BIN4占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  1198. //
  1199. // uiLabel26
  1200. //
  1201. this.uiLabel26.AutoSize = true;
  1202. this.uiLabel26.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1203. this.uiLabel26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1204. this.uiLabel26.Location = new System.Drawing.Point(22, 117);
  1205. this.uiLabel26.Name = "uiLabel26";
  1206. this.uiLabel26.Size = new System.Drawing.Size(39, 16);
  1207. this.uiLabel26.TabIndex = 53;
  1208. this.uiLabel26.Text = "BIN3";
  1209. //
  1210. // txt测试1BIN3占比上限百分比
  1211. //
  1212. this.txt测试1BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1213. this.txt测试1BIN3占比上限百分比.DisabilityTriggerNode = null;
  1214. this.txt测试1BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1215. this.txt测试1BIN3占比上限百分比.Gain = 1D;
  1216. this.txt测试1BIN3占比上限百分比.IntegerDigits = 0;
  1217. this.txt测试1BIN3占比上限百分比.InvisibilityTriggerNode = null;
  1218. this.txt测试1BIN3占比上限百分比.Location = new System.Drawing.Point(70, 112);
  1219. this.txt测试1BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1220. this.txt测试1BIN3占比上限百分比.Minimum = 0D;
  1221. this.txt测试1BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1222. this.txt测试1BIN3占比上限百分比.Name = "txt测试1BIN3占比上限百分比";
  1223. this.txt测试1BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1224. this.txt测试1BIN3占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  1225. this.txt测试1BIN3占比上限百分比.ShowText = false;
  1226. this.txt测试1BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1227. this.txt测试1BIN3占比上限百分比.TabIndex = 52;
  1228. this.txt测试1BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1229. this.txt测试1BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1230. this.txt测试1BIN3占比上限百分比.Watermark = "";
  1231. this.txt测试1BIN3占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  1232. //
  1233. // plcUiNumberDisplay6
  1234. //
  1235. this.plcUiNumberDisplay6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1236. this.plcUiNumberDisplay6.DecimalPlaces = 0;
  1237. this.plcUiNumberDisplay6.DisabilityTriggerNode = null;
  1238. this.plcUiNumberDisplay6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1239. this.plcUiNumberDisplay6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1240. this.plcUiNumberDisplay6.Gain = 1D;
  1241. this.plcUiNumberDisplay6.IntegerDigits = 0;
  1242. this.plcUiNumberDisplay6.InvisibilityTriggerNode = null;
  1243. this.plcUiNumberDisplay6.Location = new System.Drawing.Point(157, 75);
  1244. this.plcUiNumberDisplay6.Name = "plcUiNumberDisplay6";
  1245. this.plcUiNumberDisplay6.Preffix = null;
  1246. this.plcUiNumberDisplay6.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[2]", NodeType.UDINT, null);
  1247. this.plcUiNumberDisplay6.Size = new System.Drawing.Size(80, 27);
  1248. this.plcUiNumberDisplay6.Suffix = null;
  1249. this.plcUiNumberDisplay6.TabIndex = 51;
  1250. this.plcUiNumberDisplay6.Text = "1";
  1251. this.plcUiNumberDisplay6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1252. this.plcUiNumberDisplay6.WriteNode = null;
  1253. //
  1254. // plcUiNumberDisplay5
  1255. //
  1256. this.plcUiNumberDisplay5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1257. this.plcUiNumberDisplay5.DecimalPlaces = 0;
  1258. this.plcUiNumberDisplay5.DisabilityTriggerNode = null;
  1259. this.plcUiNumberDisplay5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1260. this.plcUiNumberDisplay5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1261. this.plcUiNumberDisplay5.Gain = 1D;
  1262. this.plcUiNumberDisplay5.IntegerDigits = 0;
  1263. this.plcUiNumberDisplay5.InvisibilityTriggerNode = null;
  1264. this.plcUiNumberDisplay5.Location = new System.Drawing.Point(157, 38);
  1265. this.plcUiNumberDisplay5.Name = "plcUiNumberDisplay5";
  1266. this.plcUiNumberDisplay5.Preffix = null;
  1267. this.plcUiNumberDisplay5.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_Bin结果统计[1]", NodeType.UDINT, null);
  1268. this.plcUiNumberDisplay5.Size = new System.Drawing.Size(80, 27);
  1269. this.plcUiNumberDisplay5.Suffix = null;
  1270. this.plcUiNumberDisplay5.TabIndex = 49;
  1271. this.plcUiNumberDisplay5.Text = "1";
  1272. this.plcUiNumberDisplay5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1273. this.plcUiNumberDisplay5.WriteNode = null;
  1274. //
  1275. // plcUiNumberDisplay4
  1276. //
  1277. this.plcUiNumberDisplay4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1278. this.plcUiNumberDisplay4.DecimalPlaces = 0;
  1279. this.plcUiNumberDisplay4.DisabilityTriggerNode = null;
  1280. this.plcUiNumberDisplay4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1281. this.plcUiNumberDisplay4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1282. this.plcUiNumberDisplay4.Gain = 1D;
  1283. this.plcUiNumberDisplay4.IntegerDigits = 0;
  1284. this.plcUiNumberDisplay4.InvisibilityTriggerNode = null;
  1285. this.plcUiNumberDisplay4.Location = new System.Drawing.Point(157, 478);
  1286. this.plcUiNumberDisplay4.Name = "plcUiNumberDisplay4";
  1287. this.plcUiNumberDisplay4.Preffix = null;
  1288. this.plcUiNumberDisplay4.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  1289. this.plcUiNumberDisplay4.Size = new System.Drawing.Size(80, 27);
  1290. this.plcUiNumberDisplay4.Suffix = null;
  1291. this.plcUiNumberDisplay4.TabIndex = 47;
  1292. this.plcUiNumberDisplay4.Text = "1";
  1293. this.plcUiNumberDisplay4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1294. this.plcUiNumberDisplay4.WriteNode = null;
  1295. //
  1296. // uiLabel17
  1297. //
  1298. this.uiLabel17.AutoSize = true;
  1299. this.uiLabel17.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1300. this.uiLabel17.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1301. this.uiLabel17.Location = new System.Drawing.Point(22, 80);
  1302. this.uiLabel17.Name = "uiLabel17";
  1303. this.uiLabel17.Size = new System.Drawing.Size(39, 16);
  1304. this.uiLabel17.TabIndex = 46;
  1305. this.uiLabel17.Text = "BIN2";
  1306. //
  1307. // txt测试1BIN2占比上限百分比
  1308. //
  1309. this.txt测试1BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1310. this.txt测试1BIN2占比上限百分比.DisabilityTriggerNode = null;
  1311. this.txt测试1BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1312. this.txt测试1BIN2占比上限百分比.Gain = 1D;
  1313. this.txt测试1BIN2占比上限百分比.IntegerDigits = 0;
  1314. this.txt测试1BIN2占比上限百分比.InvisibilityTriggerNode = null;
  1315. this.txt测试1BIN2占比上限百分比.Location = new System.Drawing.Point(70, 75);
  1316. this.txt测试1BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1317. this.txt测试1BIN2占比上限百分比.Minimum = 0D;
  1318. this.txt测试1BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1319. this.txt测试1BIN2占比上限百分比.Name = "txt测试1BIN2占比上限百分比";
  1320. this.txt测试1BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1321. this.txt测试1BIN2占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  1322. this.txt测试1BIN2占比上限百分比.ShowText = false;
  1323. this.txt测试1BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1324. this.txt测试1BIN2占比上限百分比.TabIndex = 45;
  1325. this.txt测试1BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1326. this.txt测试1BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1327. this.txt测试1BIN2占比上限百分比.Watermark = "";
  1328. this.txt测试1BIN2占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  1329. //
  1330. // uiLabel16
  1331. //
  1332. this.uiLabel16.AutoSize = true;
  1333. this.uiLabel16.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1334. this.uiLabel16.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1335. this.uiLabel16.Location = new System.Drawing.Point(63, 483);
  1336. this.uiLabel16.Name = "uiLabel16";
  1337. this.uiLabel16.Size = new System.Drawing.Size(87, 16);
  1338. this.uiLabel16.TabIndex = 44;
  1339. this.uiLabel16.Text = "当前总计数";
  1340. //
  1341. // uiLabel14
  1342. //
  1343. this.uiLabel14.AutoSize = true;
  1344. this.uiLabel14.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1345. this.uiLabel14.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1346. this.uiLabel14.Location = new System.Drawing.Point(47, 516);
  1347. this.uiLabel14.Name = "uiLabel14";
  1348. this.uiLabel14.Size = new System.Drawing.Size(103, 16);
  1349. this.uiLabel14.TabIndex = 42;
  1350. this.uiLabel14.Text = "统计起始数量";
  1351. //
  1352. // txt测试1统计起始数量
  1353. //
  1354. this.txt测试1统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  1355. this.txt测试1统计起始数量.DisabilityTriggerNode = null;
  1356. this.txt测试1统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1357. this.txt测试1统计起始数量.Gain = 1D;
  1358. this.txt测试1统计起始数量.IntegerDigits = 0;
  1359. this.txt测试1统计起始数量.InvisibilityTriggerNode = null;
  1360. this.txt测试1统计起始数量.Location = new System.Drawing.Point(157, 510);
  1361. this.txt测试1统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1362. this.txt测试1统计起始数量.Minimum = 0D;
  1363. this.txt测试1统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  1364. this.txt测试1统计起始数量.Name = "txt测试1统计起始数量";
  1365. this.txt测试1统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  1366. this.txt测试1统计起始数量.ReadNode = new Node("Application.A04_TestStation_Auto.udi测试1_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  1367. this.txt测试1统计起始数量.ShowText = false;
  1368. this.txt测试1统计起始数量.Size = new System.Drawing.Size(80, 27);
  1369. this.txt测试1统计起始数量.TabIndex = 41;
  1370. this.txt测试1统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1371. this.txt测试1统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  1372. this.txt测试1统计起始数量.Watermark = "";
  1373. this.txt测试1统计起始数量.WriteNode = new Node("Application.A04_TestStation_Auto.udi测试1_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  1374. //
  1375. // uiLabel13
  1376. //
  1377. this.uiLabel13.AutoSize = true;
  1378. this.uiLabel13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1379. this.uiLabel13.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1380. this.uiLabel13.Location = new System.Drawing.Point(22, 43);
  1381. this.uiLabel13.Name = "uiLabel13";
  1382. this.uiLabel13.Size = new System.Drawing.Size(39, 16);
  1383. this.uiLabel13.TabIndex = 40;
  1384. this.uiLabel13.Text = "BIN1";
  1385. //
  1386. // txt测试1BIN1占比上限百分比
  1387. //
  1388. this.txt测试1BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1389. this.txt测试1BIN1占比上限百分比.DisabilityTriggerNode = null;
  1390. this.txt测试1BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1391. this.txt测试1BIN1占比上限百分比.Gain = 1D;
  1392. this.txt测试1BIN1占比上限百分比.IntegerDigits = 0;
  1393. this.txt测试1BIN1占比上限百分比.InvisibilityTriggerNode = null;
  1394. this.txt测试1BIN1占比上限百分比.Location = new System.Drawing.Point(70, 38);
  1395. this.txt测试1BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1396. this.txt测试1BIN1占比上限百分比.Minimum = 0D;
  1397. this.txt测试1BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1398. this.txt测试1BIN1占比上限百分比.Name = "txt测试1BIN1占比上限百分比";
  1399. this.txt测试1BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1400. this.txt测试1BIN1占比上限百分比.ReadNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  1401. this.txt测试1BIN1占比上限百分比.ShowText = false;
  1402. this.txt测试1BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1403. this.txt测试1BIN1占比上限百分比.TabIndex = 39;
  1404. this.txt测试1BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1405. this.txt测试1BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1406. this.txt测试1BIN1占比上限百分比.Watermark = "";
  1407. this.txt测试1BIN1占比上限百分比.WriteNode = new Node("Application.A04_TestStation_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  1408. //
  1409. // uiLabel1
  1410. //
  1411. this.uiLabel1.AutoSize = true;
  1412. this.uiLabel1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1413. this.uiLabel1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1414. this.uiLabel1.Location = new System.Drawing.Point(71, 18);
  1415. this.uiLabel1.Name = "uiLabel1";
  1416. this.uiLabel1.Size = new System.Drawing.Size(79, 16);
  1417. this.uiLabel1.TabIndex = 116;
  1418. this.uiLabel1.Text = "上限(%)";
  1419. //
  1420. // uiLabel2
  1421. //
  1422. this.uiLabel2.AutoSize = true;
  1423. this.uiLabel2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1424. this.uiLabel2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1425. this.uiLabel2.Location = new System.Drawing.Point(263, 18);
  1426. this.uiLabel2.Name = "uiLabel2";
  1427. this.uiLabel2.Size = new System.Drawing.Size(39, 16);
  1428. this.uiLabel2.TabIndex = 117;
  1429. this.uiLabel2.Text = "比率";
  1430. //
  1431. // uiLabel3
  1432. //
  1433. this.uiLabel3.AutoSize = true;
  1434. this.uiLabel3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1435. this.uiLabel3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1436. this.uiLabel3.Location = new System.Drawing.Point(179, 18);
  1437. this.uiLabel3.Name = "uiLabel3";
  1438. this.uiLabel3.Size = new System.Drawing.Size(39, 16);
  1439. this.uiLabel3.TabIndex = 118;
  1440. this.uiLabel3.Text = "数量";
  1441. //
  1442. // plcUiNumberDisplay1
  1443. //
  1444. this.plcUiNumberDisplay1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1445. this.plcUiNumberDisplay1.DecimalPlaces = 2;
  1446. this.plcUiNumberDisplay1.DisabilityTriggerNode = null;
  1447. this.plcUiNumberDisplay1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1448. this.plcUiNumberDisplay1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1449. this.plcUiNumberDisplay1.Gain = 1D;
  1450. this.plcUiNumberDisplay1.IntegerDigits = 0;
  1451. this.plcUiNumberDisplay1.InvisibilityTriggerNode = null;
  1452. this.plcUiNumberDisplay1.Location = new System.Drawing.Point(241, 446);
  1453. this.plcUiNumberDisplay1.Name = "plcUiNumberDisplay1";
  1454. this.plcUiNumberDisplay1.Preffix = null;
  1455. this.plcUiNumberDisplay1.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[12]", NodeType.REAL, null);
  1456. this.plcUiNumberDisplay1.Size = new System.Drawing.Size(80, 27);
  1457. this.plcUiNumberDisplay1.Suffix = "%";
  1458. this.plcUiNumberDisplay1.TabIndex = 203;
  1459. this.plcUiNumberDisplay1.Text = "1.00";
  1460. this.plcUiNumberDisplay1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1461. this.plcUiNumberDisplay1.WriteNode = null;
  1462. //
  1463. // plcUiNumberDisplay2
  1464. //
  1465. this.plcUiNumberDisplay2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1466. this.plcUiNumberDisplay2.DecimalPlaces = 2;
  1467. this.plcUiNumberDisplay2.DisabilityTriggerNode = null;
  1468. this.plcUiNumberDisplay2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1469. this.plcUiNumberDisplay2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1470. this.plcUiNumberDisplay2.Gain = 1D;
  1471. this.plcUiNumberDisplay2.IntegerDigits = 0;
  1472. this.plcUiNumberDisplay2.InvisibilityTriggerNode = null;
  1473. this.plcUiNumberDisplay2.Location = new System.Drawing.Point(241, 409);
  1474. this.plcUiNumberDisplay2.Name = "plcUiNumberDisplay2";
  1475. this.plcUiNumberDisplay2.Preffix = null;
  1476. this.plcUiNumberDisplay2.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[11]", NodeType.REAL, null);
  1477. this.plcUiNumberDisplay2.Size = new System.Drawing.Size(80, 27);
  1478. this.plcUiNumberDisplay2.Suffix = "%";
  1479. this.plcUiNumberDisplay2.TabIndex = 201;
  1480. this.plcUiNumberDisplay2.Text = "1.00";
  1481. this.plcUiNumberDisplay2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1482. this.plcUiNumberDisplay2.WriteNode = null;
  1483. //
  1484. // plcUiNumberDisplay3
  1485. //
  1486. this.plcUiNumberDisplay3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1487. this.plcUiNumberDisplay3.DecimalPlaces = 2;
  1488. this.plcUiNumberDisplay3.DisabilityTriggerNode = null;
  1489. this.plcUiNumberDisplay3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1490. this.plcUiNumberDisplay3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1491. this.plcUiNumberDisplay3.Gain = 1D;
  1492. this.plcUiNumberDisplay3.IntegerDigits = 0;
  1493. this.plcUiNumberDisplay3.InvisibilityTriggerNode = null;
  1494. this.plcUiNumberDisplay3.Location = new System.Drawing.Point(241, 372);
  1495. this.plcUiNumberDisplay3.Name = "plcUiNumberDisplay3";
  1496. this.plcUiNumberDisplay3.Preffix = null;
  1497. this.plcUiNumberDisplay3.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[10]", NodeType.REAL, null);
  1498. this.plcUiNumberDisplay3.Size = new System.Drawing.Size(80, 27);
  1499. this.plcUiNumberDisplay3.Suffix = "%";
  1500. this.plcUiNumberDisplay3.TabIndex = 199;
  1501. this.plcUiNumberDisplay3.Text = "1.00";
  1502. this.plcUiNumberDisplay3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1503. this.plcUiNumberDisplay3.WriteNode = null;
  1504. //
  1505. // plcUiNumberDisplay29
  1506. //
  1507. this.plcUiNumberDisplay29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1508. this.plcUiNumberDisplay29.DecimalPlaces = 2;
  1509. this.plcUiNumberDisplay29.DisabilityTriggerNode = null;
  1510. this.plcUiNumberDisplay29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1511. this.plcUiNumberDisplay29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1512. this.plcUiNumberDisplay29.Gain = 1D;
  1513. this.plcUiNumberDisplay29.IntegerDigits = 0;
  1514. this.plcUiNumberDisplay29.InvisibilityTriggerNode = null;
  1515. this.plcUiNumberDisplay29.Location = new System.Drawing.Point(241, 335);
  1516. this.plcUiNumberDisplay29.Name = "plcUiNumberDisplay29";
  1517. this.plcUiNumberDisplay29.Preffix = null;
  1518. this.plcUiNumberDisplay29.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[9]", NodeType.REAL, null);
  1519. this.plcUiNumberDisplay29.Size = new System.Drawing.Size(80, 27);
  1520. this.plcUiNumberDisplay29.Suffix = "%";
  1521. this.plcUiNumberDisplay29.TabIndex = 197;
  1522. this.plcUiNumberDisplay29.Text = "1.00";
  1523. this.plcUiNumberDisplay29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1524. this.plcUiNumberDisplay29.WriteNode = null;
  1525. //
  1526. // plcUiNumberDisplay30
  1527. //
  1528. this.plcUiNumberDisplay30.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1529. this.plcUiNumberDisplay30.DecimalPlaces = 2;
  1530. this.plcUiNumberDisplay30.DisabilityTriggerNode = null;
  1531. this.plcUiNumberDisplay30.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1532. this.plcUiNumberDisplay30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1533. this.plcUiNumberDisplay30.Gain = 1D;
  1534. this.plcUiNumberDisplay30.IntegerDigits = 0;
  1535. this.plcUiNumberDisplay30.InvisibilityTriggerNode = null;
  1536. this.plcUiNumberDisplay30.Location = new System.Drawing.Point(241, 298);
  1537. this.plcUiNumberDisplay30.Name = "plcUiNumberDisplay30";
  1538. this.plcUiNumberDisplay30.Preffix = null;
  1539. this.plcUiNumberDisplay30.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[8]", NodeType.REAL, null);
  1540. this.plcUiNumberDisplay30.Size = new System.Drawing.Size(80, 27);
  1541. this.plcUiNumberDisplay30.Suffix = "%";
  1542. this.plcUiNumberDisplay30.TabIndex = 195;
  1543. this.plcUiNumberDisplay30.Text = "1.00";
  1544. this.plcUiNumberDisplay30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1545. this.plcUiNumberDisplay30.WriteNode = null;
  1546. //
  1547. // plcUiNumberDisplay31
  1548. //
  1549. this.plcUiNumberDisplay31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1550. this.plcUiNumberDisplay31.DecimalPlaces = 2;
  1551. this.plcUiNumberDisplay31.DisabilityTriggerNode = null;
  1552. this.plcUiNumberDisplay31.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1553. this.plcUiNumberDisplay31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1554. this.plcUiNumberDisplay31.Gain = 1D;
  1555. this.plcUiNumberDisplay31.IntegerDigits = 0;
  1556. this.plcUiNumberDisplay31.InvisibilityTriggerNode = null;
  1557. this.plcUiNumberDisplay31.Location = new System.Drawing.Point(241, 261);
  1558. this.plcUiNumberDisplay31.Name = "plcUiNumberDisplay31";
  1559. this.plcUiNumberDisplay31.Preffix = null;
  1560. this.plcUiNumberDisplay31.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[7]", NodeType.REAL, null);
  1561. this.plcUiNumberDisplay31.Size = new System.Drawing.Size(80, 27);
  1562. this.plcUiNumberDisplay31.Suffix = "%";
  1563. this.plcUiNumberDisplay31.TabIndex = 193;
  1564. this.plcUiNumberDisplay31.Text = "1.00";
  1565. this.plcUiNumberDisplay31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1566. this.plcUiNumberDisplay31.WriteNode = null;
  1567. //
  1568. // plcUiNumberDisplay32
  1569. //
  1570. this.plcUiNumberDisplay32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1571. this.plcUiNumberDisplay32.DecimalPlaces = 2;
  1572. this.plcUiNumberDisplay32.DisabilityTriggerNode = null;
  1573. this.plcUiNumberDisplay32.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1574. this.plcUiNumberDisplay32.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1575. this.plcUiNumberDisplay32.Gain = 1D;
  1576. this.plcUiNumberDisplay32.IntegerDigits = 0;
  1577. this.plcUiNumberDisplay32.InvisibilityTriggerNode = null;
  1578. this.plcUiNumberDisplay32.Location = new System.Drawing.Point(241, 224);
  1579. this.plcUiNumberDisplay32.Name = "plcUiNumberDisplay32";
  1580. this.plcUiNumberDisplay32.Preffix = null;
  1581. this.plcUiNumberDisplay32.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[6]", NodeType.REAL, null);
  1582. this.plcUiNumberDisplay32.Size = new System.Drawing.Size(80, 27);
  1583. this.plcUiNumberDisplay32.Suffix = "%";
  1584. this.plcUiNumberDisplay32.TabIndex = 191;
  1585. this.plcUiNumberDisplay32.Text = "1.00";
  1586. this.plcUiNumberDisplay32.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1587. this.plcUiNumberDisplay32.WriteNode = null;
  1588. //
  1589. // plcUiNumberDisplay33
  1590. //
  1591. this.plcUiNumberDisplay33.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1592. this.plcUiNumberDisplay33.DecimalPlaces = 2;
  1593. this.plcUiNumberDisplay33.DisabilityTriggerNode = null;
  1594. this.plcUiNumberDisplay33.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1595. this.plcUiNumberDisplay33.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1596. this.plcUiNumberDisplay33.Gain = 1D;
  1597. this.plcUiNumberDisplay33.IntegerDigits = 0;
  1598. this.plcUiNumberDisplay33.InvisibilityTriggerNode = null;
  1599. this.plcUiNumberDisplay33.Location = new System.Drawing.Point(241, 187);
  1600. this.plcUiNumberDisplay33.Name = "plcUiNumberDisplay33";
  1601. this.plcUiNumberDisplay33.Preffix = null;
  1602. this.plcUiNumberDisplay33.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[5]", NodeType.REAL, null);
  1603. this.plcUiNumberDisplay33.Size = new System.Drawing.Size(80, 27);
  1604. this.plcUiNumberDisplay33.Suffix = "%";
  1605. this.plcUiNumberDisplay33.TabIndex = 189;
  1606. this.plcUiNumberDisplay33.Text = "1.00";
  1607. this.plcUiNumberDisplay33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1608. this.plcUiNumberDisplay33.WriteNode = null;
  1609. //
  1610. // plcUiNumberDisplay34
  1611. //
  1612. this.plcUiNumberDisplay34.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1613. this.plcUiNumberDisplay34.DecimalPlaces = 2;
  1614. this.plcUiNumberDisplay34.DisabilityTriggerNode = null;
  1615. this.plcUiNumberDisplay34.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1616. this.plcUiNumberDisplay34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1617. this.plcUiNumberDisplay34.Gain = 1D;
  1618. this.plcUiNumberDisplay34.IntegerDigits = 0;
  1619. this.plcUiNumberDisplay34.InvisibilityTriggerNode = null;
  1620. this.plcUiNumberDisplay34.Location = new System.Drawing.Point(241, 150);
  1621. this.plcUiNumberDisplay34.Name = "plcUiNumberDisplay34";
  1622. this.plcUiNumberDisplay34.Preffix = null;
  1623. this.plcUiNumberDisplay34.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[4]", NodeType.REAL, null);
  1624. this.plcUiNumberDisplay34.Size = new System.Drawing.Size(80, 27);
  1625. this.plcUiNumberDisplay34.Suffix = "%";
  1626. this.plcUiNumberDisplay34.TabIndex = 187;
  1627. this.plcUiNumberDisplay34.Text = "1.00";
  1628. this.plcUiNumberDisplay34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1629. this.plcUiNumberDisplay34.WriteNode = null;
  1630. //
  1631. // plcUiNumberDisplay35
  1632. //
  1633. this.plcUiNumberDisplay35.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1634. this.plcUiNumberDisplay35.DecimalPlaces = 2;
  1635. this.plcUiNumberDisplay35.DisabilityTriggerNode = null;
  1636. this.plcUiNumberDisplay35.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1637. this.plcUiNumberDisplay35.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1638. this.plcUiNumberDisplay35.Gain = 1D;
  1639. this.plcUiNumberDisplay35.IntegerDigits = 0;
  1640. this.plcUiNumberDisplay35.InvisibilityTriggerNode = null;
  1641. this.plcUiNumberDisplay35.Location = new System.Drawing.Point(241, 113);
  1642. this.plcUiNumberDisplay35.Name = "plcUiNumberDisplay35";
  1643. this.plcUiNumberDisplay35.Preffix = null;
  1644. this.plcUiNumberDisplay35.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[3]", NodeType.REAL, null);
  1645. this.plcUiNumberDisplay35.Size = new System.Drawing.Size(80, 27);
  1646. this.plcUiNumberDisplay35.Suffix = "%";
  1647. this.plcUiNumberDisplay35.TabIndex = 185;
  1648. this.plcUiNumberDisplay35.Text = "1.00";
  1649. this.plcUiNumberDisplay35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1650. this.plcUiNumberDisplay35.WriteNode = null;
  1651. //
  1652. // plcUiNumberDisplay36
  1653. //
  1654. this.plcUiNumberDisplay36.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1655. this.plcUiNumberDisplay36.DecimalPlaces = 2;
  1656. this.plcUiNumberDisplay36.DisabilityTriggerNode = null;
  1657. this.plcUiNumberDisplay36.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1658. this.plcUiNumberDisplay36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1659. this.plcUiNumberDisplay36.Gain = 1D;
  1660. this.plcUiNumberDisplay36.IntegerDigits = 0;
  1661. this.plcUiNumberDisplay36.InvisibilityTriggerNode = null;
  1662. this.plcUiNumberDisplay36.Location = new System.Drawing.Point(241, 75);
  1663. this.plcUiNumberDisplay36.Name = "plcUiNumberDisplay36";
  1664. this.plcUiNumberDisplay36.Preffix = null;
  1665. this.plcUiNumberDisplay36.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[2]", NodeType.REAL, null);
  1666. this.plcUiNumberDisplay36.Size = new System.Drawing.Size(80, 27);
  1667. this.plcUiNumberDisplay36.Suffix = "%";
  1668. this.plcUiNumberDisplay36.TabIndex = 183;
  1669. this.plcUiNumberDisplay36.Text = "1.00";
  1670. this.plcUiNumberDisplay36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1671. this.plcUiNumberDisplay36.WriteNode = null;
  1672. //
  1673. // plcUiNumberDisplay37
  1674. //
  1675. this.plcUiNumberDisplay37.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1676. this.plcUiNumberDisplay37.DecimalPlaces = 2;
  1677. this.plcUiNumberDisplay37.DisabilityTriggerNode = null;
  1678. this.plcUiNumberDisplay37.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1679. this.plcUiNumberDisplay37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1680. this.plcUiNumberDisplay37.Gain = 1D;
  1681. this.plcUiNumberDisplay37.IntegerDigits = 0;
  1682. this.plcUiNumberDisplay37.InvisibilityTriggerNode = null;
  1683. this.plcUiNumberDisplay37.Location = new System.Drawing.Point(241, 38);
  1684. this.plcUiNumberDisplay37.Name = "plcUiNumberDisplay37";
  1685. this.plcUiNumberDisplay37.Preffix = null;
  1686. this.plcUiNumberDisplay37.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin当前占比比率[1]", NodeType.REAL, null);
  1687. this.plcUiNumberDisplay37.Size = new System.Drawing.Size(80, 27);
  1688. this.plcUiNumberDisplay37.Suffix = "%";
  1689. this.plcUiNumberDisplay37.TabIndex = 181;
  1690. this.plcUiNumberDisplay37.Text = "1.00";
  1691. this.plcUiNumberDisplay37.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1692. this.plcUiNumberDisplay37.WriteNode = null;
  1693. //
  1694. // plcUiNumberDisplay38
  1695. //
  1696. this.plcUiNumberDisplay38.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1697. this.plcUiNumberDisplay38.DecimalPlaces = 0;
  1698. this.plcUiNumberDisplay38.DisabilityTriggerNode = null;
  1699. this.plcUiNumberDisplay38.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1700. this.plcUiNumberDisplay38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1701. this.plcUiNumberDisplay38.Gain = 1D;
  1702. this.plcUiNumberDisplay38.IntegerDigits = 0;
  1703. this.plcUiNumberDisplay38.InvisibilityTriggerNode = null;
  1704. this.plcUiNumberDisplay38.Location = new System.Drawing.Point(155, 446);
  1705. this.plcUiNumberDisplay38.Name = "plcUiNumberDisplay38";
  1706. this.plcUiNumberDisplay38.Preffix = null;
  1707. this.plcUiNumberDisplay38.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[12]", NodeType.UDINT, null);
  1708. this.plcUiNumberDisplay38.Size = new System.Drawing.Size(80, 27);
  1709. this.plcUiNumberDisplay38.Suffix = null;
  1710. this.plcUiNumberDisplay38.TabIndex = 179;
  1711. this.plcUiNumberDisplay38.Text = "1";
  1712. this.plcUiNumberDisplay38.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1713. this.plcUiNumberDisplay38.WriteNode = null;
  1714. //
  1715. // plcUiNumberDisplay39
  1716. //
  1717. this.plcUiNumberDisplay39.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1718. this.plcUiNumberDisplay39.DecimalPlaces = 0;
  1719. this.plcUiNumberDisplay39.DisabilityTriggerNode = null;
  1720. this.plcUiNumberDisplay39.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1721. this.plcUiNumberDisplay39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1722. this.plcUiNumberDisplay39.Gain = 1D;
  1723. this.plcUiNumberDisplay39.IntegerDigits = 0;
  1724. this.plcUiNumberDisplay39.InvisibilityTriggerNode = null;
  1725. this.plcUiNumberDisplay39.Location = new System.Drawing.Point(155, 409);
  1726. this.plcUiNumberDisplay39.Name = "plcUiNumberDisplay39";
  1727. this.plcUiNumberDisplay39.Preffix = null;
  1728. this.plcUiNumberDisplay39.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[11]", NodeType.UDINT, null);
  1729. this.plcUiNumberDisplay39.Size = new System.Drawing.Size(80, 27);
  1730. this.plcUiNumberDisplay39.Suffix = null;
  1731. this.plcUiNumberDisplay39.TabIndex = 177;
  1732. this.plcUiNumberDisplay39.Text = "1";
  1733. this.plcUiNumberDisplay39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1734. this.plcUiNumberDisplay39.WriteNode = null;
  1735. //
  1736. // plcUiNumberDisplay40
  1737. //
  1738. this.plcUiNumberDisplay40.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1739. this.plcUiNumberDisplay40.DecimalPlaces = 0;
  1740. this.plcUiNumberDisplay40.DisabilityTriggerNode = null;
  1741. this.plcUiNumberDisplay40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1742. this.plcUiNumberDisplay40.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1743. this.plcUiNumberDisplay40.Gain = 1D;
  1744. this.plcUiNumberDisplay40.IntegerDigits = 0;
  1745. this.plcUiNumberDisplay40.InvisibilityTriggerNode = null;
  1746. this.plcUiNumberDisplay40.Location = new System.Drawing.Point(155, 372);
  1747. this.plcUiNumberDisplay40.Name = "plcUiNumberDisplay40";
  1748. this.plcUiNumberDisplay40.Preffix = null;
  1749. this.plcUiNumberDisplay40.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[10]", NodeType.UDINT, null);
  1750. this.plcUiNumberDisplay40.Size = new System.Drawing.Size(80, 27);
  1751. this.plcUiNumberDisplay40.Suffix = null;
  1752. this.plcUiNumberDisplay40.TabIndex = 175;
  1753. this.plcUiNumberDisplay40.Text = "1";
  1754. this.plcUiNumberDisplay40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1755. this.plcUiNumberDisplay40.WriteNode = null;
  1756. //
  1757. // plcUiNumberDisplay41
  1758. //
  1759. this.plcUiNumberDisplay41.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1760. this.plcUiNumberDisplay41.DecimalPlaces = 0;
  1761. this.plcUiNumberDisplay41.DisabilityTriggerNode = null;
  1762. this.plcUiNumberDisplay41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1763. this.plcUiNumberDisplay41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1764. this.plcUiNumberDisplay41.Gain = 1D;
  1765. this.plcUiNumberDisplay41.IntegerDigits = 0;
  1766. this.plcUiNumberDisplay41.InvisibilityTriggerNode = null;
  1767. this.plcUiNumberDisplay41.Location = new System.Drawing.Point(155, 335);
  1768. this.plcUiNumberDisplay41.Name = "plcUiNumberDisplay41";
  1769. this.plcUiNumberDisplay41.Preffix = null;
  1770. this.plcUiNumberDisplay41.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[9]", NodeType.UDINT, null);
  1771. this.plcUiNumberDisplay41.Size = new System.Drawing.Size(80, 27);
  1772. this.plcUiNumberDisplay41.Suffix = null;
  1773. this.plcUiNumberDisplay41.TabIndex = 173;
  1774. this.plcUiNumberDisplay41.Text = "1";
  1775. this.plcUiNumberDisplay41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1776. this.plcUiNumberDisplay41.WriteNode = null;
  1777. //
  1778. // plcUiNumberDisplay42
  1779. //
  1780. this.plcUiNumberDisplay42.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1781. this.plcUiNumberDisplay42.DecimalPlaces = 0;
  1782. this.plcUiNumberDisplay42.DisabilityTriggerNode = null;
  1783. this.plcUiNumberDisplay42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1784. this.plcUiNumberDisplay42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1785. this.plcUiNumberDisplay42.Gain = 1D;
  1786. this.plcUiNumberDisplay42.IntegerDigits = 0;
  1787. this.plcUiNumberDisplay42.InvisibilityTriggerNode = null;
  1788. this.plcUiNumberDisplay42.Location = new System.Drawing.Point(155, 298);
  1789. this.plcUiNumberDisplay42.Name = "plcUiNumberDisplay42";
  1790. this.plcUiNumberDisplay42.Preffix = null;
  1791. this.plcUiNumberDisplay42.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[8]", NodeType.UDINT, null);
  1792. this.plcUiNumberDisplay42.Size = new System.Drawing.Size(80, 27);
  1793. this.plcUiNumberDisplay42.Suffix = null;
  1794. this.plcUiNumberDisplay42.TabIndex = 171;
  1795. this.plcUiNumberDisplay42.Text = "1";
  1796. this.plcUiNumberDisplay42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1797. this.plcUiNumberDisplay42.WriteNode = null;
  1798. //
  1799. // plcUiNumberDisplay43
  1800. //
  1801. this.plcUiNumberDisplay43.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1802. this.plcUiNumberDisplay43.DecimalPlaces = 0;
  1803. this.plcUiNumberDisplay43.DisabilityTriggerNode = null;
  1804. this.plcUiNumberDisplay43.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1805. this.plcUiNumberDisplay43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1806. this.plcUiNumberDisplay43.Gain = 1D;
  1807. this.plcUiNumberDisplay43.IntegerDigits = 0;
  1808. this.plcUiNumberDisplay43.InvisibilityTriggerNode = null;
  1809. this.plcUiNumberDisplay43.Location = new System.Drawing.Point(155, 261);
  1810. this.plcUiNumberDisplay43.Name = "plcUiNumberDisplay43";
  1811. this.plcUiNumberDisplay43.Preffix = null;
  1812. this.plcUiNumberDisplay43.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[7]", NodeType.UDINT, null);
  1813. this.plcUiNumberDisplay43.Size = new System.Drawing.Size(80, 27);
  1814. this.plcUiNumberDisplay43.Suffix = null;
  1815. this.plcUiNumberDisplay43.TabIndex = 169;
  1816. this.plcUiNumberDisplay43.Text = "1";
  1817. this.plcUiNumberDisplay43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1818. this.plcUiNumberDisplay43.WriteNode = null;
  1819. //
  1820. // plcUiNumberDisplay44
  1821. //
  1822. this.plcUiNumberDisplay44.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1823. this.plcUiNumberDisplay44.DecimalPlaces = 0;
  1824. this.plcUiNumberDisplay44.DisabilityTriggerNode = null;
  1825. this.plcUiNumberDisplay44.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1826. this.plcUiNumberDisplay44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1827. this.plcUiNumberDisplay44.Gain = 1D;
  1828. this.plcUiNumberDisplay44.IntegerDigits = 0;
  1829. this.plcUiNumberDisplay44.InvisibilityTriggerNode = null;
  1830. this.plcUiNumberDisplay44.Location = new System.Drawing.Point(155, 224);
  1831. this.plcUiNumberDisplay44.Name = "plcUiNumberDisplay44";
  1832. this.plcUiNumberDisplay44.Preffix = null;
  1833. this.plcUiNumberDisplay44.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[6]", NodeType.UDINT, null);
  1834. this.plcUiNumberDisplay44.Size = new System.Drawing.Size(80, 27);
  1835. this.plcUiNumberDisplay44.Suffix = null;
  1836. this.plcUiNumberDisplay44.TabIndex = 167;
  1837. this.plcUiNumberDisplay44.Text = "1";
  1838. this.plcUiNumberDisplay44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1839. this.plcUiNumberDisplay44.WriteNode = null;
  1840. //
  1841. // plcUiNumberDisplay45
  1842. //
  1843. this.plcUiNumberDisplay45.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1844. this.plcUiNumberDisplay45.DecimalPlaces = 0;
  1845. this.plcUiNumberDisplay45.DisabilityTriggerNode = null;
  1846. this.plcUiNumberDisplay45.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1847. this.plcUiNumberDisplay45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1848. this.plcUiNumberDisplay45.Gain = 1D;
  1849. this.plcUiNumberDisplay45.IntegerDigits = 0;
  1850. this.plcUiNumberDisplay45.InvisibilityTriggerNode = null;
  1851. this.plcUiNumberDisplay45.Location = new System.Drawing.Point(155, 187);
  1852. this.plcUiNumberDisplay45.Name = "plcUiNumberDisplay45";
  1853. this.plcUiNumberDisplay45.Preffix = null;
  1854. this.plcUiNumberDisplay45.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[5]", NodeType.UDINT, null);
  1855. this.plcUiNumberDisplay45.Size = new System.Drawing.Size(80, 27);
  1856. this.plcUiNumberDisplay45.Suffix = null;
  1857. this.plcUiNumberDisplay45.TabIndex = 165;
  1858. this.plcUiNumberDisplay45.Text = "1";
  1859. this.plcUiNumberDisplay45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1860. this.plcUiNumberDisplay45.WriteNode = null;
  1861. //
  1862. // plcUiNumberDisplay46
  1863. //
  1864. this.plcUiNumberDisplay46.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1865. this.plcUiNumberDisplay46.DecimalPlaces = 0;
  1866. this.plcUiNumberDisplay46.DisabilityTriggerNode = null;
  1867. this.plcUiNumberDisplay46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1868. this.plcUiNumberDisplay46.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1869. this.plcUiNumberDisplay46.Gain = 1D;
  1870. this.plcUiNumberDisplay46.IntegerDigits = 0;
  1871. this.plcUiNumberDisplay46.InvisibilityTriggerNode = null;
  1872. this.plcUiNumberDisplay46.Location = new System.Drawing.Point(155, 150);
  1873. this.plcUiNumberDisplay46.Name = "plcUiNumberDisplay46";
  1874. this.plcUiNumberDisplay46.Preffix = null;
  1875. this.plcUiNumberDisplay46.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[4]", NodeType.UDINT, null);
  1876. this.plcUiNumberDisplay46.Size = new System.Drawing.Size(80, 27);
  1877. this.plcUiNumberDisplay46.Suffix = null;
  1878. this.plcUiNumberDisplay46.TabIndex = 163;
  1879. this.plcUiNumberDisplay46.Text = "1";
  1880. this.plcUiNumberDisplay46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1881. this.plcUiNumberDisplay46.WriteNode = null;
  1882. //
  1883. // plcUiNumberDisplay47
  1884. //
  1885. this.plcUiNumberDisplay47.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1886. this.plcUiNumberDisplay47.DecimalPlaces = 0;
  1887. this.plcUiNumberDisplay47.DisabilityTriggerNode = null;
  1888. this.plcUiNumberDisplay47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1889. this.plcUiNumberDisplay47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  1890. this.plcUiNumberDisplay47.Gain = 1D;
  1891. this.plcUiNumberDisplay47.IntegerDigits = 0;
  1892. this.plcUiNumberDisplay47.InvisibilityTriggerNode = null;
  1893. this.plcUiNumberDisplay47.Location = new System.Drawing.Point(155, 113);
  1894. this.plcUiNumberDisplay47.Name = "plcUiNumberDisplay47";
  1895. this.plcUiNumberDisplay47.Preffix = null;
  1896. this.plcUiNumberDisplay47.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[3]", NodeType.UDINT, null);
  1897. this.plcUiNumberDisplay47.Size = new System.Drawing.Size(80, 27);
  1898. this.plcUiNumberDisplay47.Suffix = null;
  1899. this.plcUiNumberDisplay47.TabIndex = 161;
  1900. this.plcUiNumberDisplay47.Text = "1";
  1901. this.plcUiNumberDisplay47.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1902. this.plcUiNumberDisplay47.WriteNode = null;
  1903. //
  1904. // txt测试2BIN12占比上限百分比
  1905. //
  1906. this.txt测试2BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1907. this.txt测试2BIN12占比上限百分比.DisabilityTriggerNode = null;
  1908. this.txt测试2BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1909. this.txt测试2BIN12占比上限百分比.Gain = 1D;
  1910. this.txt测试2BIN12占比上限百分比.IntegerDigits = 0;
  1911. this.txt测试2BIN12占比上限百分比.InvisibilityTriggerNode = null;
  1912. this.txt测试2BIN12占比上限百分比.Location = new System.Drawing.Point(68, 445);
  1913. this.txt测试2BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1914. this.txt测试2BIN12占比上限百分比.Minimum = 0D;
  1915. this.txt测试2BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1916. this.txt测试2BIN12占比上限百分比.Name = "txt测试2BIN12占比上限百分比";
  1917. this.txt测试2BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1918. this.txt测试2BIN12占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[12]", NodeType.REAL, null);
  1919. this.txt测试2BIN12占比上限百分比.ShowText = false;
  1920. this.txt测试2BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1921. this.txt测试2BIN12占比上限百分比.TabIndex = 159;
  1922. this.txt测试2BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1923. this.txt测试2BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1924. this.txt测试2BIN12占比上限百分比.Watermark = "";
  1925. this.txt测试2BIN12占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[12]", NodeType.REAL, null);
  1926. //
  1927. // txt测试2BIN11占比上限百分比
  1928. //
  1929. this.txt测试2BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1930. this.txt测试2BIN11占比上限百分比.DisabilityTriggerNode = null;
  1931. this.txt测试2BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1932. this.txt测试2BIN11占比上限百分比.Gain = 1D;
  1933. this.txt测试2BIN11占比上限百分比.IntegerDigits = 0;
  1934. this.txt测试2BIN11占比上限百分比.InvisibilityTriggerNode = null;
  1935. this.txt测试2BIN11占比上限百分比.Location = new System.Drawing.Point(68, 408);
  1936. this.txt测试2BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1937. this.txt测试2BIN11占比上限百分比.Minimum = 0D;
  1938. this.txt测试2BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1939. this.txt测试2BIN11占比上限百分比.Name = "txt测试2BIN11占比上限百分比";
  1940. this.txt测试2BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1941. this.txt测试2BIN11占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[11]", NodeType.REAL, null);
  1942. this.txt测试2BIN11占比上限百分比.ShowText = false;
  1943. this.txt测试2BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1944. this.txt测试2BIN11占比上限百分比.TabIndex = 158;
  1945. this.txt测试2BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1946. this.txt测试2BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1947. this.txt测试2BIN11占比上限百分比.Watermark = "";
  1948. this.txt测试2BIN11占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[11]", NodeType.REAL, null);
  1949. //
  1950. // txt测试2BIN10占比上限百分比
  1951. //
  1952. this.txt测试2BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1953. this.txt测试2BIN10占比上限百分比.DisabilityTriggerNode = null;
  1954. this.txt测试2BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1955. this.txt测试2BIN10占比上限百分比.Gain = 1D;
  1956. this.txt测试2BIN10占比上限百分比.IntegerDigits = 0;
  1957. this.txt测试2BIN10占比上限百分比.InvisibilityTriggerNode = null;
  1958. this.txt测试2BIN10占比上限百分比.Location = new System.Drawing.Point(68, 371);
  1959. this.txt测试2BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1960. this.txt测试2BIN10占比上限百分比.Minimum = 0D;
  1961. this.txt测试2BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1962. this.txt测试2BIN10占比上限百分比.Name = "txt测试2BIN10占比上限百分比";
  1963. this.txt测试2BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1964. this.txt测试2BIN10占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[10]", NodeType.REAL, null);
  1965. this.txt测试2BIN10占比上限百分比.ShowText = false;
  1966. this.txt测试2BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1967. this.txt测试2BIN10占比上限百分比.TabIndex = 157;
  1968. this.txt测试2BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1969. this.txt测试2BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1970. this.txt测试2BIN10占比上限百分比.Watermark = "";
  1971. this.txt测试2BIN10占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[10]", NodeType.REAL, null);
  1972. //
  1973. // txt测试2BIN9占比上限百分比
  1974. //
  1975. this.txt测试2BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1976. this.txt测试2BIN9占比上限百分比.DisabilityTriggerNode = null;
  1977. this.txt测试2BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1978. this.txt测试2BIN9占比上限百分比.Gain = 1D;
  1979. this.txt测试2BIN9占比上限百分比.IntegerDigits = 0;
  1980. this.txt测试2BIN9占比上限百分比.InvisibilityTriggerNode = null;
  1981. this.txt测试2BIN9占比上限百分比.Location = new System.Drawing.Point(68, 334);
  1982. this.txt测试2BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  1983. this.txt测试2BIN9占比上限百分比.Minimum = 0D;
  1984. this.txt测试2BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  1985. this.txt测试2BIN9占比上限百分比.Name = "txt测试2BIN9占比上限百分比";
  1986. this.txt测试2BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  1987. this.txt测试2BIN9占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[9]", NodeType.REAL, null);
  1988. this.txt测试2BIN9占比上限百分比.ShowText = false;
  1989. this.txt测试2BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  1990. this.txt测试2BIN9占比上限百分比.TabIndex = 156;
  1991. this.txt测试2BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  1992. this.txt测试2BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  1993. this.txt测试2BIN9占比上限百分比.Watermark = "";
  1994. this.txt测试2BIN9占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[9]", NodeType.REAL, null);
  1995. //
  1996. // txt测试2BIN8占比上限百分比
  1997. //
  1998. this.txt测试2BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  1999. this.txt测试2BIN8占比上限百分比.DisabilityTriggerNode = null;
  2000. this.txt测试2BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2001. this.txt测试2BIN8占比上限百分比.Gain = 1D;
  2002. this.txt测试2BIN8占比上限百分比.IntegerDigits = 0;
  2003. this.txt测试2BIN8占比上限百分比.InvisibilityTriggerNode = null;
  2004. this.txt测试2BIN8占比上限百分比.Location = new System.Drawing.Point(68, 297);
  2005. this.txt测试2BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2006. this.txt测试2BIN8占比上限百分比.Minimum = 0D;
  2007. this.txt测试2BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2008. this.txt测试2BIN8占比上限百分比.Name = "txt测试2BIN8占比上限百分比";
  2009. this.txt测试2BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2010. this.txt测试2BIN8占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[8]", NodeType.REAL, null);
  2011. this.txt测试2BIN8占比上限百分比.ShowText = false;
  2012. this.txt测试2BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2013. this.txt测试2BIN8占比上限百分比.TabIndex = 155;
  2014. this.txt测试2BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2015. this.txt测试2BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2016. this.txt测试2BIN8占比上限百分比.Watermark = "";
  2017. this.txt测试2BIN8占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[8]", NodeType.REAL, null);
  2018. //
  2019. // txt测试2BIN7占比上限百分比
  2020. //
  2021. this.txt测试2BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2022. this.txt测试2BIN7占比上限百分比.DisabilityTriggerNode = null;
  2023. this.txt测试2BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2024. this.txt测试2BIN7占比上限百分比.Gain = 1D;
  2025. this.txt测试2BIN7占比上限百分比.IntegerDigits = 0;
  2026. this.txt测试2BIN7占比上限百分比.InvisibilityTriggerNode = null;
  2027. this.txt测试2BIN7占比上限百分比.Location = new System.Drawing.Point(68, 260);
  2028. this.txt测试2BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2029. this.txt测试2BIN7占比上限百分比.Minimum = 0D;
  2030. this.txt测试2BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2031. this.txt测试2BIN7占比上限百分比.Name = "txt测试2BIN7占比上限百分比";
  2032. this.txt测试2BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2033. this.txt测试2BIN7占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[7]", NodeType.REAL, null);
  2034. this.txt测试2BIN7占比上限百分比.ShowText = false;
  2035. this.txt测试2BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2036. this.txt测试2BIN7占比上限百分比.TabIndex = 154;
  2037. this.txt测试2BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2038. this.txt测试2BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2039. this.txt测试2BIN7占比上限百分比.Watermark = "";
  2040. this.txt测试2BIN7占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[7]", NodeType.REAL, null);
  2041. //
  2042. // txt测试2BIN6占比上限百分比
  2043. //
  2044. this.txt测试2BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2045. this.txt测试2BIN6占比上限百分比.DisabilityTriggerNode = null;
  2046. this.txt测试2BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2047. this.txt测试2BIN6占比上限百分比.Gain = 1D;
  2048. this.txt测试2BIN6占比上限百分比.IntegerDigits = 0;
  2049. this.txt测试2BIN6占比上限百分比.InvisibilityTriggerNode = null;
  2050. this.txt测试2BIN6占比上限百分比.Location = new System.Drawing.Point(68, 223);
  2051. this.txt测试2BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2052. this.txt测试2BIN6占比上限百分比.Minimum = 0D;
  2053. this.txt测试2BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2054. this.txt测试2BIN6占比上限百分比.Name = "txt测试2BIN6占比上限百分比";
  2055. this.txt测试2BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2056. this.txt测试2BIN6占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[6]", NodeType.REAL, null);
  2057. this.txt测试2BIN6占比上限百分比.ShowText = false;
  2058. this.txt测试2BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2059. this.txt测试2BIN6占比上限百分比.TabIndex = 153;
  2060. this.txt测试2BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2061. this.txt测试2BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2062. this.txt测试2BIN6占比上限百分比.Watermark = "";
  2063. this.txt测试2BIN6占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[6]", NodeType.REAL, null);
  2064. //
  2065. // txt测试2BIN5占比上限百分比
  2066. //
  2067. this.txt测试2BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2068. this.txt测试2BIN5占比上限百分比.DisabilityTriggerNode = null;
  2069. this.txt测试2BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2070. this.txt测试2BIN5占比上限百分比.Gain = 1D;
  2071. this.txt测试2BIN5占比上限百分比.IntegerDigits = 0;
  2072. this.txt测试2BIN5占比上限百分比.InvisibilityTriggerNode = null;
  2073. this.txt测试2BIN5占比上限百分比.Location = new System.Drawing.Point(68, 186);
  2074. this.txt测试2BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2075. this.txt测试2BIN5占比上限百分比.Minimum = 0D;
  2076. this.txt测试2BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2077. this.txt测试2BIN5占比上限百分比.Name = "txt测试2BIN5占比上限百分比";
  2078. this.txt测试2BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2079. this.txt测试2BIN5占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[5]", NodeType.REAL, null);
  2080. this.txt测试2BIN5占比上限百分比.ShowText = false;
  2081. this.txt测试2BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2082. this.txt测试2BIN5占比上限百分比.TabIndex = 152;
  2083. this.txt测试2BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2084. this.txt测试2BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2085. this.txt测试2BIN5占比上限百分比.Watermark = "";
  2086. this.txt测试2BIN5占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[5]", NodeType.REAL, null);
  2087. //
  2088. // txt测试2BIN4占比上限百分比
  2089. //
  2090. this.txt测试2BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2091. this.txt测试2BIN4占比上限百分比.DisabilityTriggerNode = null;
  2092. this.txt测试2BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2093. this.txt测试2BIN4占比上限百分比.Gain = 1D;
  2094. this.txt测试2BIN4占比上限百分比.IntegerDigits = 0;
  2095. this.txt测试2BIN4占比上限百分比.InvisibilityTriggerNode = null;
  2096. this.txt测试2BIN4占比上限百分比.Location = new System.Drawing.Point(68, 149);
  2097. this.txt测试2BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2098. this.txt测试2BIN4占比上限百分比.Minimum = 0D;
  2099. this.txt测试2BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2100. this.txt测试2BIN4占比上限百分比.Name = "txt测试2BIN4占比上限百分比";
  2101. this.txt测试2BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2102. this.txt测试2BIN4占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[4]", NodeType.REAL, null);
  2103. this.txt测试2BIN4占比上限百分比.ShowText = false;
  2104. this.txt测试2BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2105. this.txt测试2BIN4占比上限百分比.TabIndex = 151;
  2106. this.txt测试2BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2107. this.txt测试2BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2108. this.txt测试2BIN4占比上限百分比.Watermark = "";
  2109. this.txt测试2BIN4占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[4]", NodeType.REAL, null);
  2110. //
  2111. // txt测试2BIN3占比上限百分比
  2112. //
  2113. this.txt测试2BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2114. this.txt测试2BIN3占比上限百分比.DisabilityTriggerNode = null;
  2115. this.txt测试2BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2116. this.txt测试2BIN3占比上限百分比.Gain = 1D;
  2117. this.txt测试2BIN3占比上限百分比.IntegerDigits = 0;
  2118. this.txt测试2BIN3占比上限百分比.InvisibilityTriggerNode = null;
  2119. this.txt测试2BIN3占比上限百分比.Location = new System.Drawing.Point(68, 112);
  2120. this.txt测试2BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2121. this.txt测试2BIN3占比上限百分比.Minimum = 0D;
  2122. this.txt测试2BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2123. this.txt测试2BIN3占比上限百分比.Name = "txt测试2BIN3占比上限百分比";
  2124. this.txt测试2BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2125. this.txt测试2BIN3占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[3]", NodeType.REAL, null);
  2126. this.txt测试2BIN3占比上限百分比.ShowText = false;
  2127. this.txt测试2BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2128. this.txt测试2BIN3占比上限百分比.TabIndex = 150;
  2129. this.txt测试2BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2130. this.txt测试2BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2131. this.txt测试2BIN3占比上限百分比.Watermark = "";
  2132. this.txt测试2BIN3占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[3]", NodeType.REAL, null);
  2133. //
  2134. // plcUiNumberDisplay48
  2135. //
  2136. this.plcUiNumberDisplay48.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2137. this.plcUiNumberDisplay48.DecimalPlaces = 0;
  2138. this.plcUiNumberDisplay48.DisabilityTriggerNode = null;
  2139. this.plcUiNumberDisplay48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2140. this.plcUiNumberDisplay48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2141. this.plcUiNumberDisplay48.Gain = 1D;
  2142. this.plcUiNumberDisplay48.IntegerDigits = 0;
  2143. this.plcUiNumberDisplay48.InvisibilityTriggerNode = null;
  2144. this.plcUiNumberDisplay48.Location = new System.Drawing.Point(155, 75);
  2145. this.plcUiNumberDisplay48.Name = "plcUiNumberDisplay48";
  2146. this.plcUiNumberDisplay48.Preffix = null;
  2147. this.plcUiNumberDisplay48.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[2]", NodeType.UDINT, null);
  2148. this.plcUiNumberDisplay48.Size = new System.Drawing.Size(80, 27);
  2149. this.plcUiNumberDisplay48.Suffix = null;
  2150. this.plcUiNumberDisplay48.TabIndex = 149;
  2151. this.plcUiNumberDisplay48.Text = "1";
  2152. this.plcUiNumberDisplay48.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2153. this.plcUiNumberDisplay48.WriteNode = null;
  2154. //
  2155. // plcUiNumberDisplay49
  2156. //
  2157. this.plcUiNumberDisplay49.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2158. this.plcUiNumberDisplay49.DecimalPlaces = 0;
  2159. this.plcUiNumberDisplay49.DisabilityTriggerNode = null;
  2160. this.plcUiNumberDisplay49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2161. this.plcUiNumberDisplay49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2162. this.plcUiNumberDisplay49.Gain = 1D;
  2163. this.plcUiNumberDisplay49.IntegerDigits = 0;
  2164. this.plcUiNumberDisplay49.InvisibilityTriggerNode = null;
  2165. this.plcUiNumberDisplay49.Location = new System.Drawing.Point(155, 38);
  2166. this.plcUiNumberDisplay49.Name = "plcUiNumberDisplay49";
  2167. this.plcUiNumberDisplay49.Preffix = null;
  2168. this.plcUiNumberDisplay49.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_Bin结果统计[1]", NodeType.UDINT, null);
  2169. this.plcUiNumberDisplay49.Size = new System.Drawing.Size(80, 27);
  2170. this.plcUiNumberDisplay49.Suffix = null;
  2171. this.plcUiNumberDisplay49.TabIndex = 147;
  2172. this.plcUiNumberDisplay49.Text = "1";
  2173. this.plcUiNumberDisplay49.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2174. this.plcUiNumberDisplay49.WriteNode = null;
  2175. //
  2176. // plcUiNumberDisplay50
  2177. //
  2178. this.plcUiNumberDisplay50.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2179. this.plcUiNumberDisplay50.DecimalPlaces = 0;
  2180. this.plcUiNumberDisplay50.DisabilityTriggerNode = null;
  2181. this.plcUiNumberDisplay50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2182. this.plcUiNumberDisplay50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2183. this.plcUiNumberDisplay50.Gain = 1D;
  2184. this.plcUiNumberDisplay50.IntegerDigits = 0;
  2185. this.plcUiNumberDisplay50.InvisibilityTriggerNode = null;
  2186. this.plcUiNumberDisplay50.Location = new System.Drawing.Point(155, 484);
  2187. this.plcUiNumberDisplay50.Name = "plcUiNumberDisplay50";
  2188. this.plcUiNumberDisplay50.Preffix = null;
  2189. this.plcUiNumberDisplay50.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  2190. this.plcUiNumberDisplay50.Size = new System.Drawing.Size(80, 27);
  2191. this.plcUiNumberDisplay50.Suffix = null;
  2192. this.plcUiNumberDisplay50.TabIndex = 145;
  2193. this.plcUiNumberDisplay50.Text = "1";
  2194. this.plcUiNumberDisplay50.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2195. this.plcUiNumberDisplay50.WriteNode = null;
  2196. //
  2197. // txt测试2BIN2占比上限百分比
  2198. //
  2199. this.txt测试2BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2200. this.txt测试2BIN2占比上限百分比.DisabilityTriggerNode = null;
  2201. this.txt测试2BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2202. this.txt测试2BIN2占比上限百分比.Gain = 1D;
  2203. this.txt测试2BIN2占比上限百分比.IntegerDigits = 0;
  2204. this.txt测试2BIN2占比上限百分比.InvisibilityTriggerNode = null;
  2205. this.txt测试2BIN2占比上限百分比.Location = new System.Drawing.Point(68, 75);
  2206. this.txt测试2BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2207. this.txt测试2BIN2占比上限百分比.Minimum = 0D;
  2208. this.txt测试2BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2209. this.txt测试2BIN2占比上限百分比.Name = "txt测试2BIN2占比上限百分比";
  2210. this.txt测试2BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2211. this.txt测试2BIN2占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[2]", NodeType.REAL, null);
  2212. this.txt测试2BIN2占比上限百分比.ShowText = false;
  2213. this.txt测试2BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2214. this.txt测试2BIN2占比上限百分比.TabIndex = 144;
  2215. this.txt测试2BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2216. this.txt测试2BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2217. this.txt测试2BIN2占比上限百分比.Watermark = "";
  2218. this.txt测试2BIN2占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[2]", NodeType.REAL, null);
  2219. //
  2220. // txt测试2统计起始数量
  2221. //
  2222. this.txt测试2统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  2223. this.txt测试2统计起始数量.DisabilityTriggerNode = null;
  2224. this.txt测试2统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2225. this.txt测试2统计起始数量.Gain = 1D;
  2226. this.txt测试2统计起始数量.IntegerDigits = 0;
  2227. this.txt测试2统计起始数量.InvisibilityTriggerNode = null;
  2228. this.txt测试2统计起始数量.Location = new System.Drawing.Point(155, 516);
  2229. this.txt测试2统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2230. this.txt测试2统计起始数量.Minimum = 0D;
  2231. this.txt测试2统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  2232. this.txt测试2统计起始数量.Name = "txt测试2统计起始数量";
  2233. this.txt测试2统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  2234. this.txt测试2统计起始数量.ReadNode = new Node("Application.A05_TestStation_Auto.udi测试2_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  2235. this.txt测试2统计起始数量.ShowText = false;
  2236. this.txt测试2统计起始数量.Size = new System.Drawing.Size(80, 27);
  2237. this.txt测试2统计起始数量.TabIndex = 141;
  2238. this.txt测试2统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2239. this.txt测试2统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  2240. this.txt测试2统计起始数量.Watermark = "";
  2241. this.txt测试2统计起始数量.WriteNode = new Node("Application.A05_TestStation_Auto.udi测试2_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  2242. //
  2243. // txt测试2BIN1占比上限百分比
  2244. //
  2245. this.txt测试2BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  2246. this.txt测试2BIN1占比上限百分比.DisabilityTriggerNode = null;
  2247. this.txt测试2BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2248. this.txt测试2BIN1占比上限百分比.Gain = 1D;
  2249. this.txt测试2BIN1占比上限百分比.IntegerDigits = 0;
  2250. this.txt测试2BIN1占比上限百分比.InvisibilityTriggerNode = null;
  2251. this.txt测试2BIN1占比上限百分比.Location = new System.Drawing.Point(68, 38);
  2252. this.txt测试2BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2253. this.txt测试2BIN1占比上限百分比.Minimum = 0D;
  2254. this.txt测试2BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  2255. this.txt测试2BIN1占比上限百分比.Name = "txt测试2BIN1占比上限百分比";
  2256. this.txt测试2BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  2257. this.txt测试2BIN1占比上限百分比.ReadNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[1]", NodeType.REAL, null);
  2258. this.txt测试2BIN1占比上限百分比.ShowText = false;
  2259. this.txt测试2BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  2260. this.txt测试2BIN1占比上限百分比.TabIndex = 140;
  2261. this.txt测试2BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2262. this.txt测试2BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2263. this.txt测试2BIN1占比上限百分比.Watermark = "";
  2264. this.txt测试2BIN1占比上限百分比.WriteNode = new Node("Application.A05_TestStation_Auto.r测试2_Bin结果报警比率设定[1]", NodeType.REAL, null);
  2265. //
  2266. // uiLabel4
  2267. //
  2268. this.uiLabel4.AutoSize = true;
  2269. this.uiLabel4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2270. this.uiLabel4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2271. this.uiLabel4.Location = new System.Drawing.Point(177, 17);
  2272. this.uiLabel4.Name = "uiLabel4";
  2273. this.uiLabel4.Size = new System.Drawing.Size(39, 16);
  2274. this.uiLabel4.TabIndex = 206;
  2275. this.uiLabel4.Text = "数量";
  2276. //
  2277. // uiLabel5
  2278. //
  2279. this.uiLabel5.AutoSize = true;
  2280. this.uiLabel5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2281. this.uiLabel5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2282. this.uiLabel5.Location = new System.Drawing.Point(261, 17);
  2283. this.uiLabel5.Name = "uiLabel5";
  2284. this.uiLabel5.Size = new System.Drawing.Size(39, 16);
  2285. this.uiLabel5.TabIndex = 205;
  2286. this.uiLabel5.Text = "比率";
  2287. //
  2288. // uiLabel6
  2289. //
  2290. this.uiLabel6.AutoSize = true;
  2291. this.uiLabel6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2292. this.uiLabel6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2293. this.uiLabel6.Location = new System.Drawing.Point(69, 17);
  2294. this.uiLabel6.Name = "uiLabel6";
  2295. this.uiLabel6.Size = new System.Drawing.Size(79, 16);
  2296. this.uiLabel6.TabIndex = 204;
  2297. this.uiLabel6.Text = "上限(%)";
  2298. //
  2299. // uiLabel7
  2300. //
  2301. this.uiLabel7.AutoSize = true;
  2302. this.uiLabel7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2303. this.uiLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2304. this.uiLabel7.Location = new System.Drawing.Point(45, 522);
  2305. this.uiLabel7.Name = "uiLabel7";
  2306. this.uiLabel7.Size = new System.Drawing.Size(103, 16);
  2307. this.uiLabel7.TabIndex = 207;
  2308. this.uiLabel7.Text = "统计起始数量";
  2309. //
  2310. // uiLabel8
  2311. //
  2312. this.uiLabel8.AutoSize = true;
  2313. this.uiLabel8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2314. this.uiLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2315. this.uiLabel8.Location = new System.Drawing.Point(61, 489);
  2316. this.uiLabel8.Name = "uiLabel8";
  2317. this.uiLabel8.Size = new System.Drawing.Size(87, 16);
  2318. this.uiLabel8.TabIndex = 208;
  2319. this.uiLabel8.Text = "当前总计数";
  2320. //
  2321. // uiTabControl1
  2322. //
  2323. this.uiTabControl1.Controls.Add(this.tabPage7);
  2324. this.uiTabControl1.Controls.Add(this.tabPage1);
  2325. this.uiTabControl1.Controls.Add(this.tabPage2);
  2326. this.uiTabControl1.Controls.Add(this.tabPage3);
  2327. this.uiTabControl1.Controls.Add(this.tabPage4);
  2328. this.uiTabControl1.Controls.Add(this.tabPage5);
  2329. this.uiTabControl1.Controls.Add(this.tabPage6);
  2330. this.uiTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  2331. this.uiTabControl1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
  2332. this.uiTabControl1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2333. this.uiTabControl1.ItemSize = new System.Drawing.Size(80, 40);
  2334. this.uiTabControl1.Location = new System.Drawing.Point(0, 35);
  2335. this.uiTabControl1.MainPage = "";
  2336. this.uiTabControl1.Name = "uiTabControl1";
  2337. this.uiTabControl1.SelectedIndex = 0;
  2338. this.uiTabControl1.Size = new System.Drawing.Size(569, 600);
  2339. this.uiTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
  2340. this.uiTabControl1.TabIndex = 209;
  2341. this.uiTabControl1.TipsFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2342. //
  2343. // tabPage7
  2344. //
  2345. this.tabPage7.Controls.Add(this.uiLabel103);
  2346. this.tabPage7.Controls.Add(this.plcUiNumberDisplay151);
  2347. this.tabPage7.Controls.Add(this.plcUiNumberDisplay152);
  2348. this.tabPage7.Controls.Add(this.plcUiNumberDisplay153);
  2349. this.tabPage7.Controls.Add(this.plcUiNumberDisplay154);
  2350. this.tabPage7.Controls.Add(this.plcUiNumberDisplay155);
  2351. this.tabPage7.Controls.Add(this.uiLabel104);
  2352. this.tabPage7.Controls.Add(this.plcUiNumberDisplay156);
  2353. this.tabPage7.Controls.Add(this.plcUiNumberInput1);
  2354. this.tabPage7.Controls.Add(this.uiLabel105);
  2355. this.tabPage7.Controls.Add(this.plcUiNumberDisplay157);
  2356. this.tabPage7.Controls.Add(this.plcUiNumberInput2);
  2357. this.tabPage7.Controls.Add(this.uiLabel106);
  2358. this.tabPage7.Controls.Add(this.plcUiNumberDisplay158);
  2359. this.tabPage7.Controls.Add(this.plcUiNumberInput3);
  2360. this.tabPage7.Controls.Add(this.uiLabel107);
  2361. this.tabPage7.Controls.Add(this.plcUiNumberDisplay159);
  2362. this.tabPage7.Controls.Add(this.plcUiNumberInput4);
  2363. this.tabPage7.Controls.Add(this.uiLabel108);
  2364. this.tabPage7.Controls.Add(this.plcUiNumberDisplay160);
  2365. this.tabPage7.Controls.Add(this.plcUiNumberInput5);
  2366. this.tabPage7.Controls.Add(this.uiLabel109);
  2367. this.tabPage7.Controls.Add(this.plcUiNumberDisplay161);
  2368. this.tabPage7.Controls.Add(this.plcUiNumberInput6);
  2369. this.tabPage7.Controls.Add(this.uiLabel110);
  2370. this.tabPage7.Controls.Add(this.plcUiNumberDisplay162);
  2371. this.tabPage7.Controls.Add(this.plcUiNumberInput7);
  2372. this.tabPage7.Controls.Add(this.uiLabel111);
  2373. this.tabPage7.Controls.Add(this.plcUiNumberDisplay163);
  2374. this.tabPage7.Controls.Add(this.plcUiNumberInput8);
  2375. this.tabPage7.Controls.Add(this.uiLabel112);
  2376. this.tabPage7.Controls.Add(this.plcUiNumberDisplay164);
  2377. this.tabPage7.Controls.Add(this.plcUiNumberInput9);
  2378. this.tabPage7.Controls.Add(this.uiLabel113);
  2379. this.tabPage7.Controls.Add(this.plcUiNumberDisplay165);
  2380. this.tabPage7.Controls.Add(this.plcUiNumberInput10);
  2381. this.tabPage7.Controls.Add(this.plcUiNumberDisplay166);
  2382. this.tabPage7.Controls.Add(this.plcUiNumberDisplay167);
  2383. this.tabPage7.Controls.Add(this.plcUiNumberDisplay168);
  2384. this.tabPage7.Controls.Add(this.plcUiNumberDisplay169);
  2385. this.tabPage7.Controls.Add(this.plcUiNumberDisplay170);
  2386. this.tabPage7.Controls.Add(this.plcUiNumberDisplay171);
  2387. this.tabPage7.Controls.Add(this.uiLabel114);
  2388. this.tabPage7.Controls.Add(this.plcUiNumberInput11);
  2389. this.tabPage7.Controls.Add(this.uiLabel115);
  2390. this.tabPage7.Controls.Add(this.plcUiNumberDisplay172);
  2391. this.tabPage7.Controls.Add(this.uiLabel116);
  2392. this.tabPage7.Controls.Add(this.uiLabel117);
  2393. this.tabPage7.Controls.Add(this.uiLabel118);
  2394. this.tabPage7.Controls.Add(this.plcUiNumberDisplay173);
  2395. this.tabPage7.Controls.Add(this.plcUiNumberDisplay174);
  2396. this.tabPage7.Controls.Add(this.uiLabel119);
  2397. this.tabPage7.Controls.Add(this.plcUiNumberInput12);
  2398. this.tabPage7.Controls.Add(this.plcUiNumberDisplay175);
  2399. this.tabPage7.Controls.Add(this.plcUiNumberInput13);
  2400. this.tabPage7.Location = new System.Drawing.Point(0, 40);
  2401. this.tabPage7.Name = "tabPage7";
  2402. this.tabPage7.Size = new System.Drawing.Size(569, 560);
  2403. this.tabPage7.TabIndex = 6;
  2404. this.tabPage7.Text = "电测";
  2405. this.tabPage7.UseVisualStyleBackColor = true;
  2406. //
  2407. // uiLabel103
  2408. //
  2409. this.uiLabel103.AutoSize = true;
  2410. this.uiLabel103.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2411. this.uiLabel103.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2412. this.uiLabel103.Location = new System.Drawing.Point(71, 18);
  2413. this.uiLabel103.Name = "uiLabel103";
  2414. this.uiLabel103.Size = new System.Drawing.Size(79, 16);
  2415. this.uiLabel103.TabIndex = 171;
  2416. this.uiLabel103.Text = "上限(%)";
  2417. //
  2418. // plcUiNumberDisplay151
  2419. //
  2420. this.plcUiNumberDisplay151.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2421. this.plcUiNumberDisplay151.DecimalPlaces = 0;
  2422. this.plcUiNumberDisplay151.DisabilityTriggerNode = null;
  2423. this.plcUiNumberDisplay151.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2424. this.plcUiNumberDisplay151.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2425. this.plcUiNumberDisplay151.Gain = 1D;
  2426. this.plcUiNumberDisplay151.IntegerDigits = 0;
  2427. this.plcUiNumberDisplay151.InvisibilityTriggerNode = null;
  2428. this.plcUiNumberDisplay151.Location = new System.Drawing.Point(157, 186);
  2429. this.plcUiNumberDisplay151.Name = "plcUiNumberDisplay151";
  2430. this.plcUiNumberDisplay151.Preffix = null;
  2431. this.plcUiNumberDisplay151.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[5]", NodeType.UDINT, null);
  2432. this.plcUiNumberDisplay151.Size = new System.Drawing.Size(80, 27);
  2433. this.plcUiNumberDisplay151.Suffix = null;
  2434. this.plcUiNumberDisplay151.TabIndex = 151;
  2435. this.plcUiNumberDisplay151.Text = "1";
  2436. this.plcUiNumberDisplay151.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2437. this.plcUiNumberDisplay151.WriteNode = null;
  2438. //
  2439. // plcUiNumberDisplay152
  2440. //
  2441. this.plcUiNumberDisplay152.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2442. this.plcUiNumberDisplay152.DecimalPlaces = 0;
  2443. this.plcUiNumberDisplay152.DisabilityTriggerNode = null;
  2444. this.plcUiNumberDisplay152.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2445. this.plcUiNumberDisplay152.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2446. this.plcUiNumberDisplay152.Gain = 1D;
  2447. this.plcUiNumberDisplay152.IntegerDigits = 0;
  2448. this.plcUiNumberDisplay152.InvisibilityTriggerNode = null;
  2449. this.plcUiNumberDisplay152.Location = new System.Drawing.Point(157, 149);
  2450. this.plcUiNumberDisplay152.Name = "plcUiNumberDisplay152";
  2451. this.plcUiNumberDisplay152.Preffix = null;
  2452. this.plcUiNumberDisplay152.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[4]", NodeType.UDINT, null);
  2453. this.plcUiNumberDisplay152.Size = new System.Drawing.Size(80, 27);
  2454. this.plcUiNumberDisplay152.Suffix = null;
  2455. this.plcUiNumberDisplay152.TabIndex = 150;
  2456. this.plcUiNumberDisplay152.Text = "1";
  2457. this.plcUiNumberDisplay152.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2458. this.plcUiNumberDisplay152.WriteNode = null;
  2459. //
  2460. // plcUiNumberDisplay153
  2461. //
  2462. this.plcUiNumberDisplay153.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2463. this.plcUiNumberDisplay153.DecimalPlaces = 0;
  2464. this.plcUiNumberDisplay153.DisabilityTriggerNode = null;
  2465. this.plcUiNumberDisplay153.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2466. this.plcUiNumberDisplay153.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2467. this.plcUiNumberDisplay153.Gain = 1D;
  2468. this.plcUiNumberDisplay153.IntegerDigits = 0;
  2469. this.plcUiNumberDisplay153.InvisibilityTriggerNode = null;
  2470. this.plcUiNumberDisplay153.Location = new System.Drawing.Point(157, 223);
  2471. this.plcUiNumberDisplay153.Name = "plcUiNumberDisplay153";
  2472. this.plcUiNumberDisplay153.Preffix = null;
  2473. this.plcUiNumberDisplay153.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[6]", NodeType.UDINT, null);
  2474. this.plcUiNumberDisplay153.Size = new System.Drawing.Size(80, 27);
  2475. this.plcUiNumberDisplay153.Suffix = null;
  2476. this.plcUiNumberDisplay153.TabIndex = 152;
  2477. this.plcUiNumberDisplay153.Text = "1";
  2478. this.plcUiNumberDisplay153.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2479. this.plcUiNumberDisplay153.WriteNode = null;
  2480. //
  2481. // plcUiNumberDisplay154
  2482. //
  2483. this.plcUiNumberDisplay154.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2484. this.plcUiNumberDisplay154.DecimalPlaces = 0;
  2485. this.plcUiNumberDisplay154.DisabilityTriggerNode = null;
  2486. this.plcUiNumberDisplay154.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2487. this.plcUiNumberDisplay154.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2488. this.plcUiNumberDisplay154.Gain = 1D;
  2489. this.plcUiNumberDisplay154.IntegerDigits = 0;
  2490. this.plcUiNumberDisplay154.InvisibilityTriggerNode = null;
  2491. this.plcUiNumberDisplay154.Location = new System.Drawing.Point(157, 112);
  2492. this.plcUiNumberDisplay154.Name = "plcUiNumberDisplay154";
  2493. this.plcUiNumberDisplay154.Preffix = null;
  2494. this.plcUiNumberDisplay154.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[3]", NodeType.UDINT, null);
  2495. this.plcUiNumberDisplay154.Size = new System.Drawing.Size(80, 27);
  2496. this.plcUiNumberDisplay154.Suffix = null;
  2497. this.plcUiNumberDisplay154.TabIndex = 149;
  2498. this.plcUiNumberDisplay154.Text = "1";
  2499. this.plcUiNumberDisplay154.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2500. this.plcUiNumberDisplay154.WriteNode = null;
  2501. //
  2502. // plcUiNumberDisplay155
  2503. //
  2504. this.plcUiNumberDisplay155.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2505. this.plcUiNumberDisplay155.DecimalPlaces = 0;
  2506. this.plcUiNumberDisplay155.DisabilityTriggerNode = null;
  2507. this.plcUiNumberDisplay155.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2508. this.plcUiNumberDisplay155.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2509. this.plcUiNumberDisplay155.Gain = 1D;
  2510. this.plcUiNumberDisplay155.IntegerDigits = 0;
  2511. this.plcUiNumberDisplay155.InvisibilityTriggerNode = null;
  2512. this.plcUiNumberDisplay155.Location = new System.Drawing.Point(157, 260);
  2513. this.plcUiNumberDisplay155.Name = "plcUiNumberDisplay155";
  2514. this.plcUiNumberDisplay155.Preffix = null;
  2515. this.plcUiNumberDisplay155.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[7]", NodeType.UDINT, null);
  2516. this.plcUiNumberDisplay155.Size = new System.Drawing.Size(80, 27);
  2517. this.plcUiNumberDisplay155.Suffix = null;
  2518. this.plcUiNumberDisplay155.TabIndex = 153;
  2519. this.plcUiNumberDisplay155.Text = "1";
  2520. this.plcUiNumberDisplay155.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2521. this.plcUiNumberDisplay155.WriteNode = null;
  2522. //
  2523. // uiLabel104
  2524. //
  2525. this.uiLabel104.AutoSize = true;
  2526. this.uiLabel104.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2527. this.uiLabel104.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2528. this.uiLabel104.Location = new System.Drawing.Point(22, 450);
  2529. this.uiLabel104.Name = "uiLabel104";
  2530. this.uiLabel104.Size = new System.Drawing.Size(47, 16);
  2531. this.uiLabel104.TabIndex = 148;
  2532. this.uiLabel104.Text = "BIN12";
  2533. //
  2534. // plcUiNumberDisplay156
  2535. //
  2536. this.plcUiNumberDisplay156.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2537. this.plcUiNumberDisplay156.DecimalPlaces = 0;
  2538. this.plcUiNumberDisplay156.DisabilityTriggerNode = null;
  2539. this.plcUiNumberDisplay156.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2540. this.plcUiNumberDisplay156.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2541. this.plcUiNumberDisplay156.Gain = 1D;
  2542. this.plcUiNumberDisplay156.IntegerDigits = 0;
  2543. this.plcUiNumberDisplay156.InvisibilityTriggerNode = null;
  2544. this.plcUiNumberDisplay156.Location = new System.Drawing.Point(157, 297);
  2545. this.plcUiNumberDisplay156.Name = "plcUiNumberDisplay156";
  2546. this.plcUiNumberDisplay156.Preffix = null;
  2547. this.plcUiNumberDisplay156.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[8]", NodeType.UDINT, null);
  2548. this.plcUiNumberDisplay156.Size = new System.Drawing.Size(80, 27);
  2549. this.plcUiNumberDisplay156.Suffix = null;
  2550. this.plcUiNumberDisplay156.TabIndex = 154;
  2551. this.plcUiNumberDisplay156.Text = "1";
  2552. this.plcUiNumberDisplay156.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2553. this.plcUiNumberDisplay156.WriteNode = null;
  2554. //
  2555. // plcUiNumberInput1
  2556. //
  2557. this.plcUiNumberInput1.Cursor = System.Windows.Forms.Cursors.IBeam;
  2558. this.plcUiNumberInput1.DisabilityTriggerNode = null;
  2559. this.plcUiNumberInput1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2560. this.plcUiNumberInput1.Gain = 1D;
  2561. this.plcUiNumberInput1.IntegerDigits = 0;
  2562. this.plcUiNumberInput1.InvisibilityTriggerNode = null;
  2563. this.plcUiNumberInput1.Location = new System.Drawing.Point(70, 445);
  2564. this.plcUiNumberInput1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2565. this.plcUiNumberInput1.Minimum = 0D;
  2566. this.plcUiNumberInput1.MinimumSize = new System.Drawing.Size(1, 16);
  2567. this.plcUiNumberInput1.Name = "plcUiNumberInput1";
  2568. this.plcUiNumberInput1.Padding = new System.Windows.Forms.Padding(5);
  2569. this.plcUiNumberInput1.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  2570. this.plcUiNumberInput1.ShowText = false;
  2571. this.plcUiNumberInput1.Size = new System.Drawing.Size(80, 27);
  2572. this.plcUiNumberInput1.TabIndex = 147;
  2573. this.plcUiNumberInput1.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2574. this.plcUiNumberInput1.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2575. this.plcUiNumberInput1.Watermark = "";
  2576. this.plcUiNumberInput1.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  2577. //
  2578. // uiLabel105
  2579. //
  2580. this.uiLabel105.AutoSize = true;
  2581. this.uiLabel105.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2582. this.uiLabel105.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2583. this.uiLabel105.Location = new System.Drawing.Point(22, 413);
  2584. this.uiLabel105.Name = "uiLabel105";
  2585. this.uiLabel105.Size = new System.Drawing.Size(47, 16);
  2586. this.uiLabel105.TabIndex = 146;
  2587. this.uiLabel105.Text = "BIN11";
  2588. //
  2589. // plcUiNumberDisplay157
  2590. //
  2591. this.plcUiNumberDisplay157.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2592. this.plcUiNumberDisplay157.DecimalPlaces = 0;
  2593. this.plcUiNumberDisplay157.DisabilityTriggerNode = null;
  2594. this.plcUiNumberDisplay157.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2595. this.plcUiNumberDisplay157.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2596. this.plcUiNumberDisplay157.Gain = 1D;
  2597. this.plcUiNumberDisplay157.IntegerDigits = 0;
  2598. this.plcUiNumberDisplay157.InvisibilityTriggerNode = null;
  2599. this.plcUiNumberDisplay157.Location = new System.Drawing.Point(157, 335);
  2600. this.plcUiNumberDisplay157.Name = "plcUiNumberDisplay157";
  2601. this.plcUiNumberDisplay157.Preffix = null;
  2602. this.plcUiNumberDisplay157.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[9]", NodeType.UDINT, null);
  2603. this.plcUiNumberDisplay157.Size = new System.Drawing.Size(80, 27);
  2604. this.plcUiNumberDisplay157.Suffix = null;
  2605. this.plcUiNumberDisplay157.TabIndex = 155;
  2606. this.plcUiNumberDisplay157.Text = "1";
  2607. this.plcUiNumberDisplay157.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2608. this.plcUiNumberDisplay157.WriteNode = null;
  2609. //
  2610. // plcUiNumberInput2
  2611. //
  2612. this.plcUiNumberInput2.Cursor = System.Windows.Forms.Cursors.IBeam;
  2613. this.plcUiNumberInput2.DisabilityTriggerNode = null;
  2614. this.plcUiNumberInput2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2615. this.plcUiNumberInput2.Gain = 1D;
  2616. this.plcUiNumberInput2.IntegerDigits = 0;
  2617. this.plcUiNumberInput2.InvisibilityTriggerNode = null;
  2618. this.plcUiNumberInput2.Location = new System.Drawing.Point(70, 408);
  2619. this.plcUiNumberInput2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2620. this.plcUiNumberInput2.Minimum = 0D;
  2621. this.plcUiNumberInput2.MinimumSize = new System.Drawing.Size(1, 16);
  2622. this.plcUiNumberInput2.Name = "plcUiNumberInput2";
  2623. this.plcUiNumberInput2.Padding = new System.Windows.Forms.Padding(5);
  2624. this.plcUiNumberInput2.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  2625. this.plcUiNumberInput2.ShowText = false;
  2626. this.plcUiNumberInput2.Size = new System.Drawing.Size(80, 27);
  2627. this.plcUiNumberInput2.TabIndex = 145;
  2628. this.plcUiNumberInput2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2629. this.plcUiNumberInput2.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2630. this.plcUiNumberInput2.Watermark = "";
  2631. this.plcUiNumberInput2.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  2632. //
  2633. // uiLabel106
  2634. //
  2635. this.uiLabel106.AutoSize = true;
  2636. this.uiLabel106.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2637. this.uiLabel106.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2638. this.uiLabel106.Location = new System.Drawing.Point(22, 376);
  2639. this.uiLabel106.Name = "uiLabel106";
  2640. this.uiLabel106.Size = new System.Drawing.Size(47, 16);
  2641. this.uiLabel106.TabIndex = 144;
  2642. this.uiLabel106.Text = "BIN10";
  2643. //
  2644. // plcUiNumberDisplay158
  2645. //
  2646. this.plcUiNumberDisplay158.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2647. this.plcUiNumberDisplay158.DecimalPlaces = 0;
  2648. this.plcUiNumberDisplay158.DisabilityTriggerNode = null;
  2649. this.plcUiNumberDisplay158.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2650. this.plcUiNumberDisplay158.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2651. this.plcUiNumberDisplay158.Gain = 1D;
  2652. this.plcUiNumberDisplay158.IntegerDigits = 0;
  2653. this.plcUiNumberDisplay158.InvisibilityTriggerNode = null;
  2654. this.plcUiNumberDisplay158.Location = new System.Drawing.Point(157, 371);
  2655. this.plcUiNumberDisplay158.Name = "plcUiNumberDisplay158";
  2656. this.plcUiNumberDisplay158.Preffix = null;
  2657. this.plcUiNumberDisplay158.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[10]", NodeType.UDINT, null);
  2658. this.plcUiNumberDisplay158.Size = new System.Drawing.Size(80, 27);
  2659. this.plcUiNumberDisplay158.Suffix = null;
  2660. this.plcUiNumberDisplay158.TabIndex = 156;
  2661. this.plcUiNumberDisplay158.Text = "1";
  2662. this.plcUiNumberDisplay158.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2663. this.plcUiNumberDisplay158.WriteNode = null;
  2664. //
  2665. // plcUiNumberInput3
  2666. //
  2667. this.plcUiNumberInput3.Cursor = System.Windows.Forms.Cursors.IBeam;
  2668. this.plcUiNumberInput3.DisabilityTriggerNode = null;
  2669. this.plcUiNumberInput3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2670. this.plcUiNumberInput3.Gain = 1D;
  2671. this.plcUiNumberInput3.IntegerDigits = 0;
  2672. this.plcUiNumberInput3.InvisibilityTriggerNode = null;
  2673. this.plcUiNumberInput3.Location = new System.Drawing.Point(70, 371);
  2674. this.plcUiNumberInput3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2675. this.plcUiNumberInput3.Minimum = 0D;
  2676. this.plcUiNumberInput3.MinimumSize = new System.Drawing.Size(1, 16);
  2677. this.plcUiNumberInput3.Name = "plcUiNumberInput3";
  2678. this.plcUiNumberInput3.Padding = new System.Windows.Forms.Padding(5);
  2679. this.plcUiNumberInput3.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  2680. this.plcUiNumberInput3.ShowText = false;
  2681. this.plcUiNumberInput3.Size = new System.Drawing.Size(80, 27);
  2682. this.plcUiNumberInput3.TabIndex = 143;
  2683. this.plcUiNumberInput3.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2684. this.plcUiNumberInput3.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2685. this.plcUiNumberInput3.Watermark = "";
  2686. this.plcUiNumberInput3.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  2687. //
  2688. // uiLabel107
  2689. //
  2690. this.uiLabel107.AutoSize = true;
  2691. this.uiLabel107.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2692. this.uiLabel107.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2693. this.uiLabel107.Location = new System.Drawing.Point(22, 339);
  2694. this.uiLabel107.Name = "uiLabel107";
  2695. this.uiLabel107.Size = new System.Drawing.Size(39, 16);
  2696. this.uiLabel107.TabIndex = 142;
  2697. this.uiLabel107.Text = "BIN9";
  2698. //
  2699. // plcUiNumberDisplay159
  2700. //
  2701. this.plcUiNumberDisplay159.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2702. this.plcUiNumberDisplay159.DecimalPlaces = 0;
  2703. this.plcUiNumberDisplay159.DisabilityTriggerNode = null;
  2704. this.plcUiNumberDisplay159.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2705. this.plcUiNumberDisplay159.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2706. this.plcUiNumberDisplay159.Gain = 1D;
  2707. this.plcUiNumberDisplay159.IntegerDigits = 0;
  2708. this.plcUiNumberDisplay159.InvisibilityTriggerNode = null;
  2709. this.plcUiNumberDisplay159.Location = new System.Drawing.Point(157, 408);
  2710. this.plcUiNumberDisplay159.Name = "plcUiNumberDisplay159";
  2711. this.plcUiNumberDisplay159.Preffix = null;
  2712. this.plcUiNumberDisplay159.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[11]", NodeType.UDINT, null);
  2713. this.plcUiNumberDisplay159.Size = new System.Drawing.Size(80, 27);
  2714. this.plcUiNumberDisplay159.Suffix = null;
  2715. this.plcUiNumberDisplay159.TabIndex = 157;
  2716. this.plcUiNumberDisplay159.Text = "1";
  2717. this.plcUiNumberDisplay159.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2718. this.plcUiNumberDisplay159.WriteNode = null;
  2719. //
  2720. // plcUiNumberInput4
  2721. //
  2722. this.plcUiNumberInput4.Cursor = System.Windows.Forms.Cursors.IBeam;
  2723. this.plcUiNumberInput4.DisabilityTriggerNode = null;
  2724. this.plcUiNumberInput4.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2725. this.plcUiNumberInput4.Gain = 1D;
  2726. this.plcUiNumberInput4.IntegerDigits = 0;
  2727. this.plcUiNumberInput4.InvisibilityTriggerNode = null;
  2728. this.plcUiNumberInput4.Location = new System.Drawing.Point(70, 334);
  2729. this.plcUiNumberInput4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2730. this.plcUiNumberInput4.Minimum = 0D;
  2731. this.plcUiNumberInput4.MinimumSize = new System.Drawing.Size(1, 16);
  2732. this.plcUiNumberInput4.Name = "plcUiNumberInput4";
  2733. this.plcUiNumberInput4.Padding = new System.Windows.Forms.Padding(5);
  2734. this.plcUiNumberInput4.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  2735. this.plcUiNumberInput4.ShowText = false;
  2736. this.plcUiNumberInput4.Size = new System.Drawing.Size(80, 27);
  2737. this.plcUiNumberInput4.TabIndex = 141;
  2738. this.plcUiNumberInput4.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2739. this.plcUiNumberInput4.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2740. this.plcUiNumberInput4.Watermark = "";
  2741. this.plcUiNumberInput4.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  2742. //
  2743. // uiLabel108
  2744. //
  2745. this.uiLabel108.AutoSize = true;
  2746. this.uiLabel108.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2747. this.uiLabel108.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2748. this.uiLabel108.Location = new System.Drawing.Point(22, 302);
  2749. this.uiLabel108.Name = "uiLabel108";
  2750. this.uiLabel108.Size = new System.Drawing.Size(39, 16);
  2751. this.uiLabel108.TabIndex = 140;
  2752. this.uiLabel108.Text = "BIN8";
  2753. //
  2754. // plcUiNumberDisplay160
  2755. //
  2756. this.plcUiNumberDisplay160.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2757. this.plcUiNumberDisplay160.DecimalPlaces = 0;
  2758. this.plcUiNumberDisplay160.DisabilityTriggerNode = null;
  2759. this.plcUiNumberDisplay160.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2760. this.plcUiNumberDisplay160.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2761. this.plcUiNumberDisplay160.Gain = 1D;
  2762. this.plcUiNumberDisplay160.IntegerDigits = 0;
  2763. this.plcUiNumberDisplay160.InvisibilityTriggerNode = null;
  2764. this.plcUiNumberDisplay160.Location = new System.Drawing.Point(157, 445);
  2765. this.plcUiNumberDisplay160.Name = "plcUiNumberDisplay160";
  2766. this.plcUiNumberDisplay160.Preffix = null;
  2767. this.plcUiNumberDisplay160.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[12]", NodeType.UDINT, null);
  2768. this.plcUiNumberDisplay160.Size = new System.Drawing.Size(80, 27);
  2769. this.plcUiNumberDisplay160.Suffix = null;
  2770. this.plcUiNumberDisplay160.TabIndex = 158;
  2771. this.plcUiNumberDisplay160.Text = "1";
  2772. this.plcUiNumberDisplay160.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2773. this.plcUiNumberDisplay160.WriteNode = null;
  2774. //
  2775. // plcUiNumberInput5
  2776. //
  2777. this.plcUiNumberInput5.Cursor = System.Windows.Forms.Cursors.IBeam;
  2778. this.plcUiNumberInput5.DisabilityTriggerNode = null;
  2779. this.plcUiNumberInput5.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2780. this.plcUiNumberInput5.Gain = 1D;
  2781. this.plcUiNumberInput5.IntegerDigits = 0;
  2782. this.plcUiNumberInput5.InvisibilityTriggerNode = null;
  2783. this.plcUiNumberInput5.Location = new System.Drawing.Point(70, 297);
  2784. this.plcUiNumberInput5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2785. this.plcUiNumberInput5.Minimum = 0D;
  2786. this.plcUiNumberInput5.MinimumSize = new System.Drawing.Size(1, 16);
  2787. this.plcUiNumberInput5.Name = "plcUiNumberInput5";
  2788. this.plcUiNumberInput5.Padding = new System.Windows.Forms.Padding(5);
  2789. this.plcUiNumberInput5.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  2790. this.plcUiNumberInput5.ShowText = false;
  2791. this.plcUiNumberInput5.Size = new System.Drawing.Size(80, 27);
  2792. this.plcUiNumberInput5.TabIndex = 139;
  2793. this.plcUiNumberInput5.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2794. this.plcUiNumberInput5.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2795. this.plcUiNumberInput5.Watermark = "";
  2796. this.plcUiNumberInput5.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  2797. //
  2798. // uiLabel109
  2799. //
  2800. this.uiLabel109.AutoSize = true;
  2801. this.uiLabel109.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2802. this.uiLabel109.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2803. this.uiLabel109.Location = new System.Drawing.Point(22, 265);
  2804. this.uiLabel109.Name = "uiLabel109";
  2805. this.uiLabel109.Size = new System.Drawing.Size(39, 16);
  2806. this.uiLabel109.TabIndex = 138;
  2807. this.uiLabel109.Text = "BIN7";
  2808. //
  2809. // plcUiNumberDisplay161
  2810. //
  2811. this.plcUiNumberDisplay161.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2812. this.plcUiNumberDisplay161.DecimalPlaces = 2;
  2813. this.plcUiNumberDisplay161.DisabilityTriggerNode = null;
  2814. this.plcUiNumberDisplay161.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2815. this.plcUiNumberDisplay161.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2816. this.plcUiNumberDisplay161.Gain = 1D;
  2817. this.plcUiNumberDisplay161.IntegerDigits = 0;
  2818. this.plcUiNumberDisplay161.InvisibilityTriggerNode = null;
  2819. this.plcUiNumberDisplay161.Location = new System.Drawing.Point(243, 38);
  2820. this.plcUiNumberDisplay161.Name = "plcUiNumberDisplay161";
  2821. this.plcUiNumberDisplay161.Preffix = null;
  2822. this.plcUiNumberDisplay161.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[1]", NodeType.REAL, null);
  2823. this.plcUiNumberDisplay161.Size = new System.Drawing.Size(80, 27);
  2824. this.plcUiNumberDisplay161.Suffix = "%";
  2825. this.plcUiNumberDisplay161.TabIndex = 159;
  2826. this.plcUiNumberDisplay161.Text = "1.00";
  2827. this.plcUiNumberDisplay161.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2828. this.plcUiNumberDisplay161.WriteNode = null;
  2829. //
  2830. // plcUiNumberInput6
  2831. //
  2832. this.plcUiNumberInput6.Cursor = System.Windows.Forms.Cursors.IBeam;
  2833. this.plcUiNumberInput6.DisabilityTriggerNode = null;
  2834. this.plcUiNumberInput6.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2835. this.plcUiNumberInput6.Gain = 1D;
  2836. this.plcUiNumberInput6.IntegerDigits = 0;
  2837. this.plcUiNumberInput6.InvisibilityTriggerNode = null;
  2838. this.plcUiNumberInput6.Location = new System.Drawing.Point(70, 260);
  2839. this.plcUiNumberInput6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2840. this.plcUiNumberInput6.Minimum = 0D;
  2841. this.plcUiNumberInput6.MinimumSize = new System.Drawing.Size(1, 16);
  2842. this.plcUiNumberInput6.Name = "plcUiNumberInput6";
  2843. this.plcUiNumberInput6.Padding = new System.Windows.Forms.Padding(5);
  2844. this.plcUiNumberInput6.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  2845. this.plcUiNumberInput6.ShowText = false;
  2846. this.plcUiNumberInput6.Size = new System.Drawing.Size(80, 27);
  2847. this.plcUiNumberInput6.TabIndex = 137;
  2848. this.plcUiNumberInput6.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2849. this.plcUiNumberInput6.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2850. this.plcUiNumberInput6.Watermark = "";
  2851. this.plcUiNumberInput6.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  2852. //
  2853. // uiLabel110
  2854. //
  2855. this.uiLabel110.AutoSize = true;
  2856. this.uiLabel110.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2857. this.uiLabel110.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2858. this.uiLabel110.Location = new System.Drawing.Point(22, 228);
  2859. this.uiLabel110.Name = "uiLabel110";
  2860. this.uiLabel110.Size = new System.Drawing.Size(39, 16);
  2861. this.uiLabel110.TabIndex = 136;
  2862. this.uiLabel110.Text = "BIN6";
  2863. //
  2864. // plcUiNumberDisplay162
  2865. //
  2866. this.plcUiNumberDisplay162.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2867. this.plcUiNumberDisplay162.DecimalPlaces = 2;
  2868. this.plcUiNumberDisplay162.DisabilityTriggerNode = null;
  2869. this.plcUiNumberDisplay162.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2870. this.plcUiNumberDisplay162.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2871. this.plcUiNumberDisplay162.Gain = 1D;
  2872. this.plcUiNumberDisplay162.IntegerDigits = 0;
  2873. this.plcUiNumberDisplay162.InvisibilityTriggerNode = null;
  2874. this.plcUiNumberDisplay162.Location = new System.Drawing.Point(243, 75);
  2875. this.plcUiNumberDisplay162.Name = "plcUiNumberDisplay162";
  2876. this.plcUiNumberDisplay162.Preffix = null;
  2877. this.plcUiNumberDisplay162.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[2]", NodeType.REAL, null);
  2878. this.plcUiNumberDisplay162.Size = new System.Drawing.Size(80, 27);
  2879. this.plcUiNumberDisplay162.Suffix = "%";
  2880. this.plcUiNumberDisplay162.TabIndex = 160;
  2881. this.plcUiNumberDisplay162.Text = "1.00";
  2882. this.plcUiNumberDisplay162.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2883. this.plcUiNumberDisplay162.WriteNode = null;
  2884. //
  2885. // plcUiNumberInput7
  2886. //
  2887. this.plcUiNumberInput7.Cursor = System.Windows.Forms.Cursors.IBeam;
  2888. this.plcUiNumberInput7.DisabilityTriggerNode = null;
  2889. this.plcUiNumberInput7.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2890. this.plcUiNumberInput7.Gain = 1D;
  2891. this.plcUiNumberInput7.IntegerDigits = 0;
  2892. this.plcUiNumberInput7.InvisibilityTriggerNode = null;
  2893. this.plcUiNumberInput7.Location = new System.Drawing.Point(70, 223);
  2894. this.plcUiNumberInput7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2895. this.plcUiNumberInput7.Minimum = 0D;
  2896. this.plcUiNumberInput7.MinimumSize = new System.Drawing.Size(1, 16);
  2897. this.plcUiNumberInput7.Name = "plcUiNumberInput7";
  2898. this.plcUiNumberInput7.Padding = new System.Windows.Forms.Padding(5);
  2899. this.plcUiNumberInput7.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  2900. this.plcUiNumberInput7.ShowText = false;
  2901. this.plcUiNumberInput7.Size = new System.Drawing.Size(80, 27);
  2902. this.plcUiNumberInput7.TabIndex = 135;
  2903. this.plcUiNumberInput7.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2904. this.plcUiNumberInput7.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2905. this.plcUiNumberInput7.Watermark = "";
  2906. this.plcUiNumberInput7.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  2907. //
  2908. // uiLabel111
  2909. //
  2910. this.uiLabel111.AutoSize = true;
  2911. this.uiLabel111.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2912. this.uiLabel111.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2913. this.uiLabel111.Location = new System.Drawing.Point(22, 191);
  2914. this.uiLabel111.Name = "uiLabel111";
  2915. this.uiLabel111.Size = new System.Drawing.Size(39, 16);
  2916. this.uiLabel111.TabIndex = 134;
  2917. this.uiLabel111.Text = "BIN5";
  2918. //
  2919. // plcUiNumberDisplay163
  2920. //
  2921. this.plcUiNumberDisplay163.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2922. this.plcUiNumberDisplay163.DecimalPlaces = 2;
  2923. this.plcUiNumberDisplay163.DisabilityTriggerNode = null;
  2924. this.plcUiNumberDisplay163.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2925. this.plcUiNumberDisplay163.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2926. this.plcUiNumberDisplay163.Gain = 1D;
  2927. this.plcUiNumberDisplay163.IntegerDigits = 0;
  2928. this.plcUiNumberDisplay163.InvisibilityTriggerNode = null;
  2929. this.plcUiNumberDisplay163.Location = new System.Drawing.Point(243, 112);
  2930. this.plcUiNumberDisplay163.Name = "plcUiNumberDisplay163";
  2931. this.plcUiNumberDisplay163.Preffix = null;
  2932. this.plcUiNumberDisplay163.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[3]", NodeType.REAL, null);
  2933. this.plcUiNumberDisplay163.Size = new System.Drawing.Size(80, 27);
  2934. this.plcUiNumberDisplay163.Suffix = "%";
  2935. this.plcUiNumberDisplay163.TabIndex = 161;
  2936. this.plcUiNumberDisplay163.Text = "1.00";
  2937. this.plcUiNumberDisplay163.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2938. this.plcUiNumberDisplay163.WriteNode = null;
  2939. //
  2940. // plcUiNumberInput8
  2941. //
  2942. this.plcUiNumberInput8.Cursor = System.Windows.Forms.Cursors.IBeam;
  2943. this.plcUiNumberInput8.DisabilityTriggerNode = null;
  2944. this.plcUiNumberInput8.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2945. this.plcUiNumberInput8.Gain = 1D;
  2946. this.plcUiNumberInput8.IntegerDigits = 0;
  2947. this.plcUiNumberInput8.InvisibilityTriggerNode = null;
  2948. this.plcUiNumberInput8.Location = new System.Drawing.Point(70, 186);
  2949. this.plcUiNumberInput8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  2950. this.plcUiNumberInput8.Minimum = 0D;
  2951. this.plcUiNumberInput8.MinimumSize = new System.Drawing.Size(1, 16);
  2952. this.plcUiNumberInput8.Name = "plcUiNumberInput8";
  2953. this.plcUiNumberInput8.Padding = new System.Windows.Forms.Padding(5);
  2954. this.plcUiNumberInput8.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  2955. this.plcUiNumberInput8.ShowText = false;
  2956. this.plcUiNumberInput8.Size = new System.Drawing.Size(80, 27);
  2957. this.plcUiNumberInput8.TabIndex = 133;
  2958. this.plcUiNumberInput8.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  2959. this.plcUiNumberInput8.Type = Sunny.UI.UITextBox.UIEditType.Double;
  2960. this.plcUiNumberInput8.Watermark = "";
  2961. this.plcUiNumberInput8.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  2962. //
  2963. // uiLabel112
  2964. //
  2965. this.uiLabel112.AutoSize = true;
  2966. this.uiLabel112.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2967. this.uiLabel112.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2968. this.uiLabel112.Location = new System.Drawing.Point(22, 154);
  2969. this.uiLabel112.Name = "uiLabel112";
  2970. this.uiLabel112.Size = new System.Drawing.Size(39, 16);
  2971. this.uiLabel112.TabIndex = 132;
  2972. this.uiLabel112.Text = "BIN4";
  2973. //
  2974. // plcUiNumberDisplay164
  2975. //
  2976. this.plcUiNumberDisplay164.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2977. this.plcUiNumberDisplay164.DecimalPlaces = 2;
  2978. this.plcUiNumberDisplay164.DisabilityTriggerNode = null;
  2979. this.plcUiNumberDisplay164.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2980. this.plcUiNumberDisplay164.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  2981. this.plcUiNumberDisplay164.Gain = 1D;
  2982. this.plcUiNumberDisplay164.IntegerDigits = 0;
  2983. this.plcUiNumberDisplay164.InvisibilityTriggerNode = null;
  2984. this.plcUiNumberDisplay164.Location = new System.Drawing.Point(243, 149);
  2985. this.plcUiNumberDisplay164.Name = "plcUiNumberDisplay164";
  2986. this.plcUiNumberDisplay164.Preffix = null;
  2987. this.plcUiNumberDisplay164.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[4]", NodeType.REAL, null);
  2988. this.plcUiNumberDisplay164.Size = new System.Drawing.Size(80, 27);
  2989. this.plcUiNumberDisplay164.Suffix = "%";
  2990. this.plcUiNumberDisplay164.TabIndex = 162;
  2991. this.plcUiNumberDisplay164.Text = "1.00";
  2992. this.plcUiNumberDisplay164.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2993. this.plcUiNumberDisplay164.WriteNode = null;
  2994. //
  2995. // plcUiNumberInput9
  2996. //
  2997. this.plcUiNumberInput9.Cursor = System.Windows.Forms.Cursors.IBeam;
  2998. this.plcUiNumberInput9.DisabilityTriggerNode = null;
  2999. this.plcUiNumberInput9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3000. this.plcUiNumberInput9.Gain = 1D;
  3001. this.plcUiNumberInput9.IntegerDigits = 0;
  3002. this.plcUiNumberInput9.InvisibilityTriggerNode = null;
  3003. this.plcUiNumberInput9.Location = new System.Drawing.Point(70, 149);
  3004. this.plcUiNumberInput9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3005. this.plcUiNumberInput9.Minimum = 0D;
  3006. this.plcUiNumberInput9.MinimumSize = new System.Drawing.Size(1, 16);
  3007. this.plcUiNumberInput9.Name = "plcUiNumberInput9";
  3008. this.plcUiNumberInput9.Padding = new System.Windows.Forms.Padding(5);
  3009. this.plcUiNumberInput9.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  3010. this.plcUiNumberInput9.ShowText = false;
  3011. this.plcUiNumberInput9.Size = new System.Drawing.Size(80, 27);
  3012. this.plcUiNumberInput9.TabIndex = 131;
  3013. this.plcUiNumberInput9.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3014. this.plcUiNumberInput9.Type = Sunny.UI.UITextBox.UIEditType.Double;
  3015. this.plcUiNumberInput9.Watermark = "";
  3016. this.plcUiNumberInput9.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  3017. //
  3018. // uiLabel113
  3019. //
  3020. this.uiLabel113.AutoSize = true;
  3021. this.uiLabel113.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3022. this.uiLabel113.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3023. this.uiLabel113.Location = new System.Drawing.Point(22, 117);
  3024. this.uiLabel113.Name = "uiLabel113";
  3025. this.uiLabel113.Size = new System.Drawing.Size(39, 16);
  3026. this.uiLabel113.TabIndex = 130;
  3027. this.uiLabel113.Text = "BIN3";
  3028. //
  3029. // plcUiNumberDisplay165
  3030. //
  3031. this.plcUiNumberDisplay165.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3032. this.plcUiNumberDisplay165.DecimalPlaces = 2;
  3033. this.plcUiNumberDisplay165.DisabilityTriggerNode = null;
  3034. this.plcUiNumberDisplay165.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3035. this.plcUiNumberDisplay165.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3036. this.plcUiNumberDisplay165.Gain = 1D;
  3037. this.plcUiNumberDisplay165.IntegerDigits = 0;
  3038. this.plcUiNumberDisplay165.InvisibilityTriggerNode = null;
  3039. this.plcUiNumberDisplay165.Location = new System.Drawing.Point(243, 186);
  3040. this.plcUiNumberDisplay165.Name = "plcUiNumberDisplay165";
  3041. this.plcUiNumberDisplay165.Preffix = null;
  3042. this.plcUiNumberDisplay165.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[5]", NodeType.REAL, null);
  3043. this.plcUiNumberDisplay165.Size = new System.Drawing.Size(80, 27);
  3044. this.plcUiNumberDisplay165.Suffix = "%";
  3045. this.plcUiNumberDisplay165.TabIndex = 163;
  3046. this.plcUiNumberDisplay165.Text = "1.00";
  3047. this.plcUiNumberDisplay165.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3048. this.plcUiNumberDisplay165.WriteNode = null;
  3049. //
  3050. // plcUiNumberInput10
  3051. //
  3052. this.plcUiNumberInput10.Cursor = System.Windows.Forms.Cursors.IBeam;
  3053. this.plcUiNumberInput10.DisabilityTriggerNode = null;
  3054. this.plcUiNumberInput10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3055. this.plcUiNumberInput10.Gain = 1D;
  3056. this.plcUiNumberInput10.IntegerDigits = 0;
  3057. this.plcUiNumberInput10.InvisibilityTriggerNode = null;
  3058. this.plcUiNumberInput10.Location = new System.Drawing.Point(70, 112);
  3059. this.plcUiNumberInput10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3060. this.plcUiNumberInput10.Minimum = 0D;
  3061. this.plcUiNumberInput10.MinimumSize = new System.Drawing.Size(1, 16);
  3062. this.plcUiNumberInput10.Name = "plcUiNumberInput10";
  3063. this.plcUiNumberInput10.Padding = new System.Windows.Forms.Padding(5);
  3064. this.plcUiNumberInput10.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  3065. this.plcUiNumberInput10.ShowText = false;
  3066. this.plcUiNumberInput10.Size = new System.Drawing.Size(80, 27);
  3067. this.plcUiNumberInput10.TabIndex = 129;
  3068. this.plcUiNumberInput10.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3069. this.plcUiNumberInput10.Type = Sunny.UI.UITextBox.UIEditType.Double;
  3070. this.plcUiNumberInput10.Watermark = "";
  3071. this.plcUiNumberInput10.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  3072. //
  3073. // plcUiNumberDisplay166
  3074. //
  3075. this.plcUiNumberDisplay166.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3076. this.plcUiNumberDisplay166.DecimalPlaces = 0;
  3077. this.plcUiNumberDisplay166.DisabilityTriggerNode = null;
  3078. this.plcUiNumberDisplay166.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3079. this.plcUiNumberDisplay166.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3080. this.plcUiNumberDisplay166.Gain = 1D;
  3081. this.plcUiNumberDisplay166.IntegerDigits = 0;
  3082. this.plcUiNumberDisplay166.InvisibilityTriggerNode = null;
  3083. this.plcUiNumberDisplay166.Location = new System.Drawing.Point(157, 75);
  3084. this.plcUiNumberDisplay166.Name = "plcUiNumberDisplay166";
  3085. this.plcUiNumberDisplay166.Preffix = null;
  3086. this.plcUiNumberDisplay166.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[2]", NodeType.UDINT, null);
  3087. this.plcUiNumberDisplay166.Size = new System.Drawing.Size(80, 27);
  3088. this.plcUiNumberDisplay166.Suffix = null;
  3089. this.plcUiNumberDisplay166.TabIndex = 128;
  3090. this.plcUiNumberDisplay166.Text = "1";
  3091. this.plcUiNumberDisplay166.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3092. this.plcUiNumberDisplay166.WriteNode = null;
  3093. //
  3094. // plcUiNumberDisplay167
  3095. //
  3096. this.plcUiNumberDisplay167.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3097. this.plcUiNumberDisplay167.DecimalPlaces = 2;
  3098. this.plcUiNumberDisplay167.DisabilityTriggerNode = null;
  3099. this.plcUiNumberDisplay167.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3100. this.plcUiNumberDisplay167.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3101. this.plcUiNumberDisplay167.Gain = 1D;
  3102. this.plcUiNumberDisplay167.IntegerDigits = 0;
  3103. this.plcUiNumberDisplay167.InvisibilityTriggerNode = null;
  3104. this.plcUiNumberDisplay167.Location = new System.Drawing.Point(243, 223);
  3105. this.plcUiNumberDisplay167.Name = "plcUiNumberDisplay167";
  3106. this.plcUiNumberDisplay167.Preffix = null;
  3107. this.plcUiNumberDisplay167.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[6]", NodeType.REAL, null);
  3108. this.plcUiNumberDisplay167.Size = new System.Drawing.Size(80, 27);
  3109. this.plcUiNumberDisplay167.Suffix = "%";
  3110. this.plcUiNumberDisplay167.TabIndex = 164;
  3111. this.plcUiNumberDisplay167.Text = "1.00";
  3112. this.plcUiNumberDisplay167.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3113. this.plcUiNumberDisplay167.WriteNode = null;
  3114. //
  3115. // plcUiNumberDisplay168
  3116. //
  3117. this.plcUiNumberDisplay168.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3118. this.plcUiNumberDisplay168.DecimalPlaces = 0;
  3119. this.plcUiNumberDisplay168.DisabilityTriggerNode = null;
  3120. this.plcUiNumberDisplay168.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3121. this.plcUiNumberDisplay168.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3122. this.plcUiNumberDisplay168.Gain = 1D;
  3123. this.plcUiNumberDisplay168.IntegerDigits = 0;
  3124. this.plcUiNumberDisplay168.InvisibilityTriggerNode = null;
  3125. this.plcUiNumberDisplay168.Location = new System.Drawing.Point(157, 38);
  3126. this.plcUiNumberDisplay168.Name = "plcUiNumberDisplay168";
  3127. this.plcUiNumberDisplay168.Preffix = null;
  3128. this.plcUiNumberDisplay168.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_Bin结果统计[1]", NodeType.UDINT, null);
  3129. this.plcUiNumberDisplay168.Size = new System.Drawing.Size(80, 27);
  3130. this.plcUiNumberDisplay168.Suffix = null;
  3131. this.plcUiNumberDisplay168.TabIndex = 127;
  3132. this.plcUiNumberDisplay168.Text = "1";
  3133. this.plcUiNumberDisplay168.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3134. this.plcUiNumberDisplay168.WriteNode = null;
  3135. //
  3136. // plcUiNumberDisplay169
  3137. //
  3138. this.plcUiNumberDisplay169.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3139. this.plcUiNumberDisplay169.DecimalPlaces = 2;
  3140. this.plcUiNumberDisplay169.DisabilityTriggerNode = null;
  3141. this.plcUiNumberDisplay169.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3142. this.plcUiNumberDisplay169.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3143. this.plcUiNumberDisplay169.Gain = 1D;
  3144. this.plcUiNumberDisplay169.IntegerDigits = 0;
  3145. this.plcUiNumberDisplay169.InvisibilityTriggerNode = null;
  3146. this.plcUiNumberDisplay169.Location = new System.Drawing.Point(243, 260);
  3147. this.plcUiNumberDisplay169.Name = "plcUiNumberDisplay169";
  3148. this.plcUiNumberDisplay169.Preffix = null;
  3149. this.plcUiNumberDisplay169.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[7]", NodeType.REAL, null);
  3150. this.plcUiNumberDisplay169.Size = new System.Drawing.Size(80, 27);
  3151. this.plcUiNumberDisplay169.Suffix = "%";
  3152. this.plcUiNumberDisplay169.TabIndex = 165;
  3153. this.plcUiNumberDisplay169.Text = "1.00";
  3154. this.plcUiNumberDisplay169.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3155. this.plcUiNumberDisplay169.WriteNode = null;
  3156. //
  3157. // plcUiNumberDisplay170
  3158. //
  3159. this.plcUiNumberDisplay170.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3160. this.plcUiNumberDisplay170.DecimalPlaces = 0;
  3161. this.plcUiNumberDisplay170.DisabilityTriggerNode = null;
  3162. this.plcUiNumberDisplay170.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3163. this.plcUiNumberDisplay170.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3164. this.plcUiNumberDisplay170.Gain = 1D;
  3165. this.plcUiNumberDisplay170.IntegerDigits = 0;
  3166. this.plcUiNumberDisplay170.InvisibilityTriggerNode = null;
  3167. this.plcUiNumberDisplay170.Location = new System.Drawing.Point(157, 478);
  3168. this.plcUiNumberDisplay170.Name = "plcUiNumberDisplay170";
  3169. this.plcUiNumberDisplay170.Preffix = null;
  3170. this.plcUiNumberDisplay170.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  3171. this.plcUiNumberDisplay170.Size = new System.Drawing.Size(80, 27);
  3172. this.plcUiNumberDisplay170.Suffix = null;
  3173. this.plcUiNumberDisplay170.TabIndex = 126;
  3174. this.plcUiNumberDisplay170.Text = "1";
  3175. this.plcUiNumberDisplay170.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3176. this.plcUiNumberDisplay170.WriteNode = null;
  3177. //
  3178. // plcUiNumberDisplay171
  3179. //
  3180. this.plcUiNumberDisplay171.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3181. this.plcUiNumberDisplay171.DecimalPlaces = 2;
  3182. this.plcUiNumberDisplay171.DisabilityTriggerNode = null;
  3183. this.plcUiNumberDisplay171.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3184. this.plcUiNumberDisplay171.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3185. this.plcUiNumberDisplay171.Gain = 1D;
  3186. this.plcUiNumberDisplay171.IntegerDigits = 0;
  3187. this.plcUiNumberDisplay171.InvisibilityTriggerNode = null;
  3188. this.plcUiNumberDisplay171.Location = new System.Drawing.Point(243, 297);
  3189. this.plcUiNumberDisplay171.Name = "plcUiNumberDisplay171";
  3190. this.plcUiNumberDisplay171.Preffix = null;
  3191. this.plcUiNumberDisplay171.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[8]", NodeType.REAL, null);
  3192. this.plcUiNumberDisplay171.Size = new System.Drawing.Size(80, 27);
  3193. this.plcUiNumberDisplay171.Suffix = "%";
  3194. this.plcUiNumberDisplay171.TabIndex = 166;
  3195. this.plcUiNumberDisplay171.Text = "1.00";
  3196. this.plcUiNumberDisplay171.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3197. this.plcUiNumberDisplay171.WriteNode = null;
  3198. //
  3199. // uiLabel114
  3200. //
  3201. this.uiLabel114.AutoSize = true;
  3202. this.uiLabel114.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3203. this.uiLabel114.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3204. this.uiLabel114.Location = new System.Drawing.Point(22, 80);
  3205. this.uiLabel114.Name = "uiLabel114";
  3206. this.uiLabel114.Size = new System.Drawing.Size(39, 16);
  3207. this.uiLabel114.TabIndex = 125;
  3208. this.uiLabel114.Text = "BIN2";
  3209. //
  3210. // plcUiNumberInput11
  3211. //
  3212. this.plcUiNumberInput11.Cursor = System.Windows.Forms.Cursors.IBeam;
  3213. this.plcUiNumberInput11.DisabilityTriggerNode = null;
  3214. this.plcUiNumberInput11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3215. this.plcUiNumberInput11.Gain = 1D;
  3216. this.plcUiNumberInput11.IntegerDigits = 0;
  3217. this.plcUiNumberInput11.InvisibilityTriggerNode = null;
  3218. this.plcUiNumberInput11.Location = new System.Drawing.Point(70, 75);
  3219. this.plcUiNumberInput11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3220. this.plcUiNumberInput11.Minimum = 0D;
  3221. this.plcUiNumberInput11.MinimumSize = new System.Drawing.Size(1, 16);
  3222. this.plcUiNumberInput11.Name = "plcUiNumberInput11";
  3223. this.plcUiNumberInput11.Padding = new System.Windows.Forms.Padding(5);
  3224. this.plcUiNumberInput11.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  3225. this.plcUiNumberInput11.ShowText = false;
  3226. this.plcUiNumberInput11.Size = new System.Drawing.Size(80, 27);
  3227. this.plcUiNumberInput11.TabIndex = 124;
  3228. this.plcUiNumberInput11.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3229. this.plcUiNumberInput11.Type = Sunny.UI.UITextBox.UIEditType.Double;
  3230. this.plcUiNumberInput11.Watermark = "";
  3231. this.plcUiNumberInput11.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  3232. //
  3233. // uiLabel115
  3234. //
  3235. this.uiLabel115.AutoSize = true;
  3236. this.uiLabel115.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3237. this.uiLabel115.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3238. this.uiLabel115.Location = new System.Drawing.Point(179, 18);
  3239. this.uiLabel115.Name = "uiLabel115";
  3240. this.uiLabel115.Size = new System.Drawing.Size(39, 16);
  3241. this.uiLabel115.TabIndex = 173;
  3242. this.uiLabel115.Text = "数量";
  3243. //
  3244. // plcUiNumberDisplay172
  3245. //
  3246. this.plcUiNumberDisplay172.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3247. this.plcUiNumberDisplay172.DecimalPlaces = 2;
  3248. this.plcUiNumberDisplay172.DisabilityTriggerNode = null;
  3249. this.plcUiNumberDisplay172.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3250. this.plcUiNumberDisplay172.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3251. this.plcUiNumberDisplay172.Gain = 1D;
  3252. this.plcUiNumberDisplay172.IntegerDigits = 0;
  3253. this.plcUiNumberDisplay172.InvisibilityTriggerNode = null;
  3254. this.plcUiNumberDisplay172.Location = new System.Drawing.Point(243, 334);
  3255. this.plcUiNumberDisplay172.Name = "plcUiNumberDisplay172";
  3256. this.plcUiNumberDisplay172.Preffix = null;
  3257. this.plcUiNumberDisplay172.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[9]", NodeType.REAL, null);
  3258. this.plcUiNumberDisplay172.Size = new System.Drawing.Size(80, 27);
  3259. this.plcUiNumberDisplay172.Suffix = "%";
  3260. this.plcUiNumberDisplay172.TabIndex = 167;
  3261. this.plcUiNumberDisplay172.Text = "1.00";
  3262. this.plcUiNumberDisplay172.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3263. this.plcUiNumberDisplay172.WriteNode = null;
  3264. //
  3265. // uiLabel116
  3266. //
  3267. this.uiLabel116.AutoSize = true;
  3268. this.uiLabel116.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3269. this.uiLabel116.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3270. this.uiLabel116.Location = new System.Drawing.Point(263, 18);
  3271. this.uiLabel116.Name = "uiLabel116";
  3272. this.uiLabel116.Size = new System.Drawing.Size(39, 16);
  3273. this.uiLabel116.TabIndex = 172;
  3274. this.uiLabel116.Text = "比率";
  3275. //
  3276. // uiLabel117
  3277. //
  3278. this.uiLabel117.AutoSize = true;
  3279. this.uiLabel117.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3280. this.uiLabel117.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3281. this.uiLabel117.Location = new System.Drawing.Point(63, 483);
  3282. this.uiLabel117.Name = "uiLabel117";
  3283. this.uiLabel117.Size = new System.Drawing.Size(87, 16);
  3284. this.uiLabel117.TabIndex = 123;
  3285. this.uiLabel117.Text = "当前总计数";
  3286. //
  3287. // uiLabel118
  3288. //
  3289. this.uiLabel118.AutoSize = true;
  3290. this.uiLabel118.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3291. this.uiLabel118.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3292. this.uiLabel118.Location = new System.Drawing.Point(47, 516);
  3293. this.uiLabel118.Name = "uiLabel118";
  3294. this.uiLabel118.Size = new System.Drawing.Size(103, 16);
  3295. this.uiLabel118.TabIndex = 122;
  3296. this.uiLabel118.Text = "统计起始数量";
  3297. //
  3298. // plcUiNumberDisplay173
  3299. //
  3300. this.plcUiNumberDisplay173.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3301. this.plcUiNumberDisplay173.DecimalPlaces = 2;
  3302. this.plcUiNumberDisplay173.DisabilityTriggerNode = null;
  3303. this.plcUiNumberDisplay173.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3304. this.plcUiNumberDisplay173.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3305. this.plcUiNumberDisplay173.Gain = 1D;
  3306. this.plcUiNumberDisplay173.IntegerDigits = 0;
  3307. this.plcUiNumberDisplay173.InvisibilityTriggerNode = null;
  3308. this.plcUiNumberDisplay173.Location = new System.Drawing.Point(243, 445);
  3309. this.plcUiNumberDisplay173.Name = "plcUiNumberDisplay173";
  3310. this.plcUiNumberDisplay173.Preffix = null;
  3311. this.plcUiNumberDisplay173.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[12]", NodeType.REAL, null);
  3312. this.plcUiNumberDisplay173.Size = new System.Drawing.Size(80, 27);
  3313. this.plcUiNumberDisplay173.Suffix = "%";
  3314. this.plcUiNumberDisplay173.TabIndex = 170;
  3315. this.plcUiNumberDisplay173.Text = "1.00";
  3316. this.plcUiNumberDisplay173.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3317. this.plcUiNumberDisplay173.WriteNode = null;
  3318. //
  3319. // plcUiNumberDisplay174
  3320. //
  3321. this.plcUiNumberDisplay174.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3322. this.plcUiNumberDisplay174.DecimalPlaces = 2;
  3323. this.plcUiNumberDisplay174.DisabilityTriggerNode = null;
  3324. this.plcUiNumberDisplay174.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3325. this.plcUiNumberDisplay174.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3326. this.plcUiNumberDisplay174.Gain = 1D;
  3327. this.plcUiNumberDisplay174.IntegerDigits = 0;
  3328. this.plcUiNumberDisplay174.InvisibilityTriggerNode = null;
  3329. this.plcUiNumberDisplay174.Location = new System.Drawing.Point(243, 371);
  3330. this.plcUiNumberDisplay174.Name = "plcUiNumberDisplay174";
  3331. this.plcUiNumberDisplay174.Preffix = null;
  3332. this.plcUiNumberDisplay174.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[10]", NodeType.REAL, null);
  3333. this.plcUiNumberDisplay174.Size = new System.Drawing.Size(80, 27);
  3334. this.plcUiNumberDisplay174.Suffix = "%";
  3335. this.plcUiNumberDisplay174.TabIndex = 168;
  3336. this.plcUiNumberDisplay174.Text = "1.00";
  3337. this.plcUiNumberDisplay174.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3338. this.plcUiNumberDisplay174.WriteNode = null;
  3339. //
  3340. // uiLabel119
  3341. //
  3342. this.uiLabel119.AutoSize = true;
  3343. this.uiLabel119.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3344. this.uiLabel119.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3345. this.uiLabel119.Location = new System.Drawing.Point(22, 43);
  3346. this.uiLabel119.Name = "uiLabel119";
  3347. this.uiLabel119.Size = new System.Drawing.Size(39, 16);
  3348. this.uiLabel119.TabIndex = 120;
  3349. this.uiLabel119.Text = "BIN1";
  3350. //
  3351. // plcUiNumberInput12
  3352. //
  3353. this.plcUiNumberInput12.Cursor = System.Windows.Forms.Cursors.IBeam;
  3354. this.plcUiNumberInput12.DisabilityTriggerNode = null;
  3355. this.plcUiNumberInput12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3356. this.plcUiNumberInput12.Gain = 1D;
  3357. this.plcUiNumberInput12.IntegerDigits = 0;
  3358. this.plcUiNumberInput12.InvisibilityTriggerNode = null;
  3359. this.plcUiNumberInput12.Location = new System.Drawing.Point(157, 510);
  3360. this.plcUiNumberInput12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3361. this.plcUiNumberInput12.Minimum = 0D;
  3362. this.plcUiNumberInput12.MinimumSize = new System.Drawing.Size(1, 16);
  3363. this.plcUiNumberInput12.Name = "plcUiNumberInput12";
  3364. this.plcUiNumberInput12.Padding = new System.Windows.Forms.Padding(5);
  3365. this.plcUiNumberInput12.ReadNode = new Node("Application.A02_TestStation_Auto.udi测试1_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  3366. this.plcUiNumberInput12.ShowText = false;
  3367. this.plcUiNumberInput12.Size = new System.Drawing.Size(80, 27);
  3368. this.plcUiNumberInput12.TabIndex = 121;
  3369. this.plcUiNumberInput12.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3370. this.plcUiNumberInput12.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  3371. this.plcUiNumberInput12.Watermark = "";
  3372. this.plcUiNumberInput12.WriteNode = new Node("Application.A02_TestStation_Auto.udi测试1_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  3373. //
  3374. // plcUiNumberDisplay175
  3375. //
  3376. this.plcUiNumberDisplay175.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3377. this.plcUiNumberDisplay175.DecimalPlaces = 2;
  3378. this.plcUiNumberDisplay175.DisabilityTriggerNode = null;
  3379. this.plcUiNumberDisplay175.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3380. this.plcUiNumberDisplay175.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3381. this.plcUiNumberDisplay175.Gain = 1D;
  3382. this.plcUiNumberDisplay175.IntegerDigits = 0;
  3383. this.plcUiNumberDisplay175.InvisibilityTriggerNode = null;
  3384. this.plcUiNumberDisplay175.Location = new System.Drawing.Point(243, 408);
  3385. this.plcUiNumberDisplay175.Name = "plcUiNumberDisplay175";
  3386. this.plcUiNumberDisplay175.Preffix = null;
  3387. this.plcUiNumberDisplay175.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin当前占比比率[11]", NodeType.REAL, null);
  3388. this.plcUiNumberDisplay175.Size = new System.Drawing.Size(80, 27);
  3389. this.plcUiNumberDisplay175.Suffix = "%";
  3390. this.plcUiNumberDisplay175.TabIndex = 169;
  3391. this.plcUiNumberDisplay175.Text = "1.00";
  3392. this.plcUiNumberDisplay175.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3393. this.plcUiNumberDisplay175.WriteNode = null;
  3394. //
  3395. // plcUiNumberInput13
  3396. //
  3397. this.plcUiNumberInput13.Cursor = System.Windows.Forms.Cursors.IBeam;
  3398. this.plcUiNumberInput13.DisabilityTriggerNode = null;
  3399. this.plcUiNumberInput13.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3400. this.plcUiNumberInput13.Gain = 1D;
  3401. this.plcUiNumberInput13.IntegerDigits = 0;
  3402. this.plcUiNumberInput13.InvisibilityTriggerNode = null;
  3403. this.plcUiNumberInput13.Location = new System.Drawing.Point(70, 38);
  3404. this.plcUiNumberInput13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  3405. this.plcUiNumberInput13.Minimum = 0D;
  3406. this.plcUiNumberInput13.MinimumSize = new System.Drawing.Size(1, 16);
  3407. this.plcUiNumberInput13.Name = "plcUiNumberInput13";
  3408. this.plcUiNumberInput13.Padding = new System.Windows.Forms.Padding(5);
  3409. this.plcUiNumberInput13.ReadNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  3410. this.plcUiNumberInput13.ShowText = false;
  3411. this.plcUiNumberInput13.Size = new System.Drawing.Size(80, 27);
  3412. this.plcUiNumberInput13.TabIndex = 119;
  3413. this.plcUiNumberInput13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  3414. this.plcUiNumberInput13.Type = Sunny.UI.UITextBox.UIEditType.Double;
  3415. this.plcUiNumberInput13.Watermark = "";
  3416. this.plcUiNumberInput13.WriteNode = new Node("Application.A02_TestStation_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  3417. //
  3418. // tabPage1
  3419. //
  3420. this.tabPage1.Controls.Add(this.uiLabel1);
  3421. this.tabPage1.Controls.Add(this.plcUiNumberDisplay10);
  3422. this.tabPage1.Controls.Add(this.plcUiNumberDisplay7);
  3423. this.tabPage1.Controls.Add(this.plcUiNumberDisplay9);
  3424. this.tabPage1.Controls.Add(this.plcUiNumberDisplay8);
  3425. this.tabPage1.Controls.Add(this.plcUiNumberDisplay12);
  3426. this.tabPage1.Controls.Add(this.uiLabel34);
  3427. this.tabPage1.Controls.Add(this.plcUiNumberDisplay11);
  3428. this.tabPage1.Controls.Add(this.txt测试1BIN12占比上限百分比);
  3429. this.tabPage1.Controls.Add(this.uiLabel35);
  3430. this.tabPage1.Controls.Add(this.plcUiNumberDisplay14);
  3431. this.tabPage1.Controls.Add(this.txt测试1BIN11占比上限百分比);
  3432. this.tabPage1.Controls.Add(this.uiLabel32);
  3433. this.tabPage1.Controls.Add(this.plcUiNumberDisplay13);
  3434. this.tabPage1.Controls.Add(this.txt测试1BIN10占比上限百分比);
  3435. this.tabPage1.Controls.Add(this.uiLabel33);
  3436. this.tabPage1.Controls.Add(this.plcUiNumberDisplay16);
  3437. this.tabPage1.Controls.Add(this.txt测试1BIN9占比上限百分比);
  3438. this.tabPage1.Controls.Add(this.uiLabel30);
  3439. this.tabPage1.Controls.Add(this.plcUiNumberDisplay15);
  3440. this.tabPage1.Controls.Add(this.txt测试1BIN8占比上限百分比);
  3441. this.tabPage1.Controls.Add(this.uiLabel31);
  3442. this.tabPage1.Controls.Add(this.plcUiNumberDisplay28);
  3443. this.tabPage1.Controls.Add(this.txt测试1BIN7占比上限百分比);
  3444. this.tabPage1.Controls.Add(this.uiLabel27);
  3445. this.tabPage1.Controls.Add(this.plcUiNumberDisplay27);
  3446. this.tabPage1.Controls.Add(this.txt测试1BIN6占比上限百分比);
  3447. this.tabPage1.Controls.Add(this.uiLabel28);
  3448. this.tabPage1.Controls.Add(this.plcUiNumberDisplay26);
  3449. this.tabPage1.Controls.Add(this.txt测试1BIN5占比上限百分比);
  3450. this.tabPage1.Controls.Add(this.uiLabel25);
  3451. this.tabPage1.Controls.Add(this.plcUiNumberDisplay25);
  3452. this.tabPage1.Controls.Add(this.txt测试1BIN4占比上限百分比);
  3453. this.tabPage1.Controls.Add(this.uiLabel26);
  3454. this.tabPage1.Controls.Add(this.plcUiNumberDisplay24);
  3455. this.tabPage1.Controls.Add(this.txt测试1BIN3占比上限百分比);
  3456. this.tabPage1.Controls.Add(this.plcUiNumberDisplay6);
  3457. this.tabPage1.Controls.Add(this.plcUiNumberDisplay23);
  3458. this.tabPage1.Controls.Add(this.plcUiNumberDisplay5);
  3459. this.tabPage1.Controls.Add(this.plcUiNumberDisplay22);
  3460. this.tabPage1.Controls.Add(this.plcUiNumberDisplay4);
  3461. this.tabPage1.Controls.Add(this.plcUiNumberDisplay21);
  3462. this.tabPage1.Controls.Add(this.uiLabel17);
  3463. this.tabPage1.Controls.Add(this.txt测试1BIN2占比上限百分比);
  3464. this.tabPage1.Controls.Add(this.uiLabel3);
  3465. this.tabPage1.Controls.Add(this.plcUiNumberDisplay20);
  3466. this.tabPage1.Controls.Add(this.uiLabel2);
  3467. this.tabPage1.Controls.Add(this.uiLabel16);
  3468. this.tabPage1.Controls.Add(this.uiLabel14);
  3469. this.tabPage1.Controls.Add(this.plcUiNumberDisplay17);
  3470. this.tabPage1.Controls.Add(this.plcUiNumberDisplay19);
  3471. this.tabPage1.Controls.Add(this.uiLabel13);
  3472. this.tabPage1.Controls.Add(this.txt测试1统计起始数量);
  3473. this.tabPage1.Controls.Add(this.plcUiNumberDisplay18);
  3474. this.tabPage1.Controls.Add(this.txt测试1BIN1占比上限百分比);
  3475. this.tabPage1.Location = new System.Drawing.Point(0, 40);
  3476. this.tabPage1.Name = "tabPage1";
  3477. this.tabPage1.Size = new System.Drawing.Size(569, 560);
  3478. this.tabPage1.TabIndex = 0;
  3479. this.tabPage1.Text = "测试1";
  3480. this.tabPage1.UseVisualStyleBackColor = true;
  3481. //
  3482. // tabPage2
  3483. //
  3484. this.tabPage2.Controls.Add(this.uiLabel9);
  3485. this.tabPage2.Controls.Add(this.uiLabel10);
  3486. this.tabPage2.Controls.Add(this.uiLabel11);
  3487. this.tabPage2.Controls.Add(this.uiLabel12);
  3488. this.tabPage2.Controls.Add(this.uiLabel15);
  3489. this.tabPage2.Controls.Add(this.uiLabel18);
  3490. this.tabPage2.Controls.Add(this.uiLabel19);
  3491. this.tabPage2.Controls.Add(this.uiLabel20);
  3492. this.tabPage2.Controls.Add(this.uiLabel21);
  3493. this.tabPage2.Controls.Add(this.uiLabel22);
  3494. this.tabPage2.Controls.Add(this.uiLabel23);
  3495. this.tabPage2.Controls.Add(this.uiLabel24);
  3496. this.tabPage2.Controls.Add(this.uiLabel6);
  3497. this.tabPage2.Controls.Add(this.uiLabel7);
  3498. this.tabPage2.Controls.Add(this.txt测试2BIN1占比上限百分比);
  3499. this.tabPage2.Controls.Add(this.uiLabel8);
  3500. this.tabPage2.Controls.Add(this.txt测试2统计起始数量);
  3501. this.tabPage2.Controls.Add(this.uiLabel4);
  3502. this.tabPage2.Controls.Add(this.txt测试2BIN2占比上限百分比);
  3503. this.tabPage2.Controls.Add(this.uiLabel5);
  3504. this.tabPage2.Controls.Add(this.plcUiNumberDisplay50);
  3505. this.tabPage2.Controls.Add(this.plcUiNumberDisplay49);
  3506. this.tabPage2.Controls.Add(this.plcUiNumberDisplay1);
  3507. this.tabPage2.Controls.Add(this.plcUiNumberDisplay48);
  3508. this.tabPage2.Controls.Add(this.plcUiNumberDisplay2);
  3509. this.tabPage2.Controls.Add(this.txt测试2BIN3占比上限百分比);
  3510. this.tabPage2.Controls.Add(this.plcUiNumberDisplay3);
  3511. this.tabPage2.Controls.Add(this.txt测试2BIN4占比上限百分比);
  3512. this.tabPage2.Controls.Add(this.plcUiNumberDisplay29);
  3513. this.tabPage2.Controls.Add(this.txt测试2BIN5占比上限百分比);
  3514. this.tabPage2.Controls.Add(this.plcUiNumberDisplay30);
  3515. this.tabPage2.Controls.Add(this.txt测试2BIN6占比上限百分比);
  3516. this.tabPage2.Controls.Add(this.plcUiNumberDisplay31);
  3517. this.tabPage2.Controls.Add(this.txt测试2BIN7占比上限百分比);
  3518. this.tabPage2.Controls.Add(this.plcUiNumberDisplay32);
  3519. this.tabPage2.Controls.Add(this.txt测试2BIN8占比上限百分比);
  3520. this.tabPage2.Controls.Add(this.plcUiNumberDisplay33);
  3521. this.tabPage2.Controls.Add(this.txt测试2BIN9占比上限百分比);
  3522. this.tabPage2.Controls.Add(this.plcUiNumberDisplay34);
  3523. this.tabPage2.Controls.Add(this.txt测试2BIN10占比上限百分比);
  3524. this.tabPage2.Controls.Add(this.plcUiNumberDisplay35);
  3525. this.tabPage2.Controls.Add(this.txt测试2BIN11占比上限百分比);
  3526. this.tabPage2.Controls.Add(this.plcUiNumberDisplay36);
  3527. this.tabPage2.Controls.Add(this.txt测试2BIN12占比上限百分比);
  3528. this.tabPage2.Controls.Add(this.plcUiNumberDisplay37);
  3529. this.tabPage2.Controls.Add(this.plcUiNumberDisplay47);
  3530. this.tabPage2.Controls.Add(this.plcUiNumberDisplay38);
  3531. this.tabPage2.Controls.Add(this.plcUiNumberDisplay46);
  3532. this.tabPage2.Controls.Add(this.plcUiNumberDisplay39);
  3533. this.tabPage2.Controls.Add(this.plcUiNumberDisplay45);
  3534. this.tabPage2.Controls.Add(this.plcUiNumberDisplay40);
  3535. this.tabPage2.Controls.Add(this.plcUiNumberDisplay44);
  3536. this.tabPage2.Controls.Add(this.plcUiNumberDisplay41);
  3537. this.tabPage2.Controls.Add(this.plcUiNumberDisplay43);
  3538. this.tabPage2.Controls.Add(this.plcUiNumberDisplay42);
  3539. this.tabPage2.Location = new System.Drawing.Point(0, 40);
  3540. this.tabPage2.Name = "tabPage2";
  3541. this.tabPage2.Size = new System.Drawing.Size(200, 60);
  3542. this.tabPage2.TabIndex = 1;
  3543. this.tabPage2.Text = "测试2";
  3544. this.tabPage2.UseVisualStyleBackColor = true;
  3545. //
  3546. // uiLabel9
  3547. //
  3548. this.uiLabel9.AutoSize = true;
  3549. this.uiLabel9.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3550. this.uiLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3551. this.uiLabel9.Location = new System.Drawing.Point(19, 450);
  3552. this.uiLabel9.Name = "uiLabel9";
  3553. this.uiLabel9.Size = new System.Drawing.Size(47, 16);
  3554. this.uiLabel9.TabIndex = 220;
  3555. this.uiLabel9.Text = "BIN12";
  3556. //
  3557. // uiLabel10
  3558. //
  3559. this.uiLabel10.AutoSize = true;
  3560. this.uiLabel10.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3561. this.uiLabel10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3562. this.uiLabel10.Location = new System.Drawing.Point(19, 413);
  3563. this.uiLabel10.Name = "uiLabel10";
  3564. this.uiLabel10.Size = new System.Drawing.Size(47, 16);
  3565. this.uiLabel10.TabIndex = 219;
  3566. this.uiLabel10.Text = "BIN11";
  3567. //
  3568. // uiLabel11
  3569. //
  3570. this.uiLabel11.AutoSize = true;
  3571. this.uiLabel11.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3572. this.uiLabel11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3573. this.uiLabel11.Location = new System.Drawing.Point(19, 376);
  3574. this.uiLabel11.Name = "uiLabel11";
  3575. this.uiLabel11.Size = new System.Drawing.Size(47, 16);
  3576. this.uiLabel11.TabIndex = 218;
  3577. this.uiLabel11.Text = "BIN10";
  3578. //
  3579. // uiLabel12
  3580. //
  3581. this.uiLabel12.AutoSize = true;
  3582. this.uiLabel12.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3583. this.uiLabel12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3584. this.uiLabel12.Location = new System.Drawing.Point(19, 339);
  3585. this.uiLabel12.Name = "uiLabel12";
  3586. this.uiLabel12.Size = new System.Drawing.Size(39, 16);
  3587. this.uiLabel12.TabIndex = 217;
  3588. this.uiLabel12.Text = "BIN9";
  3589. //
  3590. // uiLabel15
  3591. //
  3592. this.uiLabel15.AutoSize = true;
  3593. this.uiLabel15.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3594. this.uiLabel15.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3595. this.uiLabel15.Location = new System.Drawing.Point(19, 302);
  3596. this.uiLabel15.Name = "uiLabel15";
  3597. this.uiLabel15.Size = new System.Drawing.Size(39, 16);
  3598. this.uiLabel15.TabIndex = 216;
  3599. this.uiLabel15.Text = "BIN8";
  3600. //
  3601. // uiLabel18
  3602. //
  3603. this.uiLabel18.AutoSize = true;
  3604. this.uiLabel18.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3605. this.uiLabel18.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3606. this.uiLabel18.Location = new System.Drawing.Point(19, 265);
  3607. this.uiLabel18.Name = "uiLabel18";
  3608. this.uiLabel18.Size = new System.Drawing.Size(39, 16);
  3609. this.uiLabel18.TabIndex = 215;
  3610. this.uiLabel18.Text = "BIN7";
  3611. //
  3612. // uiLabel19
  3613. //
  3614. this.uiLabel19.AutoSize = true;
  3615. this.uiLabel19.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3616. this.uiLabel19.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3617. this.uiLabel19.Location = new System.Drawing.Point(19, 228);
  3618. this.uiLabel19.Name = "uiLabel19";
  3619. this.uiLabel19.Size = new System.Drawing.Size(39, 16);
  3620. this.uiLabel19.TabIndex = 214;
  3621. this.uiLabel19.Text = "BIN6";
  3622. //
  3623. // uiLabel20
  3624. //
  3625. this.uiLabel20.AutoSize = true;
  3626. this.uiLabel20.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3627. this.uiLabel20.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3628. this.uiLabel20.Location = new System.Drawing.Point(19, 191);
  3629. this.uiLabel20.Name = "uiLabel20";
  3630. this.uiLabel20.Size = new System.Drawing.Size(39, 16);
  3631. this.uiLabel20.TabIndex = 213;
  3632. this.uiLabel20.Text = "BIN5";
  3633. //
  3634. // uiLabel21
  3635. //
  3636. this.uiLabel21.AutoSize = true;
  3637. this.uiLabel21.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3638. this.uiLabel21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3639. this.uiLabel21.Location = new System.Drawing.Point(19, 154);
  3640. this.uiLabel21.Name = "uiLabel21";
  3641. this.uiLabel21.Size = new System.Drawing.Size(39, 16);
  3642. this.uiLabel21.TabIndex = 212;
  3643. this.uiLabel21.Text = "BIN4";
  3644. //
  3645. // uiLabel22
  3646. //
  3647. this.uiLabel22.AutoSize = true;
  3648. this.uiLabel22.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3649. this.uiLabel22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3650. this.uiLabel22.Location = new System.Drawing.Point(19, 117);
  3651. this.uiLabel22.Name = "uiLabel22";
  3652. this.uiLabel22.Size = new System.Drawing.Size(39, 16);
  3653. this.uiLabel22.TabIndex = 211;
  3654. this.uiLabel22.Text = "BIN3";
  3655. //
  3656. // uiLabel23
  3657. //
  3658. this.uiLabel23.AutoSize = true;
  3659. this.uiLabel23.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3660. this.uiLabel23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3661. this.uiLabel23.Location = new System.Drawing.Point(19, 80);
  3662. this.uiLabel23.Name = "uiLabel23";
  3663. this.uiLabel23.Size = new System.Drawing.Size(39, 16);
  3664. this.uiLabel23.TabIndex = 210;
  3665. this.uiLabel23.Text = "BIN2";
  3666. //
  3667. // uiLabel24
  3668. //
  3669. this.uiLabel24.AutoSize = true;
  3670. this.uiLabel24.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3671. this.uiLabel24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3672. this.uiLabel24.Location = new System.Drawing.Point(19, 43);
  3673. this.uiLabel24.Name = "uiLabel24";
  3674. this.uiLabel24.Size = new System.Drawing.Size(39, 16);
  3675. this.uiLabel24.TabIndex = 209;
  3676. this.uiLabel24.Text = "BIN1";
  3677. //
  3678. // tabPage3
  3679. //
  3680. this.tabPage3.Controls.Add(this.uiLabel36);
  3681. this.tabPage3.Controls.Add(this.uiLabel37);
  3682. this.tabPage3.Controls.Add(this.uiLabel29);
  3683. this.tabPage3.Controls.Add(this.uiLabel47);
  3684. this.tabPage3.Controls.Add(this.uiLabel48);
  3685. this.tabPage3.Controls.Add(this.uiLabel49);
  3686. this.tabPage3.Controls.Add(this.uiLabel50);
  3687. this.tabPage3.Controls.Add(this.uiLabel62);
  3688. this.tabPage3.Controls.Add(this.uiLabel63);
  3689. this.tabPage3.Controls.Add(this.uiLabel64);
  3690. this.tabPage3.Controls.Add(this.uiLabel65);
  3691. this.tabPage3.Controls.Add(this.uiLabel66);
  3692. this.tabPage3.Controls.Add(this.uiLabel69);
  3693. this.tabPage3.Controls.Add(this.uiLabel72);
  3694. this.tabPage3.Controls.Add(this.uiLabel73);
  3695. this.tabPage3.Controls.Add(this.uiLabel74);
  3696. this.tabPage3.Controls.Add(this.uiLabel75);
  3697. this.tabPage3.Controls.Add(this.plcUiNumberDisplay51);
  3698. this.tabPage3.Controls.Add(this.plcUiNumberDisplay52);
  3699. this.tabPage3.Controls.Add(this.plcUiNumberDisplay53);
  3700. this.tabPage3.Controls.Add(this.plcUiNumberDisplay54);
  3701. this.tabPage3.Controls.Add(this.plcUiNumberDisplay55);
  3702. this.tabPage3.Controls.Add(this.plcUiNumberDisplay56);
  3703. this.tabPage3.Controls.Add(this.plcUiNumberDisplay57);
  3704. this.tabPage3.Controls.Add(this.plcUiNumberDisplay58);
  3705. this.tabPage3.Controls.Add(this.plcUiNumberDisplay59);
  3706. this.tabPage3.Controls.Add(this.plcUiNumberDisplay60);
  3707. this.tabPage3.Controls.Add(this.plcUiNumberDisplay61);
  3708. this.tabPage3.Controls.Add(this.plcUiNumberDisplay62);
  3709. this.tabPage3.Controls.Add(this.plcUiNumberDisplay63);
  3710. this.tabPage3.Controls.Add(this.plcUiNumberDisplay64);
  3711. this.tabPage3.Controls.Add(this.plcUiNumberDisplay65);
  3712. this.tabPage3.Controls.Add(this.plcUiNumberDisplay66);
  3713. this.tabPage3.Controls.Add(this.plcUiNumberDisplay67);
  3714. this.tabPage3.Controls.Add(this.plcUiNumberDisplay68);
  3715. this.tabPage3.Controls.Add(this.plcUiNumberDisplay69);
  3716. this.tabPage3.Controls.Add(this.plcUiNumberDisplay70);
  3717. this.tabPage3.Controls.Add(this.plcUiNumberDisplay71);
  3718. this.tabPage3.Controls.Add(this.plcUiNumberDisplay72);
  3719. this.tabPage3.Controls.Add(this.txt测试3BIN12占比上限百分比);
  3720. this.tabPage3.Controls.Add(this.txt测试3BIN11占比上限百分比);
  3721. this.tabPage3.Controls.Add(this.txt测试3BIN10占比上限百分比);
  3722. this.tabPage3.Controls.Add(this.txt测试3BIN9占比上限百分比);
  3723. this.tabPage3.Controls.Add(this.txt测试3BIN8占比上限百分比);
  3724. this.tabPage3.Controls.Add(this.txt测试3BIN7占比上限百分比);
  3725. this.tabPage3.Controls.Add(this.txt测试3BIN6占比上限百分比);
  3726. this.tabPage3.Controls.Add(this.txt测试3BIN5占比上限百分比);
  3727. this.tabPage3.Controls.Add(this.txt测试3BIN4占比上限百分比);
  3728. this.tabPage3.Controls.Add(this.txt测试3BIN3占比上限百分比);
  3729. this.tabPage3.Controls.Add(this.plcUiNumberDisplay73);
  3730. this.tabPage3.Controls.Add(this.plcUiNumberDisplay74);
  3731. this.tabPage3.Controls.Add(this.plcUiNumberDisplay75);
  3732. this.tabPage3.Controls.Add(this.txt测试3BIN2占比上限百分比);
  3733. this.tabPage3.Controls.Add(this.txt测试3统计起始数量);
  3734. this.tabPage3.Controls.Add(this.txt测试3BIN1占比上限百分比);
  3735. this.tabPage3.Location = new System.Drawing.Point(0, 40);
  3736. this.tabPage3.Name = "tabPage3";
  3737. this.tabPage3.Size = new System.Drawing.Size(569, 560);
  3738. this.tabPage3.TabIndex = 2;
  3739. this.tabPage3.Text = "测试3";
  3740. this.tabPage3.UseVisualStyleBackColor = true;
  3741. //
  3742. // uiLabel36
  3743. //
  3744. this.uiLabel36.AutoSize = true;
  3745. this.uiLabel36.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3746. this.uiLabel36.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3747. this.uiLabel36.Location = new System.Drawing.Point(46, 523);
  3748. this.uiLabel36.Name = "uiLabel36";
  3749. this.uiLabel36.Size = new System.Drawing.Size(103, 16);
  3750. this.uiLabel36.TabIndex = 255;
  3751. this.uiLabel36.Text = "统计起始数量";
  3752. //
  3753. // uiLabel37
  3754. //
  3755. this.uiLabel37.AutoSize = true;
  3756. this.uiLabel37.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3757. this.uiLabel37.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3758. this.uiLabel37.Location = new System.Drawing.Point(62, 490);
  3759. this.uiLabel37.Name = "uiLabel37";
  3760. this.uiLabel37.Size = new System.Drawing.Size(87, 16);
  3761. this.uiLabel37.TabIndex = 256;
  3762. this.uiLabel37.Text = "当前总计数";
  3763. //
  3764. // uiLabel29
  3765. //
  3766. this.uiLabel29.AutoSize = true;
  3767. this.uiLabel29.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3768. this.uiLabel29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3769. this.uiLabel29.Location = new System.Drawing.Point(19, 451);
  3770. this.uiLabel29.Name = "uiLabel29";
  3771. this.uiLabel29.Size = new System.Drawing.Size(47, 16);
  3772. this.uiLabel29.TabIndex = 254;
  3773. this.uiLabel29.Text = "BIN12";
  3774. //
  3775. // uiLabel47
  3776. //
  3777. this.uiLabel47.AutoSize = true;
  3778. this.uiLabel47.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3779. this.uiLabel47.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3780. this.uiLabel47.Location = new System.Drawing.Point(19, 414);
  3781. this.uiLabel47.Name = "uiLabel47";
  3782. this.uiLabel47.Size = new System.Drawing.Size(47, 16);
  3783. this.uiLabel47.TabIndex = 253;
  3784. this.uiLabel47.Text = "BIN11";
  3785. //
  3786. // uiLabel48
  3787. //
  3788. this.uiLabel48.AutoSize = true;
  3789. this.uiLabel48.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3790. this.uiLabel48.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3791. this.uiLabel48.Location = new System.Drawing.Point(19, 377);
  3792. this.uiLabel48.Name = "uiLabel48";
  3793. this.uiLabel48.Size = new System.Drawing.Size(47, 16);
  3794. this.uiLabel48.TabIndex = 252;
  3795. this.uiLabel48.Text = "BIN10";
  3796. //
  3797. // uiLabel49
  3798. //
  3799. this.uiLabel49.AutoSize = true;
  3800. this.uiLabel49.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3801. this.uiLabel49.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3802. this.uiLabel49.Location = new System.Drawing.Point(19, 340);
  3803. this.uiLabel49.Name = "uiLabel49";
  3804. this.uiLabel49.Size = new System.Drawing.Size(39, 16);
  3805. this.uiLabel49.TabIndex = 251;
  3806. this.uiLabel49.Text = "BIN9";
  3807. //
  3808. // uiLabel50
  3809. //
  3810. this.uiLabel50.AutoSize = true;
  3811. this.uiLabel50.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3812. this.uiLabel50.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3813. this.uiLabel50.Location = new System.Drawing.Point(19, 303);
  3814. this.uiLabel50.Name = "uiLabel50";
  3815. this.uiLabel50.Size = new System.Drawing.Size(39, 16);
  3816. this.uiLabel50.TabIndex = 250;
  3817. this.uiLabel50.Text = "BIN8";
  3818. //
  3819. // uiLabel62
  3820. //
  3821. this.uiLabel62.AutoSize = true;
  3822. this.uiLabel62.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3823. this.uiLabel62.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3824. this.uiLabel62.Location = new System.Drawing.Point(19, 266);
  3825. this.uiLabel62.Name = "uiLabel62";
  3826. this.uiLabel62.Size = new System.Drawing.Size(39, 16);
  3827. this.uiLabel62.TabIndex = 249;
  3828. this.uiLabel62.Text = "BIN7";
  3829. //
  3830. // uiLabel63
  3831. //
  3832. this.uiLabel63.AutoSize = true;
  3833. this.uiLabel63.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3834. this.uiLabel63.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3835. this.uiLabel63.Location = new System.Drawing.Point(19, 229);
  3836. this.uiLabel63.Name = "uiLabel63";
  3837. this.uiLabel63.Size = new System.Drawing.Size(39, 16);
  3838. this.uiLabel63.TabIndex = 248;
  3839. this.uiLabel63.Text = "BIN6";
  3840. //
  3841. // uiLabel64
  3842. //
  3843. this.uiLabel64.AutoSize = true;
  3844. this.uiLabel64.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3845. this.uiLabel64.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3846. this.uiLabel64.Location = new System.Drawing.Point(19, 192);
  3847. this.uiLabel64.Name = "uiLabel64";
  3848. this.uiLabel64.Size = new System.Drawing.Size(39, 16);
  3849. this.uiLabel64.TabIndex = 247;
  3850. this.uiLabel64.Text = "BIN5";
  3851. //
  3852. // uiLabel65
  3853. //
  3854. this.uiLabel65.AutoSize = true;
  3855. this.uiLabel65.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3856. this.uiLabel65.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3857. this.uiLabel65.Location = new System.Drawing.Point(19, 155);
  3858. this.uiLabel65.Name = "uiLabel65";
  3859. this.uiLabel65.Size = new System.Drawing.Size(39, 16);
  3860. this.uiLabel65.TabIndex = 246;
  3861. this.uiLabel65.Text = "BIN4";
  3862. //
  3863. // uiLabel66
  3864. //
  3865. this.uiLabel66.AutoSize = true;
  3866. this.uiLabel66.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3867. this.uiLabel66.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3868. this.uiLabel66.Location = new System.Drawing.Point(19, 118);
  3869. this.uiLabel66.Name = "uiLabel66";
  3870. this.uiLabel66.Size = new System.Drawing.Size(39, 16);
  3871. this.uiLabel66.TabIndex = 245;
  3872. this.uiLabel66.Text = "BIN3";
  3873. //
  3874. // uiLabel69
  3875. //
  3876. this.uiLabel69.AutoSize = true;
  3877. this.uiLabel69.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3878. this.uiLabel69.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3879. this.uiLabel69.Location = new System.Drawing.Point(19, 81);
  3880. this.uiLabel69.Name = "uiLabel69";
  3881. this.uiLabel69.Size = new System.Drawing.Size(39, 16);
  3882. this.uiLabel69.TabIndex = 244;
  3883. this.uiLabel69.Text = "BIN2";
  3884. //
  3885. // uiLabel72
  3886. //
  3887. this.uiLabel72.AutoSize = true;
  3888. this.uiLabel72.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3889. this.uiLabel72.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3890. this.uiLabel72.Location = new System.Drawing.Point(19, 44);
  3891. this.uiLabel72.Name = "uiLabel72";
  3892. this.uiLabel72.Size = new System.Drawing.Size(39, 16);
  3893. this.uiLabel72.TabIndex = 243;
  3894. this.uiLabel72.Text = "BIN1";
  3895. //
  3896. // uiLabel73
  3897. //
  3898. this.uiLabel73.AutoSize = true;
  3899. this.uiLabel73.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3900. this.uiLabel73.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3901. this.uiLabel73.Location = new System.Drawing.Point(70, 18);
  3902. this.uiLabel73.Name = "uiLabel73";
  3903. this.uiLabel73.Size = new System.Drawing.Size(79, 16);
  3904. this.uiLabel73.TabIndex = 240;
  3905. this.uiLabel73.Text = "上限(%)";
  3906. //
  3907. // uiLabel74
  3908. //
  3909. this.uiLabel74.AutoSize = true;
  3910. this.uiLabel74.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3911. this.uiLabel74.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3912. this.uiLabel74.Location = new System.Drawing.Point(178, 18);
  3913. this.uiLabel74.Name = "uiLabel74";
  3914. this.uiLabel74.Size = new System.Drawing.Size(39, 16);
  3915. this.uiLabel74.TabIndex = 242;
  3916. this.uiLabel74.Text = "数量";
  3917. //
  3918. // uiLabel75
  3919. //
  3920. this.uiLabel75.AutoSize = true;
  3921. this.uiLabel75.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3922. this.uiLabel75.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3923. this.uiLabel75.Location = new System.Drawing.Point(260, 18);
  3924. this.uiLabel75.Name = "uiLabel75";
  3925. this.uiLabel75.Size = new System.Drawing.Size(39, 16);
  3926. this.uiLabel75.TabIndex = 241;
  3927. this.uiLabel75.Text = "比率";
  3928. //
  3929. // plcUiNumberDisplay51
  3930. //
  3931. this.plcUiNumberDisplay51.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3932. this.plcUiNumberDisplay51.DecimalPlaces = 2;
  3933. this.plcUiNumberDisplay51.DisabilityTriggerNode = null;
  3934. this.plcUiNumberDisplay51.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3935. this.plcUiNumberDisplay51.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3936. this.plcUiNumberDisplay51.Gain = 1D;
  3937. this.plcUiNumberDisplay51.IntegerDigits = 0;
  3938. this.plcUiNumberDisplay51.InvisibilityTriggerNode = null;
  3939. this.plcUiNumberDisplay51.Location = new System.Drawing.Point(241, 447);
  3940. this.plcUiNumberDisplay51.Name = "plcUiNumberDisplay51";
  3941. this.plcUiNumberDisplay51.Preffix = null;
  3942. this.plcUiNumberDisplay51.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[12]", NodeType.REAL, null);
  3943. this.plcUiNumberDisplay51.Size = new System.Drawing.Size(80, 27);
  3944. this.plcUiNumberDisplay51.Suffix = "%";
  3945. this.plcUiNumberDisplay51.TabIndex = 239;
  3946. this.plcUiNumberDisplay51.Text = "1.00";
  3947. this.plcUiNumberDisplay51.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3948. this.plcUiNumberDisplay51.WriteNode = null;
  3949. //
  3950. // plcUiNumberDisplay52
  3951. //
  3952. this.plcUiNumberDisplay52.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3953. this.plcUiNumberDisplay52.DecimalPlaces = 2;
  3954. this.plcUiNumberDisplay52.DisabilityTriggerNode = null;
  3955. this.plcUiNumberDisplay52.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3956. this.plcUiNumberDisplay52.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3957. this.plcUiNumberDisplay52.Gain = 1D;
  3958. this.plcUiNumberDisplay52.IntegerDigits = 0;
  3959. this.plcUiNumberDisplay52.InvisibilityTriggerNode = null;
  3960. this.plcUiNumberDisplay52.Location = new System.Drawing.Point(241, 410);
  3961. this.plcUiNumberDisplay52.Name = "plcUiNumberDisplay52";
  3962. this.plcUiNumberDisplay52.Preffix = null;
  3963. this.plcUiNumberDisplay52.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[11]", NodeType.REAL, null);
  3964. this.plcUiNumberDisplay52.Size = new System.Drawing.Size(80, 27);
  3965. this.plcUiNumberDisplay52.Suffix = "%";
  3966. this.plcUiNumberDisplay52.TabIndex = 237;
  3967. this.plcUiNumberDisplay52.Text = "1.00";
  3968. this.plcUiNumberDisplay52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3969. this.plcUiNumberDisplay52.WriteNode = null;
  3970. //
  3971. // plcUiNumberDisplay53
  3972. //
  3973. this.plcUiNumberDisplay53.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3974. this.plcUiNumberDisplay53.DecimalPlaces = 2;
  3975. this.plcUiNumberDisplay53.DisabilityTriggerNode = null;
  3976. this.plcUiNumberDisplay53.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3977. this.plcUiNumberDisplay53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3978. this.plcUiNumberDisplay53.Gain = 1D;
  3979. this.plcUiNumberDisplay53.IntegerDigits = 0;
  3980. this.plcUiNumberDisplay53.InvisibilityTriggerNode = null;
  3981. this.plcUiNumberDisplay53.Location = new System.Drawing.Point(241, 373);
  3982. this.plcUiNumberDisplay53.Name = "plcUiNumberDisplay53";
  3983. this.plcUiNumberDisplay53.Preffix = null;
  3984. this.plcUiNumberDisplay53.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[10]", NodeType.REAL, null);
  3985. this.plcUiNumberDisplay53.Size = new System.Drawing.Size(80, 27);
  3986. this.plcUiNumberDisplay53.Suffix = "%";
  3987. this.plcUiNumberDisplay53.TabIndex = 235;
  3988. this.plcUiNumberDisplay53.Text = "1.00";
  3989. this.plcUiNumberDisplay53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3990. this.plcUiNumberDisplay53.WriteNode = null;
  3991. //
  3992. // plcUiNumberDisplay54
  3993. //
  3994. this.plcUiNumberDisplay54.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3995. this.plcUiNumberDisplay54.DecimalPlaces = 2;
  3996. this.plcUiNumberDisplay54.DisabilityTriggerNode = null;
  3997. this.plcUiNumberDisplay54.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3998. this.plcUiNumberDisplay54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  3999. this.plcUiNumberDisplay54.Gain = 1D;
  4000. this.plcUiNumberDisplay54.IntegerDigits = 0;
  4001. this.plcUiNumberDisplay54.InvisibilityTriggerNode = null;
  4002. this.plcUiNumberDisplay54.Location = new System.Drawing.Point(241, 336);
  4003. this.plcUiNumberDisplay54.Name = "plcUiNumberDisplay54";
  4004. this.plcUiNumberDisplay54.Preffix = null;
  4005. this.plcUiNumberDisplay54.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[9]", NodeType.REAL, null);
  4006. this.plcUiNumberDisplay54.Size = new System.Drawing.Size(80, 27);
  4007. this.plcUiNumberDisplay54.Suffix = "%";
  4008. this.plcUiNumberDisplay54.TabIndex = 233;
  4009. this.plcUiNumberDisplay54.Text = "1.00";
  4010. this.plcUiNumberDisplay54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4011. this.plcUiNumberDisplay54.WriteNode = null;
  4012. //
  4013. // plcUiNumberDisplay55
  4014. //
  4015. this.plcUiNumberDisplay55.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4016. this.plcUiNumberDisplay55.DecimalPlaces = 2;
  4017. this.plcUiNumberDisplay55.DisabilityTriggerNode = null;
  4018. this.plcUiNumberDisplay55.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4019. this.plcUiNumberDisplay55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4020. this.plcUiNumberDisplay55.Gain = 1D;
  4021. this.plcUiNumberDisplay55.IntegerDigits = 0;
  4022. this.plcUiNumberDisplay55.InvisibilityTriggerNode = null;
  4023. this.plcUiNumberDisplay55.Location = new System.Drawing.Point(241, 299);
  4024. this.plcUiNumberDisplay55.Name = "plcUiNumberDisplay55";
  4025. this.plcUiNumberDisplay55.Preffix = null;
  4026. this.plcUiNumberDisplay55.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[8]", NodeType.REAL, null);
  4027. this.plcUiNumberDisplay55.Size = new System.Drawing.Size(80, 27);
  4028. this.plcUiNumberDisplay55.Suffix = "%";
  4029. this.plcUiNumberDisplay55.TabIndex = 231;
  4030. this.plcUiNumberDisplay55.Text = "1.00";
  4031. this.plcUiNumberDisplay55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4032. this.plcUiNumberDisplay55.WriteNode = null;
  4033. //
  4034. // plcUiNumberDisplay56
  4035. //
  4036. this.plcUiNumberDisplay56.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4037. this.plcUiNumberDisplay56.DecimalPlaces = 2;
  4038. this.plcUiNumberDisplay56.DisabilityTriggerNode = null;
  4039. this.plcUiNumberDisplay56.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4040. this.plcUiNumberDisplay56.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4041. this.plcUiNumberDisplay56.Gain = 1D;
  4042. this.plcUiNumberDisplay56.IntegerDigits = 0;
  4043. this.plcUiNumberDisplay56.InvisibilityTriggerNode = null;
  4044. this.plcUiNumberDisplay56.Location = new System.Drawing.Point(241, 262);
  4045. this.plcUiNumberDisplay56.Name = "plcUiNumberDisplay56";
  4046. this.plcUiNumberDisplay56.Preffix = null;
  4047. this.plcUiNumberDisplay56.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[7]", NodeType.REAL, null);
  4048. this.plcUiNumberDisplay56.Size = new System.Drawing.Size(80, 27);
  4049. this.plcUiNumberDisplay56.Suffix = "%";
  4050. this.plcUiNumberDisplay56.TabIndex = 229;
  4051. this.plcUiNumberDisplay56.Text = "1.00";
  4052. this.plcUiNumberDisplay56.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4053. this.plcUiNumberDisplay56.WriteNode = null;
  4054. //
  4055. // plcUiNumberDisplay57
  4056. //
  4057. this.plcUiNumberDisplay57.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4058. this.plcUiNumberDisplay57.DecimalPlaces = 2;
  4059. this.plcUiNumberDisplay57.DisabilityTriggerNode = null;
  4060. this.plcUiNumberDisplay57.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4061. this.plcUiNumberDisplay57.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4062. this.plcUiNumberDisplay57.Gain = 1D;
  4063. this.plcUiNumberDisplay57.IntegerDigits = 0;
  4064. this.plcUiNumberDisplay57.InvisibilityTriggerNode = null;
  4065. this.plcUiNumberDisplay57.Location = new System.Drawing.Point(241, 225);
  4066. this.plcUiNumberDisplay57.Name = "plcUiNumberDisplay57";
  4067. this.plcUiNumberDisplay57.Preffix = null;
  4068. this.plcUiNumberDisplay57.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[6]", NodeType.REAL, null);
  4069. this.plcUiNumberDisplay57.Size = new System.Drawing.Size(80, 27);
  4070. this.plcUiNumberDisplay57.Suffix = "%";
  4071. this.plcUiNumberDisplay57.TabIndex = 227;
  4072. this.plcUiNumberDisplay57.Text = "1.00";
  4073. this.plcUiNumberDisplay57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4074. this.plcUiNumberDisplay57.WriteNode = null;
  4075. //
  4076. // plcUiNumberDisplay58
  4077. //
  4078. this.plcUiNumberDisplay58.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4079. this.plcUiNumberDisplay58.DecimalPlaces = 2;
  4080. this.plcUiNumberDisplay58.DisabilityTriggerNode = null;
  4081. this.plcUiNumberDisplay58.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4082. this.plcUiNumberDisplay58.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4083. this.plcUiNumberDisplay58.Gain = 1D;
  4084. this.plcUiNumberDisplay58.IntegerDigits = 0;
  4085. this.plcUiNumberDisplay58.InvisibilityTriggerNode = null;
  4086. this.plcUiNumberDisplay58.Location = new System.Drawing.Point(241, 188);
  4087. this.plcUiNumberDisplay58.Name = "plcUiNumberDisplay58";
  4088. this.plcUiNumberDisplay58.Preffix = null;
  4089. this.plcUiNumberDisplay58.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[5]", NodeType.REAL, null);
  4090. this.plcUiNumberDisplay58.Size = new System.Drawing.Size(80, 27);
  4091. this.plcUiNumberDisplay58.Suffix = "%";
  4092. this.plcUiNumberDisplay58.TabIndex = 225;
  4093. this.plcUiNumberDisplay58.Text = "1.00";
  4094. this.plcUiNumberDisplay58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4095. this.plcUiNumberDisplay58.WriteNode = null;
  4096. //
  4097. // plcUiNumberDisplay59
  4098. //
  4099. this.plcUiNumberDisplay59.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4100. this.plcUiNumberDisplay59.DecimalPlaces = 2;
  4101. this.plcUiNumberDisplay59.DisabilityTriggerNode = null;
  4102. this.plcUiNumberDisplay59.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4103. this.plcUiNumberDisplay59.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4104. this.plcUiNumberDisplay59.Gain = 1D;
  4105. this.plcUiNumberDisplay59.IntegerDigits = 0;
  4106. this.plcUiNumberDisplay59.InvisibilityTriggerNode = null;
  4107. this.plcUiNumberDisplay59.Location = new System.Drawing.Point(241, 151);
  4108. this.plcUiNumberDisplay59.Name = "plcUiNumberDisplay59";
  4109. this.plcUiNumberDisplay59.Preffix = null;
  4110. this.plcUiNumberDisplay59.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[4]", NodeType.REAL, null);
  4111. this.plcUiNumberDisplay59.Size = new System.Drawing.Size(80, 27);
  4112. this.plcUiNumberDisplay59.Suffix = "%";
  4113. this.plcUiNumberDisplay59.TabIndex = 223;
  4114. this.plcUiNumberDisplay59.Text = "1.00";
  4115. this.plcUiNumberDisplay59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4116. this.plcUiNumberDisplay59.WriteNode = null;
  4117. //
  4118. // plcUiNumberDisplay60
  4119. //
  4120. this.plcUiNumberDisplay60.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4121. this.plcUiNumberDisplay60.DecimalPlaces = 2;
  4122. this.plcUiNumberDisplay60.DisabilityTriggerNode = null;
  4123. this.plcUiNumberDisplay60.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4124. this.plcUiNumberDisplay60.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4125. this.plcUiNumberDisplay60.Gain = 1D;
  4126. this.plcUiNumberDisplay60.IntegerDigits = 0;
  4127. this.plcUiNumberDisplay60.InvisibilityTriggerNode = null;
  4128. this.plcUiNumberDisplay60.Location = new System.Drawing.Point(241, 114);
  4129. this.plcUiNumberDisplay60.Name = "plcUiNumberDisplay60";
  4130. this.plcUiNumberDisplay60.Preffix = null;
  4131. this.plcUiNumberDisplay60.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[3]", NodeType.REAL, null);
  4132. this.plcUiNumberDisplay60.Size = new System.Drawing.Size(80, 27);
  4133. this.plcUiNumberDisplay60.Suffix = "%";
  4134. this.plcUiNumberDisplay60.TabIndex = 221;
  4135. this.plcUiNumberDisplay60.Text = "1.00";
  4136. this.plcUiNumberDisplay60.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4137. this.plcUiNumberDisplay60.WriteNode = null;
  4138. //
  4139. // plcUiNumberDisplay61
  4140. //
  4141. this.plcUiNumberDisplay61.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4142. this.plcUiNumberDisplay61.DecimalPlaces = 2;
  4143. this.plcUiNumberDisplay61.DisabilityTriggerNode = null;
  4144. this.plcUiNumberDisplay61.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4145. this.plcUiNumberDisplay61.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4146. this.plcUiNumberDisplay61.Gain = 1D;
  4147. this.plcUiNumberDisplay61.IntegerDigits = 0;
  4148. this.plcUiNumberDisplay61.InvisibilityTriggerNode = null;
  4149. this.plcUiNumberDisplay61.Location = new System.Drawing.Point(241, 76);
  4150. this.plcUiNumberDisplay61.Name = "plcUiNumberDisplay61";
  4151. this.plcUiNumberDisplay61.Preffix = null;
  4152. this.plcUiNumberDisplay61.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[2]", NodeType.REAL, null);
  4153. this.plcUiNumberDisplay61.Size = new System.Drawing.Size(80, 27);
  4154. this.plcUiNumberDisplay61.Suffix = "%";
  4155. this.plcUiNumberDisplay61.TabIndex = 219;
  4156. this.plcUiNumberDisplay61.Text = "1.00";
  4157. this.plcUiNumberDisplay61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4158. this.plcUiNumberDisplay61.WriteNode = null;
  4159. //
  4160. // plcUiNumberDisplay62
  4161. //
  4162. this.plcUiNumberDisplay62.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4163. this.plcUiNumberDisplay62.DecimalPlaces = 2;
  4164. this.plcUiNumberDisplay62.DisabilityTriggerNode = null;
  4165. this.plcUiNumberDisplay62.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4166. this.plcUiNumberDisplay62.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4167. this.plcUiNumberDisplay62.Gain = 1D;
  4168. this.plcUiNumberDisplay62.IntegerDigits = 0;
  4169. this.plcUiNumberDisplay62.InvisibilityTriggerNode = null;
  4170. this.plcUiNumberDisplay62.Location = new System.Drawing.Point(241, 39);
  4171. this.plcUiNumberDisplay62.Name = "plcUiNumberDisplay62";
  4172. this.plcUiNumberDisplay62.Preffix = null;
  4173. this.plcUiNumberDisplay62.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin当前占比比率[1]", NodeType.REAL, null);
  4174. this.plcUiNumberDisplay62.Size = new System.Drawing.Size(80, 27);
  4175. this.plcUiNumberDisplay62.Suffix = "%";
  4176. this.plcUiNumberDisplay62.TabIndex = 217;
  4177. this.plcUiNumberDisplay62.Text = "1.00";
  4178. this.plcUiNumberDisplay62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4179. this.plcUiNumberDisplay62.WriteNode = null;
  4180. //
  4181. // plcUiNumberDisplay63
  4182. //
  4183. this.plcUiNumberDisplay63.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4184. this.plcUiNumberDisplay63.DecimalPlaces = 0;
  4185. this.plcUiNumberDisplay63.DisabilityTriggerNode = null;
  4186. this.plcUiNumberDisplay63.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4187. this.plcUiNumberDisplay63.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4188. this.plcUiNumberDisplay63.Gain = 1D;
  4189. this.plcUiNumberDisplay63.IntegerDigits = 0;
  4190. this.plcUiNumberDisplay63.InvisibilityTriggerNode = null;
  4191. this.plcUiNumberDisplay63.Location = new System.Drawing.Point(155, 447);
  4192. this.plcUiNumberDisplay63.Name = "plcUiNumberDisplay63";
  4193. this.plcUiNumberDisplay63.Preffix = null;
  4194. this.plcUiNumberDisplay63.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[12]", NodeType.UDINT, null);
  4195. this.plcUiNumberDisplay63.Size = new System.Drawing.Size(80, 27);
  4196. this.plcUiNumberDisplay63.Suffix = null;
  4197. this.plcUiNumberDisplay63.TabIndex = 215;
  4198. this.plcUiNumberDisplay63.Text = "1";
  4199. this.plcUiNumberDisplay63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4200. this.plcUiNumberDisplay63.WriteNode = null;
  4201. //
  4202. // plcUiNumberDisplay64
  4203. //
  4204. this.plcUiNumberDisplay64.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4205. this.plcUiNumberDisplay64.DecimalPlaces = 0;
  4206. this.plcUiNumberDisplay64.DisabilityTriggerNode = null;
  4207. this.plcUiNumberDisplay64.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4208. this.plcUiNumberDisplay64.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4209. this.plcUiNumberDisplay64.Gain = 1D;
  4210. this.plcUiNumberDisplay64.IntegerDigits = 0;
  4211. this.plcUiNumberDisplay64.InvisibilityTriggerNode = null;
  4212. this.plcUiNumberDisplay64.Location = new System.Drawing.Point(155, 410);
  4213. this.plcUiNumberDisplay64.Name = "plcUiNumberDisplay64";
  4214. this.plcUiNumberDisplay64.Preffix = null;
  4215. this.plcUiNumberDisplay64.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[11]", NodeType.UDINT, null);
  4216. this.plcUiNumberDisplay64.Size = new System.Drawing.Size(80, 27);
  4217. this.plcUiNumberDisplay64.Suffix = null;
  4218. this.plcUiNumberDisplay64.TabIndex = 213;
  4219. this.plcUiNumberDisplay64.Text = "1";
  4220. this.plcUiNumberDisplay64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4221. this.plcUiNumberDisplay64.WriteNode = null;
  4222. //
  4223. // plcUiNumberDisplay65
  4224. //
  4225. this.plcUiNumberDisplay65.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4226. this.plcUiNumberDisplay65.DecimalPlaces = 0;
  4227. this.plcUiNumberDisplay65.DisabilityTriggerNode = null;
  4228. this.plcUiNumberDisplay65.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4229. this.plcUiNumberDisplay65.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4230. this.plcUiNumberDisplay65.Gain = 1D;
  4231. this.plcUiNumberDisplay65.IntegerDigits = 0;
  4232. this.plcUiNumberDisplay65.InvisibilityTriggerNode = null;
  4233. this.plcUiNumberDisplay65.Location = new System.Drawing.Point(155, 373);
  4234. this.plcUiNumberDisplay65.Name = "plcUiNumberDisplay65";
  4235. this.plcUiNumberDisplay65.Preffix = null;
  4236. this.plcUiNumberDisplay65.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[10]", NodeType.UDINT, null);
  4237. this.plcUiNumberDisplay65.Size = new System.Drawing.Size(80, 27);
  4238. this.plcUiNumberDisplay65.Suffix = null;
  4239. this.plcUiNumberDisplay65.TabIndex = 211;
  4240. this.plcUiNumberDisplay65.Text = "1";
  4241. this.plcUiNumberDisplay65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4242. this.plcUiNumberDisplay65.WriteNode = null;
  4243. //
  4244. // plcUiNumberDisplay66
  4245. //
  4246. this.plcUiNumberDisplay66.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4247. this.plcUiNumberDisplay66.DecimalPlaces = 0;
  4248. this.plcUiNumberDisplay66.DisabilityTriggerNode = null;
  4249. this.plcUiNumberDisplay66.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4250. this.plcUiNumberDisplay66.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4251. this.plcUiNumberDisplay66.Gain = 1D;
  4252. this.plcUiNumberDisplay66.IntegerDigits = 0;
  4253. this.plcUiNumberDisplay66.InvisibilityTriggerNode = null;
  4254. this.plcUiNumberDisplay66.Location = new System.Drawing.Point(155, 336);
  4255. this.plcUiNumberDisplay66.Name = "plcUiNumberDisplay66";
  4256. this.plcUiNumberDisplay66.Preffix = null;
  4257. this.plcUiNumberDisplay66.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[9]", NodeType.UDINT, null);
  4258. this.plcUiNumberDisplay66.Size = new System.Drawing.Size(80, 27);
  4259. this.plcUiNumberDisplay66.Suffix = null;
  4260. this.plcUiNumberDisplay66.TabIndex = 209;
  4261. this.plcUiNumberDisplay66.Text = "1";
  4262. this.plcUiNumberDisplay66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4263. this.plcUiNumberDisplay66.WriteNode = null;
  4264. //
  4265. // plcUiNumberDisplay67
  4266. //
  4267. this.plcUiNumberDisplay67.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4268. this.plcUiNumberDisplay67.DecimalPlaces = 0;
  4269. this.plcUiNumberDisplay67.DisabilityTriggerNode = null;
  4270. this.plcUiNumberDisplay67.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4271. this.plcUiNumberDisplay67.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4272. this.plcUiNumberDisplay67.Gain = 1D;
  4273. this.plcUiNumberDisplay67.IntegerDigits = 0;
  4274. this.plcUiNumberDisplay67.InvisibilityTriggerNode = null;
  4275. this.plcUiNumberDisplay67.Location = new System.Drawing.Point(155, 299);
  4276. this.plcUiNumberDisplay67.Name = "plcUiNumberDisplay67";
  4277. this.plcUiNumberDisplay67.Preffix = null;
  4278. this.plcUiNumberDisplay67.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[8]", NodeType.UDINT, null);
  4279. this.plcUiNumberDisplay67.Size = new System.Drawing.Size(80, 27);
  4280. this.plcUiNumberDisplay67.Suffix = null;
  4281. this.plcUiNumberDisplay67.TabIndex = 207;
  4282. this.plcUiNumberDisplay67.Text = "1";
  4283. this.plcUiNumberDisplay67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4284. this.plcUiNumberDisplay67.WriteNode = null;
  4285. //
  4286. // plcUiNumberDisplay68
  4287. //
  4288. this.plcUiNumberDisplay68.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4289. this.plcUiNumberDisplay68.DecimalPlaces = 0;
  4290. this.plcUiNumberDisplay68.DisabilityTriggerNode = null;
  4291. this.plcUiNumberDisplay68.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4292. this.plcUiNumberDisplay68.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4293. this.plcUiNumberDisplay68.Gain = 1D;
  4294. this.plcUiNumberDisplay68.IntegerDigits = 0;
  4295. this.plcUiNumberDisplay68.InvisibilityTriggerNode = null;
  4296. this.plcUiNumberDisplay68.Location = new System.Drawing.Point(155, 262);
  4297. this.plcUiNumberDisplay68.Name = "plcUiNumberDisplay68";
  4298. this.plcUiNumberDisplay68.Preffix = null;
  4299. this.plcUiNumberDisplay68.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[7]", NodeType.UDINT, null);
  4300. this.plcUiNumberDisplay68.Size = new System.Drawing.Size(80, 27);
  4301. this.plcUiNumberDisplay68.Suffix = null;
  4302. this.plcUiNumberDisplay68.TabIndex = 205;
  4303. this.plcUiNumberDisplay68.Text = "1";
  4304. this.plcUiNumberDisplay68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4305. this.plcUiNumberDisplay68.WriteNode = null;
  4306. //
  4307. // plcUiNumberDisplay69
  4308. //
  4309. this.plcUiNumberDisplay69.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4310. this.plcUiNumberDisplay69.DecimalPlaces = 0;
  4311. this.plcUiNumberDisplay69.DisabilityTriggerNode = null;
  4312. this.plcUiNumberDisplay69.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4313. this.plcUiNumberDisplay69.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4314. this.plcUiNumberDisplay69.Gain = 1D;
  4315. this.plcUiNumberDisplay69.IntegerDigits = 0;
  4316. this.plcUiNumberDisplay69.InvisibilityTriggerNode = null;
  4317. this.plcUiNumberDisplay69.Location = new System.Drawing.Point(155, 225);
  4318. this.plcUiNumberDisplay69.Name = "plcUiNumberDisplay69";
  4319. this.plcUiNumberDisplay69.Preffix = null;
  4320. this.plcUiNumberDisplay69.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[6]", NodeType.UDINT, null);
  4321. this.plcUiNumberDisplay69.Size = new System.Drawing.Size(80, 27);
  4322. this.plcUiNumberDisplay69.Suffix = null;
  4323. this.plcUiNumberDisplay69.TabIndex = 203;
  4324. this.plcUiNumberDisplay69.Text = "1";
  4325. this.plcUiNumberDisplay69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4326. this.plcUiNumberDisplay69.WriteNode = null;
  4327. //
  4328. // plcUiNumberDisplay70
  4329. //
  4330. this.plcUiNumberDisplay70.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4331. this.plcUiNumberDisplay70.DecimalPlaces = 0;
  4332. this.plcUiNumberDisplay70.DisabilityTriggerNode = null;
  4333. this.plcUiNumberDisplay70.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4334. this.plcUiNumberDisplay70.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4335. this.plcUiNumberDisplay70.Gain = 1D;
  4336. this.plcUiNumberDisplay70.IntegerDigits = 0;
  4337. this.plcUiNumberDisplay70.InvisibilityTriggerNode = null;
  4338. this.plcUiNumberDisplay70.Location = new System.Drawing.Point(155, 188);
  4339. this.plcUiNumberDisplay70.Name = "plcUiNumberDisplay70";
  4340. this.plcUiNumberDisplay70.Preffix = null;
  4341. this.plcUiNumberDisplay70.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[5]", NodeType.UDINT, null);
  4342. this.plcUiNumberDisplay70.Size = new System.Drawing.Size(80, 27);
  4343. this.plcUiNumberDisplay70.Suffix = null;
  4344. this.plcUiNumberDisplay70.TabIndex = 201;
  4345. this.plcUiNumberDisplay70.Text = "1";
  4346. this.plcUiNumberDisplay70.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4347. this.plcUiNumberDisplay70.WriteNode = null;
  4348. //
  4349. // plcUiNumberDisplay71
  4350. //
  4351. this.plcUiNumberDisplay71.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4352. this.plcUiNumberDisplay71.DecimalPlaces = 0;
  4353. this.plcUiNumberDisplay71.DisabilityTriggerNode = null;
  4354. this.plcUiNumberDisplay71.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4355. this.plcUiNumberDisplay71.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4356. this.plcUiNumberDisplay71.Gain = 1D;
  4357. this.plcUiNumberDisplay71.IntegerDigits = 0;
  4358. this.plcUiNumberDisplay71.InvisibilityTriggerNode = null;
  4359. this.plcUiNumberDisplay71.Location = new System.Drawing.Point(155, 151);
  4360. this.plcUiNumberDisplay71.Name = "plcUiNumberDisplay71";
  4361. this.plcUiNumberDisplay71.Preffix = null;
  4362. this.plcUiNumberDisplay71.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[4]", NodeType.UDINT, null);
  4363. this.plcUiNumberDisplay71.Size = new System.Drawing.Size(80, 27);
  4364. this.plcUiNumberDisplay71.Suffix = null;
  4365. this.plcUiNumberDisplay71.TabIndex = 199;
  4366. this.plcUiNumberDisplay71.Text = "1";
  4367. this.plcUiNumberDisplay71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4368. this.plcUiNumberDisplay71.WriteNode = null;
  4369. //
  4370. // plcUiNumberDisplay72
  4371. //
  4372. this.plcUiNumberDisplay72.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4373. this.plcUiNumberDisplay72.DecimalPlaces = 0;
  4374. this.plcUiNumberDisplay72.DisabilityTriggerNode = null;
  4375. this.plcUiNumberDisplay72.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4376. this.plcUiNumberDisplay72.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4377. this.plcUiNumberDisplay72.Gain = 1D;
  4378. this.plcUiNumberDisplay72.IntegerDigits = 0;
  4379. this.plcUiNumberDisplay72.InvisibilityTriggerNode = null;
  4380. this.plcUiNumberDisplay72.Location = new System.Drawing.Point(155, 114);
  4381. this.plcUiNumberDisplay72.Name = "plcUiNumberDisplay72";
  4382. this.plcUiNumberDisplay72.Preffix = null;
  4383. this.plcUiNumberDisplay72.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[3]", NodeType.UDINT, null);
  4384. this.plcUiNumberDisplay72.Size = new System.Drawing.Size(80, 27);
  4385. this.plcUiNumberDisplay72.Suffix = null;
  4386. this.plcUiNumberDisplay72.TabIndex = 197;
  4387. this.plcUiNumberDisplay72.Text = "1";
  4388. this.plcUiNumberDisplay72.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4389. this.plcUiNumberDisplay72.WriteNode = null;
  4390. //
  4391. // txt测试3BIN12占比上限百分比
  4392. //
  4393. this.txt测试3BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4394. this.txt测试3BIN12占比上限百分比.DisabilityTriggerNode = null;
  4395. this.txt测试3BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4396. this.txt测试3BIN12占比上限百分比.Gain = 1D;
  4397. this.txt测试3BIN12占比上限百分比.IntegerDigits = 0;
  4398. this.txt测试3BIN12占比上限百分比.InvisibilityTriggerNode = null;
  4399. this.txt测试3BIN12占比上限百分比.Location = new System.Drawing.Point(68, 446);
  4400. this.txt测试3BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4401. this.txt测试3BIN12占比上限百分比.Minimum = 0D;
  4402. this.txt测试3BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4403. this.txt测试3BIN12占比上限百分比.Name = "txt测试3BIN12占比上限百分比";
  4404. this.txt测试3BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4405. this.txt测试3BIN12占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[12]", NodeType.REAL, null);
  4406. this.txt测试3BIN12占比上限百分比.ShowText = false;
  4407. this.txt测试3BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4408. this.txt测试3BIN12占比上限百分比.TabIndex = 194;
  4409. this.txt测试3BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4410. this.txt测试3BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4411. this.txt测试3BIN12占比上限百分比.Watermark = "";
  4412. this.txt测试3BIN12占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[12]", NodeType.REAL, null);
  4413. //
  4414. // txt测试3BIN11占比上限百分比
  4415. //
  4416. this.txt测试3BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4417. this.txt测试3BIN11占比上限百分比.DisabilityTriggerNode = null;
  4418. this.txt测试3BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4419. this.txt测试3BIN11占比上限百分比.Gain = 1D;
  4420. this.txt测试3BIN11占比上限百分比.IntegerDigits = 0;
  4421. this.txt测试3BIN11占比上限百分比.InvisibilityTriggerNode = null;
  4422. this.txt测试3BIN11占比上限百分比.Location = new System.Drawing.Point(68, 409);
  4423. this.txt测试3BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4424. this.txt测试3BIN11占比上限百分比.Minimum = 0D;
  4425. this.txt测试3BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4426. this.txt测试3BIN11占比上限百分比.Name = "txt测试3BIN11占比上限百分比";
  4427. this.txt测试3BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4428. this.txt测试3BIN11占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[11]", NodeType.REAL, null);
  4429. this.txt测试3BIN11占比上限百分比.ShowText = false;
  4430. this.txt测试3BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4431. this.txt测试3BIN11占比上限百分比.TabIndex = 192;
  4432. this.txt测试3BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4433. this.txt测试3BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4434. this.txt测试3BIN11占比上限百分比.Watermark = "";
  4435. this.txt测试3BIN11占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[11]", NodeType.REAL, null);
  4436. //
  4437. // txt测试3BIN10占比上限百分比
  4438. //
  4439. this.txt测试3BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4440. this.txt测试3BIN10占比上限百分比.DisabilityTriggerNode = null;
  4441. this.txt测试3BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4442. this.txt测试3BIN10占比上限百分比.Gain = 1D;
  4443. this.txt测试3BIN10占比上限百分比.IntegerDigits = 0;
  4444. this.txt测试3BIN10占比上限百分比.InvisibilityTriggerNode = null;
  4445. this.txt测试3BIN10占比上限百分比.Location = new System.Drawing.Point(68, 372);
  4446. this.txt测试3BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4447. this.txt测试3BIN10占比上限百分比.Minimum = 0D;
  4448. this.txt测试3BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4449. this.txt测试3BIN10占比上限百分比.Name = "txt测试3BIN10占比上限百分比";
  4450. this.txt测试3BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4451. this.txt测试3BIN10占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[10]", NodeType.REAL, null);
  4452. this.txt测试3BIN10占比上限百分比.ShowText = false;
  4453. this.txt测试3BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4454. this.txt测试3BIN10占比上限百分比.TabIndex = 190;
  4455. this.txt测试3BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4456. this.txt测试3BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4457. this.txt测试3BIN10占比上限百分比.Watermark = "";
  4458. this.txt测试3BIN10占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[10]", NodeType.REAL, null);
  4459. //
  4460. // txt测试3BIN9占比上限百分比
  4461. //
  4462. this.txt测试3BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4463. this.txt测试3BIN9占比上限百分比.DisabilityTriggerNode = null;
  4464. this.txt测试3BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4465. this.txt测试3BIN9占比上限百分比.Gain = 1D;
  4466. this.txt测试3BIN9占比上限百分比.IntegerDigits = 0;
  4467. this.txt测试3BIN9占比上限百分比.InvisibilityTriggerNode = null;
  4468. this.txt测试3BIN9占比上限百分比.Location = new System.Drawing.Point(68, 335);
  4469. this.txt测试3BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4470. this.txt测试3BIN9占比上限百分比.Minimum = 0D;
  4471. this.txt测试3BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4472. this.txt测试3BIN9占比上限百分比.Name = "txt测试3BIN9占比上限百分比";
  4473. this.txt测试3BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4474. this.txt测试3BIN9占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[9]", NodeType.REAL, null);
  4475. this.txt测试3BIN9占比上限百分比.ShowText = false;
  4476. this.txt测试3BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4477. this.txt测试3BIN9占比上限百分比.TabIndex = 188;
  4478. this.txt测试3BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4479. this.txt测试3BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4480. this.txt测试3BIN9占比上限百分比.Watermark = "";
  4481. this.txt测试3BIN9占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[9]", NodeType.REAL, null);
  4482. //
  4483. // txt测试3BIN8占比上限百分比
  4484. //
  4485. this.txt测试3BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4486. this.txt测试3BIN8占比上限百分比.DisabilityTriggerNode = null;
  4487. this.txt测试3BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4488. this.txt测试3BIN8占比上限百分比.Gain = 1D;
  4489. this.txt测试3BIN8占比上限百分比.IntegerDigits = 0;
  4490. this.txt测试3BIN8占比上限百分比.InvisibilityTriggerNode = null;
  4491. this.txt测试3BIN8占比上限百分比.Location = new System.Drawing.Point(68, 298);
  4492. this.txt测试3BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4493. this.txt测试3BIN8占比上限百分比.Minimum = 0D;
  4494. this.txt测试3BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4495. this.txt测试3BIN8占比上限百分比.Name = "txt测试3BIN8占比上限百分比";
  4496. this.txt测试3BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4497. this.txt测试3BIN8占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[8]", NodeType.REAL, null);
  4498. this.txt测试3BIN8占比上限百分比.ShowText = false;
  4499. this.txt测试3BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4500. this.txt测试3BIN8占比上限百分比.TabIndex = 186;
  4501. this.txt测试3BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4502. this.txt测试3BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4503. this.txt测试3BIN8占比上限百分比.Watermark = "";
  4504. this.txt测试3BIN8占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[8]", NodeType.REAL, null);
  4505. //
  4506. // txt测试3BIN7占比上限百分比
  4507. //
  4508. this.txt测试3BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4509. this.txt测试3BIN7占比上限百分比.DisabilityTriggerNode = null;
  4510. this.txt测试3BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4511. this.txt测试3BIN7占比上限百分比.Gain = 1D;
  4512. this.txt测试3BIN7占比上限百分比.IntegerDigits = 0;
  4513. this.txt测试3BIN7占比上限百分比.InvisibilityTriggerNode = null;
  4514. this.txt测试3BIN7占比上限百分比.Location = new System.Drawing.Point(68, 261);
  4515. this.txt测试3BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4516. this.txt测试3BIN7占比上限百分比.Minimum = 0D;
  4517. this.txt测试3BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4518. this.txt测试3BIN7占比上限百分比.Name = "txt测试3BIN7占比上限百分比";
  4519. this.txt测试3BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4520. this.txt测试3BIN7占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[7]", NodeType.REAL, null);
  4521. this.txt测试3BIN7占比上限百分比.ShowText = false;
  4522. this.txt测试3BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4523. this.txt测试3BIN7占比上限百分比.TabIndex = 184;
  4524. this.txt测试3BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4525. this.txt测试3BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4526. this.txt测试3BIN7占比上限百分比.Watermark = "";
  4527. this.txt测试3BIN7占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[7]", NodeType.REAL, null);
  4528. //
  4529. // txt测试3BIN6占比上限百分比
  4530. //
  4531. this.txt测试3BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4532. this.txt测试3BIN6占比上限百分比.DisabilityTriggerNode = null;
  4533. this.txt测试3BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4534. this.txt测试3BIN6占比上限百分比.Gain = 1D;
  4535. this.txt测试3BIN6占比上限百分比.IntegerDigits = 0;
  4536. this.txt测试3BIN6占比上限百分比.InvisibilityTriggerNode = null;
  4537. this.txt测试3BIN6占比上限百分比.Location = new System.Drawing.Point(68, 224);
  4538. this.txt测试3BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4539. this.txt测试3BIN6占比上限百分比.Minimum = 0D;
  4540. this.txt测试3BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4541. this.txt测试3BIN6占比上限百分比.Name = "txt测试3BIN6占比上限百分比";
  4542. this.txt测试3BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4543. this.txt测试3BIN6占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[6]", NodeType.REAL, null);
  4544. this.txt测试3BIN6占比上限百分比.ShowText = false;
  4545. this.txt测试3BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4546. this.txt测试3BIN6占比上限百分比.TabIndex = 182;
  4547. this.txt测试3BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4548. this.txt测试3BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4549. this.txt测试3BIN6占比上限百分比.Watermark = "";
  4550. this.txt测试3BIN6占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[6]", NodeType.REAL, null);
  4551. //
  4552. // txt测试3BIN5占比上限百分比
  4553. //
  4554. this.txt测试3BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4555. this.txt测试3BIN5占比上限百分比.DisabilityTriggerNode = null;
  4556. this.txt测试3BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4557. this.txt测试3BIN5占比上限百分比.Gain = 1D;
  4558. this.txt测试3BIN5占比上限百分比.IntegerDigits = 0;
  4559. this.txt测试3BIN5占比上限百分比.InvisibilityTriggerNode = null;
  4560. this.txt测试3BIN5占比上限百分比.Location = new System.Drawing.Point(68, 187);
  4561. this.txt测试3BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4562. this.txt测试3BIN5占比上限百分比.Minimum = 0D;
  4563. this.txt测试3BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4564. this.txt测试3BIN5占比上限百分比.Name = "txt测试3BIN5占比上限百分比";
  4565. this.txt测试3BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4566. this.txt测试3BIN5占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[5]", NodeType.REAL, null);
  4567. this.txt测试3BIN5占比上限百分比.ShowText = false;
  4568. this.txt测试3BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4569. this.txt测试3BIN5占比上限百分比.TabIndex = 180;
  4570. this.txt测试3BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4571. this.txt测试3BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4572. this.txt测试3BIN5占比上限百分比.Watermark = "";
  4573. this.txt测试3BIN5占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[5]", NodeType.REAL, null);
  4574. //
  4575. // txt测试3BIN4占比上限百分比
  4576. //
  4577. this.txt测试3BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4578. this.txt测试3BIN4占比上限百分比.DisabilityTriggerNode = null;
  4579. this.txt测试3BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4580. this.txt测试3BIN4占比上限百分比.Gain = 1D;
  4581. this.txt测试3BIN4占比上限百分比.IntegerDigits = 0;
  4582. this.txt测试3BIN4占比上限百分比.InvisibilityTriggerNode = null;
  4583. this.txt测试3BIN4占比上限百分比.Location = new System.Drawing.Point(68, 150);
  4584. this.txt测试3BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4585. this.txt测试3BIN4占比上限百分比.Minimum = 0D;
  4586. this.txt测试3BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4587. this.txt测试3BIN4占比上限百分比.Name = "txt测试3BIN4占比上限百分比";
  4588. this.txt测试3BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4589. this.txt测试3BIN4占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[4]", NodeType.REAL, null);
  4590. this.txt测试3BIN4占比上限百分比.ShowText = false;
  4591. this.txt测试3BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4592. this.txt测试3BIN4占比上限百分比.TabIndex = 178;
  4593. this.txt测试3BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4594. this.txt测试3BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4595. this.txt测试3BIN4占比上限百分比.Watermark = "";
  4596. this.txt测试3BIN4占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[4]", NodeType.REAL, null);
  4597. //
  4598. // txt测试3BIN3占比上限百分比
  4599. //
  4600. this.txt测试3BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4601. this.txt测试3BIN3占比上限百分比.DisabilityTriggerNode = null;
  4602. this.txt测试3BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4603. this.txt测试3BIN3占比上限百分比.Gain = 1D;
  4604. this.txt测试3BIN3占比上限百分比.IntegerDigits = 0;
  4605. this.txt测试3BIN3占比上限百分比.InvisibilityTriggerNode = null;
  4606. this.txt测试3BIN3占比上限百分比.Location = new System.Drawing.Point(68, 113);
  4607. this.txt测试3BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4608. this.txt测试3BIN3占比上限百分比.Minimum = 0D;
  4609. this.txt测试3BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4610. this.txt测试3BIN3占比上限百分比.Name = "txt测试3BIN3占比上限百分比";
  4611. this.txt测试3BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4612. this.txt测试3BIN3占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[3]", NodeType.REAL, null);
  4613. this.txt测试3BIN3占比上限百分比.ShowText = false;
  4614. this.txt测试3BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4615. this.txt测试3BIN3占比上限百分比.TabIndex = 176;
  4616. this.txt测试3BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4617. this.txt测试3BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4618. this.txt测试3BIN3占比上限百分比.Watermark = "";
  4619. this.txt测试3BIN3占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[3]", NodeType.REAL, null);
  4620. //
  4621. // plcUiNumberDisplay73
  4622. //
  4623. this.plcUiNumberDisplay73.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4624. this.plcUiNumberDisplay73.DecimalPlaces = 0;
  4625. this.plcUiNumberDisplay73.DisabilityTriggerNode = null;
  4626. this.plcUiNumberDisplay73.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4627. this.plcUiNumberDisplay73.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4628. this.plcUiNumberDisplay73.Gain = 1D;
  4629. this.plcUiNumberDisplay73.IntegerDigits = 0;
  4630. this.plcUiNumberDisplay73.InvisibilityTriggerNode = null;
  4631. this.plcUiNumberDisplay73.Location = new System.Drawing.Point(155, 76);
  4632. this.plcUiNumberDisplay73.Name = "plcUiNumberDisplay73";
  4633. this.plcUiNumberDisplay73.Preffix = null;
  4634. this.plcUiNumberDisplay73.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[2]", NodeType.UDINT, null);
  4635. this.plcUiNumberDisplay73.Size = new System.Drawing.Size(80, 27);
  4636. this.plcUiNumberDisplay73.Suffix = null;
  4637. this.plcUiNumberDisplay73.TabIndex = 175;
  4638. this.plcUiNumberDisplay73.Text = "1";
  4639. this.plcUiNumberDisplay73.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4640. this.plcUiNumberDisplay73.WriteNode = null;
  4641. //
  4642. // plcUiNumberDisplay74
  4643. //
  4644. this.plcUiNumberDisplay74.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4645. this.plcUiNumberDisplay74.DecimalPlaces = 0;
  4646. this.plcUiNumberDisplay74.DisabilityTriggerNode = null;
  4647. this.plcUiNumberDisplay74.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4648. this.plcUiNumberDisplay74.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4649. this.plcUiNumberDisplay74.Gain = 1D;
  4650. this.plcUiNumberDisplay74.IntegerDigits = 0;
  4651. this.plcUiNumberDisplay74.InvisibilityTriggerNode = null;
  4652. this.plcUiNumberDisplay74.Location = new System.Drawing.Point(155, 39);
  4653. this.plcUiNumberDisplay74.Name = "plcUiNumberDisplay74";
  4654. this.plcUiNumberDisplay74.Preffix = null;
  4655. this.plcUiNumberDisplay74.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_Bin结果统计[1]", NodeType.UDINT, null);
  4656. this.plcUiNumberDisplay74.Size = new System.Drawing.Size(80, 27);
  4657. this.plcUiNumberDisplay74.Suffix = null;
  4658. this.plcUiNumberDisplay74.TabIndex = 173;
  4659. this.plcUiNumberDisplay74.Text = "1";
  4660. this.plcUiNumberDisplay74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4661. this.plcUiNumberDisplay74.WriteNode = null;
  4662. //
  4663. // plcUiNumberDisplay75
  4664. //
  4665. this.plcUiNumberDisplay75.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4666. this.plcUiNumberDisplay75.DecimalPlaces = 0;
  4667. this.plcUiNumberDisplay75.DisabilityTriggerNode = null;
  4668. this.plcUiNumberDisplay75.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4669. this.plcUiNumberDisplay75.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4670. this.plcUiNumberDisplay75.Gain = 1D;
  4671. this.plcUiNumberDisplay75.IntegerDigits = 0;
  4672. this.plcUiNumberDisplay75.InvisibilityTriggerNode = null;
  4673. this.plcUiNumberDisplay75.Location = new System.Drawing.Point(155, 485);
  4674. this.plcUiNumberDisplay75.Name = "plcUiNumberDisplay75";
  4675. this.plcUiNumberDisplay75.Preffix = null;
  4676. this.plcUiNumberDisplay75.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  4677. this.plcUiNumberDisplay75.Size = new System.Drawing.Size(80, 27);
  4678. this.plcUiNumberDisplay75.Suffix = null;
  4679. this.plcUiNumberDisplay75.TabIndex = 171;
  4680. this.plcUiNumberDisplay75.Text = "1";
  4681. this.plcUiNumberDisplay75.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4682. this.plcUiNumberDisplay75.WriteNode = null;
  4683. //
  4684. // txt测试3BIN2占比上限百分比
  4685. //
  4686. this.txt测试3BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4687. this.txt测试3BIN2占比上限百分比.DisabilityTriggerNode = null;
  4688. this.txt测试3BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4689. this.txt测试3BIN2占比上限百分比.Gain = 1D;
  4690. this.txt测试3BIN2占比上限百分比.IntegerDigits = 0;
  4691. this.txt测试3BIN2占比上限百分比.InvisibilityTriggerNode = null;
  4692. this.txt测试3BIN2占比上限百分比.Location = new System.Drawing.Point(68, 76);
  4693. this.txt测试3BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4694. this.txt测试3BIN2占比上限百分比.Minimum = 0D;
  4695. this.txt测试3BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4696. this.txt测试3BIN2占比上限百分比.Name = "txt测试3BIN2占比上限百分比";
  4697. this.txt测试3BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4698. this.txt测试3BIN2占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[2]", NodeType.REAL, null);
  4699. this.txt测试3BIN2占比上限百分比.ShowText = false;
  4700. this.txt测试3BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4701. this.txt测试3BIN2占比上限百分比.TabIndex = 169;
  4702. this.txt测试3BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4703. this.txt测试3BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4704. this.txt测试3BIN2占比上限百分比.Watermark = "";
  4705. this.txt测试3BIN2占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[2]", NodeType.REAL, null);
  4706. //
  4707. // txt测试3统计起始数量
  4708. //
  4709. this.txt测试3统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  4710. this.txt测试3统计起始数量.DisabilityTriggerNode = null;
  4711. this.txt测试3统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4712. this.txt测试3统计起始数量.Gain = 1D;
  4713. this.txt测试3统计起始数量.IntegerDigits = 0;
  4714. this.txt测试3统计起始数量.InvisibilityTriggerNode = null;
  4715. this.txt测试3统计起始数量.Location = new System.Drawing.Point(155, 517);
  4716. this.txt测试3统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4717. this.txt测试3统计起始数量.Minimum = 0D;
  4718. this.txt测试3统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  4719. this.txt测试3统计起始数量.Name = "txt测试3统计起始数量";
  4720. this.txt测试3统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  4721. this.txt测试3统计起始数量.ReadNode = new Node("Application.A06_TestStation_Auto.udi测试3_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  4722. this.txt测试3统计起始数量.ShowText = false;
  4723. this.txt测试3统计起始数量.Size = new System.Drawing.Size(80, 27);
  4724. this.txt测试3统计起始数量.TabIndex = 166;
  4725. this.txt测试3统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4726. this.txt测试3统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  4727. this.txt测试3统计起始数量.Watermark = "";
  4728. this.txt测试3统计起始数量.WriteNode = new Node("Application.A06_TestStation_Auto.udi测试3_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  4729. //
  4730. // txt测试3BIN1占比上限百分比
  4731. //
  4732. this.txt测试3BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  4733. this.txt测试3BIN1占比上限百分比.DisabilityTriggerNode = null;
  4734. this.txt测试3BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4735. this.txt测试3BIN1占比上限百分比.Gain = 1D;
  4736. this.txt测试3BIN1占比上限百分比.IntegerDigits = 0;
  4737. this.txt测试3BIN1占比上限百分比.InvisibilityTriggerNode = null;
  4738. this.txt测试3BIN1占比上限百分比.Location = new System.Drawing.Point(68, 39);
  4739. this.txt测试3BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  4740. this.txt测试3BIN1占比上限百分比.Minimum = 0D;
  4741. this.txt测试3BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  4742. this.txt测试3BIN1占比上限百分比.Name = "txt测试3BIN1占比上限百分比";
  4743. this.txt测试3BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  4744. this.txt测试3BIN1占比上限百分比.ReadNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[1]", NodeType.REAL, null);
  4745. this.txt测试3BIN1占比上限百分比.ShowText = false;
  4746. this.txt测试3BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  4747. this.txt测试3BIN1占比上限百分比.TabIndex = 164;
  4748. this.txt测试3BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  4749. this.txt测试3BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  4750. this.txt测试3BIN1占比上限百分比.Watermark = "";
  4751. this.txt测试3BIN1占比上限百分比.WriteNode = new Node("Application.A06_TestStation_Auto.r测试3_Bin结果报警比率设定[1]", NodeType.REAL, null);
  4752. //
  4753. // tabPage4
  4754. //
  4755. this.tabPage4.Controls.Add(this.plcUiNumberDisplay89);
  4756. this.tabPage4.Controls.Add(this.plcUiNumberDisplay90);
  4757. this.tabPage4.Controls.Add(this.plcUiNumberDisplay91);
  4758. this.tabPage4.Controls.Add(this.plcUiNumberDisplay92);
  4759. this.tabPage4.Controls.Add(this.plcUiNumberDisplay93);
  4760. this.tabPage4.Controls.Add(this.plcUiNumberDisplay94);
  4761. this.tabPage4.Controls.Add(this.plcUiNumberDisplay95);
  4762. this.tabPage4.Controls.Add(this.plcUiNumberDisplay96);
  4763. this.tabPage4.Controls.Add(this.plcUiNumberDisplay97);
  4764. this.tabPage4.Controls.Add(this.plcUiNumberDisplay98);
  4765. this.tabPage4.Controls.Add(this.plcUiNumberDisplay99);
  4766. this.tabPage4.Controls.Add(this.plcUiNumberDisplay100);
  4767. this.tabPage4.Controls.Add(this.plcUiNumberDisplay76);
  4768. this.tabPage4.Controls.Add(this.plcUiNumberDisplay77);
  4769. this.tabPage4.Controls.Add(this.plcUiNumberDisplay78);
  4770. this.tabPage4.Controls.Add(this.plcUiNumberDisplay79);
  4771. this.tabPage4.Controls.Add(this.plcUiNumberDisplay80);
  4772. this.tabPage4.Controls.Add(this.plcUiNumberDisplay81);
  4773. this.tabPage4.Controls.Add(this.plcUiNumberDisplay82);
  4774. this.tabPage4.Controls.Add(this.plcUiNumberDisplay83);
  4775. this.tabPage4.Controls.Add(this.plcUiNumberDisplay84);
  4776. this.tabPage4.Controls.Add(this.plcUiNumberDisplay85);
  4777. this.tabPage4.Controls.Add(this.plcUiNumberDisplay86);
  4778. this.tabPage4.Controls.Add(this.plcUiNumberDisplay87);
  4779. this.tabPage4.Controls.Add(this.plcUiNumberDisplay88);
  4780. this.tabPage4.Controls.Add(this.txt测试4统计起始数量);
  4781. this.tabPage4.Controls.Add(this.txt测试4BIN12占比上限百分比);
  4782. this.tabPage4.Controls.Add(this.txt测试4BIN11占比上限百分比);
  4783. this.tabPage4.Controls.Add(this.txt测试4BIN10占比上限百分比);
  4784. this.tabPage4.Controls.Add(this.txt测试4BIN9占比上限百分比);
  4785. this.tabPage4.Controls.Add(this.txt测试4BIN8占比上限百分比);
  4786. this.tabPage4.Controls.Add(this.txt测试4BIN7占比上限百分比);
  4787. this.tabPage4.Controls.Add(this.txt测试4BIN6占比上限百分比);
  4788. this.tabPage4.Controls.Add(this.txt测试4BIN5占比上限百分比);
  4789. this.tabPage4.Controls.Add(this.txt测试4BIN4占比上限百分比);
  4790. this.tabPage4.Controls.Add(this.txt测试4BIN3占比上限百分比);
  4791. this.tabPage4.Controls.Add(this.txt测试4BIN2占比上限百分比);
  4792. this.tabPage4.Controls.Add(this.txt测试4BIN1占比上限百分比);
  4793. this.tabPage4.Controls.Add(this.uiLabel38);
  4794. this.tabPage4.Controls.Add(this.uiLabel39);
  4795. this.tabPage4.Controls.Add(this.uiLabel40);
  4796. this.tabPage4.Controls.Add(this.uiLabel41);
  4797. this.tabPage4.Controls.Add(this.uiLabel42);
  4798. this.tabPage4.Controls.Add(this.uiLabel43);
  4799. this.tabPage4.Controls.Add(this.uiLabel44);
  4800. this.tabPage4.Controls.Add(this.uiLabel45);
  4801. this.tabPage4.Controls.Add(this.uiLabel46);
  4802. this.tabPage4.Controls.Add(this.uiLabel51);
  4803. this.tabPage4.Controls.Add(this.uiLabel52);
  4804. this.tabPage4.Controls.Add(this.uiLabel53);
  4805. this.tabPage4.Controls.Add(this.uiLabel54);
  4806. this.tabPage4.Controls.Add(this.uiLabel55);
  4807. this.tabPage4.Controls.Add(this.uiLabel56);
  4808. this.tabPage4.Controls.Add(this.uiLabel57);
  4809. this.tabPage4.Controls.Add(this.uiLabel58);
  4810. this.tabPage4.Location = new System.Drawing.Point(0, 40);
  4811. this.tabPage4.Name = "tabPage4";
  4812. this.tabPage4.Size = new System.Drawing.Size(569, 560);
  4813. this.tabPage4.TabIndex = 3;
  4814. this.tabPage4.Text = "测试4";
  4815. this.tabPage4.UseVisualStyleBackColor = true;
  4816. //
  4817. // plcUiNumberDisplay89
  4818. //
  4819. this.plcUiNumberDisplay89.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4820. this.plcUiNumberDisplay89.DecimalPlaces = 2;
  4821. this.plcUiNumberDisplay89.DisabilityTriggerNode = null;
  4822. this.plcUiNumberDisplay89.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4823. this.plcUiNumberDisplay89.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4824. this.plcUiNumberDisplay89.Gain = 1D;
  4825. this.plcUiNumberDisplay89.IntegerDigits = 0;
  4826. this.plcUiNumberDisplay89.InvisibilityTriggerNode = null;
  4827. this.plcUiNumberDisplay89.Location = new System.Drawing.Point(247, 446);
  4828. this.plcUiNumberDisplay89.Name = "plcUiNumberDisplay89";
  4829. this.plcUiNumberDisplay89.Preffix = null;
  4830. this.plcUiNumberDisplay89.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[12]", NodeType.REAL, null);
  4831. this.plcUiNumberDisplay89.Size = new System.Drawing.Size(80, 27);
  4832. this.plcUiNumberDisplay89.Suffix = "%";
  4833. this.plcUiNumberDisplay89.TabIndex = 349;
  4834. this.plcUiNumberDisplay89.Text = "1.00";
  4835. this.plcUiNumberDisplay89.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4836. this.plcUiNumberDisplay89.WriteNode = null;
  4837. //
  4838. // plcUiNumberDisplay90
  4839. //
  4840. this.plcUiNumberDisplay90.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4841. this.plcUiNumberDisplay90.DecimalPlaces = 2;
  4842. this.plcUiNumberDisplay90.DisabilityTriggerNode = null;
  4843. this.plcUiNumberDisplay90.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4844. this.plcUiNumberDisplay90.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4845. this.plcUiNumberDisplay90.Gain = 1D;
  4846. this.plcUiNumberDisplay90.IntegerDigits = 0;
  4847. this.plcUiNumberDisplay90.InvisibilityTriggerNode = null;
  4848. this.plcUiNumberDisplay90.Location = new System.Drawing.Point(247, 409);
  4849. this.plcUiNumberDisplay90.Name = "plcUiNumberDisplay90";
  4850. this.plcUiNumberDisplay90.Preffix = null;
  4851. this.plcUiNumberDisplay90.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[11]", NodeType.REAL, null);
  4852. this.plcUiNumberDisplay90.Size = new System.Drawing.Size(80, 27);
  4853. this.plcUiNumberDisplay90.Suffix = "%";
  4854. this.plcUiNumberDisplay90.TabIndex = 348;
  4855. this.plcUiNumberDisplay90.Text = "1.00";
  4856. this.plcUiNumberDisplay90.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4857. this.plcUiNumberDisplay90.WriteNode = null;
  4858. //
  4859. // plcUiNumberDisplay91
  4860. //
  4861. this.plcUiNumberDisplay91.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4862. this.plcUiNumberDisplay91.DecimalPlaces = 2;
  4863. this.plcUiNumberDisplay91.DisabilityTriggerNode = null;
  4864. this.plcUiNumberDisplay91.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4865. this.plcUiNumberDisplay91.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4866. this.plcUiNumberDisplay91.Gain = 1D;
  4867. this.plcUiNumberDisplay91.IntegerDigits = 0;
  4868. this.plcUiNumberDisplay91.InvisibilityTriggerNode = null;
  4869. this.plcUiNumberDisplay91.Location = new System.Drawing.Point(247, 372);
  4870. this.plcUiNumberDisplay91.Name = "plcUiNumberDisplay91";
  4871. this.plcUiNumberDisplay91.Preffix = null;
  4872. this.plcUiNumberDisplay91.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[10]", NodeType.REAL, null);
  4873. this.plcUiNumberDisplay91.Size = new System.Drawing.Size(80, 27);
  4874. this.plcUiNumberDisplay91.Suffix = "%";
  4875. this.plcUiNumberDisplay91.TabIndex = 347;
  4876. this.plcUiNumberDisplay91.Text = "1.00";
  4877. this.plcUiNumberDisplay91.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4878. this.plcUiNumberDisplay91.WriteNode = null;
  4879. //
  4880. // plcUiNumberDisplay92
  4881. //
  4882. this.plcUiNumberDisplay92.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4883. this.plcUiNumberDisplay92.DecimalPlaces = 2;
  4884. this.plcUiNumberDisplay92.DisabilityTriggerNode = null;
  4885. this.plcUiNumberDisplay92.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4886. this.plcUiNumberDisplay92.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4887. this.plcUiNumberDisplay92.Gain = 1D;
  4888. this.plcUiNumberDisplay92.IntegerDigits = 0;
  4889. this.plcUiNumberDisplay92.InvisibilityTriggerNode = null;
  4890. this.plcUiNumberDisplay92.Location = new System.Drawing.Point(247, 335);
  4891. this.plcUiNumberDisplay92.Name = "plcUiNumberDisplay92";
  4892. this.plcUiNumberDisplay92.Preffix = null;
  4893. this.plcUiNumberDisplay92.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[9]", NodeType.REAL, null);
  4894. this.plcUiNumberDisplay92.Size = new System.Drawing.Size(80, 27);
  4895. this.plcUiNumberDisplay92.Suffix = "%";
  4896. this.plcUiNumberDisplay92.TabIndex = 346;
  4897. this.plcUiNumberDisplay92.Text = "1.00";
  4898. this.plcUiNumberDisplay92.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4899. this.plcUiNumberDisplay92.WriteNode = null;
  4900. //
  4901. // plcUiNumberDisplay93
  4902. //
  4903. this.plcUiNumberDisplay93.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4904. this.plcUiNumberDisplay93.DecimalPlaces = 2;
  4905. this.plcUiNumberDisplay93.DisabilityTriggerNode = null;
  4906. this.plcUiNumberDisplay93.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4907. this.plcUiNumberDisplay93.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4908. this.plcUiNumberDisplay93.Gain = 1D;
  4909. this.plcUiNumberDisplay93.IntegerDigits = 0;
  4910. this.plcUiNumberDisplay93.InvisibilityTriggerNode = null;
  4911. this.plcUiNumberDisplay93.Location = new System.Drawing.Point(247, 298);
  4912. this.plcUiNumberDisplay93.Name = "plcUiNumberDisplay93";
  4913. this.plcUiNumberDisplay93.Preffix = null;
  4914. this.plcUiNumberDisplay93.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[8]", NodeType.REAL, null);
  4915. this.plcUiNumberDisplay93.Size = new System.Drawing.Size(80, 27);
  4916. this.plcUiNumberDisplay93.Suffix = "%";
  4917. this.plcUiNumberDisplay93.TabIndex = 345;
  4918. this.plcUiNumberDisplay93.Text = "1.00";
  4919. this.plcUiNumberDisplay93.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4920. this.plcUiNumberDisplay93.WriteNode = null;
  4921. //
  4922. // plcUiNumberDisplay94
  4923. //
  4924. this.plcUiNumberDisplay94.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4925. this.plcUiNumberDisplay94.DecimalPlaces = 2;
  4926. this.plcUiNumberDisplay94.DisabilityTriggerNode = null;
  4927. this.plcUiNumberDisplay94.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4928. this.plcUiNumberDisplay94.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4929. this.plcUiNumberDisplay94.Gain = 1D;
  4930. this.plcUiNumberDisplay94.IntegerDigits = 0;
  4931. this.plcUiNumberDisplay94.InvisibilityTriggerNode = null;
  4932. this.plcUiNumberDisplay94.Location = new System.Drawing.Point(247, 261);
  4933. this.plcUiNumberDisplay94.Name = "plcUiNumberDisplay94";
  4934. this.plcUiNumberDisplay94.Preffix = null;
  4935. this.plcUiNumberDisplay94.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[7]", NodeType.REAL, null);
  4936. this.plcUiNumberDisplay94.Size = new System.Drawing.Size(80, 27);
  4937. this.plcUiNumberDisplay94.Suffix = "%";
  4938. this.plcUiNumberDisplay94.TabIndex = 344;
  4939. this.plcUiNumberDisplay94.Text = "1.00";
  4940. this.plcUiNumberDisplay94.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4941. this.plcUiNumberDisplay94.WriteNode = null;
  4942. //
  4943. // plcUiNumberDisplay95
  4944. //
  4945. this.plcUiNumberDisplay95.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4946. this.plcUiNumberDisplay95.DecimalPlaces = 2;
  4947. this.plcUiNumberDisplay95.DisabilityTriggerNode = null;
  4948. this.plcUiNumberDisplay95.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4949. this.plcUiNumberDisplay95.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4950. this.plcUiNumberDisplay95.Gain = 1D;
  4951. this.plcUiNumberDisplay95.IntegerDigits = 0;
  4952. this.plcUiNumberDisplay95.InvisibilityTriggerNode = null;
  4953. this.plcUiNumberDisplay95.Location = new System.Drawing.Point(247, 224);
  4954. this.plcUiNumberDisplay95.Name = "plcUiNumberDisplay95";
  4955. this.plcUiNumberDisplay95.Preffix = null;
  4956. this.plcUiNumberDisplay95.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[6]", NodeType.REAL, null);
  4957. this.plcUiNumberDisplay95.Size = new System.Drawing.Size(80, 27);
  4958. this.plcUiNumberDisplay95.Suffix = "%";
  4959. this.plcUiNumberDisplay95.TabIndex = 343;
  4960. this.plcUiNumberDisplay95.Text = "1.00";
  4961. this.plcUiNumberDisplay95.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4962. this.plcUiNumberDisplay95.WriteNode = null;
  4963. //
  4964. // plcUiNumberDisplay96
  4965. //
  4966. this.plcUiNumberDisplay96.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4967. this.plcUiNumberDisplay96.DecimalPlaces = 2;
  4968. this.plcUiNumberDisplay96.DisabilityTriggerNode = null;
  4969. this.plcUiNumberDisplay96.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4970. this.plcUiNumberDisplay96.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4971. this.plcUiNumberDisplay96.Gain = 1D;
  4972. this.plcUiNumberDisplay96.IntegerDigits = 0;
  4973. this.plcUiNumberDisplay96.InvisibilityTriggerNode = null;
  4974. this.plcUiNumberDisplay96.Location = new System.Drawing.Point(247, 187);
  4975. this.plcUiNumberDisplay96.Name = "plcUiNumberDisplay96";
  4976. this.plcUiNumberDisplay96.Preffix = null;
  4977. this.plcUiNumberDisplay96.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[5]", NodeType.REAL, null);
  4978. this.plcUiNumberDisplay96.Size = new System.Drawing.Size(80, 27);
  4979. this.plcUiNumberDisplay96.Suffix = "%";
  4980. this.plcUiNumberDisplay96.TabIndex = 342;
  4981. this.plcUiNumberDisplay96.Text = "1.00";
  4982. this.plcUiNumberDisplay96.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4983. this.plcUiNumberDisplay96.WriteNode = null;
  4984. //
  4985. // plcUiNumberDisplay97
  4986. //
  4987. this.plcUiNumberDisplay97.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4988. this.plcUiNumberDisplay97.DecimalPlaces = 2;
  4989. this.plcUiNumberDisplay97.DisabilityTriggerNode = null;
  4990. this.plcUiNumberDisplay97.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4991. this.plcUiNumberDisplay97.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  4992. this.plcUiNumberDisplay97.Gain = 1D;
  4993. this.plcUiNumberDisplay97.IntegerDigits = 0;
  4994. this.plcUiNumberDisplay97.InvisibilityTriggerNode = null;
  4995. this.plcUiNumberDisplay97.Location = new System.Drawing.Point(247, 150);
  4996. this.plcUiNumberDisplay97.Name = "plcUiNumberDisplay97";
  4997. this.plcUiNumberDisplay97.Preffix = null;
  4998. this.plcUiNumberDisplay97.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[4]", NodeType.REAL, null);
  4999. this.plcUiNumberDisplay97.Size = new System.Drawing.Size(80, 27);
  5000. this.plcUiNumberDisplay97.Suffix = "%";
  5001. this.plcUiNumberDisplay97.TabIndex = 341;
  5002. this.plcUiNumberDisplay97.Text = "1.00";
  5003. this.plcUiNumberDisplay97.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5004. this.plcUiNumberDisplay97.WriteNode = null;
  5005. //
  5006. // plcUiNumberDisplay98
  5007. //
  5008. this.plcUiNumberDisplay98.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5009. this.plcUiNumberDisplay98.DecimalPlaces = 2;
  5010. this.plcUiNumberDisplay98.DisabilityTriggerNode = null;
  5011. this.plcUiNumberDisplay98.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5012. this.plcUiNumberDisplay98.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5013. this.plcUiNumberDisplay98.Gain = 1D;
  5014. this.plcUiNumberDisplay98.IntegerDigits = 0;
  5015. this.plcUiNumberDisplay98.InvisibilityTriggerNode = null;
  5016. this.plcUiNumberDisplay98.Location = new System.Drawing.Point(247, 113);
  5017. this.plcUiNumberDisplay98.Name = "plcUiNumberDisplay98";
  5018. this.plcUiNumberDisplay98.Preffix = null;
  5019. this.plcUiNumberDisplay98.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[3]", NodeType.REAL, null);
  5020. this.plcUiNumberDisplay98.Size = new System.Drawing.Size(80, 27);
  5021. this.plcUiNumberDisplay98.Suffix = "%";
  5022. this.plcUiNumberDisplay98.TabIndex = 340;
  5023. this.plcUiNumberDisplay98.Text = "1.00";
  5024. this.plcUiNumberDisplay98.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5025. this.plcUiNumberDisplay98.WriteNode = null;
  5026. //
  5027. // plcUiNumberDisplay99
  5028. //
  5029. this.plcUiNumberDisplay99.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5030. this.plcUiNumberDisplay99.DecimalPlaces = 2;
  5031. this.plcUiNumberDisplay99.DisabilityTriggerNode = null;
  5032. this.plcUiNumberDisplay99.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5033. this.plcUiNumberDisplay99.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5034. this.plcUiNumberDisplay99.Gain = 1D;
  5035. this.plcUiNumberDisplay99.IntegerDigits = 0;
  5036. this.plcUiNumberDisplay99.InvisibilityTriggerNode = null;
  5037. this.plcUiNumberDisplay99.Location = new System.Drawing.Point(247, 75);
  5038. this.plcUiNumberDisplay99.Name = "plcUiNumberDisplay99";
  5039. this.plcUiNumberDisplay99.Preffix = null;
  5040. this.plcUiNumberDisplay99.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[2]", NodeType.REAL, null);
  5041. this.plcUiNumberDisplay99.Size = new System.Drawing.Size(80, 27);
  5042. this.plcUiNumberDisplay99.Suffix = "%";
  5043. this.plcUiNumberDisplay99.TabIndex = 339;
  5044. this.plcUiNumberDisplay99.Text = "1.00";
  5045. this.plcUiNumberDisplay99.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5046. this.plcUiNumberDisplay99.WriteNode = null;
  5047. //
  5048. // plcUiNumberDisplay100
  5049. //
  5050. this.plcUiNumberDisplay100.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5051. this.plcUiNumberDisplay100.DecimalPlaces = 2;
  5052. this.plcUiNumberDisplay100.DisabilityTriggerNode = null;
  5053. this.plcUiNumberDisplay100.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5054. this.plcUiNumberDisplay100.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5055. this.plcUiNumberDisplay100.Gain = 1D;
  5056. this.plcUiNumberDisplay100.IntegerDigits = 0;
  5057. this.plcUiNumberDisplay100.InvisibilityTriggerNode = null;
  5058. this.plcUiNumberDisplay100.Location = new System.Drawing.Point(247, 38);
  5059. this.plcUiNumberDisplay100.Name = "plcUiNumberDisplay100";
  5060. this.plcUiNumberDisplay100.Preffix = null;
  5061. this.plcUiNumberDisplay100.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin当前占比比率[1]", NodeType.REAL, null);
  5062. this.plcUiNumberDisplay100.Size = new System.Drawing.Size(80, 27);
  5063. this.plcUiNumberDisplay100.Suffix = "%";
  5064. this.plcUiNumberDisplay100.TabIndex = 338;
  5065. this.plcUiNumberDisplay100.Text = "1.00";
  5066. this.plcUiNumberDisplay100.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5067. this.plcUiNumberDisplay100.WriteNode = null;
  5068. //
  5069. // plcUiNumberDisplay76
  5070. //
  5071. this.plcUiNumberDisplay76.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5072. this.plcUiNumberDisplay76.DecimalPlaces = 0;
  5073. this.plcUiNumberDisplay76.DisabilityTriggerNode = null;
  5074. this.plcUiNumberDisplay76.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5075. this.plcUiNumberDisplay76.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5076. this.plcUiNumberDisplay76.Gain = 1D;
  5077. this.plcUiNumberDisplay76.IntegerDigits = 0;
  5078. this.plcUiNumberDisplay76.InvisibilityTriggerNode = null;
  5079. this.plcUiNumberDisplay76.Location = new System.Drawing.Point(161, 446);
  5080. this.plcUiNumberDisplay76.Name = "plcUiNumberDisplay76";
  5081. this.plcUiNumberDisplay76.Preffix = null;
  5082. this.plcUiNumberDisplay76.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[12]", NodeType.UDINT, null);
  5083. this.plcUiNumberDisplay76.Size = new System.Drawing.Size(80, 27);
  5084. this.plcUiNumberDisplay76.Suffix = null;
  5085. this.plcUiNumberDisplay76.TabIndex = 337;
  5086. this.plcUiNumberDisplay76.Text = "1";
  5087. this.plcUiNumberDisplay76.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5088. this.plcUiNumberDisplay76.WriteNode = null;
  5089. //
  5090. // plcUiNumberDisplay77
  5091. //
  5092. this.plcUiNumberDisplay77.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5093. this.plcUiNumberDisplay77.DecimalPlaces = 0;
  5094. this.plcUiNumberDisplay77.DisabilityTriggerNode = null;
  5095. this.plcUiNumberDisplay77.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5096. this.plcUiNumberDisplay77.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5097. this.plcUiNumberDisplay77.Gain = 1D;
  5098. this.plcUiNumberDisplay77.IntegerDigits = 0;
  5099. this.plcUiNumberDisplay77.InvisibilityTriggerNode = null;
  5100. this.plcUiNumberDisplay77.Location = new System.Drawing.Point(161, 409);
  5101. this.plcUiNumberDisplay77.Name = "plcUiNumberDisplay77";
  5102. this.plcUiNumberDisplay77.Preffix = null;
  5103. this.plcUiNumberDisplay77.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[11]", NodeType.UDINT, null);
  5104. this.plcUiNumberDisplay77.Size = new System.Drawing.Size(80, 27);
  5105. this.plcUiNumberDisplay77.Suffix = null;
  5106. this.plcUiNumberDisplay77.TabIndex = 336;
  5107. this.plcUiNumberDisplay77.Text = "1";
  5108. this.plcUiNumberDisplay77.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5109. this.plcUiNumberDisplay77.WriteNode = null;
  5110. //
  5111. // plcUiNumberDisplay78
  5112. //
  5113. this.plcUiNumberDisplay78.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5114. this.plcUiNumberDisplay78.DecimalPlaces = 0;
  5115. this.plcUiNumberDisplay78.DisabilityTriggerNode = null;
  5116. this.plcUiNumberDisplay78.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5117. this.plcUiNumberDisplay78.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5118. this.plcUiNumberDisplay78.Gain = 1D;
  5119. this.plcUiNumberDisplay78.IntegerDigits = 0;
  5120. this.plcUiNumberDisplay78.InvisibilityTriggerNode = null;
  5121. this.plcUiNumberDisplay78.Location = new System.Drawing.Point(161, 372);
  5122. this.plcUiNumberDisplay78.Name = "plcUiNumberDisplay78";
  5123. this.plcUiNumberDisplay78.Preffix = null;
  5124. this.plcUiNumberDisplay78.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[10]", NodeType.UDINT, null);
  5125. this.plcUiNumberDisplay78.Size = new System.Drawing.Size(80, 27);
  5126. this.plcUiNumberDisplay78.Suffix = null;
  5127. this.plcUiNumberDisplay78.TabIndex = 335;
  5128. this.plcUiNumberDisplay78.Text = "1";
  5129. this.plcUiNumberDisplay78.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5130. this.plcUiNumberDisplay78.WriteNode = null;
  5131. //
  5132. // plcUiNumberDisplay79
  5133. //
  5134. this.plcUiNumberDisplay79.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5135. this.plcUiNumberDisplay79.DecimalPlaces = 0;
  5136. this.plcUiNumberDisplay79.DisabilityTriggerNode = null;
  5137. this.plcUiNumberDisplay79.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5138. this.plcUiNumberDisplay79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5139. this.plcUiNumberDisplay79.Gain = 1D;
  5140. this.plcUiNumberDisplay79.IntegerDigits = 0;
  5141. this.plcUiNumberDisplay79.InvisibilityTriggerNode = null;
  5142. this.plcUiNumberDisplay79.Location = new System.Drawing.Point(161, 335);
  5143. this.plcUiNumberDisplay79.Name = "plcUiNumberDisplay79";
  5144. this.plcUiNumberDisplay79.Preffix = null;
  5145. this.plcUiNumberDisplay79.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[9]", NodeType.UDINT, null);
  5146. this.plcUiNumberDisplay79.Size = new System.Drawing.Size(80, 27);
  5147. this.plcUiNumberDisplay79.Suffix = null;
  5148. this.plcUiNumberDisplay79.TabIndex = 334;
  5149. this.plcUiNumberDisplay79.Text = "1";
  5150. this.plcUiNumberDisplay79.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5151. this.plcUiNumberDisplay79.WriteNode = null;
  5152. //
  5153. // plcUiNumberDisplay80
  5154. //
  5155. this.plcUiNumberDisplay80.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5156. this.plcUiNumberDisplay80.DecimalPlaces = 0;
  5157. this.plcUiNumberDisplay80.DisabilityTriggerNode = null;
  5158. this.plcUiNumberDisplay80.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5159. this.plcUiNumberDisplay80.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5160. this.plcUiNumberDisplay80.Gain = 1D;
  5161. this.plcUiNumberDisplay80.IntegerDigits = 0;
  5162. this.plcUiNumberDisplay80.InvisibilityTriggerNode = null;
  5163. this.plcUiNumberDisplay80.Location = new System.Drawing.Point(161, 298);
  5164. this.plcUiNumberDisplay80.Name = "plcUiNumberDisplay80";
  5165. this.plcUiNumberDisplay80.Preffix = null;
  5166. this.plcUiNumberDisplay80.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[8]", NodeType.UDINT, null);
  5167. this.plcUiNumberDisplay80.Size = new System.Drawing.Size(80, 27);
  5168. this.plcUiNumberDisplay80.Suffix = null;
  5169. this.plcUiNumberDisplay80.TabIndex = 333;
  5170. this.plcUiNumberDisplay80.Text = "1";
  5171. this.plcUiNumberDisplay80.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5172. this.plcUiNumberDisplay80.WriteNode = null;
  5173. //
  5174. // plcUiNumberDisplay81
  5175. //
  5176. this.plcUiNumberDisplay81.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5177. this.plcUiNumberDisplay81.DecimalPlaces = 0;
  5178. this.plcUiNumberDisplay81.DisabilityTriggerNode = null;
  5179. this.plcUiNumberDisplay81.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5180. this.plcUiNumberDisplay81.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5181. this.plcUiNumberDisplay81.Gain = 1D;
  5182. this.plcUiNumberDisplay81.IntegerDigits = 0;
  5183. this.plcUiNumberDisplay81.InvisibilityTriggerNode = null;
  5184. this.plcUiNumberDisplay81.Location = new System.Drawing.Point(161, 261);
  5185. this.plcUiNumberDisplay81.Name = "plcUiNumberDisplay81";
  5186. this.plcUiNumberDisplay81.Preffix = null;
  5187. this.plcUiNumberDisplay81.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[7]", NodeType.UDINT, null);
  5188. this.plcUiNumberDisplay81.Size = new System.Drawing.Size(80, 27);
  5189. this.plcUiNumberDisplay81.Suffix = null;
  5190. this.plcUiNumberDisplay81.TabIndex = 332;
  5191. this.plcUiNumberDisplay81.Text = "1";
  5192. this.plcUiNumberDisplay81.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5193. this.plcUiNumberDisplay81.WriteNode = null;
  5194. //
  5195. // plcUiNumberDisplay82
  5196. //
  5197. this.plcUiNumberDisplay82.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5198. this.plcUiNumberDisplay82.DecimalPlaces = 0;
  5199. this.plcUiNumberDisplay82.DisabilityTriggerNode = null;
  5200. this.plcUiNumberDisplay82.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5201. this.plcUiNumberDisplay82.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5202. this.plcUiNumberDisplay82.Gain = 1D;
  5203. this.plcUiNumberDisplay82.IntegerDigits = 0;
  5204. this.plcUiNumberDisplay82.InvisibilityTriggerNode = null;
  5205. this.plcUiNumberDisplay82.Location = new System.Drawing.Point(161, 224);
  5206. this.plcUiNumberDisplay82.Name = "plcUiNumberDisplay82";
  5207. this.plcUiNumberDisplay82.Preffix = null;
  5208. this.plcUiNumberDisplay82.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[6]", NodeType.UDINT, null);
  5209. this.plcUiNumberDisplay82.Size = new System.Drawing.Size(80, 27);
  5210. this.plcUiNumberDisplay82.Suffix = null;
  5211. this.plcUiNumberDisplay82.TabIndex = 331;
  5212. this.plcUiNumberDisplay82.Text = "1";
  5213. this.plcUiNumberDisplay82.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5214. this.plcUiNumberDisplay82.WriteNode = null;
  5215. //
  5216. // plcUiNumberDisplay83
  5217. //
  5218. this.plcUiNumberDisplay83.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5219. this.plcUiNumberDisplay83.DecimalPlaces = 0;
  5220. this.plcUiNumberDisplay83.DisabilityTriggerNode = null;
  5221. this.plcUiNumberDisplay83.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5222. this.plcUiNumberDisplay83.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5223. this.plcUiNumberDisplay83.Gain = 1D;
  5224. this.plcUiNumberDisplay83.IntegerDigits = 0;
  5225. this.plcUiNumberDisplay83.InvisibilityTriggerNode = null;
  5226. this.plcUiNumberDisplay83.Location = new System.Drawing.Point(161, 187);
  5227. this.plcUiNumberDisplay83.Name = "plcUiNumberDisplay83";
  5228. this.plcUiNumberDisplay83.Preffix = null;
  5229. this.plcUiNumberDisplay83.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[5]", NodeType.UDINT, null);
  5230. this.plcUiNumberDisplay83.Size = new System.Drawing.Size(80, 27);
  5231. this.plcUiNumberDisplay83.Suffix = null;
  5232. this.plcUiNumberDisplay83.TabIndex = 330;
  5233. this.plcUiNumberDisplay83.Text = "1";
  5234. this.plcUiNumberDisplay83.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5235. this.plcUiNumberDisplay83.WriteNode = null;
  5236. //
  5237. // plcUiNumberDisplay84
  5238. //
  5239. this.plcUiNumberDisplay84.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5240. this.plcUiNumberDisplay84.DecimalPlaces = 0;
  5241. this.plcUiNumberDisplay84.DisabilityTriggerNode = null;
  5242. this.plcUiNumberDisplay84.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5243. this.plcUiNumberDisplay84.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5244. this.plcUiNumberDisplay84.Gain = 1D;
  5245. this.plcUiNumberDisplay84.IntegerDigits = 0;
  5246. this.plcUiNumberDisplay84.InvisibilityTriggerNode = null;
  5247. this.plcUiNumberDisplay84.Location = new System.Drawing.Point(161, 150);
  5248. this.plcUiNumberDisplay84.Name = "plcUiNumberDisplay84";
  5249. this.plcUiNumberDisplay84.Preffix = null;
  5250. this.plcUiNumberDisplay84.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[4]", NodeType.UDINT, null);
  5251. this.plcUiNumberDisplay84.Size = new System.Drawing.Size(80, 27);
  5252. this.plcUiNumberDisplay84.Suffix = null;
  5253. this.plcUiNumberDisplay84.TabIndex = 329;
  5254. this.plcUiNumberDisplay84.Text = "1";
  5255. this.plcUiNumberDisplay84.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5256. this.plcUiNumberDisplay84.WriteNode = null;
  5257. //
  5258. // plcUiNumberDisplay85
  5259. //
  5260. this.plcUiNumberDisplay85.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5261. this.plcUiNumberDisplay85.DecimalPlaces = 0;
  5262. this.plcUiNumberDisplay85.DisabilityTriggerNode = null;
  5263. this.plcUiNumberDisplay85.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5264. this.plcUiNumberDisplay85.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5265. this.plcUiNumberDisplay85.Gain = 1D;
  5266. this.plcUiNumberDisplay85.IntegerDigits = 0;
  5267. this.plcUiNumberDisplay85.InvisibilityTriggerNode = null;
  5268. this.plcUiNumberDisplay85.Location = new System.Drawing.Point(161, 113);
  5269. this.plcUiNumberDisplay85.Name = "plcUiNumberDisplay85";
  5270. this.plcUiNumberDisplay85.Preffix = null;
  5271. this.plcUiNumberDisplay85.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[3]", NodeType.UDINT, null);
  5272. this.plcUiNumberDisplay85.Size = new System.Drawing.Size(80, 27);
  5273. this.plcUiNumberDisplay85.Suffix = null;
  5274. this.plcUiNumberDisplay85.TabIndex = 328;
  5275. this.plcUiNumberDisplay85.Text = "1";
  5276. this.plcUiNumberDisplay85.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5277. this.plcUiNumberDisplay85.WriteNode = null;
  5278. //
  5279. // plcUiNumberDisplay86
  5280. //
  5281. this.plcUiNumberDisplay86.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5282. this.plcUiNumberDisplay86.DecimalPlaces = 0;
  5283. this.plcUiNumberDisplay86.DisabilityTriggerNode = null;
  5284. this.plcUiNumberDisplay86.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5285. this.plcUiNumberDisplay86.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5286. this.plcUiNumberDisplay86.Gain = 1D;
  5287. this.plcUiNumberDisplay86.IntegerDigits = 0;
  5288. this.plcUiNumberDisplay86.InvisibilityTriggerNode = null;
  5289. this.plcUiNumberDisplay86.Location = new System.Drawing.Point(161, 75);
  5290. this.plcUiNumberDisplay86.Name = "plcUiNumberDisplay86";
  5291. this.plcUiNumberDisplay86.Preffix = null;
  5292. this.plcUiNumberDisplay86.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[2]", NodeType.UDINT, null);
  5293. this.plcUiNumberDisplay86.Size = new System.Drawing.Size(80, 27);
  5294. this.plcUiNumberDisplay86.Suffix = null;
  5295. this.plcUiNumberDisplay86.TabIndex = 327;
  5296. this.plcUiNumberDisplay86.Text = "1";
  5297. this.plcUiNumberDisplay86.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5298. this.plcUiNumberDisplay86.WriteNode = null;
  5299. //
  5300. // plcUiNumberDisplay87
  5301. //
  5302. this.plcUiNumberDisplay87.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5303. this.plcUiNumberDisplay87.DecimalPlaces = 0;
  5304. this.plcUiNumberDisplay87.DisabilityTriggerNode = null;
  5305. this.plcUiNumberDisplay87.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5306. this.plcUiNumberDisplay87.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5307. this.plcUiNumberDisplay87.Gain = 1D;
  5308. this.plcUiNumberDisplay87.IntegerDigits = 0;
  5309. this.plcUiNumberDisplay87.InvisibilityTriggerNode = null;
  5310. this.plcUiNumberDisplay87.Location = new System.Drawing.Point(161, 38);
  5311. this.plcUiNumberDisplay87.Name = "plcUiNumberDisplay87";
  5312. this.plcUiNumberDisplay87.Preffix = null;
  5313. this.plcUiNumberDisplay87.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_Bin结果统计[1]", NodeType.UDINT, null);
  5314. this.plcUiNumberDisplay87.Size = new System.Drawing.Size(80, 27);
  5315. this.plcUiNumberDisplay87.Suffix = null;
  5316. this.plcUiNumberDisplay87.TabIndex = 326;
  5317. this.plcUiNumberDisplay87.Text = "1";
  5318. this.plcUiNumberDisplay87.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5319. this.plcUiNumberDisplay87.WriteNode = null;
  5320. //
  5321. // plcUiNumberDisplay88
  5322. //
  5323. this.plcUiNumberDisplay88.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5324. this.plcUiNumberDisplay88.DecimalPlaces = 0;
  5325. this.plcUiNumberDisplay88.DisabilityTriggerNode = null;
  5326. this.plcUiNumberDisplay88.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5327. this.plcUiNumberDisplay88.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5328. this.plcUiNumberDisplay88.Gain = 1D;
  5329. this.plcUiNumberDisplay88.IntegerDigits = 0;
  5330. this.plcUiNumberDisplay88.InvisibilityTriggerNode = null;
  5331. this.plcUiNumberDisplay88.Location = new System.Drawing.Point(161, 484);
  5332. this.plcUiNumberDisplay88.Name = "plcUiNumberDisplay88";
  5333. this.plcUiNumberDisplay88.Preffix = null;
  5334. this.plcUiNumberDisplay88.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  5335. this.plcUiNumberDisplay88.Size = new System.Drawing.Size(80, 27);
  5336. this.plcUiNumberDisplay88.Suffix = null;
  5337. this.plcUiNumberDisplay88.TabIndex = 325;
  5338. this.plcUiNumberDisplay88.Text = "1";
  5339. this.plcUiNumberDisplay88.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5340. this.plcUiNumberDisplay88.WriteNode = null;
  5341. //
  5342. // txt测试4统计起始数量
  5343. //
  5344. this.txt测试4统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  5345. this.txt测试4统计起始数量.DisabilityTriggerNode = null;
  5346. this.txt测试4统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5347. this.txt测试4统计起始数量.Gain = 1D;
  5348. this.txt测试4统计起始数量.IntegerDigits = 0;
  5349. this.txt测试4统计起始数量.InvisibilityTriggerNode = null;
  5350. this.txt测试4统计起始数量.Location = new System.Drawing.Point(161, 516);
  5351. this.txt测试4统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5352. this.txt测试4统计起始数量.Minimum = 0D;
  5353. this.txt测试4统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  5354. this.txt测试4统计起始数量.Name = "txt测试4统计起始数量";
  5355. this.txt测试4统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  5356. this.txt测试4统计起始数量.ReadNode = new Node("Application.A07_TestStation_Auto.udi测试4_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  5357. this.txt测试4统计起始数量.ShowText = false;
  5358. this.txt测试4统计起始数量.Size = new System.Drawing.Size(80, 27);
  5359. this.txt测试4统计起始数量.TabIndex = 324;
  5360. this.txt测试4统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5361. this.txt测试4统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  5362. this.txt测试4统计起始数量.Watermark = "";
  5363. this.txt测试4统计起始数量.WriteNode = new Node("Application.A07_TestStation_Auto.udi测试4_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  5364. //
  5365. // txt测试4BIN12占比上限百分比
  5366. //
  5367. this.txt测试4BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5368. this.txt测试4BIN12占比上限百分比.DisabilityTriggerNode = null;
  5369. this.txt测试4BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5370. this.txt测试4BIN12占比上限百分比.Gain = 1D;
  5371. this.txt测试4BIN12占比上限百分比.IntegerDigits = 0;
  5372. this.txt测试4BIN12占比上限百分比.InvisibilityTriggerNode = null;
  5373. this.txt测试4BIN12占比上限百分比.Location = new System.Drawing.Point(74, 445);
  5374. this.txt测试4BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5375. this.txt测试4BIN12占比上限百分比.Minimum = 0D;
  5376. this.txt测试4BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5377. this.txt测试4BIN12占比上限百分比.Name = "txt测试4BIN12占比上限百分比";
  5378. this.txt测试4BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5379. this.txt测试4BIN12占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[12]", NodeType.REAL, null);
  5380. this.txt测试4BIN12占比上限百分比.ShowText = false;
  5381. this.txt测试4BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5382. this.txt测试4BIN12占比上限百分比.TabIndex = 323;
  5383. this.txt测试4BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5384. this.txt测试4BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5385. this.txt测试4BIN12占比上限百分比.Watermark = "";
  5386. this.txt测试4BIN12占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[12]", NodeType.REAL, null);
  5387. //
  5388. // txt测试4BIN11占比上限百分比
  5389. //
  5390. this.txt测试4BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5391. this.txt测试4BIN11占比上限百分比.DisabilityTriggerNode = null;
  5392. this.txt测试4BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5393. this.txt测试4BIN11占比上限百分比.Gain = 1D;
  5394. this.txt测试4BIN11占比上限百分比.IntegerDigits = 0;
  5395. this.txt测试4BIN11占比上限百分比.InvisibilityTriggerNode = null;
  5396. this.txt测试4BIN11占比上限百分比.Location = new System.Drawing.Point(74, 408);
  5397. this.txt测试4BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5398. this.txt测试4BIN11占比上限百分比.Minimum = 0D;
  5399. this.txt测试4BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5400. this.txt测试4BIN11占比上限百分比.Name = "txt测试4BIN11占比上限百分比";
  5401. this.txt测试4BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5402. this.txt测试4BIN11占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[11]", NodeType.REAL, null);
  5403. this.txt测试4BIN11占比上限百分比.ShowText = false;
  5404. this.txt测试4BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5405. this.txt测试4BIN11占比上限百分比.TabIndex = 322;
  5406. this.txt测试4BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5407. this.txt测试4BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5408. this.txt测试4BIN11占比上限百分比.Watermark = "";
  5409. this.txt测试4BIN11占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[11]", NodeType.REAL, null);
  5410. //
  5411. // txt测试4BIN10占比上限百分比
  5412. //
  5413. this.txt测试4BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5414. this.txt测试4BIN10占比上限百分比.DisabilityTriggerNode = null;
  5415. this.txt测试4BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5416. this.txt测试4BIN10占比上限百分比.Gain = 1D;
  5417. this.txt测试4BIN10占比上限百分比.IntegerDigits = 0;
  5418. this.txt测试4BIN10占比上限百分比.InvisibilityTriggerNode = null;
  5419. this.txt测试4BIN10占比上限百分比.Location = new System.Drawing.Point(74, 371);
  5420. this.txt测试4BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5421. this.txt测试4BIN10占比上限百分比.Minimum = 0D;
  5422. this.txt测试4BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5423. this.txt测试4BIN10占比上限百分比.Name = "txt测试4BIN10占比上限百分比";
  5424. this.txt测试4BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5425. this.txt测试4BIN10占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[10]", NodeType.REAL, null);
  5426. this.txt测试4BIN10占比上限百分比.ShowText = false;
  5427. this.txt测试4BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5428. this.txt测试4BIN10占比上限百分比.TabIndex = 321;
  5429. this.txt测试4BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5430. this.txt测试4BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5431. this.txt测试4BIN10占比上限百分比.Watermark = "";
  5432. this.txt测试4BIN10占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[10]", NodeType.REAL, null);
  5433. //
  5434. // txt测试4BIN9占比上限百分比
  5435. //
  5436. this.txt测试4BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5437. this.txt测试4BIN9占比上限百分比.DisabilityTriggerNode = null;
  5438. this.txt测试4BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5439. this.txt测试4BIN9占比上限百分比.Gain = 1D;
  5440. this.txt测试4BIN9占比上限百分比.IntegerDigits = 0;
  5441. this.txt测试4BIN9占比上限百分比.InvisibilityTriggerNode = null;
  5442. this.txt测试4BIN9占比上限百分比.Location = new System.Drawing.Point(74, 334);
  5443. this.txt测试4BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5444. this.txt测试4BIN9占比上限百分比.Minimum = 0D;
  5445. this.txt测试4BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5446. this.txt测试4BIN9占比上限百分比.Name = "txt测试4BIN9占比上限百分比";
  5447. this.txt测试4BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5448. this.txt测试4BIN9占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[9]", NodeType.REAL, null);
  5449. this.txt测试4BIN9占比上限百分比.ShowText = false;
  5450. this.txt测试4BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5451. this.txt测试4BIN9占比上限百分比.TabIndex = 320;
  5452. this.txt测试4BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5453. this.txt测试4BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5454. this.txt测试4BIN9占比上限百分比.Watermark = "";
  5455. this.txt测试4BIN9占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[9]", NodeType.REAL, null);
  5456. //
  5457. // txt测试4BIN8占比上限百分比
  5458. //
  5459. this.txt测试4BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5460. this.txt测试4BIN8占比上限百分比.DisabilityTriggerNode = null;
  5461. this.txt测试4BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5462. this.txt测试4BIN8占比上限百分比.Gain = 1D;
  5463. this.txt测试4BIN8占比上限百分比.IntegerDigits = 0;
  5464. this.txt测试4BIN8占比上限百分比.InvisibilityTriggerNode = null;
  5465. this.txt测试4BIN8占比上限百分比.Location = new System.Drawing.Point(74, 297);
  5466. this.txt测试4BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5467. this.txt测试4BIN8占比上限百分比.Minimum = 0D;
  5468. this.txt测试4BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5469. this.txt测试4BIN8占比上限百分比.Name = "txt测试4BIN8占比上限百分比";
  5470. this.txt测试4BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5471. this.txt测试4BIN8占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[8]", NodeType.REAL, null);
  5472. this.txt测试4BIN8占比上限百分比.ShowText = false;
  5473. this.txt测试4BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5474. this.txt测试4BIN8占比上限百分比.TabIndex = 319;
  5475. this.txt测试4BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5476. this.txt测试4BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5477. this.txt测试4BIN8占比上限百分比.Watermark = "";
  5478. this.txt测试4BIN8占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[8]", NodeType.REAL, null);
  5479. //
  5480. // txt测试4BIN7占比上限百分比
  5481. //
  5482. this.txt测试4BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5483. this.txt测试4BIN7占比上限百分比.DisabilityTriggerNode = null;
  5484. this.txt测试4BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5485. this.txt测试4BIN7占比上限百分比.Gain = 1D;
  5486. this.txt测试4BIN7占比上限百分比.IntegerDigits = 0;
  5487. this.txt测试4BIN7占比上限百分比.InvisibilityTriggerNode = null;
  5488. this.txt测试4BIN7占比上限百分比.Location = new System.Drawing.Point(74, 260);
  5489. this.txt测试4BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5490. this.txt测试4BIN7占比上限百分比.Minimum = 0D;
  5491. this.txt测试4BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5492. this.txt测试4BIN7占比上限百分比.Name = "txt测试4BIN7占比上限百分比";
  5493. this.txt测试4BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5494. this.txt测试4BIN7占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[7]", NodeType.REAL, null);
  5495. this.txt测试4BIN7占比上限百分比.ShowText = false;
  5496. this.txt测试4BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5497. this.txt测试4BIN7占比上限百分比.TabIndex = 318;
  5498. this.txt测试4BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5499. this.txt测试4BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5500. this.txt测试4BIN7占比上限百分比.Watermark = "";
  5501. this.txt测试4BIN7占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[7]", NodeType.REAL, null);
  5502. //
  5503. // txt测试4BIN6占比上限百分比
  5504. //
  5505. this.txt测试4BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5506. this.txt测试4BIN6占比上限百分比.DisabilityTriggerNode = null;
  5507. this.txt测试4BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5508. this.txt测试4BIN6占比上限百分比.Gain = 1D;
  5509. this.txt测试4BIN6占比上限百分比.IntegerDigits = 0;
  5510. this.txt测试4BIN6占比上限百分比.InvisibilityTriggerNode = null;
  5511. this.txt测试4BIN6占比上限百分比.Location = new System.Drawing.Point(74, 223);
  5512. this.txt测试4BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5513. this.txt测试4BIN6占比上限百分比.Minimum = 0D;
  5514. this.txt测试4BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5515. this.txt测试4BIN6占比上限百分比.Name = "txt测试4BIN6占比上限百分比";
  5516. this.txt测试4BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5517. this.txt测试4BIN6占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[6]", NodeType.REAL, null);
  5518. this.txt测试4BIN6占比上限百分比.ShowText = false;
  5519. this.txt测试4BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5520. this.txt测试4BIN6占比上限百分比.TabIndex = 317;
  5521. this.txt测试4BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5522. this.txt测试4BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5523. this.txt测试4BIN6占比上限百分比.Watermark = "";
  5524. this.txt测试4BIN6占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[6]", NodeType.REAL, null);
  5525. //
  5526. // txt测试4BIN5占比上限百分比
  5527. //
  5528. this.txt测试4BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5529. this.txt测试4BIN5占比上限百分比.DisabilityTriggerNode = null;
  5530. this.txt测试4BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5531. this.txt测试4BIN5占比上限百分比.Gain = 1D;
  5532. this.txt测试4BIN5占比上限百分比.IntegerDigits = 0;
  5533. this.txt测试4BIN5占比上限百分比.InvisibilityTriggerNode = null;
  5534. this.txt测试4BIN5占比上限百分比.Location = new System.Drawing.Point(74, 186);
  5535. this.txt测试4BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5536. this.txt测试4BIN5占比上限百分比.Minimum = 0D;
  5537. this.txt测试4BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5538. this.txt测试4BIN5占比上限百分比.Name = "txt测试4BIN5占比上限百分比";
  5539. this.txt测试4BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5540. this.txt测试4BIN5占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[5]", NodeType.REAL, null);
  5541. this.txt测试4BIN5占比上限百分比.ShowText = false;
  5542. this.txt测试4BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5543. this.txt测试4BIN5占比上限百分比.TabIndex = 316;
  5544. this.txt测试4BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5545. this.txt测试4BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5546. this.txt测试4BIN5占比上限百分比.Watermark = "";
  5547. this.txt测试4BIN5占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[5]", NodeType.REAL, null);
  5548. //
  5549. // txt测试4BIN4占比上限百分比
  5550. //
  5551. this.txt测试4BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5552. this.txt测试4BIN4占比上限百分比.DisabilityTriggerNode = null;
  5553. this.txt测试4BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5554. this.txt测试4BIN4占比上限百分比.Gain = 1D;
  5555. this.txt测试4BIN4占比上限百分比.IntegerDigits = 0;
  5556. this.txt测试4BIN4占比上限百分比.InvisibilityTriggerNode = null;
  5557. this.txt测试4BIN4占比上限百分比.Location = new System.Drawing.Point(74, 149);
  5558. this.txt测试4BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5559. this.txt测试4BIN4占比上限百分比.Minimum = 0D;
  5560. this.txt测试4BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5561. this.txt测试4BIN4占比上限百分比.Name = "txt测试4BIN4占比上限百分比";
  5562. this.txt测试4BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5563. this.txt测试4BIN4占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[4]", NodeType.REAL, null);
  5564. this.txt测试4BIN4占比上限百分比.ShowText = false;
  5565. this.txt测试4BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5566. this.txt测试4BIN4占比上限百分比.TabIndex = 315;
  5567. this.txt测试4BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5568. this.txt测试4BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5569. this.txt测试4BIN4占比上限百分比.Watermark = "";
  5570. this.txt测试4BIN4占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[4]", NodeType.REAL, null);
  5571. //
  5572. // txt测试4BIN3占比上限百分比
  5573. //
  5574. this.txt测试4BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5575. this.txt测试4BIN3占比上限百分比.DisabilityTriggerNode = null;
  5576. this.txt测试4BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5577. this.txt测试4BIN3占比上限百分比.Gain = 1D;
  5578. this.txt测试4BIN3占比上限百分比.IntegerDigits = 0;
  5579. this.txt测试4BIN3占比上限百分比.InvisibilityTriggerNode = null;
  5580. this.txt测试4BIN3占比上限百分比.Location = new System.Drawing.Point(74, 112);
  5581. this.txt测试4BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5582. this.txt测试4BIN3占比上限百分比.Minimum = 0D;
  5583. this.txt测试4BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5584. this.txt测试4BIN3占比上限百分比.Name = "txt测试4BIN3占比上限百分比";
  5585. this.txt测试4BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5586. this.txt测试4BIN3占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[3]", NodeType.REAL, null);
  5587. this.txt测试4BIN3占比上限百分比.ShowText = false;
  5588. this.txt测试4BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5589. this.txt测试4BIN3占比上限百分比.TabIndex = 314;
  5590. this.txt测试4BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5591. this.txt测试4BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5592. this.txt测试4BIN3占比上限百分比.Watermark = "";
  5593. this.txt测试4BIN3占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[3]", NodeType.REAL, null);
  5594. //
  5595. // txt测试4BIN2占比上限百分比
  5596. //
  5597. this.txt测试4BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5598. this.txt测试4BIN2占比上限百分比.DisabilityTriggerNode = null;
  5599. this.txt测试4BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5600. this.txt测试4BIN2占比上限百分比.Gain = 1D;
  5601. this.txt测试4BIN2占比上限百分比.IntegerDigits = 0;
  5602. this.txt测试4BIN2占比上限百分比.InvisibilityTriggerNode = null;
  5603. this.txt测试4BIN2占比上限百分比.Location = new System.Drawing.Point(74, 75);
  5604. this.txt测试4BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5605. this.txt测试4BIN2占比上限百分比.Minimum = 0D;
  5606. this.txt测试4BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5607. this.txt测试4BIN2占比上限百分比.Name = "txt测试4BIN2占比上限百分比";
  5608. this.txt测试4BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5609. this.txt测试4BIN2占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[2]", NodeType.REAL, null);
  5610. this.txt测试4BIN2占比上限百分比.ShowText = false;
  5611. this.txt测试4BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5612. this.txt测试4BIN2占比上限百分比.TabIndex = 313;
  5613. this.txt测试4BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5614. this.txt测试4BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5615. this.txt测试4BIN2占比上限百分比.Watermark = "";
  5616. this.txt测试4BIN2占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[2]", NodeType.REAL, null);
  5617. //
  5618. // txt测试4BIN1占比上限百分比
  5619. //
  5620. this.txt测试4BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  5621. this.txt测试4BIN1占比上限百分比.DisabilityTriggerNode = null;
  5622. this.txt测试4BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5623. this.txt测试4BIN1占比上限百分比.Gain = 1D;
  5624. this.txt测试4BIN1占比上限百分比.IntegerDigits = 0;
  5625. this.txt测试4BIN1占比上限百分比.InvisibilityTriggerNode = null;
  5626. this.txt测试4BIN1占比上限百分比.Location = new System.Drawing.Point(74, 38);
  5627. this.txt测试4BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  5628. this.txt测试4BIN1占比上限百分比.Minimum = 0D;
  5629. this.txt测试4BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  5630. this.txt测试4BIN1占比上限百分比.Name = "txt测试4BIN1占比上限百分比";
  5631. this.txt测试4BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  5632. this.txt测试4BIN1占比上限百分比.ReadNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[1]", NodeType.REAL, null);
  5633. this.txt测试4BIN1占比上限百分比.ShowText = false;
  5634. this.txt测试4BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  5635. this.txt测试4BIN1占比上限百分比.TabIndex = 312;
  5636. this.txt测试4BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  5637. this.txt测试4BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  5638. this.txt测试4BIN1占比上限百分比.Watermark = "";
  5639. this.txt测试4BIN1占比上限百分比.WriteNode = new Node("Application.A07_TestStation_Auto.r测试4_Bin结果报警比率设定[1]", NodeType.REAL, null);
  5640. //
  5641. // uiLabel38
  5642. //
  5643. this.uiLabel38.AutoSize = true;
  5644. this.uiLabel38.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5645. this.uiLabel38.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5646. this.uiLabel38.Location = new System.Drawing.Point(55, 522);
  5647. this.uiLabel38.Name = "uiLabel38";
  5648. this.uiLabel38.Size = new System.Drawing.Size(103, 16);
  5649. this.uiLabel38.TabIndex = 310;
  5650. this.uiLabel38.Text = "统计起始数量";
  5651. //
  5652. // uiLabel39
  5653. //
  5654. this.uiLabel39.AutoSize = true;
  5655. this.uiLabel39.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5656. this.uiLabel39.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5657. this.uiLabel39.Location = new System.Drawing.Point(71, 489);
  5658. this.uiLabel39.Name = "uiLabel39";
  5659. this.uiLabel39.Size = new System.Drawing.Size(87, 16);
  5660. this.uiLabel39.TabIndex = 311;
  5661. this.uiLabel39.Text = "当前总计数";
  5662. //
  5663. // uiLabel40
  5664. //
  5665. this.uiLabel40.AutoSize = true;
  5666. this.uiLabel40.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5667. this.uiLabel40.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5668. this.uiLabel40.Location = new System.Drawing.Point(28, 450);
  5669. this.uiLabel40.Name = "uiLabel40";
  5670. this.uiLabel40.Size = new System.Drawing.Size(47, 16);
  5671. this.uiLabel40.TabIndex = 309;
  5672. this.uiLabel40.Text = "BIN12";
  5673. //
  5674. // uiLabel41
  5675. //
  5676. this.uiLabel41.AutoSize = true;
  5677. this.uiLabel41.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5678. this.uiLabel41.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5679. this.uiLabel41.Location = new System.Drawing.Point(28, 413);
  5680. this.uiLabel41.Name = "uiLabel41";
  5681. this.uiLabel41.Size = new System.Drawing.Size(47, 16);
  5682. this.uiLabel41.TabIndex = 308;
  5683. this.uiLabel41.Text = "BIN11";
  5684. //
  5685. // uiLabel42
  5686. //
  5687. this.uiLabel42.AutoSize = true;
  5688. this.uiLabel42.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5689. this.uiLabel42.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5690. this.uiLabel42.Location = new System.Drawing.Point(28, 376);
  5691. this.uiLabel42.Name = "uiLabel42";
  5692. this.uiLabel42.Size = new System.Drawing.Size(47, 16);
  5693. this.uiLabel42.TabIndex = 307;
  5694. this.uiLabel42.Text = "BIN10";
  5695. //
  5696. // uiLabel43
  5697. //
  5698. this.uiLabel43.AutoSize = true;
  5699. this.uiLabel43.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5700. this.uiLabel43.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5701. this.uiLabel43.Location = new System.Drawing.Point(28, 339);
  5702. this.uiLabel43.Name = "uiLabel43";
  5703. this.uiLabel43.Size = new System.Drawing.Size(39, 16);
  5704. this.uiLabel43.TabIndex = 306;
  5705. this.uiLabel43.Text = "BIN9";
  5706. //
  5707. // uiLabel44
  5708. //
  5709. this.uiLabel44.AutoSize = true;
  5710. this.uiLabel44.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5711. this.uiLabel44.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5712. this.uiLabel44.Location = new System.Drawing.Point(28, 302);
  5713. this.uiLabel44.Name = "uiLabel44";
  5714. this.uiLabel44.Size = new System.Drawing.Size(39, 16);
  5715. this.uiLabel44.TabIndex = 305;
  5716. this.uiLabel44.Text = "BIN8";
  5717. //
  5718. // uiLabel45
  5719. //
  5720. this.uiLabel45.AutoSize = true;
  5721. this.uiLabel45.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5722. this.uiLabel45.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5723. this.uiLabel45.Location = new System.Drawing.Point(28, 265);
  5724. this.uiLabel45.Name = "uiLabel45";
  5725. this.uiLabel45.Size = new System.Drawing.Size(39, 16);
  5726. this.uiLabel45.TabIndex = 304;
  5727. this.uiLabel45.Text = "BIN7";
  5728. //
  5729. // uiLabel46
  5730. //
  5731. this.uiLabel46.AutoSize = true;
  5732. this.uiLabel46.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5733. this.uiLabel46.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5734. this.uiLabel46.Location = new System.Drawing.Point(28, 228);
  5735. this.uiLabel46.Name = "uiLabel46";
  5736. this.uiLabel46.Size = new System.Drawing.Size(39, 16);
  5737. this.uiLabel46.TabIndex = 303;
  5738. this.uiLabel46.Text = "BIN6";
  5739. //
  5740. // uiLabel51
  5741. //
  5742. this.uiLabel51.AutoSize = true;
  5743. this.uiLabel51.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5744. this.uiLabel51.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5745. this.uiLabel51.Location = new System.Drawing.Point(28, 191);
  5746. this.uiLabel51.Name = "uiLabel51";
  5747. this.uiLabel51.Size = new System.Drawing.Size(39, 16);
  5748. this.uiLabel51.TabIndex = 302;
  5749. this.uiLabel51.Text = "BIN5";
  5750. //
  5751. // uiLabel52
  5752. //
  5753. this.uiLabel52.AutoSize = true;
  5754. this.uiLabel52.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5755. this.uiLabel52.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5756. this.uiLabel52.Location = new System.Drawing.Point(28, 154);
  5757. this.uiLabel52.Name = "uiLabel52";
  5758. this.uiLabel52.Size = new System.Drawing.Size(39, 16);
  5759. this.uiLabel52.TabIndex = 301;
  5760. this.uiLabel52.Text = "BIN4";
  5761. //
  5762. // uiLabel53
  5763. //
  5764. this.uiLabel53.AutoSize = true;
  5765. this.uiLabel53.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5766. this.uiLabel53.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5767. this.uiLabel53.Location = new System.Drawing.Point(28, 117);
  5768. this.uiLabel53.Name = "uiLabel53";
  5769. this.uiLabel53.Size = new System.Drawing.Size(39, 16);
  5770. this.uiLabel53.TabIndex = 300;
  5771. this.uiLabel53.Text = "BIN3";
  5772. //
  5773. // uiLabel54
  5774. //
  5775. this.uiLabel54.AutoSize = true;
  5776. this.uiLabel54.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5777. this.uiLabel54.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5778. this.uiLabel54.Location = new System.Drawing.Point(28, 80);
  5779. this.uiLabel54.Name = "uiLabel54";
  5780. this.uiLabel54.Size = new System.Drawing.Size(39, 16);
  5781. this.uiLabel54.TabIndex = 299;
  5782. this.uiLabel54.Text = "BIN2";
  5783. //
  5784. // uiLabel55
  5785. //
  5786. this.uiLabel55.AutoSize = true;
  5787. this.uiLabel55.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5788. this.uiLabel55.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5789. this.uiLabel55.Location = new System.Drawing.Point(28, 43);
  5790. this.uiLabel55.Name = "uiLabel55";
  5791. this.uiLabel55.Size = new System.Drawing.Size(39, 16);
  5792. this.uiLabel55.TabIndex = 298;
  5793. this.uiLabel55.Text = "BIN1";
  5794. //
  5795. // uiLabel56
  5796. //
  5797. this.uiLabel56.AutoSize = true;
  5798. this.uiLabel56.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5799. this.uiLabel56.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5800. this.uiLabel56.Location = new System.Drawing.Point(79, 17);
  5801. this.uiLabel56.Name = "uiLabel56";
  5802. this.uiLabel56.Size = new System.Drawing.Size(79, 16);
  5803. this.uiLabel56.TabIndex = 295;
  5804. this.uiLabel56.Text = "上限(%)";
  5805. //
  5806. // uiLabel57
  5807. //
  5808. this.uiLabel57.AutoSize = true;
  5809. this.uiLabel57.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5810. this.uiLabel57.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5811. this.uiLabel57.Location = new System.Drawing.Point(187, 17);
  5812. this.uiLabel57.Name = "uiLabel57";
  5813. this.uiLabel57.Size = new System.Drawing.Size(39, 16);
  5814. this.uiLabel57.TabIndex = 297;
  5815. this.uiLabel57.Text = "数量";
  5816. //
  5817. // uiLabel58
  5818. //
  5819. this.uiLabel58.AutoSize = true;
  5820. this.uiLabel58.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5821. this.uiLabel58.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5822. this.uiLabel58.Location = new System.Drawing.Point(269, 17);
  5823. this.uiLabel58.Name = "uiLabel58";
  5824. this.uiLabel58.Size = new System.Drawing.Size(39, 16);
  5825. this.uiLabel58.TabIndex = 296;
  5826. this.uiLabel58.Text = "比率";
  5827. //
  5828. // tabPage5
  5829. //
  5830. this.tabPage5.Controls.Add(this.plcUiNumberDisplay114);
  5831. this.tabPage5.Controls.Add(this.plcUiNumberDisplay115);
  5832. this.tabPage5.Controls.Add(this.plcUiNumberDisplay116);
  5833. this.tabPage5.Controls.Add(this.plcUiNumberDisplay117);
  5834. this.tabPage5.Controls.Add(this.plcUiNumberDisplay118);
  5835. this.tabPage5.Controls.Add(this.plcUiNumberDisplay119);
  5836. this.tabPage5.Controls.Add(this.plcUiNumberDisplay120);
  5837. this.tabPage5.Controls.Add(this.plcUiNumberDisplay121);
  5838. this.tabPage5.Controls.Add(this.plcUiNumberDisplay122);
  5839. this.tabPage5.Controls.Add(this.plcUiNumberDisplay123);
  5840. this.tabPage5.Controls.Add(this.plcUiNumberDisplay124);
  5841. this.tabPage5.Controls.Add(this.plcUiNumberDisplay125);
  5842. this.tabPage5.Controls.Add(this.plcUiNumberDisplay101);
  5843. this.tabPage5.Controls.Add(this.plcUiNumberDisplay102);
  5844. this.tabPage5.Controls.Add(this.plcUiNumberDisplay103);
  5845. this.tabPage5.Controls.Add(this.plcUiNumberDisplay104);
  5846. this.tabPage5.Controls.Add(this.plcUiNumberDisplay105);
  5847. this.tabPage5.Controls.Add(this.plcUiNumberDisplay106);
  5848. this.tabPage5.Controls.Add(this.plcUiNumberDisplay107);
  5849. this.tabPage5.Controls.Add(this.plcUiNumberDisplay108);
  5850. this.tabPage5.Controls.Add(this.plcUiNumberDisplay109);
  5851. this.tabPage5.Controls.Add(this.plcUiNumberDisplay110);
  5852. this.tabPage5.Controls.Add(this.plcUiNumberDisplay111);
  5853. this.tabPage5.Controls.Add(this.plcUiNumberDisplay112);
  5854. this.tabPage5.Controls.Add(this.plcUiNumberDisplay113);
  5855. this.tabPage5.Controls.Add(this.txt热测统计起始数量);
  5856. this.tabPage5.Controls.Add(this.txt热测BIN12占比上限百分比);
  5857. this.tabPage5.Controls.Add(this.txt热测BIN11占比上限百分比);
  5858. this.tabPage5.Controls.Add(this.txt热测BIN10占比上限百分比);
  5859. this.tabPage5.Controls.Add(this.txt热测BIN9占比上限百分比);
  5860. this.tabPage5.Controls.Add(this.txt热测BIN8占比上限百分比);
  5861. this.tabPage5.Controls.Add(this.txt热测BIN7占比上限百分比);
  5862. this.tabPage5.Controls.Add(this.txt热测BIN6占比上限百分比);
  5863. this.tabPage5.Controls.Add(this.txt热测BIN5占比上限百分比);
  5864. this.tabPage5.Controls.Add(this.txt热测BIN4占比上限百分比);
  5865. this.tabPage5.Controls.Add(this.txt热测BIN3占比上限百分比);
  5866. this.tabPage5.Controls.Add(this.txt热测BIN2占比上限百分比);
  5867. this.tabPage5.Controls.Add(this.txt热测BIN1占比上限百分比);
  5868. this.tabPage5.Controls.Add(this.uiLabel59);
  5869. this.tabPage5.Controls.Add(this.uiLabel60);
  5870. this.tabPage5.Controls.Add(this.uiLabel61);
  5871. this.tabPage5.Controls.Add(this.uiLabel67);
  5872. this.tabPage5.Controls.Add(this.uiLabel68);
  5873. this.tabPage5.Controls.Add(this.uiLabel70);
  5874. this.tabPage5.Controls.Add(this.uiLabel71);
  5875. this.tabPage5.Controls.Add(this.uiLabel76);
  5876. this.tabPage5.Controls.Add(this.uiLabel77);
  5877. this.tabPage5.Controls.Add(this.uiLabel78);
  5878. this.tabPage5.Controls.Add(this.uiLabel79);
  5879. this.tabPage5.Controls.Add(this.uiLabel80);
  5880. this.tabPage5.Controls.Add(this.uiLabel81);
  5881. this.tabPage5.Controls.Add(this.uiLabel82);
  5882. this.tabPage5.Controls.Add(this.uiLabel83);
  5883. this.tabPage5.Controls.Add(this.uiLabel84);
  5884. this.tabPage5.Controls.Add(this.uiLabel85);
  5885. this.tabPage5.Location = new System.Drawing.Point(0, 40);
  5886. this.tabPage5.Name = "tabPage5";
  5887. this.tabPage5.Size = new System.Drawing.Size(569, 560);
  5888. this.tabPage5.TabIndex = 4;
  5889. this.tabPage5.Text = "热测";
  5890. this.tabPage5.UseVisualStyleBackColor = true;
  5891. //
  5892. // plcUiNumberDisplay114
  5893. //
  5894. this.plcUiNumberDisplay114.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5895. this.plcUiNumberDisplay114.DecimalPlaces = 2;
  5896. this.plcUiNumberDisplay114.DisabilityTriggerNode = null;
  5897. this.plcUiNumberDisplay114.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5898. this.plcUiNumberDisplay114.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5899. this.plcUiNumberDisplay114.Gain = 1D;
  5900. this.plcUiNumberDisplay114.IntegerDigits = 0;
  5901. this.plcUiNumberDisplay114.InvisibilityTriggerNode = null;
  5902. this.plcUiNumberDisplay114.Location = new System.Drawing.Point(242, 449);
  5903. this.plcUiNumberDisplay114.Name = "plcUiNumberDisplay114";
  5904. this.plcUiNumberDisplay114.Preffix = null;
  5905. this.plcUiNumberDisplay114.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[12]", NodeType.REAL, null);
  5906. this.plcUiNumberDisplay114.Size = new System.Drawing.Size(80, 27);
  5907. this.plcUiNumberDisplay114.Suffix = "%";
  5908. this.plcUiNumberDisplay114.TabIndex = 404;
  5909. this.plcUiNumberDisplay114.Text = "1.00";
  5910. this.plcUiNumberDisplay114.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5911. this.plcUiNumberDisplay114.WriteNode = null;
  5912. //
  5913. // plcUiNumberDisplay115
  5914. //
  5915. this.plcUiNumberDisplay115.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5916. this.plcUiNumberDisplay115.DecimalPlaces = 2;
  5917. this.plcUiNumberDisplay115.DisabilityTriggerNode = null;
  5918. this.plcUiNumberDisplay115.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5919. this.plcUiNumberDisplay115.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5920. this.plcUiNumberDisplay115.Gain = 1D;
  5921. this.plcUiNumberDisplay115.IntegerDigits = 0;
  5922. this.plcUiNumberDisplay115.InvisibilityTriggerNode = null;
  5923. this.plcUiNumberDisplay115.Location = new System.Drawing.Point(242, 412);
  5924. this.plcUiNumberDisplay115.Name = "plcUiNumberDisplay115";
  5925. this.plcUiNumberDisplay115.Preffix = null;
  5926. this.plcUiNumberDisplay115.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[11]", NodeType.REAL, null);
  5927. this.plcUiNumberDisplay115.Size = new System.Drawing.Size(80, 27);
  5928. this.plcUiNumberDisplay115.Suffix = "%";
  5929. this.plcUiNumberDisplay115.TabIndex = 403;
  5930. this.plcUiNumberDisplay115.Text = "1.00";
  5931. this.plcUiNumberDisplay115.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5932. this.plcUiNumberDisplay115.WriteNode = null;
  5933. //
  5934. // plcUiNumberDisplay116
  5935. //
  5936. this.plcUiNumberDisplay116.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5937. this.plcUiNumberDisplay116.DecimalPlaces = 2;
  5938. this.plcUiNumberDisplay116.DisabilityTriggerNode = null;
  5939. this.plcUiNumberDisplay116.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5940. this.plcUiNumberDisplay116.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5941. this.plcUiNumberDisplay116.Gain = 1D;
  5942. this.plcUiNumberDisplay116.IntegerDigits = 0;
  5943. this.plcUiNumberDisplay116.InvisibilityTriggerNode = null;
  5944. this.plcUiNumberDisplay116.Location = new System.Drawing.Point(242, 375);
  5945. this.plcUiNumberDisplay116.Name = "plcUiNumberDisplay116";
  5946. this.plcUiNumberDisplay116.Preffix = null;
  5947. this.plcUiNumberDisplay116.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[10]", NodeType.REAL, null);
  5948. this.plcUiNumberDisplay116.Size = new System.Drawing.Size(80, 27);
  5949. this.plcUiNumberDisplay116.Suffix = "%";
  5950. this.plcUiNumberDisplay116.TabIndex = 402;
  5951. this.plcUiNumberDisplay116.Text = "1.00";
  5952. this.plcUiNumberDisplay116.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5953. this.plcUiNumberDisplay116.WriteNode = null;
  5954. //
  5955. // plcUiNumberDisplay117
  5956. //
  5957. this.plcUiNumberDisplay117.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5958. this.plcUiNumberDisplay117.DecimalPlaces = 2;
  5959. this.plcUiNumberDisplay117.DisabilityTriggerNode = null;
  5960. this.plcUiNumberDisplay117.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5961. this.plcUiNumberDisplay117.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5962. this.plcUiNumberDisplay117.Gain = 1D;
  5963. this.plcUiNumberDisplay117.IntegerDigits = 0;
  5964. this.plcUiNumberDisplay117.InvisibilityTriggerNode = null;
  5965. this.plcUiNumberDisplay117.Location = new System.Drawing.Point(242, 338);
  5966. this.plcUiNumberDisplay117.Name = "plcUiNumberDisplay117";
  5967. this.plcUiNumberDisplay117.Preffix = null;
  5968. this.plcUiNumberDisplay117.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[9]", NodeType.REAL, null);
  5969. this.plcUiNumberDisplay117.Size = new System.Drawing.Size(80, 27);
  5970. this.plcUiNumberDisplay117.Suffix = "%";
  5971. this.plcUiNumberDisplay117.TabIndex = 401;
  5972. this.plcUiNumberDisplay117.Text = "1.00";
  5973. this.plcUiNumberDisplay117.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5974. this.plcUiNumberDisplay117.WriteNode = null;
  5975. //
  5976. // plcUiNumberDisplay118
  5977. //
  5978. this.plcUiNumberDisplay118.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  5979. this.plcUiNumberDisplay118.DecimalPlaces = 2;
  5980. this.plcUiNumberDisplay118.DisabilityTriggerNode = null;
  5981. this.plcUiNumberDisplay118.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5982. this.plcUiNumberDisplay118.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  5983. this.plcUiNumberDisplay118.Gain = 1D;
  5984. this.plcUiNumberDisplay118.IntegerDigits = 0;
  5985. this.plcUiNumberDisplay118.InvisibilityTriggerNode = null;
  5986. this.plcUiNumberDisplay118.Location = new System.Drawing.Point(242, 301);
  5987. this.plcUiNumberDisplay118.Name = "plcUiNumberDisplay118";
  5988. this.plcUiNumberDisplay118.Preffix = null;
  5989. this.plcUiNumberDisplay118.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[8]", NodeType.REAL, null);
  5990. this.plcUiNumberDisplay118.Size = new System.Drawing.Size(80, 27);
  5991. this.plcUiNumberDisplay118.Suffix = "%";
  5992. this.plcUiNumberDisplay118.TabIndex = 400;
  5993. this.plcUiNumberDisplay118.Text = "1.00";
  5994. this.plcUiNumberDisplay118.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5995. this.plcUiNumberDisplay118.WriteNode = null;
  5996. //
  5997. // plcUiNumberDisplay119
  5998. //
  5999. this.plcUiNumberDisplay119.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6000. this.plcUiNumberDisplay119.DecimalPlaces = 2;
  6001. this.plcUiNumberDisplay119.DisabilityTriggerNode = null;
  6002. this.plcUiNumberDisplay119.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6003. this.plcUiNumberDisplay119.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6004. this.plcUiNumberDisplay119.Gain = 1D;
  6005. this.plcUiNumberDisplay119.IntegerDigits = 0;
  6006. this.plcUiNumberDisplay119.InvisibilityTriggerNode = null;
  6007. this.plcUiNumberDisplay119.Location = new System.Drawing.Point(242, 264);
  6008. this.plcUiNumberDisplay119.Name = "plcUiNumberDisplay119";
  6009. this.plcUiNumberDisplay119.Preffix = null;
  6010. this.plcUiNumberDisplay119.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[7]", NodeType.REAL, null);
  6011. this.plcUiNumberDisplay119.Size = new System.Drawing.Size(80, 27);
  6012. this.plcUiNumberDisplay119.Suffix = "%";
  6013. this.plcUiNumberDisplay119.TabIndex = 399;
  6014. this.plcUiNumberDisplay119.Text = "1.00";
  6015. this.plcUiNumberDisplay119.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6016. this.plcUiNumberDisplay119.WriteNode = null;
  6017. //
  6018. // plcUiNumberDisplay120
  6019. //
  6020. this.plcUiNumberDisplay120.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6021. this.plcUiNumberDisplay120.DecimalPlaces = 2;
  6022. this.plcUiNumberDisplay120.DisabilityTriggerNode = null;
  6023. this.plcUiNumberDisplay120.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6024. this.plcUiNumberDisplay120.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6025. this.plcUiNumberDisplay120.Gain = 1D;
  6026. this.plcUiNumberDisplay120.IntegerDigits = 0;
  6027. this.plcUiNumberDisplay120.InvisibilityTriggerNode = null;
  6028. this.plcUiNumberDisplay120.Location = new System.Drawing.Point(242, 227);
  6029. this.plcUiNumberDisplay120.Name = "plcUiNumberDisplay120";
  6030. this.plcUiNumberDisplay120.Preffix = null;
  6031. this.plcUiNumberDisplay120.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[6]", NodeType.REAL, null);
  6032. this.plcUiNumberDisplay120.Size = new System.Drawing.Size(80, 27);
  6033. this.plcUiNumberDisplay120.Suffix = "%";
  6034. this.plcUiNumberDisplay120.TabIndex = 398;
  6035. this.plcUiNumberDisplay120.Text = "1.00";
  6036. this.plcUiNumberDisplay120.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6037. this.plcUiNumberDisplay120.WriteNode = null;
  6038. //
  6039. // plcUiNumberDisplay121
  6040. //
  6041. this.plcUiNumberDisplay121.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6042. this.plcUiNumberDisplay121.DecimalPlaces = 2;
  6043. this.plcUiNumberDisplay121.DisabilityTriggerNode = null;
  6044. this.plcUiNumberDisplay121.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6045. this.plcUiNumberDisplay121.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6046. this.plcUiNumberDisplay121.Gain = 1D;
  6047. this.plcUiNumberDisplay121.IntegerDigits = 0;
  6048. this.plcUiNumberDisplay121.InvisibilityTriggerNode = null;
  6049. this.plcUiNumberDisplay121.Location = new System.Drawing.Point(242, 190);
  6050. this.plcUiNumberDisplay121.Name = "plcUiNumberDisplay121";
  6051. this.plcUiNumberDisplay121.Preffix = null;
  6052. this.plcUiNumberDisplay121.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[5]", NodeType.REAL, null);
  6053. this.plcUiNumberDisplay121.Size = new System.Drawing.Size(80, 27);
  6054. this.plcUiNumberDisplay121.Suffix = "%";
  6055. this.plcUiNumberDisplay121.TabIndex = 397;
  6056. this.plcUiNumberDisplay121.Text = "1.00";
  6057. this.plcUiNumberDisplay121.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6058. this.plcUiNumberDisplay121.WriteNode = null;
  6059. //
  6060. // plcUiNumberDisplay122
  6061. //
  6062. this.plcUiNumberDisplay122.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6063. this.plcUiNumberDisplay122.DecimalPlaces = 2;
  6064. this.plcUiNumberDisplay122.DisabilityTriggerNode = null;
  6065. this.plcUiNumberDisplay122.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6066. this.plcUiNumberDisplay122.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6067. this.plcUiNumberDisplay122.Gain = 1D;
  6068. this.plcUiNumberDisplay122.IntegerDigits = 0;
  6069. this.plcUiNumberDisplay122.InvisibilityTriggerNode = null;
  6070. this.plcUiNumberDisplay122.Location = new System.Drawing.Point(242, 153);
  6071. this.plcUiNumberDisplay122.Name = "plcUiNumberDisplay122";
  6072. this.plcUiNumberDisplay122.Preffix = null;
  6073. this.plcUiNumberDisplay122.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[4]", NodeType.REAL, null);
  6074. this.plcUiNumberDisplay122.Size = new System.Drawing.Size(80, 27);
  6075. this.plcUiNumberDisplay122.Suffix = "%";
  6076. this.plcUiNumberDisplay122.TabIndex = 396;
  6077. this.plcUiNumberDisplay122.Text = "1.00";
  6078. this.plcUiNumberDisplay122.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6079. this.plcUiNumberDisplay122.WriteNode = null;
  6080. //
  6081. // plcUiNumberDisplay123
  6082. //
  6083. this.plcUiNumberDisplay123.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6084. this.plcUiNumberDisplay123.DecimalPlaces = 2;
  6085. this.plcUiNumberDisplay123.DisabilityTriggerNode = null;
  6086. this.plcUiNumberDisplay123.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6087. this.plcUiNumberDisplay123.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6088. this.plcUiNumberDisplay123.Gain = 1D;
  6089. this.plcUiNumberDisplay123.IntegerDigits = 0;
  6090. this.plcUiNumberDisplay123.InvisibilityTriggerNode = null;
  6091. this.plcUiNumberDisplay123.Location = new System.Drawing.Point(242, 116);
  6092. this.plcUiNumberDisplay123.Name = "plcUiNumberDisplay123";
  6093. this.plcUiNumberDisplay123.Preffix = null;
  6094. this.plcUiNumberDisplay123.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[3]", NodeType.REAL, null);
  6095. this.plcUiNumberDisplay123.Size = new System.Drawing.Size(80, 27);
  6096. this.plcUiNumberDisplay123.Suffix = "%";
  6097. this.plcUiNumberDisplay123.TabIndex = 395;
  6098. this.plcUiNumberDisplay123.Text = "1.00";
  6099. this.plcUiNumberDisplay123.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6100. this.plcUiNumberDisplay123.WriteNode = null;
  6101. //
  6102. // plcUiNumberDisplay124
  6103. //
  6104. this.plcUiNumberDisplay124.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6105. this.plcUiNumberDisplay124.DecimalPlaces = 2;
  6106. this.plcUiNumberDisplay124.DisabilityTriggerNode = null;
  6107. this.plcUiNumberDisplay124.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6108. this.plcUiNumberDisplay124.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6109. this.plcUiNumberDisplay124.Gain = 1D;
  6110. this.plcUiNumberDisplay124.IntegerDigits = 0;
  6111. this.plcUiNumberDisplay124.InvisibilityTriggerNode = null;
  6112. this.plcUiNumberDisplay124.Location = new System.Drawing.Point(242, 78);
  6113. this.plcUiNumberDisplay124.Name = "plcUiNumberDisplay124";
  6114. this.plcUiNumberDisplay124.Preffix = null;
  6115. this.plcUiNumberDisplay124.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[2]", NodeType.REAL, null);
  6116. this.plcUiNumberDisplay124.Size = new System.Drawing.Size(80, 27);
  6117. this.plcUiNumberDisplay124.Suffix = "%";
  6118. this.plcUiNumberDisplay124.TabIndex = 394;
  6119. this.plcUiNumberDisplay124.Text = "1.00";
  6120. this.plcUiNumberDisplay124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6121. this.plcUiNumberDisplay124.WriteNode = null;
  6122. //
  6123. // plcUiNumberDisplay125
  6124. //
  6125. this.plcUiNumberDisplay125.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6126. this.plcUiNumberDisplay125.DecimalPlaces = 2;
  6127. this.plcUiNumberDisplay125.DisabilityTriggerNode = null;
  6128. this.plcUiNumberDisplay125.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6129. this.plcUiNumberDisplay125.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6130. this.plcUiNumberDisplay125.Gain = 1D;
  6131. this.plcUiNumberDisplay125.IntegerDigits = 0;
  6132. this.plcUiNumberDisplay125.InvisibilityTriggerNode = null;
  6133. this.plcUiNumberDisplay125.Location = new System.Drawing.Point(242, 41);
  6134. this.plcUiNumberDisplay125.Name = "plcUiNumberDisplay125";
  6135. this.plcUiNumberDisplay125.Preffix = null;
  6136. this.plcUiNumberDisplay125.ReadNode = new Node("Application.A14_ThermalTest_Auto.r热测_Bin当前占比比率[1]", NodeType.REAL, null);
  6137. this.plcUiNumberDisplay125.Size = new System.Drawing.Size(80, 27);
  6138. this.plcUiNumberDisplay125.Suffix = "%";
  6139. this.plcUiNumberDisplay125.TabIndex = 393;
  6140. this.plcUiNumberDisplay125.Text = "1.00";
  6141. this.plcUiNumberDisplay125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6142. this.plcUiNumberDisplay125.WriteNode = null;
  6143. //
  6144. // plcUiNumberDisplay101
  6145. //
  6146. this.plcUiNumberDisplay101.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6147. this.plcUiNumberDisplay101.DecimalPlaces = 0;
  6148. this.plcUiNumberDisplay101.DisabilityTriggerNode = null;
  6149. this.plcUiNumberDisplay101.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6150. this.plcUiNumberDisplay101.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6151. this.plcUiNumberDisplay101.Gain = 1D;
  6152. this.plcUiNumberDisplay101.IntegerDigits = 0;
  6153. this.plcUiNumberDisplay101.InvisibilityTriggerNode = null;
  6154. this.plcUiNumberDisplay101.Location = new System.Drawing.Point(156, 449);
  6155. this.plcUiNumberDisplay101.Name = "plcUiNumberDisplay101";
  6156. this.plcUiNumberDisplay101.Preffix = null;
  6157. this.plcUiNumberDisplay101.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[12]", NodeType.UDINT, null);
  6158. this.plcUiNumberDisplay101.Size = new System.Drawing.Size(80, 27);
  6159. this.plcUiNumberDisplay101.Suffix = null;
  6160. this.plcUiNumberDisplay101.TabIndex = 392;
  6161. this.plcUiNumberDisplay101.Text = "1";
  6162. this.plcUiNumberDisplay101.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6163. this.plcUiNumberDisplay101.WriteNode = null;
  6164. //
  6165. // plcUiNumberDisplay102
  6166. //
  6167. this.plcUiNumberDisplay102.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6168. this.plcUiNumberDisplay102.DecimalPlaces = 0;
  6169. this.plcUiNumberDisplay102.DisabilityTriggerNode = null;
  6170. this.plcUiNumberDisplay102.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6171. this.plcUiNumberDisplay102.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6172. this.plcUiNumberDisplay102.Gain = 1D;
  6173. this.plcUiNumberDisplay102.IntegerDigits = 0;
  6174. this.plcUiNumberDisplay102.InvisibilityTriggerNode = null;
  6175. this.plcUiNumberDisplay102.Location = new System.Drawing.Point(156, 412);
  6176. this.plcUiNumberDisplay102.Name = "plcUiNumberDisplay102";
  6177. this.plcUiNumberDisplay102.Preffix = null;
  6178. this.plcUiNumberDisplay102.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[11]", NodeType.UDINT, null);
  6179. this.plcUiNumberDisplay102.Size = new System.Drawing.Size(80, 27);
  6180. this.plcUiNumberDisplay102.Suffix = null;
  6181. this.plcUiNumberDisplay102.TabIndex = 391;
  6182. this.plcUiNumberDisplay102.Text = "1";
  6183. this.plcUiNumberDisplay102.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6184. this.plcUiNumberDisplay102.WriteNode = null;
  6185. //
  6186. // plcUiNumberDisplay103
  6187. //
  6188. this.plcUiNumberDisplay103.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6189. this.plcUiNumberDisplay103.DecimalPlaces = 0;
  6190. this.plcUiNumberDisplay103.DisabilityTriggerNode = null;
  6191. this.plcUiNumberDisplay103.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6192. this.plcUiNumberDisplay103.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6193. this.plcUiNumberDisplay103.Gain = 1D;
  6194. this.plcUiNumberDisplay103.IntegerDigits = 0;
  6195. this.plcUiNumberDisplay103.InvisibilityTriggerNode = null;
  6196. this.plcUiNumberDisplay103.Location = new System.Drawing.Point(156, 375);
  6197. this.plcUiNumberDisplay103.Name = "plcUiNumberDisplay103";
  6198. this.plcUiNumberDisplay103.Preffix = null;
  6199. this.plcUiNumberDisplay103.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[10]", NodeType.UDINT, null);
  6200. this.plcUiNumberDisplay103.Size = new System.Drawing.Size(80, 27);
  6201. this.plcUiNumberDisplay103.Suffix = null;
  6202. this.plcUiNumberDisplay103.TabIndex = 390;
  6203. this.plcUiNumberDisplay103.Text = "1";
  6204. this.plcUiNumberDisplay103.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6205. this.plcUiNumberDisplay103.WriteNode = null;
  6206. //
  6207. // plcUiNumberDisplay104
  6208. //
  6209. this.plcUiNumberDisplay104.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6210. this.plcUiNumberDisplay104.DecimalPlaces = 0;
  6211. this.plcUiNumberDisplay104.DisabilityTriggerNode = null;
  6212. this.plcUiNumberDisplay104.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6213. this.plcUiNumberDisplay104.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6214. this.plcUiNumberDisplay104.Gain = 1D;
  6215. this.plcUiNumberDisplay104.IntegerDigits = 0;
  6216. this.plcUiNumberDisplay104.InvisibilityTriggerNode = null;
  6217. this.plcUiNumberDisplay104.Location = new System.Drawing.Point(156, 338);
  6218. this.plcUiNumberDisplay104.Name = "plcUiNumberDisplay104";
  6219. this.plcUiNumberDisplay104.Preffix = null;
  6220. this.plcUiNumberDisplay104.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[9]", NodeType.UDINT, null);
  6221. this.plcUiNumberDisplay104.Size = new System.Drawing.Size(80, 27);
  6222. this.plcUiNumberDisplay104.Suffix = null;
  6223. this.plcUiNumberDisplay104.TabIndex = 389;
  6224. this.plcUiNumberDisplay104.Text = "1";
  6225. this.plcUiNumberDisplay104.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6226. this.plcUiNumberDisplay104.WriteNode = null;
  6227. //
  6228. // plcUiNumberDisplay105
  6229. //
  6230. this.plcUiNumberDisplay105.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6231. this.plcUiNumberDisplay105.DecimalPlaces = 0;
  6232. this.plcUiNumberDisplay105.DisabilityTriggerNode = null;
  6233. this.plcUiNumberDisplay105.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6234. this.plcUiNumberDisplay105.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6235. this.plcUiNumberDisplay105.Gain = 1D;
  6236. this.plcUiNumberDisplay105.IntegerDigits = 0;
  6237. this.plcUiNumberDisplay105.InvisibilityTriggerNode = null;
  6238. this.plcUiNumberDisplay105.Location = new System.Drawing.Point(156, 301);
  6239. this.plcUiNumberDisplay105.Name = "plcUiNumberDisplay105";
  6240. this.plcUiNumberDisplay105.Preffix = null;
  6241. this.plcUiNumberDisplay105.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[8]", NodeType.UDINT, null);
  6242. this.plcUiNumberDisplay105.Size = new System.Drawing.Size(80, 27);
  6243. this.plcUiNumberDisplay105.Suffix = null;
  6244. this.plcUiNumberDisplay105.TabIndex = 388;
  6245. this.plcUiNumberDisplay105.Text = "1";
  6246. this.plcUiNumberDisplay105.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6247. this.plcUiNumberDisplay105.WriteNode = null;
  6248. //
  6249. // plcUiNumberDisplay106
  6250. //
  6251. this.plcUiNumberDisplay106.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6252. this.plcUiNumberDisplay106.DecimalPlaces = 0;
  6253. this.plcUiNumberDisplay106.DisabilityTriggerNode = null;
  6254. this.plcUiNumberDisplay106.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6255. this.plcUiNumberDisplay106.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6256. this.plcUiNumberDisplay106.Gain = 1D;
  6257. this.plcUiNumberDisplay106.IntegerDigits = 0;
  6258. this.plcUiNumberDisplay106.InvisibilityTriggerNode = null;
  6259. this.plcUiNumberDisplay106.Location = new System.Drawing.Point(156, 264);
  6260. this.plcUiNumberDisplay106.Name = "plcUiNumberDisplay106";
  6261. this.plcUiNumberDisplay106.Preffix = null;
  6262. this.plcUiNumberDisplay106.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[7]", NodeType.UDINT, null);
  6263. this.plcUiNumberDisplay106.Size = new System.Drawing.Size(80, 27);
  6264. this.plcUiNumberDisplay106.Suffix = null;
  6265. this.plcUiNumberDisplay106.TabIndex = 387;
  6266. this.plcUiNumberDisplay106.Text = "1";
  6267. this.plcUiNumberDisplay106.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6268. this.plcUiNumberDisplay106.WriteNode = null;
  6269. //
  6270. // plcUiNumberDisplay107
  6271. //
  6272. this.plcUiNumberDisplay107.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6273. this.plcUiNumberDisplay107.DecimalPlaces = 0;
  6274. this.plcUiNumberDisplay107.DisabilityTriggerNode = null;
  6275. this.plcUiNumberDisplay107.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6276. this.plcUiNumberDisplay107.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6277. this.plcUiNumberDisplay107.Gain = 1D;
  6278. this.plcUiNumberDisplay107.IntegerDigits = 0;
  6279. this.plcUiNumberDisplay107.InvisibilityTriggerNode = null;
  6280. this.plcUiNumberDisplay107.Location = new System.Drawing.Point(156, 227);
  6281. this.plcUiNumberDisplay107.Name = "plcUiNumberDisplay107";
  6282. this.plcUiNumberDisplay107.Preffix = null;
  6283. this.plcUiNumberDisplay107.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[6]", NodeType.UDINT, null);
  6284. this.plcUiNumberDisplay107.Size = new System.Drawing.Size(80, 27);
  6285. this.plcUiNumberDisplay107.Suffix = null;
  6286. this.plcUiNumberDisplay107.TabIndex = 386;
  6287. this.plcUiNumberDisplay107.Text = "1";
  6288. this.plcUiNumberDisplay107.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6289. this.plcUiNumberDisplay107.WriteNode = null;
  6290. //
  6291. // plcUiNumberDisplay108
  6292. //
  6293. this.plcUiNumberDisplay108.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6294. this.plcUiNumberDisplay108.DecimalPlaces = 0;
  6295. this.plcUiNumberDisplay108.DisabilityTriggerNode = null;
  6296. this.plcUiNumberDisplay108.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6297. this.plcUiNumberDisplay108.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6298. this.plcUiNumberDisplay108.Gain = 1D;
  6299. this.plcUiNumberDisplay108.IntegerDigits = 0;
  6300. this.plcUiNumberDisplay108.InvisibilityTriggerNode = null;
  6301. this.plcUiNumberDisplay108.Location = new System.Drawing.Point(156, 190);
  6302. this.plcUiNumberDisplay108.Name = "plcUiNumberDisplay108";
  6303. this.plcUiNumberDisplay108.Preffix = null;
  6304. this.plcUiNumberDisplay108.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[5]", NodeType.UDINT, null);
  6305. this.plcUiNumberDisplay108.Size = new System.Drawing.Size(80, 27);
  6306. this.plcUiNumberDisplay108.Suffix = null;
  6307. this.plcUiNumberDisplay108.TabIndex = 385;
  6308. this.plcUiNumberDisplay108.Text = "1";
  6309. this.plcUiNumberDisplay108.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6310. this.plcUiNumberDisplay108.WriteNode = null;
  6311. //
  6312. // plcUiNumberDisplay109
  6313. //
  6314. this.plcUiNumberDisplay109.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6315. this.plcUiNumberDisplay109.DecimalPlaces = 0;
  6316. this.plcUiNumberDisplay109.DisabilityTriggerNode = null;
  6317. this.plcUiNumberDisplay109.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6318. this.plcUiNumberDisplay109.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6319. this.plcUiNumberDisplay109.Gain = 1D;
  6320. this.plcUiNumberDisplay109.IntegerDigits = 0;
  6321. this.plcUiNumberDisplay109.InvisibilityTriggerNode = null;
  6322. this.plcUiNumberDisplay109.Location = new System.Drawing.Point(156, 153);
  6323. this.plcUiNumberDisplay109.Name = "plcUiNumberDisplay109";
  6324. this.plcUiNumberDisplay109.Preffix = null;
  6325. this.plcUiNumberDisplay109.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[4]", NodeType.UDINT, null);
  6326. this.plcUiNumberDisplay109.Size = new System.Drawing.Size(80, 27);
  6327. this.plcUiNumberDisplay109.Suffix = null;
  6328. this.plcUiNumberDisplay109.TabIndex = 384;
  6329. this.plcUiNumberDisplay109.Text = "1";
  6330. this.plcUiNumberDisplay109.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6331. this.plcUiNumberDisplay109.WriteNode = null;
  6332. //
  6333. // plcUiNumberDisplay110
  6334. //
  6335. this.plcUiNumberDisplay110.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6336. this.plcUiNumberDisplay110.DecimalPlaces = 0;
  6337. this.plcUiNumberDisplay110.DisabilityTriggerNode = null;
  6338. this.plcUiNumberDisplay110.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6339. this.plcUiNumberDisplay110.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6340. this.plcUiNumberDisplay110.Gain = 1D;
  6341. this.plcUiNumberDisplay110.IntegerDigits = 0;
  6342. this.plcUiNumberDisplay110.InvisibilityTriggerNode = null;
  6343. this.plcUiNumberDisplay110.Location = new System.Drawing.Point(156, 116);
  6344. this.plcUiNumberDisplay110.Name = "plcUiNumberDisplay110";
  6345. this.plcUiNumberDisplay110.Preffix = null;
  6346. this.plcUiNumberDisplay110.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[3]", NodeType.UDINT, null);
  6347. this.plcUiNumberDisplay110.Size = new System.Drawing.Size(80, 27);
  6348. this.plcUiNumberDisplay110.Suffix = null;
  6349. this.plcUiNumberDisplay110.TabIndex = 383;
  6350. this.plcUiNumberDisplay110.Text = "1";
  6351. this.plcUiNumberDisplay110.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6352. this.plcUiNumberDisplay110.WriteNode = null;
  6353. //
  6354. // plcUiNumberDisplay111
  6355. //
  6356. this.plcUiNumberDisplay111.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6357. this.plcUiNumberDisplay111.DecimalPlaces = 0;
  6358. this.plcUiNumberDisplay111.DisabilityTriggerNode = null;
  6359. this.plcUiNumberDisplay111.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6360. this.plcUiNumberDisplay111.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6361. this.plcUiNumberDisplay111.Gain = 1D;
  6362. this.plcUiNumberDisplay111.IntegerDigits = 0;
  6363. this.plcUiNumberDisplay111.InvisibilityTriggerNode = null;
  6364. this.plcUiNumberDisplay111.Location = new System.Drawing.Point(156, 78);
  6365. this.plcUiNumberDisplay111.Name = "plcUiNumberDisplay111";
  6366. this.plcUiNumberDisplay111.Preffix = null;
  6367. this.plcUiNumberDisplay111.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[2]", NodeType.UDINT, null);
  6368. this.plcUiNumberDisplay111.Size = new System.Drawing.Size(80, 27);
  6369. this.plcUiNumberDisplay111.Suffix = null;
  6370. this.plcUiNumberDisplay111.TabIndex = 382;
  6371. this.plcUiNumberDisplay111.Text = "1";
  6372. this.plcUiNumberDisplay111.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6373. this.plcUiNumberDisplay111.WriteNode = null;
  6374. //
  6375. // plcUiNumberDisplay112
  6376. //
  6377. this.plcUiNumberDisplay112.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6378. this.plcUiNumberDisplay112.DecimalPlaces = 0;
  6379. this.plcUiNumberDisplay112.DisabilityTriggerNode = null;
  6380. this.plcUiNumberDisplay112.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6381. this.plcUiNumberDisplay112.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6382. this.plcUiNumberDisplay112.Gain = 1D;
  6383. this.plcUiNumberDisplay112.IntegerDigits = 0;
  6384. this.plcUiNumberDisplay112.InvisibilityTriggerNode = null;
  6385. this.plcUiNumberDisplay112.Location = new System.Drawing.Point(156, 41);
  6386. this.plcUiNumberDisplay112.Name = "plcUiNumberDisplay112";
  6387. this.plcUiNumberDisplay112.Preffix = null;
  6388. this.plcUiNumberDisplay112.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_Bin结果统计[1]", NodeType.UDINT, null);
  6389. this.plcUiNumberDisplay112.Size = new System.Drawing.Size(80, 27);
  6390. this.plcUiNumberDisplay112.Suffix = null;
  6391. this.plcUiNumberDisplay112.TabIndex = 381;
  6392. this.plcUiNumberDisplay112.Text = "1";
  6393. this.plcUiNumberDisplay112.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6394. this.plcUiNumberDisplay112.WriteNode = null;
  6395. //
  6396. // plcUiNumberDisplay113
  6397. //
  6398. this.plcUiNumberDisplay113.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6399. this.plcUiNumberDisplay113.DecimalPlaces = 0;
  6400. this.plcUiNumberDisplay113.DisabilityTriggerNode = null;
  6401. this.plcUiNumberDisplay113.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6402. this.plcUiNumberDisplay113.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6403. this.plcUiNumberDisplay113.Gain = 1D;
  6404. this.plcUiNumberDisplay113.IntegerDigits = 0;
  6405. this.plcUiNumberDisplay113.InvisibilityTriggerNode = null;
  6406. this.plcUiNumberDisplay113.Location = new System.Drawing.Point(156, 487);
  6407. this.plcUiNumberDisplay113.Name = "plcUiNumberDisplay113";
  6408. this.plcUiNumberDisplay113.Preffix = null;
  6409. this.plcUiNumberDisplay113.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  6410. this.plcUiNumberDisplay113.Size = new System.Drawing.Size(80, 27);
  6411. this.plcUiNumberDisplay113.Suffix = null;
  6412. this.plcUiNumberDisplay113.TabIndex = 380;
  6413. this.plcUiNumberDisplay113.Text = "1";
  6414. this.plcUiNumberDisplay113.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6415. this.plcUiNumberDisplay113.WriteNode = null;
  6416. //
  6417. // txt热测统计起始数量
  6418. //
  6419. this.txt热测统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  6420. this.txt热测统计起始数量.DisabilityTriggerNode = null;
  6421. this.txt热测统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6422. this.txt热测统计起始数量.Gain = 1D;
  6423. this.txt热测统计起始数量.IntegerDigits = 0;
  6424. this.txt热测统计起始数量.InvisibilityTriggerNode = null;
  6425. this.txt热测统计起始数量.Location = new System.Drawing.Point(156, 519);
  6426. this.txt热测统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6427. this.txt热测统计起始数量.Minimum = 0D;
  6428. this.txt热测统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  6429. this.txt热测统计起始数量.Name = "txt热测统计起始数量";
  6430. this.txt热测统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  6431. this.txt热测统计起始数量.ReadNode = new Node("Application.A14_ThermalTest_Auto.udi热测_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  6432. this.txt热测统计起始数量.ShowText = false;
  6433. this.txt热测统计起始数量.Size = new System.Drawing.Size(80, 27);
  6434. this.txt热测统计起始数量.TabIndex = 379;
  6435. this.txt热测统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6436. this.txt热测统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  6437. this.txt热测统计起始数量.Watermark = "";
  6438. this.txt热测统计起始数量.WriteNode = new Node("Application.A14_ThermalTest_Auto.udi热测_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  6439. //
  6440. // txt热测BIN12占比上限百分比
  6441. //
  6442. this.txt热测BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6443. this.txt热测BIN12占比上限百分比.DisabilityTriggerNode = null;
  6444. this.txt热测BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6445. this.txt热测BIN12占比上限百分比.Gain = 1D;
  6446. this.txt热测BIN12占比上限百分比.IntegerDigits = 0;
  6447. this.txt热测BIN12占比上限百分比.InvisibilityTriggerNode = null;
  6448. this.txt热测BIN12占比上限百分比.Location = new System.Drawing.Point(69, 448);
  6449. this.txt热测BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6450. this.txt热测BIN12占比上限百分比.Minimum = 0D;
  6451. this.txt热测BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6452. this.txt热测BIN12占比上限百分比.Name = "txt热测BIN12占比上限百分比";
  6453. this.txt热测BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6454. this.txt热测BIN12占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  6455. this.txt热测BIN12占比上限百分比.ShowText = false;
  6456. this.txt热测BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6457. this.txt热测BIN12占比上限百分比.TabIndex = 378;
  6458. this.txt热测BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6459. this.txt热测BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6460. this.txt热测BIN12占比上限百分比.Watermark = "";
  6461. this.txt热测BIN12占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[12]", NodeType.REAL, null);
  6462. //
  6463. // txt热测BIN11占比上限百分比
  6464. //
  6465. this.txt热测BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6466. this.txt热测BIN11占比上限百分比.DisabilityTriggerNode = null;
  6467. this.txt热测BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6468. this.txt热测BIN11占比上限百分比.Gain = 1D;
  6469. this.txt热测BIN11占比上限百分比.IntegerDigits = 0;
  6470. this.txt热测BIN11占比上限百分比.InvisibilityTriggerNode = null;
  6471. this.txt热测BIN11占比上限百分比.Location = new System.Drawing.Point(69, 411);
  6472. this.txt热测BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6473. this.txt热测BIN11占比上限百分比.Minimum = 0D;
  6474. this.txt热测BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6475. this.txt热测BIN11占比上限百分比.Name = "txt热测BIN11占比上限百分比";
  6476. this.txt热测BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6477. this.txt热测BIN11占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  6478. this.txt热测BIN11占比上限百分比.ShowText = false;
  6479. this.txt热测BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6480. this.txt热测BIN11占比上限百分比.TabIndex = 377;
  6481. this.txt热测BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6482. this.txt热测BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6483. this.txt热测BIN11占比上限百分比.Watermark = "";
  6484. this.txt热测BIN11占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[11]", NodeType.REAL, null);
  6485. //
  6486. // txt热测BIN10占比上限百分比
  6487. //
  6488. this.txt热测BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6489. this.txt热测BIN10占比上限百分比.DisabilityTriggerNode = null;
  6490. this.txt热测BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6491. this.txt热测BIN10占比上限百分比.Gain = 1D;
  6492. this.txt热测BIN10占比上限百分比.IntegerDigits = 0;
  6493. this.txt热测BIN10占比上限百分比.InvisibilityTriggerNode = null;
  6494. this.txt热测BIN10占比上限百分比.Location = new System.Drawing.Point(69, 374);
  6495. this.txt热测BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6496. this.txt热测BIN10占比上限百分比.Minimum = 0D;
  6497. this.txt热测BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6498. this.txt热测BIN10占比上限百分比.Name = "txt热测BIN10占比上限百分比";
  6499. this.txt热测BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6500. this.txt热测BIN10占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  6501. this.txt热测BIN10占比上限百分比.ShowText = false;
  6502. this.txt热测BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6503. this.txt热测BIN10占比上限百分比.TabIndex = 376;
  6504. this.txt热测BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6505. this.txt热测BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6506. this.txt热测BIN10占比上限百分比.Watermark = "";
  6507. this.txt热测BIN10占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[10]", NodeType.REAL, null);
  6508. //
  6509. // txt热测BIN9占比上限百分比
  6510. //
  6511. this.txt热测BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6512. this.txt热测BIN9占比上限百分比.DisabilityTriggerNode = null;
  6513. this.txt热测BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6514. this.txt热测BIN9占比上限百分比.Gain = 1D;
  6515. this.txt热测BIN9占比上限百分比.IntegerDigits = 0;
  6516. this.txt热测BIN9占比上限百分比.InvisibilityTriggerNode = null;
  6517. this.txt热测BIN9占比上限百分比.Location = new System.Drawing.Point(69, 337);
  6518. this.txt热测BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6519. this.txt热测BIN9占比上限百分比.Minimum = 0D;
  6520. this.txt热测BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6521. this.txt热测BIN9占比上限百分比.Name = "txt热测BIN9占比上限百分比";
  6522. this.txt热测BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6523. this.txt热测BIN9占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  6524. this.txt热测BIN9占比上限百分比.ShowText = false;
  6525. this.txt热测BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6526. this.txt热测BIN9占比上限百分比.TabIndex = 375;
  6527. this.txt热测BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6528. this.txt热测BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6529. this.txt热测BIN9占比上限百分比.Watermark = "";
  6530. this.txt热测BIN9占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[9]", NodeType.REAL, null);
  6531. //
  6532. // txt热测BIN8占比上限百分比
  6533. //
  6534. this.txt热测BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6535. this.txt热测BIN8占比上限百分比.DisabilityTriggerNode = null;
  6536. this.txt热测BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6537. this.txt热测BIN8占比上限百分比.Gain = 1D;
  6538. this.txt热测BIN8占比上限百分比.IntegerDigits = 0;
  6539. this.txt热测BIN8占比上限百分比.InvisibilityTriggerNode = null;
  6540. this.txt热测BIN8占比上限百分比.Location = new System.Drawing.Point(69, 300);
  6541. this.txt热测BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6542. this.txt热测BIN8占比上限百分比.Minimum = 0D;
  6543. this.txt热测BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6544. this.txt热测BIN8占比上限百分比.Name = "txt热测BIN8占比上限百分比";
  6545. this.txt热测BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6546. this.txt热测BIN8占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  6547. this.txt热测BIN8占比上限百分比.ShowText = false;
  6548. this.txt热测BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6549. this.txt热测BIN8占比上限百分比.TabIndex = 374;
  6550. this.txt热测BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6551. this.txt热测BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6552. this.txt热测BIN8占比上限百分比.Watermark = "";
  6553. this.txt热测BIN8占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[8]", NodeType.REAL, null);
  6554. //
  6555. // txt热测BIN7占比上限百分比
  6556. //
  6557. this.txt热测BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6558. this.txt热测BIN7占比上限百分比.DisabilityTriggerNode = null;
  6559. this.txt热测BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6560. this.txt热测BIN7占比上限百分比.Gain = 1D;
  6561. this.txt热测BIN7占比上限百分比.IntegerDigits = 0;
  6562. this.txt热测BIN7占比上限百分比.InvisibilityTriggerNode = null;
  6563. this.txt热测BIN7占比上限百分比.Location = new System.Drawing.Point(69, 263);
  6564. this.txt热测BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6565. this.txt热测BIN7占比上限百分比.Minimum = 0D;
  6566. this.txt热测BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6567. this.txt热测BIN7占比上限百分比.Name = "txt热测BIN7占比上限百分比";
  6568. this.txt热测BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6569. this.txt热测BIN7占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  6570. this.txt热测BIN7占比上限百分比.ShowText = false;
  6571. this.txt热测BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6572. this.txt热测BIN7占比上限百分比.TabIndex = 373;
  6573. this.txt热测BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6574. this.txt热测BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6575. this.txt热测BIN7占比上限百分比.Watermark = "";
  6576. this.txt热测BIN7占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[7]", NodeType.REAL, null);
  6577. //
  6578. // txt热测BIN6占比上限百分比
  6579. //
  6580. this.txt热测BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6581. this.txt热测BIN6占比上限百分比.DisabilityTriggerNode = null;
  6582. this.txt热测BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6583. this.txt热测BIN6占比上限百分比.Gain = 1D;
  6584. this.txt热测BIN6占比上限百分比.IntegerDigits = 0;
  6585. this.txt热测BIN6占比上限百分比.InvisibilityTriggerNode = null;
  6586. this.txt热测BIN6占比上限百分比.Location = new System.Drawing.Point(69, 226);
  6587. this.txt热测BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6588. this.txt热测BIN6占比上限百分比.Minimum = 0D;
  6589. this.txt热测BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6590. this.txt热测BIN6占比上限百分比.Name = "txt热测BIN6占比上限百分比";
  6591. this.txt热测BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6592. this.txt热测BIN6占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  6593. this.txt热测BIN6占比上限百分比.ShowText = false;
  6594. this.txt热测BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6595. this.txt热测BIN6占比上限百分比.TabIndex = 372;
  6596. this.txt热测BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6597. this.txt热测BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6598. this.txt热测BIN6占比上限百分比.Watermark = "";
  6599. this.txt热测BIN6占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[6]", NodeType.REAL, null);
  6600. //
  6601. // txt热测BIN5占比上限百分比
  6602. //
  6603. this.txt热测BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6604. this.txt热测BIN5占比上限百分比.DisabilityTriggerNode = null;
  6605. this.txt热测BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6606. this.txt热测BIN5占比上限百分比.Gain = 1D;
  6607. this.txt热测BIN5占比上限百分比.IntegerDigits = 0;
  6608. this.txt热测BIN5占比上限百分比.InvisibilityTriggerNode = null;
  6609. this.txt热测BIN5占比上限百分比.Location = new System.Drawing.Point(69, 189);
  6610. this.txt热测BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6611. this.txt热测BIN5占比上限百分比.Minimum = 0D;
  6612. this.txt热测BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6613. this.txt热测BIN5占比上限百分比.Name = "txt热测BIN5占比上限百分比";
  6614. this.txt热测BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6615. this.txt热测BIN5占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  6616. this.txt热测BIN5占比上限百分比.ShowText = false;
  6617. this.txt热测BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6618. this.txt热测BIN5占比上限百分比.TabIndex = 371;
  6619. this.txt热测BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6620. this.txt热测BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6621. this.txt热测BIN5占比上限百分比.Watermark = "";
  6622. this.txt热测BIN5占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[5]", NodeType.REAL, null);
  6623. //
  6624. // txt热测BIN4占比上限百分比
  6625. //
  6626. this.txt热测BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6627. this.txt热测BIN4占比上限百分比.DisabilityTriggerNode = null;
  6628. this.txt热测BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6629. this.txt热测BIN4占比上限百分比.Gain = 1D;
  6630. this.txt热测BIN4占比上限百分比.IntegerDigits = 0;
  6631. this.txt热测BIN4占比上限百分比.InvisibilityTriggerNode = null;
  6632. this.txt热测BIN4占比上限百分比.Location = new System.Drawing.Point(69, 152);
  6633. this.txt热测BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6634. this.txt热测BIN4占比上限百分比.Minimum = 0D;
  6635. this.txt热测BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6636. this.txt热测BIN4占比上限百分比.Name = "txt热测BIN4占比上限百分比";
  6637. this.txt热测BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6638. this.txt热测BIN4占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  6639. this.txt热测BIN4占比上限百分比.ShowText = false;
  6640. this.txt热测BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6641. this.txt热测BIN4占比上限百分比.TabIndex = 370;
  6642. this.txt热测BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6643. this.txt热测BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6644. this.txt热测BIN4占比上限百分比.Watermark = "";
  6645. this.txt热测BIN4占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[4]", NodeType.REAL, null);
  6646. //
  6647. // txt热测BIN3占比上限百分比
  6648. //
  6649. this.txt热测BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6650. this.txt热测BIN3占比上限百分比.DisabilityTriggerNode = null;
  6651. this.txt热测BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6652. this.txt热测BIN3占比上限百分比.Gain = 1D;
  6653. this.txt热测BIN3占比上限百分比.IntegerDigits = 0;
  6654. this.txt热测BIN3占比上限百分比.InvisibilityTriggerNode = null;
  6655. this.txt热测BIN3占比上限百分比.Location = new System.Drawing.Point(69, 115);
  6656. this.txt热测BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6657. this.txt热测BIN3占比上限百分比.Minimum = 0D;
  6658. this.txt热测BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6659. this.txt热测BIN3占比上限百分比.Name = "txt热测BIN3占比上限百分比";
  6660. this.txt热测BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6661. this.txt热测BIN3占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  6662. this.txt热测BIN3占比上限百分比.ShowText = false;
  6663. this.txt热测BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6664. this.txt热测BIN3占比上限百分比.TabIndex = 369;
  6665. this.txt热测BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6666. this.txt热测BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6667. this.txt热测BIN3占比上限百分比.Watermark = "";
  6668. this.txt热测BIN3占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[3]", NodeType.REAL, null);
  6669. //
  6670. // txt热测BIN2占比上限百分比
  6671. //
  6672. this.txt热测BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6673. this.txt热测BIN2占比上限百分比.DisabilityTriggerNode = null;
  6674. this.txt热测BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6675. this.txt热测BIN2占比上限百分比.Gain = 1D;
  6676. this.txt热测BIN2占比上限百分比.IntegerDigits = 0;
  6677. this.txt热测BIN2占比上限百分比.InvisibilityTriggerNode = null;
  6678. this.txt热测BIN2占比上限百分比.Location = new System.Drawing.Point(69, 78);
  6679. this.txt热测BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6680. this.txt热测BIN2占比上限百分比.Minimum = 0D;
  6681. this.txt热测BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6682. this.txt热测BIN2占比上限百分比.Name = "txt热测BIN2占比上限百分比";
  6683. this.txt热测BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6684. this.txt热测BIN2占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  6685. this.txt热测BIN2占比上限百分比.ShowText = false;
  6686. this.txt热测BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6687. this.txt热测BIN2占比上限百分比.TabIndex = 368;
  6688. this.txt热测BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6689. this.txt热测BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6690. this.txt热测BIN2占比上限百分比.Watermark = "";
  6691. this.txt热测BIN2占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[2]", NodeType.REAL, null);
  6692. //
  6693. // txt热测BIN1占比上限百分比
  6694. //
  6695. this.txt热测BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  6696. this.txt热测BIN1占比上限百分比.DisabilityTriggerNode = null;
  6697. this.txt热测BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6698. this.txt热测BIN1占比上限百分比.Gain = 1D;
  6699. this.txt热测BIN1占比上限百分比.IntegerDigits = 0;
  6700. this.txt热测BIN1占比上限百分比.InvisibilityTriggerNode = null;
  6701. this.txt热测BIN1占比上限百分比.Location = new System.Drawing.Point(69, 41);
  6702. this.txt热测BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  6703. this.txt热测BIN1占比上限百分比.Minimum = 0D;
  6704. this.txt热测BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  6705. this.txt热测BIN1占比上限百分比.Name = "txt热测BIN1占比上限百分比";
  6706. this.txt热测BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  6707. this.txt热测BIN1占比上限百分比.ReadNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  6708. this.txt热测BIN1占比上限百分比.ShowText = false;
  6709. this.txt热测BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  6710. this.txt热测BIN1占比上限百分比.TabIndex = 367;
  6711. this.txt热测BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  6712. this.txt热测BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  6713. this.txt热测BIN1占比上限百分比.Watermark = "";
  6714. this.txt热测BIN1占比上限百分比.WriteNode = new Node("Application.A14_ThermalTest_Auto.r测试1_Bin结果报警比率设定[1]", NodeType.REAL, null);
  6715. //
  6716. // uiLabel59
  6717. //
  6718. this.uiLabel59.AutoSize = true;
  6719. this.uiLabel59.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6720. this.uiLabel59.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6721. this.uiLabel59.Location = new System.Drawing.Point(50, 525);
  6722. this.uiLabel59.Name = "uiLabel59";
  6723. this.uiLabel59.Size = new System.Drawing.Size(103, 16);
  6724. this.uiLabel59.TabIndex = 365;
  6725. this.uiLabel59.Text = "统计起始数量";
  6726. //
  6727. // uiLabel60
  6728. //
  6729. this.uiLabel60.AutoSize = true;
  6730. this.uiLabel60.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6731. this.uiLabel60.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6732. this.uiLabel60.Location = new System.Drawing.Point(66, 492);
  6733. this.uiLabel60.Name = "uiLabel60";
  6734. this.uiLabel60.Size = new System.Drawing.Size(87, 16);
  6735. this.uiLabel60.TabIndex = 366;
  6736. this.uiLabel60.Text = "当前总计数";
  6737. //
  6738. // uiLabel61
  6739. //
  6740. this.uiLabel61.AutoSize = true;
  6741. this.uiLabel61.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6742. this.uiLabel61.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6743. this.uiLabel61.Location = new System.Drawing.Point(23, 453);
  6744. this.uiLabel61.Name = "uiLabel61";
  6745. this.uiLabel61.Size = new System.Drawing.Size(47, 16);
  6746. this.uiLabel61.TabIndex = 364;
  6747. this.uiLabel61.Text = "BIN12";
  6748. //
  6749. // uiLabel67
  6750. //
  6751. this.uiLabel67.AutoSize = true;
  6752. this.uiLabel67.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6753. this.uiLabel67.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6754. this.uiLabel67.Location = new System.Drawing.Point(23, 416);
  6755. this.uiLabel67.Name = "uiLabel67";
  6756. this.uiLabel67.Size = new System.Drawing.Size(47, 16);
  6757. this.uiLabel67.TabIndex = 363;
  6758. this.uiLabel67.Text = "BIN11";
  6759. //
  6760. // uiLabel68
  6761. //
  6762. this.uiLabel68.AutoSize = true;
  6763. this.uiLabel68.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6764. this.uiLabel68.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6765. this.uiLabel68.Location = new System.Drawing.Point(23, 379);
  6766. this.uiLabel68.Name = "uiLabel68";
  6767. this.uiLabel68.Size = new System.Drawing.Size(47, 16);
  6768. this.uiLabel68.TabIndex = 362;
  6769. this.uiLabel68.Text = "BIN10";
  6770. //
  6771. // uiLabel70
  6772. //
  6773. this.uiLabel70.AutoSize = true;
  6774. this.uiLabel70.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6775. this.uiLabel70.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6776. this.uiLabel70.Location = new System.Drawing.Point(23, 342);
  6777. this.uiLabel70.Name = "uiLabel70";
  6778. this.uiLabel70.Size = new System.Drawing.Size(39, 16);
  6779. this.uiLabel70.TabIndex = 361;
  6780. this.uiLabel70.Text = "BIN9";
  6781. //
  6782. // uiLabel71
  6783. //
  6784. this.uiLabel71.AutoSize = true;
  6785. this.uiLabel71.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6786. this.uiLabel71.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6787. this.uiLabel71.Location = new System.Drawing.Point(23, 305);
  6788. this.uiLabel71.Name = "uiLabel71";
  6789. this.uiLabel71.Size = new System.Drawing.Size(39, 16);
  6790. this.uiLabel71.TabIndex = 360;
  6791. this.uiLabel71.Text = "BIN8";
  6792. //
  6793. // uiLabel76
  6794. //
  6795. this.uiLabel76.AutoSize = true;
  6796. this.uiLabel76.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6797. this.uiLabel76.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6798. this.uiLabel76.Location = new System.Drawing.Point(23, 268);
  6799. this.uiLabel76.Name = "uiLabel76";
  6800. this.uiLabel76.Size = new System.Drawing.Size(39, 16);
  6801. this.uiLabel76.TabIndex = 359;
  6802. this.uiLabel76.Text = "BIN7";
  6803. //
  6804. // uiLabel77
  6805. //
  6806. this.uiLabel77.AutoSize = true;
  6807. this.uiLabel77.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6808. this.uiLabel77.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6809. this.uiLabel77.Location = new System.Drawing.Point(23, 231);
  6810. this.uiLabel77.Name = "uiLabel77";
  6811. this.uiLabel77.Size = new System.Drawing.Size(39, 16);
  6812. this.uiLabel77.TabIndex = 358;
  6813. this.uiLabel77.Text = "BIN6";
  6814. //
  6815. // uiLabel78
  6816. //
  6817. this.uiLabel78.AutoSize = true;
  6818. this.uiLabel78.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6819. this.uiLabel78.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6820. this.uiLabel78.Location = new System.Drawing.Point(23, 194);
  6821. this.uiLabel78.Name = "uiLabel78";
  6822. this.uiLabel78.Size = new System.Drawing.Size(39, 16);
  6823. this.uiLabel78.TabIndex = 357;
  6824. this.uiLabel78.Text = "BIN5";
  6825. //
  6826. // uiLabel79
  6827. //
  6828. this.uiLabel79.AutoSize = true;
  6829. this.uiLabel79.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6830. this.uiLabel79.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6831. this.uiLabel79.Location = new System.Drawing.Point(23, 157);
  6832. this.uiLabel79.Name = "uiLabel79";
  6833. this.uiLabel79.Size = new System.Drawing.Size(39, 16);
  6834. this.uiLabel79.TabIndex = 356;
  6835. this.uiLabel79.Text = "BIN4";
  6836. //
  6837. // uiLabel80
  6838. //
  6839. this.uiLabel80.AutoSize = true;
  6840. this.uiLabel80.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6841. this.uiLabel80.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6842. this.uiLabel80.Location = new System.Drawing.Point(23, 120);
  6843. this.uiLabel80.Name = "uiLabel80";
  6844. this.uiLabel80.Size = new System.Drawing.Size(39, 16);
  6845. this.uiLabel80.TabIndex = 355;
  6846. this.uiLabel80.Text = "BIN3";
  6847. //
  6848. // uiLabel81
  6849. //
  6850. this.uiLabel81.AutoSize = true;
  6851. this.uiLabel81.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6852. this.uiLabel81.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6853. this.uiLabel81.Location = new System.Drawing.Point(23, 83);
  6854. this.uiLabel81.Name = "uiLabel81";
  6855. this.uiLabel81.Size = new System.Drawing.Size(39, 16);
  6856. this.uiLabel81.TabIndex = 354;
  6857. this.uiLabel81.Text = "BIN2";
  6858. //
  6859. // uiLabel82
  6860. //
  6861. this.uiLabel82.AutoSize = true;
  6862. this.uiLabel82.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6863. this.uiLabel82.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6864. this.uiLabel82.Location = new System.Drawing.Point(23, 46);
  6865. this.uiLabel82.Name = "uiLabel82";
  6866. this.uiLabel82.Size = new System.Drawing.Size(39, 16);
  6867. this.uiLabel82.TabIndex = 353;
  6868. this.uiLabel82.Text = "BIN1";
  6869. //
  6870. // uiLabel83
  6871. //
  6872. this.uiLabel83.AutoSize = true;
  6873. this.uiLabel83.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6874. this.uiLabel83.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6875. this.uiLabel83.Location = new System.Drawing.Point(74, 20);
  6876. this.uiLabel83.Name = "uiLabel83";
  6877. this.uiLabel83.Size = new System.Drawing.Size(79, 16);
  6878. this.uiLabel83.TabIndex = 350;
  6879. this.uiLabel83.Text = "上限(%)";
  6880. //
  6881. // uiLabel84
  6882. //
  6883. this.uiLabel84.AutoSize = true;
  6884. this.uiLabel84.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6885. this.uiLabel84.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6886. this.uiLabel84.Location = new System.Drawing.Point(182, 20);
  6887. this.uiLabel84.Name = "uiLabel84";
  6888. this.uiLabel84.Size = new System.Drawing.Size(39, 16);
  6889. this.uiLabel84.TabIndex = 352;
  6890. this.uiLabel84.Text = "数量";
  6891. //
  6892. // uiLabel85
  6893. //
  6894. this.uiLabel85.AutoSize = true;
  6895. this.uiLabel85.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6896. this.uiLabel85.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6897. this.uiLabel85.Location = new System.Drawing.Point(264, 20);
  6898. this.uiLabel85.Name = "uiLabel85";
  6899. this.uiLabel85.Size = new System.Drawing.Size(39, 16);
  6900. this.uiLabel85.TabIndex = 351;
  6901. this.uiLabel85.Text = "比率";
  6902. //
  6903. // tabPage6
  6904. //
  6905. this.tabPage6.Controls.Add(this.plcUiNumberDisplay139);
  6906. this.tabPage6.Controls.Add(this.plcUiNumberDisplay140);
  6907. this.tabPage6.Controls.Add(this.plcUiNumberDisplay141);
  6908. this.tabPage6.Controls.Add(this.plcUiNumberDisplay142);
  6909. this.tabPage6.Controls.Add(this.plcUiNumberDisplay143);
  6910. this.tabPage6.Controls.Add(this.plcUiNumberDisplay144);
  6911. this.tabPage6.Controls.Add(this.plcUiNumberDisplay145);
  6912. this.tabPage6.Controls.Add(this.plcUiNumberDisplay146);
  6913. this.tabPage6.Controls.Add(this.plcUiNumberDisplay147);
  6914. this.tabPage6.Controls.Add(this.plcUiNumberDisplay148);
  6915. this.tabPage6.Controls.Add(this.plcUiNumberDisplay149);
  6916. this.tabPage6.Controls.Add(this.plcUiNumberDisplay150);
  6917. this.tabPage6.Controls.Add(this.plcUiNumberDisplay126);
  6918. this.tabPage6.Controls.Add(this.plcUiNumberDisplay127);
  6919. this.tabPage6.Controls.Add(this.plcUiNumberDisplay128);
  6920. this.tabPage6.Controls.Add(this.plcUiNumberDisplay129);
  6921. this.tabPage6.Controls.Add(this.plcUiNumberDisplay130);
  6922. this.tabPage6.Controls.Add(this.plcUiNumberDisplay131);
  6923. this.tabPage6.Controls.Add(this.plcUiNumberDisplay132);
  6924. this.tabPage6.Controls.Add(this.plcUiNumberDisplay133);
  6925. this.tabPage6.Controls.Add(this.plcUiNumberDisplay134);
  6926. this.tabPage6.Controls.Add(this.plcUiNumberDisplay135);
  6927. this.tabPage6.Controls.Add(this.plcUiNumberDisplay136);
  6928. this.tabPage6.Controls.Add(this.plcUiNumberDisplay137);
  6929. this.tabPage6.Controls.Add(this.plcUiNumberDisplay138);
  6930. this.tabPage6.Controls.Add(this.txt测试5统计起始数量);
  6931. this.tabPage6.Controls.Add(this.txt测试5BIN12占比上限百分比);
  6932. this.tabPage6.Controls.Add(this.txt测试5BIN11占比上限百分比);
  6933. this.tabPage6.Controls.Add(this.txt测试5BIN10占比上限百分比);
  6934. this.tabPage6.Controls.Add(this.txt测试5BIN9占比上限百分比);
  6935. this.tabPage6.Controls.Add(this.txt测试5BIN8占比上限百分比);
  6936. this.tabPage6.Controls.Add(this.txt测试5BIN7占比上限百分比);
  6937. this.tabPage6.Controls.Add(this.txt测试5BIN6占比上限百分比);
  6938. this.tabPage6.Controls.Add(this.txt测试5BIN5占比上限百分比);
  6939. this.tabPage6.Controls.Add(this.txt测试5BIN4占比上限百分比);
  6940. this.tabPage6.Controls.Add(this.txt测试5BIN3占比上限百分比);
  6941. this.tabPage6.Controls.Add(this.txt测试5BIN2占比上限百分比);
  6942. this.tabPage6.Controls.Add(this.txt测试5BIN1占比上限百分比);
  6943. this.tabPage6.Controls.Add(this.uiLabel86);
  6944. this.tabPage6.Controls.Add(this.uiLabel87);
  6945. this.tabPage6.Controls.Add(this.uiLabel88);
  6946. this.tabPage6.Controls.Add(this.uiLabel89);
  6947. this.tabPage6.Controls.Add(this.uiLabel90);
  6948. this.tabPage6.Controls.Add(this.uiLabel91);
  6949. this.tabPage6.Controls.Add(this.uiLabel92);
  6950. this.tabPage6.Controls.Add(this.uiLabel93);
  6951. this.tabPage6.Controls.Add(this.uiLabel94);
  6952. this.tabPage6.Controls.Add(this.uiLabel95);
  6953. this.tabPage6.Controls.Add(this.uiLabel96);
  6954. this.tabPage6.Controls.Add(this.uiLabel97);
  6955. this.tabPage6.Controls.Add(this.uiLabel98);
  6956. this.tabPage6.Controls.Add(this.uiLabel99);
  6957. this.tabPage6.Controls.Add(this.uiLabel100);
  6958. this.tabPage6.Controls.Add(this.uiLabel101);
  6959. this.tabPage6.Controls.Add(this.uiLabel102);
  6960. this.tabPage6.Location = new System.Drawing.Point(0, 40);
  6961. this.tabPage6.Name = "tabPage6";
  6962. this.tabPage6.Size = new System.Drawing.Size(200, 60);
  6963. this.tabPage6.TabIndex = 5;
  6964. this.tabPage6.Text = "测试5";
  6965. this.tabPage6.UseVisualStyleBackColor = true;
  6966. //
  6967. // plcUiNumberDisplay139
  6968. //
  6969. this.plcUiNumberDisplay139.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6970. this.plcUiNumberDisplay139.DecimalPlaces = 2;
  6971. this.plcUiNumberDisplay139.DisabilityTriggerNode = null;
  6972. this.plcUiNumberDisplay139.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6973. this.plcUiNumberDisplay139.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6974. this.plcUiNumberDisplay139.Gain = 1D;
  6975. this.plcUiNumberDisplay139.IntegerDigits = 0;
  6976. this.plcUiNumberDisplay139.InvisibilityTriggerNode = null;
  6977. this.plcUiNumberDisplay139.Location = new System.Drawing.Point(241, 451);
  6978. this.plcUiNumberDisplay139.Name = "plcUiNumberDisplay139";
  6979. this.plcUiNumberDisplay139.Preffix = null;
  6980. this.plcUiNumberDisplay139.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[12]", NodeType.REAL, null);
  6981. this.plcUiNumberDisplay139.Size = new System.Drawing.Size(80, 27);
  6982. this.plcUiNumberDisplay139.Suffix = "%";
  6983. this.plcUiNumberDisplay139.TabIndex = 459;
  6984. this.plcUiNumberDisplay139.Text = "1.00";
  6985. this.plcUiNumberDisplay139.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6986. this.plcUiNumberDisplay139.WriteNode = null;
  6987. //
  6988. // plcUiNumberDisplay140
  6989. //
  6990. this.plcUiNumberDisplay140.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  6991. this.plcUiNumberDisplay140.DecimalPlaces = 2;
  6992. this.plcUiNumberDisplay140.DisabilityTriggerNode = null;
  6993. this.plcUiNumberDisplay140.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6994. this.plcUiNumberDisplay140.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  6995. this.plcUiNumberDisplay140.Gain = 1D;
  6996. this.plcUiNumberDisplay140.IntegerDigits = 0;
  6997. this.plcUiNumberDisplay140.InvisibilityTriggerNode = null;
  6998. this.plcUiNumberDisplay140.Location = new System.Drawing.Point(241, 414);
  6999. this.plcUiNumberDisplay140.Name = "plcUiNumberDisplay140";
  7000. this.plcUiNumberDisplay140.Preffix = null;
  7001. this.plcUiNumberDisplay140.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[11]", NodeType.REAL, null);
  7002. this.plcUiNumberDisplay140.Size = new System.Drawing.Size(80, 27);
  7003. this.plcUiNumberDisplay140.Suffix = "%";
  7004. this.plcUiNumberDisplay140.TabIndex = 458;
  7005. this.plcUiNumberDisplay140.Text = "1.00";
  7006. this.plcUiNumberDisplay140.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7007. this.plcUiNumberDisplay140.WriteNode = null;
  7008. //
  7009. // plcUiNumberDisplay141
  7010. //
  7011. this.plcUiNumberDisplay141.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7012. this.plcUiNumberDisplay141.DecimalPlaces = 2;
  7013. this.plcUiNumberDisplay141.DisabilityTriggerNode = null;
  7014. this.plcUiNumberDisplay141.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7015. this.plcUiNumberDisplay141.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7016. this.plcUiNumberDisplay141.Gain = 1D;
  7017. this.plcUiNumberDisplay141.IntegerDigits = 0;
  7018. this.plcUiNumberDisplay141.InvisibilityTriggerNode = null;
  7019. this.plcUiNumberDisplay141.Location = new System.Drawing.Point(241, 377);
  7020. this.plcUiNumberDisplay141.Name = "plcUiNumberDisplay141";
  7021. this.plcUiNumberDisplay141.Preffix = null;
  7022. this.plcUiNumberDisplay141.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[10]", NodeType.REAL, null);
  7023. this.plcUiNumberDisplay141.Size = new System.Drawing.Size(80, 27);
  7024. this.plcUiNumberDisplay141.Suffix = "%";
  7025. this.plcUiNumberDisplay141.TabIndex = 457;
  7026. this.plcUiNumberDisplay141.Text = "1.00";
  7027. this.plcUiNumberDisplay141.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7028. this.plcUiNumberDisplay141.WriteNode = null;
  7029. //
  7030. // plcUiNumberDisplay142
  7031. //
  7032. this.plcUiNumberDisplay142.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7033. this.plcUiNumberDisplay142.DecimalPlaces = 2;
  7034. this.plcUiNumberDisplay142.DisabilityTriggerNode = null;
  7035. this.plcUiNumberDisplay142.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7036. this.plcUiNumberDisplay142.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7037. this.plcUiNumberDisplay142.Gain = 1D;
  7038. this.plcUiNumberDisplay142.IntegerDigits = 0;
  7039. this.plcUiNumberDisplay142.InvisibilityTriggerNode = null;
  7040. this.plcUiNumberDisplay142.Location = new System.Drawing.Point(241, 340);
  7041. this.plcUiNumberDisplay142.Name = "plcUiNumberDisplay142";
  7042. this.plcUiNumberDisplay142.Preffix = null;
  7043. this.plcUiNumberDisplay142.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[9]", NodeType.REAL, null);
  7044. this.plcUiNumberDisplay142.Size = new System.Drawing.Size(80, 27);
  7045. this.plcUiNumberDisplay142.Suffix = "%";
  7046. this.plcUiNumberDisplay142.TabIndex = 456;
  7047. this.plcUiNumberDisplay142.Text = "1.00";
  7048. this.plcUiNumberDisplay142.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7049. this.plcUiNumberDisplay142.WriteNode = null;
  7050. //
  7051. // plcUiNumberDisplay143
  7052. //
  7053. this.plcUiNumberDisplay143.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7054. this.plcUiNumberDisplay143.DecimalPlaces = 2;
  7055. this.plcUiNumberDisplay143.DisabilityTriggerNode = null;
  7056. this.plcUiNumberDisplay143.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7057. this.plcUiNumberDisplay143.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7058. this.plcUiNumberDisplay143.Gain = 1D;
  7059. this.plcUiNumberDisplay143.IntegerDigits = 0;
  7060. this.plcUiNumberDisplay143.InvisibilityTriggerNode = null;
  7061. this.plcUiNumberDisplay143.Location = new System.Drawing.Point(241, 303);
  7062. this.plcUiNumberDisplay143.Name = "plcUiNumberDisplay143";
  7063. this.plcUiNumberDisplay143.Preffix = null;
  7064. this.plcUiNumberDisplay143.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[8]", NodeType.REAL, null);
  7065. this.plcUiNumberDisplay143.Size = new System.Drawing.Size(80, 27);
  7066. this.plcUiNumberDisplay143.Suffix = "%";
  7067. this.plcUiNumberDisplay143.TabIndex = 455;
  7068. this.plcUiNumberDisplay143.Text = "1.00";
  7069. this.plcUiNumberDisplay143.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7070. this.plcUiNumberDisplay143.WriteNode = null;
  7071. //
  7072. // plcUiNumberDisplay144
  7073. //
  7074. this.plcUiNumberDisplay144.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7075. this.plcUiNumberDisplay144.DecimalPlaces = 2;
  7076. this.plcUiNumberDisplay144.DisabilityTriggerNode = null;
  7077. this.plcUiNumberDisplay144.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7078. this.plcUiNumberDisplay144.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7079. this.plcUiNumberDisplay144.Gain = 1D;
  7080. this.plcUiNumberDisplay144.IntegerDigits = 0;
  7081. this.plcUiNumberDisplay144.InvisibilityTriggerNode = null;
  7082. this.plcUiNumberDisplay144.Location = new System.Drawing.Point(241, 266);
  7083. this.plcUiNumberDisplay144.Name = "plcUiNumberDisplay144";
  7084. this.plcUiNumberDisplay144.Preffix = null;
  7085. this.plcUiNumberDisplay144.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[7]", NodeType.REAL, null);
  7086. this.plcUiNumberDisplay144.Size = new System.Drawing.Size(80, 27);
  7087. this.plcUiNumberDisplay144.Suffix = "%";
  7088. this.plcUiNumberDisplay144.TabIndex = 454;
  7089. this.plcUiNumberDisplay144.Text = "1.00";
  7090. this.plcUiNumberDisplay144.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7091. this.plcUiNumberDisplay144.WriteNode = null;
  7092. //
  7093. // plcUiNumberDisplay145
  7094. //
  7095. this.plcUiNumberDisplay145.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7096. this.plcUiNumberDisplay145.DecimalPlaces = 2;
  7097. this.plcUiNumberDisplay145.DisabilityTriggerNode = null;
  7098. this.plcUiNumberDisplay145.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7099. this.plcUiNumberDisplay145.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7100. this.plcUiNumberDisplay145.Gain = 1D;
  7101. this.plcUiNumberDisplay145.IntegerDigits = 0;
  7102. this.plcUiNumberDisplay145.InvisibilityTriggerNode = null;
  7103. this.plcUiNumberDisplay145.Location = new System.Drawing.Point(241, 229);
  7104. this.plcUiNumberDisplay145.Name = "plcUiNumberDisplay145";
  7105. this.plcUiNumberDisplay145.Preffix = null;
  7106. this.plcUiNumberDisplay145.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[6]", NodeType.REAL, null);
  7107. this.plcUiNumberDisplay145.Size = new System.Drawing.Size(80, 27);
  7108. this.plcUiNumberDisplay145.Suffix = "%";
  7109. this.plcUiNumberDisplay145.TabIndex = 453;
  7110. this.plcUiNumberDisplay145.Text = "1.00";
  7111. this.plcUiNumberDisplay145.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7112. this.plcUiNumberDisplay145.WriteNode = null;
  7113. //
  7114. // plcUiNumberDisplay146
  7115. //
  7116. this.plcUiNumberDisplay146.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7117. this.plcUiNumberDisplay146.DecimalPlaces = 2;
  7118. this.plcUiNumberDisplay146.DisabilityTriggerNode = null;
  7119. this.plcUiNumberDisplay146.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7120. this.plcUiNumberDisplay146.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7121. this.plcUiNumberDisplay146.Gain = 1D;
  7122. this.plcUiNumberDisplay146.IntegerDigits = 0;
  7123. this.plcUiNumberDisplay146.InvisibilityTriggerNode = null;
  7124. this.plcUiNumberDisplay146.Location = new System.Drawing.Point(241, 192);
  7125. this.plcUiNumberDisplay146.Name = "plcUiNumberDisplay146";
  7126. this.plcUiNumberDisplay146.Preffix = null;
  7127. this.plcUiNumberDisplay146.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[5]", NodeType.REAL, null);
  7128. this.plcUiNumberDisplay146.Size = new System.Drawing.Size(80, 27);
  7129. this.plcUiNumberDisplay146.Suffix = "%";
  7130. this.plcUiNumberDisplay146.TabIndex = 452;
  7131. this.plcUiNumberDisplay146.Text = "1.00";
  7132. this.plcUiNumberDisplay146.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7133. this.plcUiNumberDisplay146.WriteNode = null;
  7134. //
  7135. // plcUiNumberDisplay147
  7136. //
  7137. this.plcUiNumberDisplay147.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7138. this.plcUiNumberDisplay147.DecimalPlaces = 2;
  7139. this.plcUiNumberDisplay147.DisabilityTriggerNode = null;
  7140. this.plcUiNumberDisplay147.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7141. this.plcUiNumberDisplay147.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7142. this.plcUiNumberDisplay147.Gain = 1D;
  7143. this.plcUiNumberDisplay147.IntegerDigits = 0;
  7144. this.plcUiNumberDisplay147.InvisibilityTriggerNode = null;
  7145. this.plcUiNumberDisplay147.Location = new System.Drawing.Point(241, 155);
  7146. this.plcUiNumberDisplay147.Name = "plcUiNumberDisplay147";
  7147. this.plcUiNumberDisplay147.Preffix = null;
  7148. this.plcUiNumberDisplay147.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[4]", NodeType.REAL, null);
  7149. this.plcUiNumberDisplay147.Size = new System.Drawing.Size(80, 27);
  7150. this.plcUiNumberDisplay147.Suffix = "%";
  7151. this.plcUiNumberDisplay147.TabIndex = 451;
  7152. this.plcUiNumberDisplay147.Text = "1.00";
  7153. this.plcUiNumberDisplay147.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7154. this.plcUiNumberDisplay147.WriteNode = null;
  7155. //
  7156. // plcUiNumberDisplay148
  7157. //
  7158. this.plcUiNumberDisplay148.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7159. this.plcUiNumberDisplay148.DecimalPlaces = 2;
  7160. this.plcUiNumberDisplay148.DisabilityTriggerNode = null;
  7161. this.plcUiNumberDisplay148.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7162. this.plcUiNumberDisplay148.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7163. this.plcUiNumberDisplay148.Gain = 1D;
  7164. this.plcUiNumberDisplay148.IntegerDigits = 0;
  7165. this.plcUiNumberDisplay148.InvisibilityTriggerNode = null;
  7166. this.plcUiNumberDisplay148.Location = new System.Drawing.Point(241, 118);
  7167. this.plcUiNumberDisplay148.Name = "plcUiNumberDisplay148";
  7168. this.plcUiNumberDisplay148.Preffix = null;
  7169. this.plcUiNumberDisplay148.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[3]", NodeType.REAL, null);
  7170. this.plcUiNumberDisplay148.Size = new System.Drawing.Size(80, 27);
  7171. this.plcUiNumberDisplay148.Suffix = "%";
  7172. this.plcUiNumberDisplay148.TabIndex = 450;
  7173. this.plcUiNumberDisplay148.Text = "1.00";
  7174. this.plcUiNumberDisplay148.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7175. this.plcUiNumberDisplay148.WriteNode = null;
  7176. //
  7177. // plcUiNumberDisplay149
  7178. //
  7179. this.plcUiNumberDisplay149.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7180. this.plcUiNumberDisplay149.DecimalPlaces = 2;
  7181. this.plcUiNumberDisplay149.DisabilityTriggerNode = null;
  7182. this.plcUiNumberDisplay149.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7183. this.plcUiNumberDisplay149.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7184. this.plcUiNumberDisplay149.Gain = 1D;
  7185. this.plcUiNumberDisplay149.IntegerDigits = 0;
  7186. this.plcUiNumberDisplay149.InvisibilityTriggerNode = null;
  7187. this.plcUiNumberDisplay149.Location = new System.Drawing.Point(241, 80);
  7188. this.plcUiNumberDisplay149.Name = "plcUiNumberDisplay149";
  7189. this.plcUiNumberDisplay149.Preffix = null;
  7190. this.plcUiNumberDisplay149.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[2]", NodeType.REAL, null);
  7191. this.plcUiNumberDisplay149.Size = new System.Drawing.Size(80, 27);
  7192. this.plcUiNumberDisplay149.Suffix = "%";
  7193. this.plcUiNumberDisplay149.TabIndex = 449;
  7194. this.plcUiNumberDisplay149.Text = "1.00";
  7195. this.plcUiNumberDisplay149.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7196. this.plcUiNumberDisplay149.WriteNode = null;
  7197. //
  7198. // plcUiNumberDisplay150
  7199. //
  7200. this.plcUiNumberDisplay150.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7201. this.plcUiNumberDisplay150.DecimalPlaces = 2;
  7202. this.plcUiNumberDisplay150.DisabilityTriggerNode = null;
  7203. this.plcUiNumberDisplay150.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7204. this.plcUiNumberDisplay150.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7205. this.plcUiNumberDisplay150.Gain = 1D;
  7206. this.plcUiNumberDisplay150.IntegerDigits = 0;
  7207. this.plcUiNumberDisplay150.InvisibilityTriggerNode = null;
  7208. this.plcUiNumberDisplay150.Location = new System.Drawing.Point(241, 43);
  7209. this.plcUiNumberDisplay150.Name = "plcUiNumberDisplay150";
  7210. this.plcUiNumberDisplay150.Preffix = null;
  7211. this.plcUiNumberDisplay150.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin当前占比比率[1]", NodeType.REAL, null);
  7212. this.plcUiNumberDisplay150.Size = new System.Drawing.Size(80, 27);
  7213. this.plcUiNumberDisplay150.Suffix = "%";
  7214. this.plcUiNumberDisplay150.TabIndex = 448;
  7215. this.plcUiNumberDisplay150.Text = "1.00";
  7216. this.plcUiNumberDisplay150.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7217. this.plcUiNumberDisplay150.WriteNode = null;
  7218. //
  7219. // plcUiNumberDisplay126
  7220. //
  7221. this.plcUiNumberDisplay126.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7222. this.plcUiNumberDisplay126.DecimalPlaces = 0;
  7223. this.plcUiNumberDisplay126.DisabilityTriggerNode = null;
  7224. this.plcUiNumberDisplay126.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7225. this.plcUiNumberDisplay126.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7226. this.plcUiNumberDisplay126.Gain = 1D;
  7227. this.plcUiNumberDisplay126.IntegerDigits = 0;
  7228. this.plcUiNumberDisplay126.InvisibilityTriggerNode = null;
  7229. this.plcUiNumberDisplay126.Location = new System.Drawing.Point(155, 451);
  7230. this.plcUiNumberDisplay126.Name = "plcUiNumberDisplay126";
  7231. this.plcUiNumberDisplay126.Preffix = null;
  7232. this.plcUiNumberDisplay126.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[12]", NodeType.UDINT, null);
  7233. this.plcUiNumberDisplay126.Size = new System.Drawing.Size(80, 27);
  7234. this.plcUiNumberDisplay126.Suffix = null;
  7235. this.plcUiNumberDisplay126.TabIndex = 447;
  7236. this.plcUiNumberDisplay126.Text = "1";
  7237. this.plcUiNumberDisplay126.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7238. this.plcUiNumberDisplay126.WriteNode = null;
  7239. //
  7240. // plcUiNumberDisplay127
  7241. //
  7242. this.plcUiNumberDisplay127.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7243. this.plcUiNumberDisplay127.DecimalPlaces = 0;
  7244. this.plcUiNumberDisplay127.DisabilityTriggerNode = null;
  7245. this.plcUiNumberDisplay127.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7246. this.plcUiNumberDisplay127.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7247. this.plcUiNumberDisplay127.Gain = 1D;
  7248. this.plcUiNumberDisplay127.IntegerDigits = 0;
  7249. this.plcUiNumberDisplay127.InvisibilityTriggerNode = null;
  7250. this.plcUiNumberDisplay127.Location = new System.Drawing.Point(155, 414);
  7251. this.plcUiNumberDisplay127.Name = "plcUiNumberDisplay127";
  7252. this.plcUiNumberDisplay127.Preffix = null;
  7253. this.plcUiNumberDisplay127.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[11]", NodeType.UDINT, null);
  7254. this.plcUiNumberDisplay127.Size = new System.Drawing.Size(80, 27);
  7255. this.plcUiNumberDisplay127.Suffix = null;
  7256. this.plcUiNumberDisplay127.TabIndex = 446;
  7257. this.plcUiNumberDisplay127.Text = "1";
  7258. this.plcUiNumberDisplay127.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7259. this.plcUiNumberDisplay127.WriteNode = null;
  7260. //
  7261. // plcUiNumberDisplay128
  7262. //
  7263. this.plcUiNumberDisplay128.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7264. this.plcUiNumberDisplay128.DecimalPlaces = 0;
  7265. this.plcUiNumberDisplay128.DisabilityTriggerNode = null;
  7266. this.plcUiNumberDisplay128.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7267. this.plcUiNumberDisplay128.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7268. this.plcUiNumberDisplay128.Gain = 1D;
  7269. this.plcUiNumberDisplay128.IntegerDigits = 0;
  7270. this.plcUiNumberDisplay128.InvisibilityTriggerNode = null;
  7271. this.plcUiNumberDisplay128.Location = new System.Drawing.Point(155, 377);
  7272. this.plcUiNumberDisplay128.Name = "plcUiNumberDisplay128";
  7273. this.plcUiNumberDisplay128.Preffix = null;
  7274. this.plcUiNumberDisplay128.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[10]", NodeType.UDINT, null);
  7275. this.plcUiNumberDisplay128.Size = new System.Drawing.Size(80, 27);
  7276. this.plcUiNumberDisplay128.Suffix = null;
  7277. this.plcUiNumberDisplay128.TabIndex = 445;
  7278. this.plcUiNumberDisplay128.Text = "1";
  7279. this.plcUiNumberDisplay128.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7280. this.plcUiNumberDisplay128.WriteNode = null;
  7281. //
  7282. // plcUiNumberDisplay129
  7283. //
  7284. this.plcUiNumberDisplay129.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7285. this.plcUiNumberDisplay129.DecimalPlaces = 0;
  7286. this.plcUiNumberDisplay129.DisabilityTriggerNode = null;
  7287. this.plcUiNumberDisplay129.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7288. this.plcUiNumberDisplay129.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7289. this.plcUiNumberDisplay129.Gain = 1D;
  7290. this.plcUiNumberDisplay129.IntegerDigits = 0;
  7291. this.plcUiNumberDisplay129.InvisibilityTriggerNode = null;
  7292. this.plcUiNumberDisplay129.Location = new System.Drawing.Point(155, 340);
  7293. this.plcUiNumberDisplay129.Name = "plcUiNumberDisplay129";
  7294. this.plcUiNumberDisplay129.Preffix = null;
  7295. this.plcUiNumberDisplay129.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[9]", NodeType.UDINT, null);
  7296. this.plcUiNumberDisplay129.Size = new System.Drawing.Size(80, 27);
  7297. this.plcUiNumberDisplay129.Suffix = null;
  7298. this.plcUiNumberDisplay129.TabIndex = 444;
  7299. this.plcUiNumberDisplay129.Text = "1";
  7300. this.plcUiNumberDisplay129.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7301. this.plcUiNumberDisplay129.WriteNode = null;
  7302. //
  7303. // plcUiNumberDisplay130
  7304. //
  7305. this.plcUiNumberDisplay130.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7306. this.plcUiNumberDisplay130.DecimalPlaces = 0;
  7307. this.plcUiNumberDisplay130.DisabilityTriggerNode = null;
  7308. this.plcUiNumberDisplay130.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7309. this.plcUiNumberDisplay130.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7310. this.plcUiNumberDisplay130.Gain = 1D;
  7311. this.plcUiNumberDisplay130.IntegerDigits = 0;
  7312. this.plcUiNumberDisplay130.InvisibilityTriggerNode = null;
  7313. this.plcUiNumberDisplay130.Location = new System.Drawing.Point(155, 303);
  7314. this.plcUiNumberDisplay130.Name = "plcUiNumberDisplay130";
  7315. this.plcUiNumberDisplay130.Preffix = null;
  7316. this.plcUiNumberDisplay130.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[8]", NodeType.UDINT, null);
  7317. this.plcUiNumberDisplay130.Size = new System.Drawing.Size(80, 27);
  7318. this.plcUiNumberDisplay130.Suffix = null;
  7319. this.plcUiNumberDisplay130.TabIndex = 443;
  7320. this.plcUiNumberDisplay130.Text = "1";
  7321. this.plcUiNumberDisplay130.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7322. this.plcUiNumberDisplay130.WriteNode = null;
  7323. //
  7324. // plcUiNumberDisplay131
  7325. //
  7326. this.plcUiNumberDisplay131.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7327. this.plcUiNumberDisplay131.DecimalPlaces = 0;
  7328. this.plcUiNumberDisplay131.DisabilityTriggerNode = null;
  7329. this.plcUiNumberDisplay131.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7330. this.plcUiNumberDisplay131.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7331. this.plcUiNumberDisplay131.Gain = 1D;
  7332. this.plcUiNumberDisplay131.IntegerDigits = 0;
  7333. this.plcUiNumberDisplay131.InvisibilityTriggerNode = null;
  7334. this.plcUiNumberDisplay131.Location = new System.Drawing.Point(155, 266);
  7335. this.plcUiNumberDisplay131.Name = "plcUiNumberDisplay131";
  7336. this.plcUiNumberDisplay131.Preffix = null;
  7337. this.plcUiNumberDisplay131.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[7]", NodeType.UDINT, null);
  7338. this.plcUiNumberDisplay131.Size = new System.Drawing.Size(80, 27);
  7339. this.plcUiNumberDisplay131.Suffix = null;
  7340. this.plcUiNumberDisplay131.TabIndex = 442;
  7341. this.plcUiNumberDisplay131.Text = "1";
  7342. this.plcUiNumberDisplay131.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7343. this.plcUiNumberDisplay131.WriteNode = null;
  7344. //
  7345. // plcUiNumberDisplay132
  7346. //
  7347. this.plcUiNumberDisplay132.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7348. this.plcUiNumberDisplay132.DecimalPlaces = 0;
  7349. this.plcUiNumberDisplay132.DisabilityTriggerNode = null;
  7350. this.plcUiNumberDisplay132.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7351. this.plcUiNumberDisplay132.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7352. this.plcUiNumberDisplay132.Gain = 1D;
  7353. this.plcUiNumberDisplay132.IntegerDigits = 0;
  7354. this.plcUiNumberDisplay132.InvisibilityTriggerNode = null;
  7355. this.plcUiNumberDisplay132.Location = new System.Drawing.Point(155, 229);
  7356. this.plcUiNumberDisplay132.Name = "plcUiNumberDisplay132";
  7357. this.plcUiNumberDisplay132.Preffix = null;
  7358. this.plcUiNumberDisplay132.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[6]", NodeType.UDINT, null);
  7359. this.plcUiNumberDisplay132.Size = new System.Drawing.Size(80, 27);
  7360. this.plcUiNumberDisplay132.Suffix = null;
  7361. this.plcUiNumberDisplay132.TabIndex = 441;
  7362. this.plcUiNumberDisplay132.Text = "1";
  7363. this.plcUiNumberDisplay132.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7364. this.plcUiNumberDisplay132.WriteNode = null;
  7365. //
  7366. // plcUiNumberDisplay133
  7367. //
  7368. this.plcUiNumberDisplay133.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7369. this.plcUiNumberDisplay133.DecimalPlaces = 0;
  7370. this.plcUiNumberDisplay133.DisabilityTriggerNode = null;
  7371. this.plcUiNumberDisplay133.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7372. this.plcUiNumberDisplay133.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7373. this.plcUiNumberDisplay133.Gain = 1D;
  7374. this.plcUiNumberDisplay133.IntegerDigits = 0;
  7375. this.plcUiNumberDisplay133.InvisibilityTriggerNode = null;
  7376. this.plcUiNumberDisplay133.Location = new System.Drawing.Point(155, 192);
  7377. this.plcUiNumberDisplay133.Name = "plcUiNumberDisplay133";
  7378. this.plcUiNumberDisplay133.Preffix = null;
  7379. this.plcUiNumberDisplay133.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[5]", NodeType.UDINT, null);
  7380. this.plcUiNumberDisplay133.Size = new System.Drawing.Size(80, 27);
  7381. this.plcUiNumberDisplay133.Suffix = null;
  7382. this.plcUiNumberDisplay133.TabIndex = 440;
  7383. this.plcUiNumberDisplay133.Text = "1";
  7384. this.plcUiNumberDisplay133.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7385. this.plcUiNumberDisplay133.WriteNode = null;
  7386. //
  7387. // plcUiNumberDisplay134
  7388. //
  7389. this.plcUiNumberDisplay134.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7390. this.plcUiNumberDisplay134.DecimalPlaces = 0;
  7391. this.plcUiNumberDisplay134.DisabilityTriggerNode = null;
  7392. this.plcUiNumberDisplay134.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7393. this.plcUiNumberDisplay134.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7394. this.plcUiNumberDisplay134.Gain = 1D;
  7395. this.plcUiNumberDisplay134.IntegerDigits = 0;
  7396. this.plcUiNumberDisplay134.InvisibilityTriggerNode = null;
  7397. this.plcUiNumberDisplay134.Location = new System.Drawing.Point(155, 155);
  7398. this.plcUiNumberDisplay134.Name = "plcUiNumberDisplay134";
  7399. this.plcUiNumberDisplay134.Preffix = null;
  7400. this.plcUiNumberDisplay134.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[4]", NodeType.UDINT, null);
  7401. this.plcUiNumberDisplay134.Size = new System.Drawing.Size(80, 27);
  7402. this.plcUiNumberDisplay134.Suffix = null;
  7403. this.plcUiNumberDisplay134.TabIndex = 439;
  7404. this.plcUiNumberDisplay134.Text = "1";
  7405. this.plcUiNumberDisplay134.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7406. this.plcUiNumberDisplay134.WriteNode = null;
  7407. //
  7408. // plcUiNumberDisplay135
  7409. //
  7410. this.plcUiNumberDisplay135.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7411. this.plcUiNumberDisplay135.DecimalPlaces = 0;
  7412. this.plcUiNumberDisplay135.DisabilityTriggerNode = null;
  7413. this.plcUiNumberDisplay135.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7414. this.plcUiNumberDisplay135.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7415. this.plcUiNumberDisplay135.Gain = 1D;
  7416. this.plcUiNumberDisplay135.IntegerDigits = 0;
  7417. this.plcUiNumberDisplay135.InvisibilityTriggerNode = null;
  7418. this.plcUiNumberDisplay135.Location = new System.Drawing.Point(155, 118);
  7419. this.plcUiNumberDisplay135.Name = "plcUiNumberDisplay135";
  7420. this.plcUiNumberDisplay135.Preffix = null;
  7421. this.plcUiNumberDisplay135.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[3]", NodeType.UDINT, null);
  7422. this.plcUiNumberDisplay135.Size = new System.Drawing.Size(80, 27);
  7423. this.plcUiNumberDisplay135.Suffix = null;
  7424. this.plcUiNumberDisplay135.TabIndex = 438;
  7425. this.plcUiNumberDisplay135.Text = "1";
  7426. this.plcUiNumberDisplay135.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7427. this.plcUiNumberDisplay135.WriteNode = null;
  7428. //
  7429. // plcUiNumberDisplay136
  7430. //
  7431. this.plcUiNumberDisplay136.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7432. this.plcUiNumberDisplay136.DecimalPlaces = 0;
  7433. this.plcUiNumberDisplay136.DisabilityTriggerNode = null;
  7434. this.plcUiNumberDisplay136.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7435. this.plcUiNumberDisplay136.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7436. this.plcUiNumberDisplay136.Gain = 1D;
  7437. this.plcUiNumberDisplay136.IntegerDigits = 0;
  7438. this.plcUiNumberDisplay136.InvisibilityTriggerNode = null;
  7439. this.plcUiNumberDisplay136.Location = new System.Drawing.Point(155, 80);
  7440. this.plcUiNumberDisplay136.Name = "plcUiNumberDisplay136";
  7441. this.plcUiNumberDisplay136.Preffix = null;
  7442. this.plcUiNumberDisplay136.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[2]", NodeType.UDINT, null);
  7443. this.plcUiNumberDisplay136.Size = new System.Drawing.Size(80, 27);
  7444. this.plcUiNumberDisplay136.Suffix = null;
  7445. this.plcUiNumberDisplay136.TabIndex = 437;
  7446. this.plcUiNumberDisplay136.Text = "1";
  7447. this.plcUiNumberDisplay136.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7448. this.plcUiNumberDisplay136.WriteNode = null;
  7449. //
  7450. // plcUiNumberDisplay137
  7451. //
  7452. this.plcUiNumberDisplay137.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7453. this.plcUiNumberDisplay137.DecimalPlaces = 0;
  7454. this.plcUiNumberDisplay137.DisabilityTriggerNode = null;
  7455. this.plcUiNumberDisplay137.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7456. this.plcUiNumberDisplay137.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7457. this.plcUiNumberDisplay137.Gain = 1D;
  7458. this.plcUiNumberDisplay137.IntegerDigits = 0;
  7459. this.plcUiNumberDisplay137.InvisibilityTriggerNode = null;
  7460. this.plcUiNumberDisplay137.Location = new System.Drawing.Point(155, 43);
  7461. this.plcUiNumberDisplay137.Name = "plcUiNumberDisplay137";
  7462. this.plcUiNumberDisplay137.Preffix = null;
  7463. this.plcUiNumberDisplay137.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_Bin结果统计[1]", NodeType.UDINT, null);
  7464. this.plcUiNumberDisplay137.Size = new System.Drawing.Size(80, 27);
  7465. this.plcUiNumberDisplay137.Suffix = null;
  7466. this.plcUiNumberDisplay137.TabIndex = 436;
  7467. this.plcUiNumberDisplay137.Text = "1";
  7468. this.plcUiNumberDisplay137.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7469. this.plcUiNumberDisplay137.WriteNode = null;
  7470. //
  7471. // plcUiNumberDisplay138
  7472. //
  7473. this.plcUiNumberDisplay138.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  7474. this.plcUiNumberDisplay138.DecimalPlaces = 0;
  7475. this.plcUiNumberDisplay138.DisabilityTriggerNode = null;
  7476. this.plcUiNumberDisplay138.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7477. this.plcUiNumberDisplay138.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7478. this.plcUiNumberDisplay138.Gain = 1D;
  7479. this.plcUiNumberDisplay138.IntegerDigits = 0;
  7480. this.plcUiNumberDisplay138.InvisibilityTriggerNode = null;
  7481. this.plcUiNumberDisplay138.Location = new System.Drawing.Point(155, 489);
  7482. this.plcUiNumberDisplay138.Name = "plcUiNumberDisplay138";
  7483. this.plcUiNumberDisplay138.Preffix = null;
  7484. this.plcUiNumberDisplay138.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_测试总数", NodeType.UDINT, "对应FB ud测试总计数");
  7485. this.plcUiNumberDisplay138.Size = new System.Drawing.Size(80, 27);
  7486. this.plcUiNumberDisplay138.Suffix = null;
  7487. this.plcUiNumberDisplay138.TabIndex = 435;
  7488. this.plcUiNumberDisplay138.Text = "1";
  7489. this.plcUiNumberDisplay138.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7490. this.plcUiNumberDisplay138.WriteNode = null;
  7491. //
  7492. // txt测试5统计起始数量
  7493. //
  7494. this.txt测试5统计起始数量.Cursor = System.Windows.Forms.Cursors.IBeam;
  7495. this.txt测试5统计起始数量.DisabilityTriggerNode = null;
  7496. this.txt测试5统计起始数量.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7497. this.txt测试5统计起始数量.Gain = 1D;
  7498. this.txt测试5统计起始数量.IntegerDigits = 0;
  7499. this.txt测试5统计起始数量.InvisibilityTriggerNode = null;
  7500. this.txt测试5统计起始数量.Location = new System.Drawing.Point(155, 521);
  7501. this.txt测试5统计起始数量.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7502. this.txt测试5统计起始数量.Minimum = 0D;
  7503. this.txt测试5统计起始数量.MinimumSize = new System.Drawing.Size(1, 16);
  7504. this.txt测试5统计起始数量.Name = "txt测试5统计起始数量";
  7505. this.txt测试5统计起始数量.Padding = new System.Windows.Forms.Padding(5);
  7506. this.txt测试5统计起始数量.ReadNode = new Node("Application.A25_TestStation_Auto.udi测试5_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  7507. this.txt测试5统计起始数量.ShowText = false;
  7508. this.txt测试5统计起始数量.Size = new System.Drawing.Size(80, 27);
  7509. this.txt测试5统计起始数量.TabIndex = 434;
  7510. this.txt测试5统计起始数量.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7511. this.txt测试5统计起始数量.Type = Sunny.UI.UITextBox.UIEditType.Integer;
  7512. this.txt测试5统计起始数量.Watermark = "";
  7513. this.txt测试5统计起始数量.WriteNode = new Node("Application.A25_TestStation_Auto.udi测试5_触发统计起始数量", NodeType.UDINT, "对应FB ud开始统计总量");
  7514. //
  7515. // txt测试5BIN12占比上限百分比
  7516. //
  7517. this.txt测试5BIN12占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7518. this.txt测试5BIN12占比上限百分比.DisabilityTriggerNode = null;
  7519. this.txt测试5BIN12占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7520. this.txt测试5BIN12占比上限百分比.Gain = 1D;
  7521. this.txt测试5BIN12占比上限百分比.IntegerDigits = 0;
  7522. this.txt测试5BIN12占比上限百分比.InvisibilityTriggerNode = null;
  7523. this.txt测试5BIN12占比上限百分比.Location = new System.Drawing.Point(68, 450);
  7524. this.txt测试5BIN12占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7525. this.txt测试5BIN12占比上限百分比.Minimum = 0D;
  7526. this.txt测试5BIN12占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7527. this.txt测试5BIN12占比上限百分比.Name = "txt测试5BIN12占比上限百分比";
  7528. this.txt测试5BIN12占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7529. this.txt测试5BIN12占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[12]", NodeType.REAL, null);
  7530. this.txt测试5BIN12占比上限百分比.ShowText = false;
  7531. this.txt测试5BIN12占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7532. this.txt测试5BIN12占比上限百分比.TabIndex = 433;
  7533. this.txt测试5BIN12占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7534. this.txt测试5BIN12占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7535. this.txt测试5BIN12占比上限百分比.Watermark = "";
  7536. this.txt测试5BIN12占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[12]", NodeType.REAL, null);
  7537. //
  7538. // txt测试5BIN11占比上限百分比
  7539. //
  7540. this.txt测试5BIN11占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7541. this.txt测试5BIN11占比上限百分比.DisabilityTriggerNode = null;
  7542. this.txt测试5BIN11占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7543. this.txt测试5BIN11占比上限百分比.Gain = 1D;
  7544. this.txt测试5BIN11占比上限百分比.IntegerDigits = 0;
  7545. this.txt测试5BIN11占比上限百分比.InvisibilityTriggerNode = null;
  7546. this.txt测试5BIN11占比上限百分比.Location = new System.Drawing.Point(68, 413);
  7547. this.txt测试5BIN11占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7548. this.txt测试5BIN11占比上限百分比.Minimum = 0D;
  7549. this.txt测试5BIN11占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7550. this.txt测试5BIN11占比上限百分比.Name = "txt测试5BIN11占比上限百分比";
  7551. this.txt测试5BIN11占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7552. this.txt测试5BIN11占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[11]", NodeType.REAL, null);
  7553. this.txt测试5BIN11占比上限百分比.ShowText = false;
  7554. this.txt测试5BIN11占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7555. this.txt测试5BIN11占比上限百分比.TabIndex = 432;
  7556. this.txt测试5BIN11占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7557. this.txt测试5BIN11占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7558. this.txt测试5BIN11占比上限百分比.Watermark = "";
  7559. this.txt测试5BIN11占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[11]", NodeType.REAL, null);
  7560. //
  7561. // txt测试5BIN10占比上限百分比
  7562. //
  7563. this.txt测试5BIN10占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7564. this.txt测试5BIN10占比上限百分比.DisabilityTriggerNode = null;
  7565. this.txt测试5BIN10占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7566. this.txt测试5BIN10占比上限百分比.Gain = 1D;
  7567. this.txt测试5BIN10占比上限百分比.IntegerDigits = 0;
  7568. this.txt测试5BIN10占比上限百分比.InvisibilityTriggerNode = null;
  7569. this.txt测试5BIN10占比上限百分比.Location = new System.Drawing.Point(68, 376);
  7570. this.txt测试5BIN10占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7571. this.txt测试5BIN10占比上限百分比.Minimum = 0D;
  7572. this.txt测试5BIN10占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7573. this.txt测试5BIN10占比上限百分比.Name = "txt测试5BIN10占比上限百分比";
  7574. this.txt测试5BIN10占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7575. this.txt测试5BIN10占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[10]", NodeType.REAL, null);
  7576. this.txt测试5BIN10占比上限百分比.ShowText = false;
  7577. this.txt测试5BIN10占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7578. this.txt测试5BIN10占比上限百分比.TabIndex = 431;
  7579. this.txt测试5BIN10占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7580. this.txt测试5BIN10占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7581. this.txt测试5BIN10占比上限百分比.Watermark = "";
  7582. this.txt测试5BIN10占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[10]", NodeType.REAL, null);
  7583. //
  7584. // txt测试5BIN9占比上限百分比
  7585. //
  7586. this.txt测试5BIN9占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7587. this.txt测试5BIN9占比上限百分比.DisabilityTriggerNode = null;
  7588. this.txt测试5BIN9占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7589. this.txt测试5BIN9占比上限百分比.Gain = 1D;
  7590. this.txt测试5BIN9占比上限百分比.IntegerDigits = 0;
  7591. this.txt测试5BIN9占比上限百分比.InvisibilityTriggerNode = null;
  7592. this.txt测试5BIN9占比上限百分比.Location = new System.Drawing.Point(68, 339);
  7593. this.txt测试5BIN9占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7594. this.txt测试5BIN9占比上限百分比.Minimum = 0D;
  7595. this.txt测试5BIN9占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7596. this.txt测试5BIN9占比上限百分比.Name = "txt测试5BIN9占比上限百分比";
  7597. this.txt测试5BIN9占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7598. this.txt测试5BIN9占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[9]", NodeType.REAL, null);
  7599. this.txt测试5BIN9占比上限百分比.ShowText = false;
  7600. this.txt测试5BIN9占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7601. this.txt测试5BIN9占比上限百分比.TabIndex = 430;
  7602. this.txt测试5BIN9占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7603. this.txt测试5BIN9占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7604. this.txt测试5BIN9占比上限百分比.Watermark = "";
  7605. this.txt测试5BIN9占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[9]", NodeType.REAL, null);
  7606. //
  7607. // txt测试5BIN8占比上限百分比
  7608. //
  7609. this.txt测试5BIN8占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7610. this.txt测试5BIN8占比上限百分比.DisabilityTriggerNode = null;
  7611. this.txt测试5BIN8占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7612. this.txt测试5BIN8占比上限百分比.Gain = 1D;
  7613. this.txt测试5BIN8占比上限百分比.IntegerDigits = 0;
  7614. this.txt测试5BIN8占比上限百分比.InvisibilityTriggerNode = null;
  7615. this.txt测试5BIN8占比上限百分比.Location = new System.Drawing.Point(68, 302);
  7616. this.txt测试5BIN8占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7617. this.txt测试5BIN8占比上限百分比.Minimum = 0D;
  7618. this.txt测试5BIN8占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7619. this.txt测试5BIN8占比上限百分比.Name = "txt测试5BIN8占比上限百分比";
  7620. this.txt测试5BIN8占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7621. this.txt测试5BIN8占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[8]", NodeType.REAL, null);
  7622. this.txt测试5BIN8占比上限百分比.ShowText = false;
  7623. this.txt测试5BIN8占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7624. this.txt测试5BIN8占比上限百分比.TabIndex = 429;
  7625. this.txt测试5BIN8占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7626. this.txt测试5BIN8占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7627. this.txt测试5BIN8占比上限百分比.Watermark = "";
  7628. this.txt测试5BIN8占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[8]", NodeType.REAL, null);
  7629. //
  7630. // txt测试5BIN7占比上限百分比
  7631. //
  7632. this.txt测试5BIN7占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7633. this.txt测试5BIN7占比上限百分比.DisabilityTriggerNode = null;
  7634. this.txt测试5BIN7占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7635. this.txt测试5BIN7占比上限百分比.Gain = 1D;
  7636. this.txt测试5BIN7占比上限百分比.IntegerDigits = 0;
  7637. this.txt测试5BIN7占比上限百分比.InvisibilityTriggerNode = null;
  7638. this.txt测试5BIN7占比上限百分比.Location = new System.Drawing.Point(68, 265);
  7639. this.txt测试5BIN7占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7640. this.txt测试5BIN7占比上限百分比.Minimum = 0D;
  7641. this.txt测试5BIN7占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7642. this.txt测试5BIN7占比上限百分比.Name = "txt测试5BIN7占比上限百分比";
  7643. this.txt测试5BIN7占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7644. this.txt测试5BIN7占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[7]", NodeType.REAL, null);
  7645. this.txt测试5BIN7占比上限百分比.ShowText = false;
  7646. this.txt测试5BIN7占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7647. this.txt测试5BIN7占比上限百分比.TabIndex = 428;
  7648. this.txt测试5BIN7占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7649. this.txt测试5BIN7占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7650. this.txt测试5BIN7占比上限百分比.Watermark = "";
  7651. this.txt测试5BIN7占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[7]", NodeType.REAL, null);
  7652. //
  7653. // txt测试5BIN6占比上限百分比
  7654. //
  7655. this.txt测试5BIN6占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7656. this.txt测试5BIN6占比上限百分比.DisabilityTriggerNode = null;
  7657. this.txt测试5BIN6占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7658. this.txt测试5BIN6占比上限百分比.Gain = 1D;
  7659. this.txt测试5BIN6占比上限百分比.IntegerDigits = 0;
  7660. this.txt测试5BIN6占比上限百分比.InvisibilityTriggerNode = null;
  7661. this.txt测试5BIN6占比上限百分比.Location = new System.Drawing.Point(68, 228);
  7662. this.txt测试5BIN6占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7663. this.txt测试5BIN6占比上限百分比.Minimum = 0D;
  7664. this.txt测试5BIN6占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7665. this.txt测试5BIN6占比上限百分比.Name = "txt测试5BIN6占比上限百分比";
  7666. this.txt测试5BIN6占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7667. this.txt测试5BIN6占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[6]", NodeType.REAL, null);
  7668. this.txt测试5BIN6占比上限百分比.ShowText = false;
  7669. this.txt测试5BIN6占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7670. this.txt测试5BIN6占比上限百分比.TabIndex = 427;
  7671. this.txt测试5BIN6占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7672. this.txt测试5BIN6占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7673. this.txt测试5BIN6占比上限百分比.Watermark = "";
  7674. this.txt测试5BIN6占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[6]", NodeType.REAL, null);
  7675. //
  7676. // txt测试5BIN5占比上限百分比
  7677. //
  7678. this.txt测试5BIN5占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7679. this.txt测试5BIN5占比上限百分比.DisabilityTriggerNode = null;
  7680. this.txt测试5BIN5占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7681. this.txt测试5BIN5占比上限百分比.Gain = 1D;
  7682. this.txt测试5BIN5占比上限百分比.IntegerDigits = 0;
  7683. this.txt测试5BIN5占比上限百分比.InvisibilityTriggerNode = null;
  7684. this.txt测试5BIN5占比上限百分比.Location = new System.Drawing.Point(68, 191);
  7685. this.txt测试5BIN5占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7686. this.txt测试5BIN5占比上限百分比.Minimum = 0D;
  7687. this.txt测试5BIN5占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7688. this.txt测试5BIN5占比上限百分比.Name = "txt测试5BIN5占比上限百分比";
  7689. this.txt测试5BIN5占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7690. this.txt测试5BIN5占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[5]", NodeType.REAL, null);
  7691. this.txt测试5BIN5占比上限百分比.ShowText = false;
  7692. this.txt测试5BIN5占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7693. this.txt测试5BIN5占比上限百分比.TabIndex = 426;
  7694. this.txt测试5BIN5占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7695. this.txt测试5BIN5占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7696. this.txt测试5BIN5占比上限百分比.Watermark = "";
  7697. this.txt测试5BIN5占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[5]", NodeType.REAL, null);
  7698. //
  7699. // txt测试5BIN4占比上限百分比
  7700. //
  7701. this.txt测试5BIN4占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7702. this.txt测试5BIN4占比上限百分比.DisabilityTriggerNode = null;
  7703. this.txt测试5BIN4占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7704. this.txt测试5BIN4占比上限百分比.Gain = 1D;
  7705. this.txt测试5BIN4占比上限百分比.IntegerDigits = 0;
  7706. this.txt测试5BIN4占比上限百分比.InvisibilityTriggerNode = null;
  7707. this.txt测试5BIN4占比上限百分比.Location = new System.Drawing.Point(68, 154);
  7708. this.txt测试5BIN4占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7709. this.txt测试5BIN4占比上限百分比.Minimum = 0D;
  7710. this.txt测试5BIN4占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7711. this.txt测试5BIN4占比上限百分比.Name = "txt测试5BIN4占比上限百分比";
  7712. this.txt测试5BIN4占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7713. this.txt测试5BIN4占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[4]", NodeType.REAL, null);
  7714. this.txt测试5BIN4占比上限百分比.ShowText = false;
  7715. this.txt测试5BIN4占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7716. this.txt测试5BIN4占比上限百分比.TabIndex = 425;
  7717. this.txt测试5BIN4占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7718. this.txt测试5BIN4占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7719. this.txt测试5BIN4占比上限百分比.Watermark = "";
  7720. this.txt测试5BIN4占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[4]", NodeType.REAL, null);
  7721. //
  7722. // txt测试5BIN3占比上限百分比
  7723. //
  7724. this.txt测试5BIN3占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7725. this.txt测试5BIN3占比上限百分比.DisabilityTriggerNode = null;
  7726. this.txt测试5BIN3占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7727. this.txt测试5BIN3占比上限百分比.Gain = 1D;
  7728. this.txt测试5BIN3占比上限百分比.IntegerDigits = 0;
  7729. this.txt测试5BIN3占比上限百分比.InvisibilityTriggerNode = null;
  7730. this.txt测试5BIN3占比上限百分比.Location = new System.Drawing.Point(68, 117);
  7731. this.txt测试5BIN3占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7732. this.txt测试5BIN3占比上限百分比.Minimum = 0D;
  7733. this.txt测试5BIN3占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7734. this.txt测试5BIN3占比上限百分比.Name = "txt测试5BIN3占比上限百分比";
  7735. this.txt测试5BIN3占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7736. this.txt测试5BIN3占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[3]", NodeType.REAL, null);
  7737. this.txt测试5BIN3占比上限百分比.ShowText = false;
  7738. this.txt测试5BIN3占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7739. this.txt测试5BIN3占比上限百分比.TabIndex = 424;
  7740. this.txt测试5BIN3占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7741. this.txt测试5BIN3占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7742. this.txt测试5BIN3占比上限百分比.Watermark = "";
  7743. this.txt测试5BIN3占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[3]", NodeType.REAL, null);
  7744. //
  7745. // txt测试5BIN2占比上限百分比
  7746. //
  7747. this.txt测试5BIN2占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7748. this.txt测试5BIN2占比上限百分比.DisabilityTriggerNode = null;
  7749. this.txt测试5BIN2占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7750. this.txt测试5BIN2占比上限百分比.Gain = 1D;
  7751. this.txt测试5BIN2占比上限百分比.IntegerDigits = 0;
  7752. this.txt测试5BIN2占比上限百分比.InvisibilityTriggerNode = null;
  7753. this.txt测试5BIN2占比上限百分比.Location = new System.Drawing.Point(68, 80);
  7754. this.txt测试5BIN2占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7755. this.txt测试5BIN2占比上限百分比.Minimum = 0D;
  7756. this.txt测试5BIN2占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7757. this.txt测试5BIN2占比上限百分比.Name = "txt测试5BIN2占比上限百分比";
  7758. this.txt测试5BIN2占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7759. this.txt测试5BIN2占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[2]", NodeType.REAL, null);
  7760. this.txt测试5BIN2占比上限百分比.ShowText = false;
  7761. this.txt测试5BIN2占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7762. this.txt测试5BIN2占比上限百分比.TabIndex = 423;
  7763. this.txt测试5BIN2占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7764. this.txt测试5BIN2占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7765. this.txt测试5BIN2占比上限百分比.Watermark = "";
  7766. this.txt测试5BIN2占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[2]", NodeType.REAL, null);
  7767. //
  7768. // txt测试5BIN1占比上限百分比
  7769. //
  7770. this.txt测试5BIN1占比上限百分比.Cursor = System.Windows.Forms.Cursors.IBeam;
  7771. this.txt测试5BIN1占比上限百分比.DisabilityTriggerNode = null;
  7772. this.txt测试5BIN1占比上限百分比.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7773. this.txt测试5BIN1占比上限百分比.Gain = 1D;
  7774. this.txt测试5BIN1占比上限百分比.IntegerDigits = 0;
  7775. this.txt测试5BIN1占比上限百分比.InvisibilityTriggerNode = null;
  7776. this.txt测试5BIN1占比上限百分比.Location = new System.Drawing.Point(68, 43);
  7777. this.txt测试5BIN1占比上限百分比.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
  7778. this.txt测试5BIN1占比上限百分比.Minimum = 0D;
  7779. this.txt测试5BIN1占比上限百分比.MinimumSize = new System.Drawing.Size(1, 16);
  7780. this.txt测试5BIN1占比上限百分比.Name = "txt测试5BIN1占比上限百分比";
  7781. this.txt测试5BIN1占比上限百分比.Padding = new System.Windows.Forms.Padding(5);
  7782. this.txt测试5BIN1占比上限百分比.ReadNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[1]", NodeType.REAL, null);
  7783. this.txt测试5BIN1占比上限百分比.ShowText = false;
  7784. this.txt测试5BIN1占比上限百分比.Size = new System.Drawing.Size(80, 27);
  7785. this.txt测试5BIN1占比上限百分比.TabIndex = 422;
  7786. this.txt测试5BIN1占比上限百分比.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
  7787. this.txt测试5BIN1占比上限百分比.Type = Sunny.UI.UITextBox.UIEditType.Double;
  7788. this.txt测试5BIN1占比上限百分比.Watermark = "";
  7789. this.txt测试5BIN1占比上限百分比.WriteNode = new Node("Application.A25_TestStation_Auto.r测试5_Bin结果报警比率设定[1]", NodeType.REAL, null);
  7790. //
  7791. // uiLabel86
  7792. //
  7793. this.uiLabel86.AutoSize = true;
  7794. this.uiLabel86.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7795. this.uiLabel86.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7796. this.uiLabel86.Location = new System.Drawing.Point(49, 527);
  7797. this.uiLabel86.Name = "uiLabel86";
  7798. this.uiLabel86.Size = new System.Drawing.Size(103, 16);
  7799. this.uiLabel86.TabIndex = 420;
  7800. this.uiLabel86.Text = "统计起始数量";
  7801. //
  7802. // uiLabel87
  7803. //
  7804. this.uiLabel87.AutoSize = true;
  7805. this.uiLabel87.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7806. this.uiLabel87.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7807. this.uiLabel87.Location = new System.Drawing.Point(65, 494);
  7808. this.uiLabel87.Name = "uiLabel87";
  7809. this.uiLabel87.Size = new System.Drawing.Size(87, 16);
  7810. this.uiLabel87.TabIndex = 421;
  7811. this.uiLabel87.Text = "当前总计数";
  7812. //
  7813. // uiLabel88
  7814. //
  7815. this.uiLabel88.AutoSize = true;
  7816. this.uiLabel88.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7817. this.uiLabel88.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7818. this.uiLabel88.Location = new System.Drawing.Point(22, 455);
  7819. this.uiLabel88.Name = "uiLabel88";
  7820. this.uiLabel88.Size = new System.Drawing.Size(47, 16);
  7821. this.uiLabel88.TabIndex = 419;
  7822. this.uiLabel88.Text = "BIN12";
  7823. //
  7824. // uiLabel89
  7825. //
  7826. this.uiLabel89.AutoSize = true;
  7827. this.uiLabel89.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7828. this.uiLabel89.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7829. this.uiLabel89.Location = new System.Drawing.Point(22, 418);
  7830. this.uiLabel89.Name = "uiLabel89";
  7831. this.uiLabel89.Size = new System.Drawing.Size(47, 16);
  7832. this.uiLabel89.TabIndex = 418;
  7833. this.uiLabel89.Text = "BIN11";
  7834. //
  7835. // uiLabel90
  7836. //
  7837. this.uiLabel90.AutoSize = true;
  7838. this.uiLabel90.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7839. this.uiLabel90.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7840. this.uiLabel90.Location = new System.Drawing.Point(22, 381);
  7841. this.uiLabel90.Name = "uiLabel90";
  7842. this.uiLabel90.Size = new System.Drawing.Size(47, 16);
  7843. this.uiLabel90.TabIndex = 417;
  7844. this.uiLabel90.Text = "BIN10";
  7845. //
  7846. // uiLabel91
  7847. //
  7848. this.uiLabel91.AutoSize = true;
  7849. this.uiLabel91.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7850. this.uiLabel91.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7851. this.uiLabel91.Location = new System.Drawing.Point(22, 344);
  7852. this.uiLabel91.Name = "uiLabel91";
  7853. this.uiLabel91.Size = new System.Drawing.Size(39, 16);
  7854. this.uiLabel91.TabIndex = 416;
  7855. this.uiLabel91.Text = "BIN9";
  7856. //
  7857. // uiLabel92
  7858. //
  7859. this.uiLabel92.AutoSize = true;
  7860. this.uiLabel92.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7861. this.uiLabel92.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7862. this.uiLabel92.Location = new System.Drawing.Point(22, 307);
  7863. this.uiLabel92.Name = "uiLabel92";
  7864. this.uiLabel92.Size = new System.Drawing.Size(39, 16);
  7865. this.uiLabel92.TabIndex = 415;
  7866. this.uiLabel92.Text = "BIN8";
  7867. //
  7868. // uiLabel93
  7869. //
  7870. this.uiLabel93.AutoSize = true;
  7871. this.uiLabel93.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7872. this.uiLabel93.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7873. this.uiLabel93.Location = new System.Drawing.Point(22, 270);
  7874. this.uiLabel93.Name = "uiLabel93";
  7875. this.uiLabel93.Size = new System.Drawing.Size(39, 16);
  7876. this.uiLabel93.TabIndex = 414;
  7877. this.uiLabel93.Text = "BIN7";
  7878. //
  7879. // uiLabel94
  7880. //
  7881. this.uiLabel94.AutoSize = true;
  7882. this.uiLabel94.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7883. this.uiLabel94.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7884. this.uiLabel94.Location = new System.Drawing.Point(22, 233);
  7885. this.uiLabel94.Name = "uiLabel94";
  7886. this.uiLabel94.Size = new System.Drawing.Size(39, 16);
  7887. this.uiLabel94.TabIndex = 413;
  7888. this.uiLabel94.Text = "BIN6";
  7889. //
  7890. // uiLabel95
  7891. //
  7892. this.uiLabel95.AutoSize = true;
  7893. this.uiLabel95.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7894. this.uiLabel95.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7895. this.uiLabel95.Location = new System.Drawing.Point(22, 196);
  7896. this.uiLabel95.Name = "uiLabel95";
  7897. this.uiLabel95.Size = new System.Drawing.Size(39, 16);
  7898. this.uiLabel95.TabIndex = 412;
  7899. this.uiLabel95.Text = "BIN5";
  7900. //
  7901. // uiLabel96
  7902. //
  7903. this.uiLabel96.AutoSize = true;
  7904. this.uiLabel96.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7905. this.uiLabel96.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7906. this.uiLabel96.Location = new System.Drawing.Point(22, 159);
  7907. this.uiLabel96.Name = "uiLabel96";
  7908. this.uiLabel96.Size = new System.Drawing.Size(39, 16);
  7909. this.uiLabel96.TabIndex = 411;
  7910. this.uiLabel96.Text = "BIN4";
  7911. //
  7912. // uiLabel97
  7913. //
  7914. this.uiLabel97.AutoSize = true;
  7915. this.uiLabel97.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7916. this.uiLabel97.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7917. this.uiLabel97.Location = new System.Drawing.Point(22, 122);
  7918. this.uiLabel97.Name = "uiLabel97";
  7919. this.uiLabel97.Size = new System.Drawing.Size(39, 16);
  7920. this.uiLabel97.TabIndex = 410;
  7921. this.uiLabel97.Text = "BIN3";
  7922. //
  7923. // uiLabel98
  7924. //
  7925. this.uiLabel98.AutoSize = true;
  7926. this.uiLabel98.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7927. this.uiLabel98.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7928. this.uiLabel98.Location = new System.Drawing.Point(22, 85);
  7929. this.uiLabel98.Name = "uiLabel98";
  7930. this.uiLabel98.Size = new System.Drawing.Size(39, 16);
  7931. this.uiLabel98.TabIndex = 409;
  7932. this.uiLabel98.Text = "BIN2";
  7933. //
  7934. // uiLabel99
  7935. //
  7936. this.uiLabel99.AutoSize = true;
  7937. this.uiLabel99.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7938. this.uiLabel99.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7939. this.uiLabel99.Location = new System.Drawing.Point(22, 48);
  7940. this.uiLabel99.Name = "uiLabel99";
  7941. this.uiLabel99.Size = new System.Drawing.Size(39, 16);
  7942. this.uiLabel99.TabIndex = 408;
  7943. this.uiLabel99.Text = "BIN1";
  7944. //
  7945. // uiLabel100
  7946. //
  7947. this.uiLabel100.AutoSize = true;
  7948. this.uiLabel100.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7949. this.uiLabel100.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7950. this.uiLabel100.Location = new System.Drawing.Point(73, 22);
  7951. this.uiLabel100.Name = "uiLabel100";
  7952. this.uiLabel100.Size = new System.Drawing.Size(79, 16);
  7953. this.uiLabel100.TabIndex = 405;
  7954. this.uiLabel100.Text = "上限(%)";
  7955. //
  7956. // uiLabel101
  7957. //
  7958. this.uiLabel101.AutoSize = true;
  7959. this.uiLabel101.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7960. this.uiLabel101.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7961. this.uiLabel101.Location = new System.Drawing.Point(181, 22);
  7962. this.uiLabel101.Name = "uiLabel101";
  7963. this.uiLabel101.Size = new System.Drawing.Size(39, 16);
  7964. this.uiLabel101.TabIndex = 407;
  7965. this.uiLabel101.Text = "数量";
  7966. //
  7967. // uiLabel102
  7968. //
  7969. this.uiLabel102.AutoSize = true;
  7970. this.uiLabel102.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7971. this.uiLabel102.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(48)))), ((int)(((byte)(48)))));
  7972. this.uiLabel102.Location = new System.Drawing.Point(263, 22);
  7973. this.uiLabel102.Name = "uiLabel102";
  7974. this.uiLabel102.Size = new System.Drawing.Size(39, 16);
  7975. this.uiLabel102.TabIndex = 406;
  7976. this.uiLabel102.Text = "比率";
  7977. //
  7978. // TestCountForm
  7979. //
  7980. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  7981. this.ClientSize = new System.Drawing.Size(569, 635);
  7982. this.Controls.Add(this.uiTabControl1);
  7983. this.Name = "TestCountForm";
  7984. this.Text = "测试计数";
  7985. this.ZoomScaleRect = new System.Drawing.Rectangle(15, 15, 800, 450);
  7986. this.uiTabControl1.ResumeLayout(false);
  7987. this.tabPage7.ResumeLayout(false);
  7988. this.tabPage7.PerformLayout();
  7989. this.tabPage1.ResumeLayout(false);
  7990. this.tabPage1.PerformLayout();
  7991. this.tabPage2.ResumeLayout(false);
  7992. this.tabPage2.PerformLayout();
  7993. this.tabPage3.ResumeLayout(false);
  7994. this.tabPage3.PerformLayout();
  7995. this.tabPage4.ResumeLayout(false);
  7996. this.tabPage4.PerformLayout();
  7997. this.tabPage5.ResumeLayout(false);
  7998. this.tabPage5.PerformLayout();
  7999. this.tabPage6.ResumeLayout(false);
  8000. this.tabPage6.PerformLayout();
  8001. this.ResumeLayout(false);
  8002. }
  8003. #endregion
  8004. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay17;
  8005. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay18;
  8006. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay19;
  8007. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay20;
  8008. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay21;
  8009. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay22;
  8010. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay23;
  8011. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay24;
  8012. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay25;
  8013. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay26;
  8014. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay27;
  8015. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay28;
  8016. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay15;
  8017. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay16;
  8018. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay13;
  8019. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay14;
  8020. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay11;
  8021. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay12;
  8022. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay9;
  8023. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay10;
  8024. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay7;
  8025. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay8;
  8026. private Sunny.UI.UILabel uiLabel34;
  8027. private PlcUiControl.PlcUiNumberInput txt测试1BIN12占比上限百分比;
  8028. private Sunny.UI.UILabel uiLabel35;
  8029. private PlcUiControl.PlcUiNumberInput txt测试1BIN11占比上限百分比;
  8030. private Sunny.UI.UILabel uiLabel32;
  8031. private PlcUiControl.PlcUiNumberInput txt测试1BIN10占比上限百分比;
  8032. private Sunny.UI.UILabel uiLabel33;
  8033. private PlcUiControl.PlcUiNumberInput txt测试1BIN9占比上限百分比;
  8034. private Sunny.UI.UILabel uiLabel30;
  8035. private PlcUiControl.PlcUiNumberInput txt测试1BIN8占比上限百分比;
  8036. private Sunny.UI.UILabel uiLabel31;
  8037. private PlcUiControl.PlcUiNumberInput txt测试1BIN7占比上限百分比;
  8038. private Sunny.UI.UILabel uiLabel27;
  8039. private PlcUiControl.PlcUiNumberInput txt测试1BIN6占比上限百分比;
  8040. private Sunny.UI.UILabel uiLabel28;
  8041. private PlcUiControl.PlcUiNumberInput txt测试1BIN5占比上限百分比;
  8042. private Sunny.UI.UILabel uiLabel25;
  8043. private PlcUiControl.PlcUiNumberInput txt测试1BIN4占比上限百分比;
  8044. private Sunny.UI.UILabel uiLabel26;
  8045. private PlcUiControl.PlcUiNumberInput txt测试1BIN3占比上限百分比;
  8046. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay6;
  8047. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay5;
  8048. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay4;
  8049. private Sunny.UI.UILabel uiLabel17;
  8050. private PlcUiControl.PlcUiNumberInput txt测试1BIN2占比上限百分比;
  8051. private Sunny.UI.UILabel uiLabel16;
  8052. private Sunny.UI.UILabel uiLabel14;
  8053. private PlcUiControl.PlcUiNumberInput txt测试1统计起始数量;
  8054. private Sunny.UI.UILabel uiLabel13;
  8055. private PlcUiControl.PlcUiNumberInput txt测试1BIN1占比上限百分比;
  8056. private Sunny.UI.UILabel uiLabel1;
  8057. private Sunny.UI.UILabel uiLabel2;
  8058. private Sunny.UI.UILabel uiLabel3;
  8059. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay1;
  8060. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay2;
  8061. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay3;
  8062. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay29;
  8063. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay30;
  8064. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay31;
  8065. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay32;
  8066. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay33;
  8067. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay34;
  8068. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay35;
  8069. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay36;
  8070. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay37;
  8071. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay38;
  8072. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay39;
  8073. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay40;
  8074. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay41;
  8075. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay42;
  8076. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay43;
  8077. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay44;
  8078. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay45;
  8079. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay46;
  8080. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay47;
  8081. private PlcUiControl.PlcUiNumberInput txt测试2BIN12占比上限百分比;
  8082. private PlcUiControl.PlcUiNumberInput txt测试2BIN11占比上限百分比;
  8083. private PlcUiControl.PlcUiNumberInput txt测试2BIN10占比上限百分比;
  8084. private PlcUiControl.PlcUiNumberInput txt测试2BIN9占比上限百分比;
  8085. private PlcUiControl.PlcUiNumberInput txt测试2BIN8占比上限百分比;
  8086. private PlcUiControl.PlcUiNumberInput txt测试2BIN7占比上限百分比;
  8087. private PlcUiControl.PlcUiNumberInput txt测试2BIN6占比上限百分比;
  8088. private PlcUiControl.PlcUiNumberInput txt测试2BIN5占比上限百分比;
  8089. private PlcUiControl.PlcUiNumberInput txt测试2BIN4占比上限百分比;
  8090. private PlcUiControl.PlcUiNumberInput txt测试2BIN3占比上限百分比;
  8091. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay48;
  8092. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay49;
  8093. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay50;
  8094. private PlcUiControl.PlcUiNumberInput txt测试2BIN2占比上限百分比;
  8095. private PlcUiControl.PlcUiNumberInput txt测试2统计起始数量;
  8096. private PlcUiControl.PlcUiNumberInput txt测试2BIN1占比上限百分比;
  8097. private Sunny.UI.UILabel uiLabel4;
  8098. private Sunny.UI.UILabel uiLabel5;
  8099. private Sunny.UI.UILabel uiLabel6;
  8100. private Sunny.UI.UILabel uiLabel7;
  8101. private Sunny.UI.UILabel uiLabel8;
  8102. private Sunny.UI.UITabControl uiTabControl1;
  8103. private System.Windows.Forms.TabPage tabPage1;
  8104. private System.Windows.Forms.TabPage tabPage2;
  8105. private Sunny.UI.UILabel uiLabel9;
  8106. private Sunny.UI.UILabel uiLabel10;
  8107. private Sunny.UI.UILabel uiLabel11;
  8108. private Sunny.UI.UILabel uiLabel12;
  8109. private Sunny.UI.UILabel uiLabel15;
  8110. private Sunny.UI.UILabel uiLabel18;
  8111. private Sunny.UI.UILabel uiLabel19;
  8112. private Sunny.UI.UILabel uiLabel20;
  8113. private Sunny.UI.UILabel uiLabel21;
  8114. private Sunny.UI.UILabel uiLabel22;
  8115. private Sunny.UI.UILabel uiLabel23;
  8116. private Sunny.UI.UILabel uiLabel24;
  8117. private System.Windows.Forms.TabPage tabPage3;
  8118. private System.Windows.Forms.TabPage tabPage4;
  8119. private System.Windows.Forms.TabPage tabPage5;
  8120. private System.Windows.Forms.TabPage tabPage6;
  8121. private Sunny.UI.UILabel uiLabel36;
  8122. private Sunny.UI.UILabel uiLabel37;
  8123. private Sunny.UI.UILabel uiLabel29;
  8124. private Sunny.UI.UILabel uiLabel47;
  8125. private Sunny.UI.UILabel uiLabel48;
  8126. private Sunny.UI.UILabel uiLabel49;
  8127. private Sunny.UI.UILabel uiLabel50;
  8128. private Sunny.UI.UILabel uiLabel62;
  8129. private Sunny.UI.UILabel uiLabel63;
  8130. private Sunny.UI.UILabel uiLabel64;
  8131. private Sunny.UI.UILabel uiLabel65;
  8132. private Sunny.UI.UILabel uiLabel66;
  8133. private Sunny.UI.UILabel uiLabel69;
  8134. private Sunny.UI.UILabel uiLabel72;
  8135. private Sunny.UI.UILabel uiLabel73;
  8136. private Sunny.UI.UILabel uiLabel74;
  8137. private Sunny.UI.UILabel uiLabel75;
  8138. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay51;
  8139. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay52;
  8140. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay53;
  8141. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay54;
  8142. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay55;
  8143. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay56;
  8144. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay57;
  8145. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay58;
  8146. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay59;
  8147. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay60;
  8148. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay61;
  8149. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay62;
  8150. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay63;
  8151. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay64;
  8152. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay65;
  8153. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay66;
  8154. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay67;
  8155. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay68;
  8156. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay69;
  8157. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay70;
  8158. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay71;
  8159. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay72;
  8160. private PlcUiControl.PlcUiNumberInput txt测试3BIN12占比上限百分比;
  8161. private PlcUiControl.PlcUiNumberInput txt测试3BIN11占比上限百分比;
  8162. private PlcUiControl.PlcUiNumberInput txt测试3BIN10占比上限百分比;
  8163. private PlcUiControl.PlcUiNumberInput txt测试3BIN9占比上限百分比;
  8164. private PlcUiControl.PlcUiNumberInput txt测试3BIN8占比上限百分比;
  8165. private PlcUiControl.PlcUiNumberInput txt测试3BIN7占比上限百分比;
  8166. private PlcUiControl.PlcUiNumberInput txt测试3BIN6占比上限百分比;
  8167. private PlcUiControl.PlcUiNumberInput txt测试3BIN5占比上限百分比;
  8168. private PlcUiControl.PlcUiNumberInput txt测试3BIN4占比上限百分比;
  8169. private PlcUiControl.PlcUiNumberInput txt测试3BIN3占比上限百分比;
  8170. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay73;
  8171. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay74;
  8172. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay75;
  8173. private PlcUiControl.PlcUiNumberInput txt测试3BIN2占比上限百分比;
  8174. private PlcUiControl.PlcUiNumberInput txt测试3统计起始数量;
  8175. private PlcUiControl.PlcUiNumberInput txt测试3BIN1占比上限百分比;
  8176. private Sunny.UI.UILabel uiLabel38;
  8177. private Sunny.UI.UILabel uiLabel39;
  8178. private Sunny.UI.UILabel uiLabel40;
  8179. private Sunny.UI.UILabel uiLabel41;
  8180. private Sunny.UI.UILabel uiLabel42;
  8181. private Sunny.UI.UILabel uiLabel43;
  8182. private Sunny.UI.UILabel uiLabel44;
  8183. private Sunny.UI.UILabel uiLabel45;
  8184. private Sunny.UI.UILabel uiLabel46;
  8185. private Sunny.UI.UILabel uiLabel51;
  8186. private Sunny.UI.UILabel uiLabel52;
  8187. private Sunny.UI.UILabel uiLabel53;
  8188. private Sunny.UI.UILabel uiLabel54;
  8189. private Sunny.UI.UILabel uiLabel55;
  8190. private Sunny.UI.UILabel uiLabel56;
  8191. private Sunny.UI.UILabel uiLabel57;
  8192. private Sunny.UI.UILabel uiLabel58;
  8193. private PlcUiControl.PlcUiNumberInput txt测试4BIN12占比上限百分比;
  8194. private PlcUiControl.PlcUiNumberInput txt测试4BIN11占比上限百分比;
  8195. private PlcUiControl.PlcUiNumberInput txt测试4BIN10占比上限百分比;
  8196. private PlcUiControl.PlcUiNumberInput txt测试4BIN9占比上限百分比;
  8197. private PlcUiControl.PlcUiNumberInput txt测试4BIN8占比上限百分比;
  8198. private PlcUiControl.PlcUiNumberInput txt测试4BIN7占比上限百分比;
  8199. private PlcUiControl.PlcUiNumberInput txt测试4BIN6占比上限百分比;
  8200. private PlcUiControl.PlcUiNumberInput txt测试4BIN5占比上限百分比;
  8201. private PlcUiControl.PlcUiNumberInput txt测试4BIN4占比上限百分比;
  8202. private PlcUiControl.PlcUiNumberInput txt测试4BIN3占比上限百分比;
  8203. private PlcUiControl.PlcUiNumberInput txt测试4BIN2占比上限百分比;
  8204. private PlcUiControl.PlcUiNumberInput txt测试4BIN1占比上限百分比;
  8205. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay76;
  8206. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay77;
  8207. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay78;
  8208. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay79;
  8209. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay87;
  8210. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay80;
  8211. private PlcUiControl.PlcUiNumberInput txt测试4统计起始数量;
  8212. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay81;
  8213. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay88;
  8214. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay82;
  8215. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay86;
  8216. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay83;
  8217. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay85;
  8218. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay84;
  8219. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay89;
  8220. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay90;
  8221. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay91;
  8222. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay92;
  8223. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay93;
  8224. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay94;
  8225. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay95;
  8226. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay96;
  8227. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay97;
  8228. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay98;
  8229. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay99;
  8230. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay100;
  8231. private Sunny.UI.UILabel uiLabel59;
  8232. private Sunny.UI.UILabel uiLabel60;
  8233. private Sunny.UI.UILabel uiLabel61;
  8234. private Sunny.UI.UILabel uiLabel67;
  8235. private Sunny.UI.UILabel uiLabel68;
  8236. private Sunny.UI.UILabel uiLabel70;
  8237. private Sunny.UI.UILabel uiLabel71;
  8238. private Sunny.UI.UILabel uiLabel76;
  8239. private Sunny.UI.UILabel uiLabel77;
  8240. private Sunny.UI.UILabel uiLabel78;
  8241. private Sunny.UI.UILabel uiLabel79;
  8242. private Sunny.UI.UILabel uiLabel80;
  8243. private Sunny.UI.UILabel uiLabel81;
  8244. private Sunny.UI.UILabel uiLabel82;
  8245. private Sunny.UI.UILabel uiLabel83;
  8246. private Sunny.UI.UILabel uiLabel84;
  8247. private Sunny.UI.UILabel uiLabel85;
  8248. private PlcUiControl.PlcUiNumberInput txt热测BIN12占比上限百分比;
  8249. private PlcUiControl.PlcUiNumberInput txt热测BIN11占比上限百分比;
  8250. private PlcUiControl.PlcUiNumberInput txt热测BIN10占比上限百分比;
  8251. private PlcUiControl.PlcUiNumberInput txt热测BIN9占比上限百分比;
  8252. private PlcUiControl.PlcUiNumberInput txt热测BIN8占比上限百分比;
  8253. private PlcUiControl.PlcUiNumberInput txt热测BIN7占比上限百分比;
  8254. private PlcUiControl.PlcUiNumberInput txt热测BIN6占比上限百分比;
  8255. private PlcUiControl.PlcUiNumberInput txt热测BIN5占比上限百分比;
  8256. private PlcUiControl.PlcUiNumberInput txt热测BIN4占比上限百分比;
  8257. private PlcUiControl.PlcUiNumberInput txt热测BIN3占比上限百分比;
  8258. private PlcUiControl.PlcUiNumberInput txt热测BIN2占比上限百分比;
  8259. private PlcUiControl.PlcUiNumberInput txt热测BIN1占比上限百分比;
  8260. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay101;
  8261. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay102;
  8262. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay103;
  8263. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay104;
  8264. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay105;
  8265. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay106;
  8266. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay107;
  8267. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay108;
  8268. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay109;
  8269. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay110;
  8270. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay111;
  8271. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay112;
  8272. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay113;
  8273. private PlcUiControl.PlcUiNumberInput txt热测统计起始数量;
  8274. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay114;
  8275. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay115;
  8276. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay116;
  8277. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay117;
  8278. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay118;
  8279. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay119;
  8280. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay120;
  8281. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay121;
  8282. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay122;
  8283. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay123;
  8284. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay124;
  8285. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay125;
  8286. private Sunny.UI.UILabel uiLabel86;
  8287. private Sunny.UI.UILabel uiLabel87;
  8288. private Sunny.UI.UILabel uiLabel88;
  8289. private Sunny.UI.UILabel uiLabel89;
  8290. private Sunny.UI.UILabel uiLabel90;
  8291. private Sunny.UI.UILabel uiLabel91;
  8292. private Sunny.UI.UILabel uiLabel92;
  8293. private Sunny.UI.UILabel uiLabel93;
  8294. private Sunny.UI.UILabel uiLabel94;
  8295. private Sunny.UI.UILabel uiLabel95;
  8296. private Sunny.UI.UILabel uiLabel96;
  8297. private Sunny.UI.UILabel uiLabel97;
  8298. private Sunny.UI.UILabel uiLabel98;
  8299. private Sunny.UI.UILabel uiLabel99;
  8300. private Sunny.UI.UILabel uiLabel100;
  8301. private Sunny.UI.UILabel uiLabel101;
  8302. private Sunny.UI.UILabel uiLabel102;
  8303. private PlcUiControl.PlcUiNumberInput txt测试5BIN12占比上限百分比;
  8304. private PlcUiControl.PlcUiNumberInput txt测试5BIN11占比上限百分比;
  8305. private PlcUiControl.PlcUiNumberInput txt测试5BIN10占比上限百分比;
  8306. private PlcUiControl.PlcUiNumberInput txt测试5BIN9占比上限百分比;
  8307. private PlcUiControl.PlcUiNumberInput txt测试5BIN8占比上限百分比;
  8308. private PlcUiControl.PlcUiNumberInput txt测试5BIN7占比上限百分比;
  8309. private PlcUiControl.PlcUiNumberInput txt测试5BIN6占比上限百分比;
  8310. private PlcUiControl.PlcUiNumberInput txt测试5BIN5占比上限百分比;
  8311. private PlcUiControl.PlcUiNumberInput txt测试5BIN4占比上限百分比;
  8312. private PlcUiControl.PlcUiNumberInput txt测试5BIN3占比上限百分比;
  8313. private PlcUiControl.PlcUiNumberInput txt测试5BIN2占比上限百分比;
  8314. private PlcUiControl.PlcUiNumberInput txt测试5BIN1占比上限百分比;
  8315. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay126;
  8316. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay127;
  8317. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay128;
  8318. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay129;
  8319. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay130;
  8320. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay131;
  8321. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay132;
  8322. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay133;
  8323. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay134;
  8324. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay135;
  8325. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay136;
  8326. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay137;
  8327. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay138;
  8328. private PlcUiControl.PlcUiNumberInput txt测试5统计起始数量;
  8329. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay139;
  8330. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay140;
  8331. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay141;
  8332. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay142;
  8333. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay143;
  8334. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay144;
  8335. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay145;
  8336. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay146;
  8337. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay147;
  8338. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay148;
  8339. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay149;
  8340. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay150;
  8341. private System.Windows.Forms.TabPage tabPage7;
  8342. private Sunny.UI.UILabel uiLabel103;
  8343. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay151;
  8344. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay152;
  8345. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay153;
  8346. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay154;
  8347. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay155;
  8348. private Sunny.UI.UILabel uiLabel104;
  8349. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay156;
  8350. private PlcUiControl.PlcUiNumberInput plcUiNumberInput1;
  8351. private Sunny.UI.UILabel uiLabel105;
  8352. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay157;
  8353. private PlcUiControl.PlcUiNumberInput plcUiNumberInput2;
  8354. private Sunny.UI.UILabel uiLabel106;
  8355. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay158;
  8356. private PlcUiControl.PlcUiNumberInput plcUiNumberInput3;
  8357. private Sunny.UI.UILabel uiLabel107;
  8358. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay159;
  8359. private PlcUiControl.PlcUiNumberInput plcUiNumberInput4;
  8360. private Sunny.UI.UILabel uiLabel108;
  8361. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay160;
  8362. private PlcUiControl.PlcUiNumberInput plcUiNumberInput5;
  8363. private Sunny.UI.UILabel uiLabel109;
  8364. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay161;
  8365. private PlcUiControl.PlcUiNumberInput plcUiNumberInput6;
  8366. private Sunny.UI.UILabel uiLabel110;
  8367. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay162;
  8368. private PlcUiControl.PlcUiNumberInput plcUiNumberInput7;
  8369. private Sunny.UI.UILabel uiLabel111;
  8370. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay163;
  8371. private PlcUiControl.PlcUiNumberInput plcUiNumberInput8;
  8372. private Sunny.UI.UILabel uiLabel112;
  8373. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay164;
  8374. private PlcUiControl.PlcUiNumberInput plcUiNumberInput9;
  8375. private Sunny.UI.UILabel uiLabel113;
  8376. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay165;
  8377. private PlcUiControl.PlcUiNumberInput plcUiNumberInput10;
  8378. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay166;
  8379. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay167;
  8380. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay168;
  8381. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay169;
  8382. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay170;
  8383. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay171;
  8384. private Sunny.UI.UILabel uiLabel114;
  8385. private PlcUiControl.PlcUiNumberInput plcUiNumberInput11;
  8386. private Sunny.UI.UILabel uiLabel115;
  8387. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay172;
  8388. private Sunny.UI.UILabel uiLabel116;
  8389. private Sunny.UI.UILabel uiLabel117;
  8390. private Sunny.UI.UILabel uiLabel118;
  8391. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay173;
  8392. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay174;
  8393. private Sunny.UI.UILabel uiLabel119;
  8394. private PlcUiControl.PlcUiNumberInput plcUiNumberInput12;
  8395. private PlcUiControl.PlcUiNumberDisplay plcUiNumberDisplay175;
  8396. private PlcUiControl.PlcUiNumberInput plcUiNumberInput13;
  8397. }
  8398. }