Frm_YongGuanMontior.Designer.cs 482 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088
  1. namespace WCS_Client.Frm
  2. {
  3. partial class Frm_YongGuanMontior
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_YongGuanMontior));
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  32. this.con2282 = new WCS_Client.From.From_Montior.Conveyor_R();
  33. this.con2010 = new WCS_Client.From.From_Montior.Conveyor_R();
  34. this.con2014 = new WCS_Client.From.From_Montior.Conveyor_R();
  35. this.con2083 = new WCS_Client.From.From_Montior.Conveyor_R();
  36. this.con2279 = new WCS_Client.From.From_Montior.Conveyor_R();
  37. this.con2058 = new WCS_Client.From.From_Montior.Conveyor_R();
  38. this.con2053 = new WCS_Client.From.From_Montior.Conveyor_R();
  39. this.con2051 = new WCS_Client.From.From_Montior.Conveyor_R();
  40. this.con2039 = new WCS_Client.From.From_Montior.Conveyor_R();
  41. this.con2034 = new WCS_Client.From.From_Montior.Conveyor_R();
  42. this.con2028 = new WCS_Client.From.From_Montior.Conveyor_R();
  43. this.con2027 = new WCS_Client.From.From_Montior.Conveyor_R();
  44. this.con2022 = new WCS_Client.From.From_Montior.Conveyor_R();
  45. this.con2021 = new WCS_Client.From.From_Montior.Conveyor_R();
  46. this.con2203 = new WCS_Client.From.From_Montior.Conveyor3_A();
  47. this.con2206 = new WCS_Client.From.From_Montior.Conveyor3_A();
  48. this.con2204 = new WCS_Client.From.From_Montior.Conveyor3_A();
  49. this.con2205 = new WCS_Client.From.From_Montior.Conveyor3_A();
  50. this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
  51. this.con2187 = new WCS_Client.From.From_Montior.Conveyor3_A();
  52. this.con2182 = new WCS_Client.From.From_Montior.Conveyor3_A();
  53. this.con2271 = new WCS_Client.From.From_Montior.Conveyor3_A();
  54. this.con2152 = new WCS_Client.From.From_Montior.Conveyor3_A();
  55. this.tableCellLabel3 = new WCS_Client.From.TableCellLabel();
  56. this.tableCellLabel4 = new WCS_Client.From.TableCellLabel();
  57. this.conrgv2 = new WCS_Client.From.From_Montior.Conveyor6();
  58. this.con2172 = new WCS_Client.From.From_Montior.Conveyor3_B();
  59. this.con2173 = new WCS_Client.From.From_Montior.Conveyor3_A();
  60. this.con2174 = new WCS_Client.From.From_Montior.Conveyor3_B();
  61. this.con2175 = new WCS_Client.From.From_Montior.Conveyor3_A();
  62. this.con2176 = new WCS_Client.From.From_Montior.Conveyor3_B();
  63. this.con2177 = new WCS_Client.From.From_Montior.Conveyor3_A();
  64. this.con2147 = new WCS_Client.From.From_Montior.Conveyor_R();
  65. this.con2146 = new WCS_Client.From.From_Montior.Conveyor_R();
  66. this.con2148 = new WCS_Client.From.From_Montior.Conveyor_R();
  67. this.con2144 = new WCS_Client.From.From_Montior.Conveyor_R();
  68. this.con2145 = new WCS_Client.From.From_Montior.Conveyor_R();
  69. this.con2150 = new WCS_Client.From.From_Montior.Conveyor_R();
  70. this.con2161 = new WCS_Client.From.From_Montior.Conveyor_R();
  71. this.con2384 = new WCS_Client.From.From_Montior.Conveyor3_A();
  72. this.con2104 = new WCS_Client.From.From_Montior.Conveyor_R();
  73. this.con2102 = new WCS_Client.From.From_Montior.Conveyor_R();
  74. this.con2101 = new WCS_Client.From.From_Montior.Conveyor_R();
  75. this.con2103 = new WCS_Client.From.From_Montior.Conveyor_R();
  76. this.con2108 = new WCS_Client.From.From_Montior.Conveyor_R();
  77. this.con2107 = new WCS_Client.From.From_Montior.Conveyor_R();
  78. this.con2106 = new WCS_Client.From.From_Montior.Conveyor_R();
  79. this.con2105 = new WCS_Client.From.From_Montior.Conveyor_R();
  80. this.con2060 = new WCS_Client.From.From_Montior.Conveyor_R();
  81. this.con2079 = new WCS_Client.From.From_Montior.Conveyor_R();
  82. this.con2075 = new WCS_Client.From.From_Montior.Conveyor_R();
  83. this.con2080 = new WCS_Client.From.From_Montior.Conveyor_R();
  84. this.con2074 = new WCS_Client.From.From_Montior.Conveyor_R();
  85. this.con2078 = new WCS_Client.From.From_Montior.Conveyor_R();
  86. this.con2077 = new WCS_Client.From.From_Montior.Conveyor_R();
  87. this.con2325 = new WCS_Client.From.From_Montior.Conveyor_R();
  88. this.con2073 = new WCS_Client.From.From_Montior.Conveyor_R();
  89. this.con2071 = new WCS_Client.From.From_Montior.Conveyor_R();
  90. this.con2072 = new WCS_Client.From.From_Montior.Conveyor_R();
  91. this.con2076 = new WCS_Client.From.From_Montior.Conveyor_R();
  92. this.con2355 = new WCS_Client.From.From_Montior.Conveyor_R();
  93. this.con2037 = new WCS_Client.From.From_Montior.Conveyor_R();
  94. this.con2044 = new WCS_Client.From.From_Montior.Conveyor_R();
  95. this.con2046 = new WCS_Client.From.From_Montior.Conveyor_R();
  96. this.con2031 = new WCS_Client.From.From_Montior.Conveyor_R();
  97. this.con2029 = new WCS_Client.From.From_Montior.Conveyor_R();
  98. this.con2036 = new WCS_Client.From.From_Montior.Conveyor_R();
  99. this.con2017 = new WCS_Client.From.From_Montior.Conveyor_R();
  100. this.con2019 = new WCS_Client.From.From_Montior.Conveyor_R();
  101. this.con2024 = new WCS_Client.From.From_Montior.Conveyor_R();
  102. this.con2324 = new WCS_Client.From.From_Montior.Conveyor_R();
  103. this.con2353 = new WCS_Client.From.From_Montior.Conveyor_R();
  104. this.con2016 = new WCS_Client.From.From_Montior.Conveyor_R();
  105. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  106. this.con2084 = new WCS_Client.From.From_Montior.Conveyor3_A();
  107. this.con2086 = new WCS_Client.From.From_Montior.Conveyor3_A();
  108. this.con2081 = new WCS_Client.From.From_Montior.Conveyor_R();
  109. this.con2088 = new WCS_Client.From.From_Montior.Conveyor_R();
  110. this.label6 = new System.Windows.Forms.Label();
  111. this.con2015 = new WCS_Client.From.From_Montior.Conveyor_R();
  112. this.con2012 = new WCS_Client.From.From_Montior.Conveyor_R();
  113. this.label12 = new System.Windows.Forms.Label();
  114. this.con2008 = new WCS_Client.From.From_Montior.Conveyor_R();
  115. this.con2011 = new WCS_Client.From.From_Montior.Conveyor_R();
  116. this.label28 = new System.Windows.Forms.Label();
  117. this.con2005 = new WCS_Client.From.From_Montior.Conveyor_L();
  118. this.con2302 = new WCS_Client.From.From_Montior.Conveyor_L();
  119. this.con2004 = new WCS_Client.From.From_Montior.Conveyor_L();
  120. this.label33 = new System.Windows.Forms.Label();
  121. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  122. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  123. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  124. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  125. this.srm15 = new WCS_Client.From.From_Montior.srm();
  126. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  127. this.tableCellLabel33 = new WCS_Client.From.TableCellLabel();
  128. this.tableCellLabel34 = new WCS_Client.From.TableCellLabel();
  129. this.conrgv5 = new WCS_Client.From.From_Montior.Conveyor5();
  130. this.con2323 = new WCS_Client.From.From_Montior.Conveyor_L();
  131. this.con2322 = new WCS_Client.From.From_Montior.Conveyor_L();
  132. this.con2308 = new WCS_Client.From.From_Montior.Conveyor_R();
  133. this.con2304 = new WCS_Client.From.From_Montior.Conveyor_R();
  134. this.con2305 = new WCS_Client.From.From_Montior.Conveyor_R();
  135. this.con2309 = new WCS_Client.From.From_Montior.Conveyor3_A();
  136. this.con2310 = new WCS_Client.From.From_Montior.Conveyor3_A();
  137. this.con2026 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  138. this.tableCellLabel10 = new WCS_Client.From.TableCellLabel();
  139. this.tableCellLabel11 = new WCS_Client.From.TableCellLabel();
  140. this.con2280 = new WCS_Client.From.From_Montior.Conveyor_R();
  141. this.tableCellLabel12 = new WCS_Client.From.TableCellLabel();
  142. this.con2033 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  143. this.tableCellLabel13 = new WCS_Client.From.TableCellLabel();
  144. this.con2035 = new WCS_Client.From.From_Montior.Conveyor_R();
  145. this.con2278 = new WCS_Client.From.From_Montior.Conveyor_R();
  146. this.srm14 = new WCS_Client.From.From_Montior.srm();
  147. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  148. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  149. this.con2042 = new WCS_Client.From.From_Montior.Conveyor_R();
  150. this.con2041 = new WCS_Client.From.From_Montior.Conveyor_R();
  151. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  152. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  153. this.con2277 = new WCS_Client.From.From_Montior.Conveyor_R();
  154. this.con2049 = new WCS_Client.From.From_Montior.Conveyor_R();
  155. this.tableCellLabel16 = new WCS_Client.From.TableCellLabel();
  156. this.con2048 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  157. this.tableCellLabel14 = new WCS_Client.From.TableCellLabel();
  158. this.con2050 = new WCS_Client.From.From_Montior.Conveyor_R();
  159. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  160. this.con2281 = new WCS_Client.From.From_Montior.Conveyor_R();
  161. this.srm13 = new WCS_Client.From.From_Montior.srm();
  162. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  163. this.con2276 = new WCS_Client.From.From_Montior.Conveyor_R();
  164. this.con2056 = new WCS_Client.From.From_Montior.Conveyor_R();
  165. this.tableCellLabel17 = new WCS_Client.From.TableCellLabel();
  166. this.con2055 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  167. this.tableCellLabel18 = new WCS_Client.From.TableCellLabel();
  168. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  169. this.con2057 = new WCS_Client.From.From_Montior.Conveyor_R();
  170. this.con2275 = new WCS_Client.From.From_Montior.Conveyor_R();
  171. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  172. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  173. this.con2062 = new WCS_Client.From.From_Montior.Conveyor_R();
  174. this.tableCellLabel24 = new WCS_Client.From.TableCellLabel();
  175. this.con2260 = new WCS_Client.From.From_Montior.Conveyor3_A();
  176. this.con2259 = new WCS_Client.From.From_Montior.Conveyor3_A();
  177. this.tableCellLabel23 = new WCS_Client.From.TableCellLabel();
  178. this.con2262 = new WCS_Client.From.From_Montior.Conveyor3_A();
  179. this.con2261 = new WCS_Client.From.From_Montior.Conveyor3_A();
  180. this.con2264 = new WCS_Client.From.From_Montior.Conveyor3_A();
  181. this.con2263 = new WCS_Client.From.From_Montior.Conveyor3_A();
  182. this.conveyor3_A17 = new WCS_Client.From.From_Montior.Conveyor3_A();
  183. this.conrgv1 = new WCS_Client.From.From_Montior.Conveyor6();
  184. this.locationPos44 = new WCS_Client.From.From_Montior.LocationPos();
  185. this.locationPos43 = new WCS_Client.From.From_Montior.LocationPos();
  186. this.srm12 = new WCS_Client.From.From_Montior.srm();
  187. this.con2153 = new WCS_Client.From.From_Montior.Conveyor3_A();
  188. this.con2181 = new WCS_Client.From.From_Montior.Conveyor3_A();
  189. this.con2180 = new WCS_Client.From.From_Montior.Conveyor3_A();
  190. this.con2207 = new WCS_Client.From.From_Montior.Conveyor3_A();
  191. this.con2208 = new WCS_Client.From.From_Montior.Conveyor3_A();
  192. this.con2209 = new WCS_Client.From.From_Montior.Conveyor3_A();
  193. this.con2210 = new WCS_Client.From.From_Montior.Conveyor3_A();
  194. this.con2211 = new WCS_Client.From.From_Montior.Conveyor3_A();
  195. this.con2192 = new WCS_Client.From.From_Montior.Conveyor3_A();
  196. this.con2195 = new WCS_Client.From.From_Montior.Conveyor3_A();
  197. this.con2198 = new WCS_Client.From.From_Montior.Conveyor3_A();
  198. this.con2201 = new WCS_Client.From.From_Montior.Conveyor3_A();
  199. this.con2265 = new WCS_Client.From.From_Montior.Conveyor3_A();
  200. this.con2382 = new WCS_Client.From.From_Montior.Conveyor3_A();
  201. this.con2381 = new WCS_Client.From.From_Montior.Conveyor3_A();
  202. this.con2380 = new WCS_Client.From.From_Montior.Conveyor3_A();
  203. this.con2379 = new WCS_Client.From.From_Montior.Conveyor3_A();
  204. this.con2378 = new WCS_Client.From.From_Montior.Conveyor3_A();
  205. this.con2377 = new WCS_Client.From.From_Montior.Conveyor3_A();
  206. this.con2376 = new WCS_Client.From.From_Montior.Conveyor3_A();
  207. this.con2375 = new WCS_Client.From.From_Montior.Conveyor3_A();
  208. this.con2374 = new WCS_Client.From.From_Montior.Conveyor3_A();
  209. this.con2385 = new WCS_Client.From.From_Montior.Conveyor3_A();
  210. this.con2386 = new WCS_Client.From.From_Montior.Conveyor3_A();
  211. this.con2387 = new WCS_Client.From.From_Montior.Conveyor3_A();
  212. this.con2388 = new WCS_Client.From.From_Montior.Conveyor3_A();
  213. this.con2372 = new WCS_Client.From.From_Montior.Conveyor3_A();
  214. this.con2371 = new WCS_Client.From.From_Montior.Conveyor3_A();
  215. this.con2370 = new WCS_Client.From.From_Montior.Conveyor3_A();
  216. this.con2369 = new WCS_Client.From.From_Montior.Conveyor3_A();
  217. this.con2368 = new WCS_Client.From.From_Montior.Conveyor3_A();
  218. this.con2366 = new WCS_Client.From.From_Montior.Conveyor3_A();
  219. this.con2365 = new WCS_Client.From.From_Montior.Conveyor3_A();
  220. this.con2364 = new WCS_Client.From.From_Montior.Conveyor_R();
  221. this.con2362 = new WCS_Client.From.From_Montior.Conveyor_R();
  222. this.con2360 = new WCS_Client.From.From_Montior.Conveyor3_A();
  223. this.con2359 = new WCS_Client.From.From_Montior.Conveyor();
  224. this.con2135 = new WCS_Client.From.From_Montior.Conveyor();
  225. this.label1 = new System.Windows.Forms.Label();
  226. this.con2137 = new WCS_Client.From.From_Montior.Conveyor_L();
  227. this.con2138 = new WCS_Client.From.From_Montior.Conveyor_L();
  228. this.con2326 = new WCS_Client.From.From_Montior.Conveyor_L();
  229. this.con2141 = new WCS_Client.From.From_Montior.Conveyor_L();
  230. this.panel1 = new System.Windows.Forms.Panel();
  231. this.con2140 = new WCS_Client.From.From_Montior.Conveyor3_B();
  232. this.panel12 = new System.Windows.Forms.Panel();
  233. this.con2143 = new WCS_Client.From.From_Montior.Conveyor3_B();
  234. this.con2274 = new WCS_Client.From.From_Montior.Conveyor_L();
  235. this.con2123 = new WCS_Client.From.From_Montior.Conveyor();
  236. this.label4 = new System.Windows.Forms.Label();
  237. this.con2125 = new WCS_Client.From.From_Montior.Conveyor_L();
  238. this.con2126 = new WCS_Client.From.From_Montior.Conveyor_L();
  239. this.con2327 = new WCS_Client.From.From_Montior.Conveyor_L();
  240. this.con2129 = new WCS_Client.From.From_Montior.Conveyor3_B();
  241. this.con2128 = new WCS_Client.From.From_Montior.Conveyor3_B();
  242. this.con2131 = new WCS_Client.From.From_Montior.Conveyor3_B();
  243. this.con2273 = new WCS_Client.From.From_Montior.Conveyor3_B();
  244. this.tableCellLabel32 = new WCS_Client.From.TableCellLabel();
  245. this.conrgv4 = new WCS_Client.From.From_Montior.Conveyor5();
  246. this.tableCellLabel9 = new WCS_Client.From.TableCellLabel();
  247. this.con2114 = new WCS_Client.From.From_Montior.Conveyor();
  248. this.label34 = new System.Windows.Forms.Label();
  249. this.con2116 = new WCS_Client.From.From_Montior.Conveyor_L();
  250. this.con2117 = new WCS_Client.From.From_Montior.Conveyor_L();
  251. this.con2328 = new WCS_Client.From.From_Montior.Conveyor_L();
  252. this.con2120 = new WCS_Client.From.From_Montior.Conveyor3_B();
  253. this.con2119 = new WCS_Client.From.From_Montior.Conveyor3_B();
  254. this.con2122 = new WCS_Client.From.From_Montior.Conveyor3_B();
  255. this.con2272 = new WCS_Client.From.From_Montior.Conveyor3_B();
  256. this.conrgv3 = new WCS_Client.From.From_Montior.Conveyor6();
  257. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  258. this.con2202 = new WCS_Client.From.From_Montior.Conveyor3_A();
  259. this.con2256 = new WCS_Client.From.From_Montior.Conveyor3_B();
  260. this.con2255 = new WCS_Client.From.From_Montior.Conveyor3_A();
  261. this.con2254 = new WCS_Client.From.From_Montior.Conveyor3_A();
  262. this.con2253 = new WCS_Client.From.From_Montior.Conveyor3_B();
  263. this.con2252 = new WCS_Client.From.From_Montior.Conveyor3_A();
  264. this.con2251 = new WCS_Client.From.From_Montior.Conveyor3_B();
  265. this.locationPos41 = new WCS_Client.From.From_Montior.LocationPos();
  266. this.locationPos35 = new WCS_Client.From.From_Montior.LocationPos();
  267. this.srm11 = new WCS_Client.From.From_Montior.srm();
  268. this.locationPos40 = new WCS_Client.From.From_Montior.LocationPos();
  269. this.tableCellLabel15 = new WCS_Client.From.TableCellLabel();
  270. this.locationPos39 = new WCS_Client.From.From_Montior.LocationPos();
  271. this.tableCellLabel8 = new WCS_Client.From.TableCellLabel();
  272. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  273. this.con2307 = new WCS_Client.From.From_Montior.Conveyor_R();
  274. this.con2003 = new WCS_Client.From.From_Montior.Conveyor_R();
  275. this.con2311 = new WCS_Client.From.From_Montior.Conveyor3_B();
  276. this.con2312 = new WCS_Client.From.From_Montior.Conveyor3_B();
  277. this.con2313 = new WCS_Client.From.From_Montior.Conveyor3_B();
  278. this.con2314 = new WCS_Client.From.From_Montior.Conveyor3_B();
  279. this.con2315 = new WCS_Client.From.From_Montior.Conveyor3_B();
  280. this.con2316 = new WCS_Client.From.From_Montior.Conveyor3_B();
  281. this.con2317 = new WCS_Client.From.From_Montior.Conveyor3_B();
  282. this.con2318 = new WCS_Client.From.From_Montior.Conveyor3_B();
  283. this.con2319 = new WCS_Client.From.From_Montior.Conveyor3_B();
  284. this.con2320 = new WCS_Client.From.From_Montior.Conveyor3_B();
  285. this.pnlDDJ1 = new MyConrols.MyPanel();
  286. this.lblInStatus1 = new System.Windows.Forms.Label();
  287. this.lblOutStatus1 = new System.Windows.Forms.Label();
  288. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  289. this.ddjPosTo1 = new System.Windows.Forms.Label();
  290. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  291. this.label84 = new System.Windows.Forms.Label();
  292. this.label85 = new System.Windows.Forms.Label();
  293. this.ddjMode1 = new System.Windows.Forms.Label();
  294. this.ddjOrdId1 = new System.Windows.Forms.Label();
  295. this.label137 = new System.Windows.Forms.Label();
  296. this.ddjOptType1 = new System.Windows.Forms.Label();
  297. this.label139 = new System.Windows.Forms.Label();
  298. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  299. this.label13 = new System.Windows.Forms.Label();
  300. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  301. this.label10 = new System.Windows.Forms.Label();
  302. this.ddjStatus1 = new System.Windows.Forms.Label();
  303. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  304. this.label5 = new System.Windows.Forms.Label();
  305. this.label3 = new System.Windows.Forms.Label();
  306. this.label2 = new System.Windows.Forms.Label();
  307. this.lblsrm01 = new System.Windows.Forms.Label();
  308. this.G1 = new System.Windows.Forms.PictureBox();
  309. this.R1 = new System.Windows.Forms.PictureBox();
  310. this.pnlDDJ2 = new MyConrols.MyPanel();
  311. this.lblInStatus2 = new System.Windows.Forms.Label();
  312. this.lblOutStatus2 = new System.Windows.Forms.Label();
  313. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  314. this.ddjPosTo2 = new System.Windows.Forms.Label();
  315. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  316. this.label15 = new System.Windows.Forms.Label();
  317. this.label16 = new System.Windows.Forms.Label();
  318. this.ddjMode2 = new System.Windows.Forms.Label();
  319. this.ddjOrdId2 = new System.Windows.Forms.Label();
  320. this.label22 = new System.Windows.Forms.Label();
  321. this.ddjOptType2 = new System.Windows.Forms.Label();
  322. this.label26 = new System.Windows.Forms.Label();
  323. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  324. this.label29 = new System.Windows.Forms.Label();
  325. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  326. this.label32 = new System.Windows.Forms.Label();
  327. this.ddjStatus2 = new System.Windows.Forms.Label();
  328. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  329. this.label83 = new System.Windows.Forms.Label();
  330. this.label86 = new System.Windows.Forms.Label();
  331. this.label87 = new System.Windows.Forms.Label();
  332. this.lblsrm02 = new System.Windows.Forms.Label();
  333. this.G2 = new System.Windows.Forms.PictureBox();
  334. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  335. this.pnlDDJ3 = new MyConrols.MyPanel();
  336. this.lblInStatus3 = new System.Windows.Forms.Label();
  337. this.lblOutStatus3 = new System.Windows.Forms.Label();
  338. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  339. this.ddjPosTo3 = new System.Windows.Forms.Label();
  340. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  341. this.label43 = new System.Windows.Forms.Label();
  342. this.label51 = new System.Windows.Forms.Label();
  343. this.ddjMode3 = new System.Windows.Forms.Label();
  344. this.ddjOrdId3 = new System.Windows.Forms.Label();
  345. this.label55 = new System.Windows.Forms.Label();
  346. this.ddjOptType3 = new System.Windows.Forms.Label();
  347. this.label57 = new System.Windows.Forms.Label();
  348. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  349. this.label59 = new System.Windows.Forms.Label();
  350. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  351. this.label61 = new System.Windows.Forms.Label();
  352. this.ddjStatus3 = new System.Windows.Forms.Label();
  353. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  354. this.label64 = new System.Windows.Forms.Label();
  355. this.label65 = new System.Windows.Forms.Label();
  356. this.label66 = new System.Windows.Forms.Label();
  357. this.lblsrm03 = new System.Windows.Forms.Label();
  358. this.G3 = new System.Windows.Forms.PictureBox();
  359. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  360. this.pnlDDJ4 = new MyConrols.MyPanel();
  361. this.lblInStatus4 = new System.Windows.Forms.Label();
  362. this.lblOutStatus4 = new System.Windows.Forms.Label();
  363. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  364. this.ddjPosTo4 = new System.Windows.Forms.Label();
  365. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  366. this.label71 = new System.Windows.Forms.Label();
  367. this.label72 = new System.Windows.Forms.Label();
  368. this.ddjMode4 = new System.Windows.Forms.Label();
  369. this.ddjOrdId4 = new System.Windows.Forms.Label();
  370. this.label75 = new System.Windows.Forms.Label();
  371. this.ddjOptType4 = new System.Windows.Forms.Label();
  372. this.label77 = new System.Windows.Forms.Label();
  373. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  374. this.label79 = new System.Windows.Forms.Label();
  375. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  376. this.label81 = new System.Windows.Forms.Label();
  377. this.ddjStatus4 = new System.Windows.Forms.Label();
  378. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  379. this.label89 = new System.Windows.Forms.Label();
  380. this.label90 = new System.Windows.Forms.Label();
  381. this.label91 = new System.Windows.Forms.Label();
  382. this.lblsrm04 = new System.Windows.Forms.Label();
  383. this.G4 = new System.Windows.Forms.PictureBox();
  384. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  385. this.myPanel1 = new MyConrols.MyPanel();
  386. this.lblInStatus5 = new System.Windows.Forms.Label();
  387. this.lblOutStatus5 = new System.Windows.Forms.Label();
  388. this.label11 = new System.Windows.Forms.Label();
  389. this.ddjPosTo5 = new System.Windows.Forms.Label();
  390. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  391. this.label17 = new System.Windows.Forms.Label();
  392. this.label18 = new System.Windows.Forms.Label();
  393. this.ddjMode5 = new System.Windows.Forms.Label();
  394. this.ddjOrdId5 = new System.Windows.Forms.Label();
  395. this.label21 = new System.Windows.Forms.Label();
  396. this.ddjOptType5 = new System.Windows.Forms.Label();
  397. this.label24 = new System.Windows.Forms.Label();
  398. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  399. this.label27 = new System.Windows.Forms.Label();
  400. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  401. this.label30 = new System.Windows.Forms.Label();
  402. this.ddjStatus5 = new System.Windows.Forms.Label();
  403. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  404. this.label36 = new System.Windows.Forms.Label();
  405. this.label37 = new System.Windows.Forms.Label();
  406. this.label38 = new System.Windows.Forms.Label();
  407. this.lblsrm05 = new System.Windows.Forms.Label();
  408. this.G5 = new System.Windows.Forms.PictureBox();
  409. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  410. this.pnlRGV1089 = new MyConrols.MyPanel();
  411. this.label7 = new System.Windows.Forms.Label();
  412. this.label8 = new System.Windows.Forms.Label();
  413. this.label9 = new System.Windows.Forms.Label();
  414. this.rgvOptType2 = new System.Windows.Forms.Label();
  415. this.label31 = new System.Windows.Forms.Label();
  416. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  417. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  418. this.rgvMode2 = new System.Windows.Forms.Label();
  419. this.rgvOrdId2 = new System.Windows.Forms.Label();
  420. this.label50 = new System.Windows.Forms.Label();
  421. this.rgvPosTo2 = new System.Windows.Forms.Label();
  422. this.label53 = new System.Windows.Forms.Label();
  423. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  424. this.rgvStatus2 = new System.Windows.Forms.Label();
  425. this.label63 = new System.Windows.Forms.Label();
  426. this.lblrgv1089 = new System.Windows.Forms.Label();
  427. this.GV2 = new System.Windows.Forms.PictureBox();
  428. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  429. this.pnlRGV1091 = new MyConrols.MyPanel();
  430. this.label14 = new System.Windows.Forms.Label();
  431. this.label19 = new System.Windows.Forms.Label();
  432. this.label20 = new System.Windows.Forms.Label();
  433. this.rgvOptType3 = new System.Windows.Forms.Label();
  434. this.label74 = new System.Windows.Forms.Label();
  435. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  436. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  437. this.rgvMode3 = new System.Windows.Forms.Label();
  438. this.rgvOrdId3 = new System.Windows.Forms.Label();
  439. this.label94 = new System.Windows.Forms.Label();
  440. this.rgvPosTo3 = new System.Windows.Forms.Label();
  441. this.label96 = new System.Windows.Forms.Label();
  442. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  443. this.rgvStatus3 = new System.Windows.Forms.Label();
  444. this.label102 = new System.Windows.Forms.Label();
  445. this.lblrgv1091 = new System.Windows.Forms.Label();
  446. this.GV3 = new System.Windows.Forms.PictureBox();
  447. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  448. this.myPanel5 = new MyConrols.MyPanel();
  449. this.label25 = new System.Windows.Forms.Label();
  450. this.label35 = new System.Windows.Forms.Label();
  451. this.label39 = new System.Windows.Forms.Label();
  452. this.rgvOptType4 = new System.Windows.Forms.Label();
  453. this.label173 = new System.Windows.Forms.Label();
  454. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  455. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  456. this.rgvMode4 = new System.Windows.Forms.Label();
  457. this.rgvOrdId4 = new System.Windows.Forms.Label();
  458. this.label181 = new System.Windows.Forms.Label();
  459. this.rgvPosTo4 = new System.Windows.Forms.Label();
  460. this.label183 = new System.Windows.Forms.Label();
  461. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  462. this.rgvStatus4 = new System.Windows.Forms.Label();
  463. this.label189 = new System.Windows.Forms.Label();
  464. this.lblrgv1007 = new System.Windows.Forms.Label();
  465. this.GV4 = new System.Windows.Forms.PictureBox();
  466. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  467. this.myPanel11 = new MyConrols.MyPanel();
  468. this.label40 = new System.Windows.Forms.Label();
  469. this.label41 = new System.Windows.Forms.Label();
  470. this.label42 = new System.Windows.Forms.Label();
  471. this.rgvOptType5 = new System.Windows.Forms.Label();
  472. this.label305 = new System.Windows.Forms.Label();
  473. this.lblRGVWarning1175 = new System.Windows.Forms.Label();
  474. this.rgvPosCurr5 = new System.Windows.Forms.Label();
  475. this.rgvMode5 = new System.Windows.Forms.Label();
  476. this.rgvOrdId5 = new System.Windows.Forms.Label();
  477. this.label313 = new System.Windows.Forms.Label();
  478. this.rgvPosTo5 = new System.Windows.Forms.Label();
  479. this.label315 = new System.Windows.Forms.Label();
  480. this.rgvPosFrom5 = new System.Windows.Forms.Label();
  481. this.rgvStatus5 = new System.Windows.Forms.Label();
  482. this.label321 = new System.Windows.Forms.Label();
  483. this.lblrgv1175 = new System.Windows.Forms.Label();
  484. this.GV5 = new System.Windows.Forms.PictureBox();
  485. this.pictureBox29 = new System.Windows.Forms.PictureBox();
  486. this.myPanel2 = new MyConrols.MyPanel();
  487. this.myPanel4 = new MyConrols.MyPanel();
  488. this.label124 = new System.Windows.Forms.Label();
  489. this.label125 = new System.Windows.Forms.Label();
  490. this.label126 = new System.Windows.Forms.Label();
  491. this.label127 = new System.Windows.Forms.Label();
  492. this.label128 = new System.Windows.Forms.Label();
  493. this.label129 = new System.Windows.Forms.Label();
  494. this.label130 = new System.Windows.Forms.Label();
  495. this.label131 = new System.Windows.Forms.Label();
  496. this.label132 = new System.Windows.Forms.Label();
  497. this.label133 = new System.Windows.Forms.Label();
  498. this.label134 = new System.Windows.Forms.Label();
  499. this.label135 = new System.Windows.Forms.Label();
  500. this.label136 = new System.Windows.Forms.Label();
  501. this.label138 = new System.Windows.Forms.Label();
  502. this.label140 = new System.Windows.Forms.Label();
  503. this.label141 = new System.Windows.Forms.Label();
  504. this.label142 = new System.Windows.Forms.Label();
  505. this.label143 = new System.Windows.Forms.Label();
  506. this.label144 = new System.Windows.Forms.Label();
  507. this.label145 = new System.Windows.Forms.Label();
  508. this.label146 = new System.Windows.Forms.Label();
  509. this.label147 = new System.Windows.Forms.Label();
  510. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  511. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  512. this.rgvOptType1 = new System.Windows.Forms.Label();
  513. this.label23 = new System.Windows.Forms.Label();
  514. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  515. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  516. this.label45 = new System.Windows.Forms.Label();
  517. this.rgvMode1 = new System.Windows.Forms.Label();
  518. this.rgvOrdId1 = new System.Windows.Forms.Label();
  519. this.label58 = new System.Windows.Forms.Label();
  520. this.rgvPosTo1 = new System.Windows.Forms.Label();
  521. this.label69 = new System.Windows.Forms.Label();
  522. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  523. this.label73 = new System.Windows.Forms.Label();
  524. this.rgvStatus1 = new System.Windows.Forms.Label();
  525. this.label80 = new System.Windows.Forms.Label();
  526. this.label92 = new System.Windows.Forms.Label();
  527. this.lblrgv1444 = new System.Windows.Forms.Label();
  528. this.GV1 = new System.Windows.Forms.PictureBox();
  529. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  530. this.pnlBottom = new MyConrols.MyPanel();
  531. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  532. this.tabControl1.SuspendLayout();
  533. this.tabPage1.SuspendLayout();
  534. this.myTableLayoutPanel1.SuspendLayout();
  535. this.panel1.SuspendLayout();
  536. this.panel12.SuspendLayout();
  537. this.pnlDDJ1.SuspendLayout();
  538. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  540. this.pnlDDJ2.SuspendLayout();
  541. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  542. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  543. this.pnlDDJ3.SuspendLayout();
  544. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  545. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  546. this.pnlDDJ4.SuspendLayout();
  547. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  548. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  549. this.myPanel1.SuspendLayout();
  550. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  551. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  552. this.pnlRGV1089.SuspendLayout();
  553. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  554. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  555. this.pnlRGV1091.SuspendLayout();
  556. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  557. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  558. this.myPanel5.SuspendLayout();
  559. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  560. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  561. this.myPanel11.SuspendLayout();
  562. ((System.ComponentModel.ISupportInitialize)(this.GV5)).BeginInit();
  563. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).BeginInit();
  564. this.myPanel2.SuspendLayout();
  565. this.myPanel4.SuspendLayout();
  566. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  567. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  568. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  569. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  570. this.pnlBottom.SuspendLayout();
  571. this.tableLayoutPanel1.SuspendLayout();
  572. this.SuspendLayout();
  573. //
  574. // tabControl1
  575. //
  576. this.tabControl1.Controls.Add(this.tabPage1);
  577. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  578. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  579. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  580. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  581. this.tabControl1.Name = "tabControl1";
  582. this.tabControl1.SelectedIndex = 0;
  583. this.tabControl1.Size = new System.Drawing.Size(2164, 886);
  584. this.tabControl1.TabIndex = 125;
  585. //
  586. // tabPage1
  587. //
  588. this.tabPage1.AutoScroll = true;
  589. this.tabPage1.BackColor = System.Drawing.Color.White;
  590. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  591. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  592. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  593. this.tabPage1.Name = "tabPage1";
  594. this.tabPage1.Size = new System.Drawing.Size(2156, 857);
  595. this.tabPage1.TabIndex = 0;
  596. this.tabPage1.Text = "美纹立体库";
  597. //
  598. // myTableLayoutPanel1
  599. //
  600. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  601. this.myTableLayoutPanel1.ColumnCount = 112;
  602. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  603. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  604. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  605. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  606. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  607. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  608. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  609. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  610. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  611. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  612. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  613. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  614. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  615. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  616. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  617. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  618. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  619. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  620. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  621. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  622. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  623. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  624. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  625. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  626. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  627. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  628. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  629. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  630. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  631. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  632. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  633. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  634. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  635. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  636. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  637. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  638. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  639. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  640. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  641. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  642. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  643. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  644. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  645. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  646. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  647. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  648. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  649. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  650. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  651. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  652. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  653. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  654. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  655. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  656. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  657. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  658. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  659. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  660. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  661. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  662. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  663. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  664. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  665. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  666. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  667. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  668. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  669. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  670. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  671. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  672. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  673. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  674. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  675. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  676. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  677. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  678. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  679. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  680. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  681. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  682. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  683. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  684. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  685. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  686. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  687. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  688. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  689. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  690. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  691. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  692. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  693. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  694. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  695. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  696. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  697. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  698. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  699. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  700. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  701. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  702. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  703. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  704. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  705. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  706. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  707. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  708. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  709. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  710. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  711. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  712. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  713. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  714. this.myTableLayoutPanel1.Controls.Add(this.con2282, 20, 23);
  715. this.myTableLayoutPanel1.Controls.Add(this.con2010, 3, 26);
  716. this.myTableLayoutPanel1.Controls.Add(this.con2014, 3, 35);
  717. this.myTableLayoutPanel1.Controls.Add(this.con2083, 3, 49);
  718. this.myTableLayoutPanel1.Controls.Add(this.con2279, 16, 23);
  719. this.myTableLayoutPanel1.Controls.Add(this.con2058, 55, 51);
  720. this.myTableLayoutPanel1.Controls.Add(this.con2053, 52, 51);
  721. this.myTableLayoutPanel1.Controls.Add(this.con2051, 49, 51);
  722. this.myTableLayoutPanel1.Controls.Add(this.con2039, 40, 51);
  723. this.myTableLayoutPanel1.Controls.Add(this.con2034, 20, 45);
  724. this.myTableLayoutPanel1.Controls.Add(this.con2028, 16, 45);
  725. this.myTableLayoutPanel1.Controls.Add(this.con2027, 12, 45);
  726. this.myTableLayoutPanel1.Controls.Add(this.con2022, 19, 51);
  727. this.myTableLayoutPanel1.Controls.Add(this.con2021, 8, 45);
  728. this.myTableLayoutPanel1.Controls.Add(this.con2203, 62, 7);
  729. this.myTableLayoutPanel1.Controls.Add(this.con2206, 71, 7);
  730. this.myTableLayoutPanel1.Controls.Add(this.con2204, 65, 7);
  731. this.myTableLayoutPanel1.Controls.Add(this.con2205, 68, 7);
  732. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 56, 5);
  733. this.myTableLayoutPanel1.Controls.Add(this.con2187, 55, 7);
  734. this.myTableLayoutPanel1.Controls.Add(this.con2182, 58, 7);
  735. this.myTableLayoutPanel1.Controls.Add(this.con2271, 77, 5);
  736. this.myTableLayoutPanel1.Controls.Add(this.con2152, 77, 3);
  737. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 55, 11);
  738. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel4, 74, 11);
  739. this.myTableLayoutPanel1.Controls.Add(this.conrgv2, 71, 11);
  740. this.myTableLayoutPanel1.Controls.Add(this.con2172, 55, 13);
  741. this.myTableLayoutPanel1.Controls.Add(this.con2173, 59, 13);
  742. this.myTableLayoutPanel1.Controls.Add(this.con2174, 64, 13);
  743. this.myTableLayoutPanel1.Controls.Add(this.con2175, 68, 13);
  744. this.myTableLayoutPanel1.Controls.Add(this.con2176, 73, 13);
  745. this.myTableLayoutPanel1.Controls.Add(this.con2177, 77, 13);
  746. this.myTableLayoutPanel1.Controls.Add(this.con2147, 78, 1);
  747. this.myTableLayoutPanel1.Controls.Add(this.con2146, 81, 1);
  748. this.myTableLayoutPanel1.Controls.Add(this.con2148, 75, 1);
  749. this.myTableLayoutPanel1.Controls.Add(this.con2144, 87, 1);
  750. this.myTableLayoutPanel1.Controls.Add(this.con2145, 84, 1);
  751. this.myTableLayoutPanel1.Controls.Add(this.con2150, 72, 1);
  752. this.myTableLayoutPanel1.Controls.Add(this.con2161, 69, 1);
  753. this.myTableLayoutPanel1.Controls.Add(this.con2384, 90, 1);
  754. this.myTableLayoutPanel1.Controls.Add(this.con2104, 71, 53);
  755. this.myTableLayoutPanel1.Controls.Add(this.con2102, 65, 53);
  756. this.myTableLayoutPanel1.Controls.Add(this.con2101, 62, 53);
  757. this.myTableLayoutPanel1.Controls.Add(this.con2103, 68, 53);
  758. this.myTableLayoutPanel1.Controls.Add(this.con2108, 83, 53);
  759. this.myTableLayoutPanel1.Controls.Add(this.con2107, 80, 53);
  760. this.myTableLayoutPanel1.Controls.Add(this.con2106, 77, 53);
  761. this.myTableLayoutPanel1.Controls.Add(this.con2105, 74, 53);
  762. this.myTableLayoutPanel1.Controls.Add(this.con2060, 55, 55);
  763. this.myTableLayoutPanel1.Controls.Add(this.con2079, 19, 55);
  764. this.myTableLayoutPanel1.Controls.Add(this.con2075, 35, 55);
  765. this.myTableLayoutPanel1.Controls.Add(this.con2080, 11, 55);
  766. this.myTableLayoutPanel1.Controls.Add(this.con2074, 39, 55);
  767. this.myTableLayoutPanel1.Controls.Add(this.con2078, 23, 55);
  768. this.myTableLayoutPanel1.Controls.Add(this.con2077, 27, 55);
  769. this.myTableLayoutPanel1.Controls.Add(this.con2325, 7, 55);
  770. this.myTableLayoutPanel1.Controls.Add(this.con2073, 43, 55);
  771. this.myTableLayoutPanel1.Controls.Add(this.con2071, 51, 55);
  772. this.myTableLayoutPanel1.Controls.Add(this.con2072, 47, 55);
  773. this.myTableLayoutPanel1.Controls.Add(this.con2076, 31, 55);
  774. this.myTableLayoutPanel1.Controls.Add(this.con2355, 15, 55);
  775. this.myTableLayoutPanel1.Controls.Add(this.con2037, 37, 51);
  776. this.myTableLayoutPanel1.Controls.Add(this.con2044, 43, 51);
  777. this.myTableLayoutPanel1.Controls.Add(this.con2046, 46, 51);
  778. this.myTableLayoutPanel1.Controls.Add(this.con2031, 31, 51);
  779. this.myTableLayoutPanel1.Controls.Add(this.con2029, 28, 51);
  780. this.myTableLayoutPanel1.Controls.Add(this.con2036, 34, 51);
  781. this.myTableLayoutPanel1.Controls.Add(this.con2017, 16, 51);
  782. this.myTableLayoutPanel1.Controls.Add(this.con2019, 22, 51);
  783. this.myTableLayoutPanel1.Controls.Add(this.con2024, 25, 51);
  784. this.myTableLayoutPanel1.Controls.Add(this.con2324, 7, 51);
  785. this.myTableLayoutPanel1.Controls.Add(this.con2353, 13, 51);
  786. this.myTableLayoutPanel1.Controls.Add(this.con2016, 10, 51);
  787. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 20, 25);
  788. this.myTableLayoutPanel1.Controls.Add(this.con2084, 3, 51);
  789. this.myTableLayoutPanel1.Controls.Add(this.con2086, 3, 53);
  790. this.myTableLayoutPanel1.Controls.Add(this.con2081, 3, 45);
  791. this.myTableLayoutPanel1.Controls.Add(this.con2088, 0, 49);
  792. this.myTableLayoutPanel1.Controls.Add(this.label6, 3, 47);
  793. this.myTableLayoutPanel1.Controls.Add(this.con2015, 3, 31);
  794. this.myTableLayoutPanel1.Controls.Add(this.con2012, 0, 35);
  795. this.myTableLayoutPanel1.Controls.Add(this.label12, 3, 33);
  796. this.myTableLayoutPanel1.Controls.Add(this.con2008, 0, 26);
  797. this.myTableLayoutPanel1.Controls.Add(this.con2011, 3, 22);
  798. this.myTableLayoutPanel1.Controls.Add(this.label28, 3, 24);
  799. this.myTableLayoutPanel1.Controls.Add(this.con2005, 15, 0);
  800. this.myTableLayoutPanel1.Controls.Add(this.con2302, 18, 0);
  801. this.myTableLayoutPanel1.Controls.Add(this.con2004, 12, 0);
  802. this.myTableLayoutPanel1.Controls.Add(this.label33, 12, 2);
  803. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 19, 25);
  804. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 24, 25);
  805. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 16, 25);
  806. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 12, 25);
  807. this.myTableLayoutPanel1.Controls.Add(this.srm15, 11, 25);
  808. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 8, 25);
  809. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel33, 6, 20);
  810. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel34, 6, 42);
  811. this.myTableLayoutPanel1.Controls.Add(this.conrgv5, 5, 40);
  812. this.myTableLayoutPanel1.Controls.Add(this.con2323, 7, 20);
  813. this.myTableLayoutPanel1.Controls.Add(this.con2322, 12, 20);
  814. this.myTableLayoutPanel1.Controls.Add(this.con2308, 9, 4);
  815. this.myTableLayoutPanel1.Controls.Add(this.con2304, 0, 4);
  816. this.myTableLayoutPanel1.Controls.Add(this.con2305, 3, 4);
  817. this.myTableLayoutPanel1.Controls.Add(this.con2309, 0, 6);
  818. this.myTableLayoutPanel1.Controls.Add(this.con2310, 0, 8);
  819. this.myTableLayoutPanel1.Controls.Add(this.con2026, 13, 47);
  820. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel10, 15, 49);
  821. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel11, 15, 45);
  822. this.myTableLayoutPanel1.Controls.Add(this.con2280, 12, 23);
  823. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel12, 23, 49);
  824. this.myTableLayoutPanel1.Controls.Add(this.con2033, 21, 47);
  825. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel13, 23, 45);
  826. this.myTableLayoutPanel1.Controls.Add(this.con2035, 24, 45);
  827. this.myTableLayoutPanel1.Controls.Add(this.con2278, 24, 23);
  828. this.myTableLayoutPanel1.Controls.Add(this.srm14, 27, 25);
  829. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 28, 25);
  830. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 31, 25);
  831. this.myTableLayoutPanel1.Controls.Add(this.con2042, 28, 45);
  832. this.myTableLayoutPanel1.Controls.Add(this.con2041, 31, 45);
  833. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 34, 25);
  834. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 35, 25);
  835. this.myTableLayoutPanel1.Controls.Add(this.con2277, 35, 23);
  836. this.myTableLayoutPanel1.Controls.Add(this.con2049, 35, 45);
  837. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel16, 38, 45);
  838. this.myTableLayoutPanel1.Controls.Add(this.con2048, 36, 47);
  839. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel14, 38, 49);
  840. this.myTableLayoutPanel1.Controls.Add(this.con2050, 39, 45);
  841. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 39, 25);
  842. this.myTableLayoutPanel1.Controls.Add(this.con2281, 39, 23);
  843. this.myTableLayoutPanel1.Controls.Add(this.srm13, 42, 25);
  844. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 43, 25);
  845. this.myTableLayoutPanel1.Controls.Add(this.con2276, 43, 23);
  846. this.myTableLayoutPanel1.Controls.Add(this.con2056, 43, 45);
  847. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel17, 46, 45);
  848. this.myTableLayoutPanel1.Controls.Add(this.con2055, 44, 47);
  849. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel18, 46, 49);
  850. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 47, 25);
  851. this.myTableLayoutPanel1.Controls.Add(this.con2057, 47, 45);
  852. this.myTableLayoutPanel1.Controls.Add(this.con2275, 47, 23);
  853. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 50, 25);
  854. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 51, 25);
  855. this.myTableLayoutPanel1.Controls.Add(this.con2062, 51, 45);
  856. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel24, 55, 21);
  857. this.myTableLayoutPanel1.Controls.Add(this.con2260, 59, 17);
  858. this.myTableLayoutPanel1.Controls.Add(this.con2259, 59, 19);
  859. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 69, 21);
  860. this.myTableLayoutPanel1.Controls.Add(this.con2262, 64, 17);
  861. this.myTableLayoutPanel1.Controls.Add(this.con2261, 64, 19);
  862. this.myTableLayoutPanel1.Controls.Add(this.con2264, 73, 17);
  863. this.myTableLayoutPanel1.Controls.Add(this.con2263, 73, 19);
  864. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A17, 81, 19);
  865. this.myTableLayoutPanel1.Controls.Add(this.conrgv1, 66, 21);
  866. this.myTableLayoutPanel1.Controls.Add(this.locationPos44, 55, 25);
  867. this.myTableLayoutPanel1.Controls.Add(this.locationPos43, 59, 25);
  868. this.myTableLayoutPanel1.Controls.Add(this.srm12, 58, 25);
  869. this.myTableLayoutPanel1.Controls.Add(this.con2153, 77, 7);
  870. this.myTableLayoutPanel1.Controls.Add(this.con2181, 55, 9);
  871. this.myTableLayoutPanel1.Controls.Add(this.con2180, 58, 9);
  872. this.myTableLayoutPanel1.Controls.Add(this.con2207, 62, 9);
  873. this.myTableLayoutPanel1.Controls.Add(this.con2208, 65, 9);
  874. this.myTableLayoutPanel1.Controls.Add(this.con2209, 68, 9);
  875. this.myTableLayoutPanel1.Controls.Add(this.con2210, 71, 9);
  876. this.myTableLayoutPanel1.Controls.Add(this.con2211, 74, 9);
  877. this.myTableLayoutPanel1.Controls.Add(this.con2192, 49, 7);
  878. this.myTableLayoutPanel1.Controls.Add(this.con2195, 46, 7);
  879. this.myTableLayoutPanel1.Controls.Add(this.con2198, 43, 7);
  880. this.myTableLayoutPanel1.Controls.Add(this.con2201, 40, 7);
  881. this.myTableLayoutPanel1.Controls.Add(this.con2265, 77, 17);
  882. this.myTableLayoutPanel1.Controls.Add(this.con2382, 90, 3);
  883. this.myTableLayoutPanel1.Controls.Add(this.con2381, 90, 5);
  884. this.myTableLayoutPanel1.Controls.Add(this.con2380, 90, 7);
  885. this.myTableLayoutPanel1.Controls.Add(this.con2379, 90, 9);
  886. this.myTableLayoutPanel1.Controls.Add(this.con2378, 90, 11);
  887. this.myTableLayoutPanel1.Controls.Add(this.con2377, 90, 13);
  888. this.myTableLayoutPanel1.Controls.Add(this.con2376, 90, 15);
  889. this.myTableLayoutPanel1.Controls.Add(this.con2375, 90, 17);
  890. this.myTableLayoutPanel1.Controls.Add(this.con2374, 90, 19);
  891. this.myTableLayoutPanel1.Controls.Add(this.con2385, 90, 21);
  892. this.myTableLayoutPanel1.Controls.Add(this.con2386, 90, 23);
  893. this.myTableLayoutPanel1.Controls.Add(this.con2387, 90, 25);
  894. this.myTableLayoutPanel1.Controls.Add(this.con2388, 90, 27);
  895. this.myTableLayoutPanel1.Controls.Add(this.con2372, 90, 29);
  896. this.myTableLayoutPanel1.Controls.Add(this.con2371, 90, 31);
  897. this.myTableLayoutPanel1.Controls.Add(this.con2370, 90, 33);
  898. this.myTableLayoutPanel1.Controls.Add(this.con2369, 90, 35);
  899. this.myTableLayoutPanel1.Controls.Add(this.con2368, 90, 37);
  900. this.myTableLayoutPanel1.Controls.Add(this.con2366, 90, 39);
  901. this.myTableLayoutPanel1.Controls.Add(this.con2365, 90, 41);
  902. this.myTableLayoutPanel1.Controls.Add(this.con2364, 87, 41);
  903. this.myTableLayoutPanel1.Controls.Add(this.con2362, 84, 41);
  904. this.myTableLayoutPanel1.Controls.Add(this.con2360, 84, 43);
  905. this.myTableLayoutPanel1.Controls.Add(this.con2359, 84, 45);
  906. this.myTableLayoutPanel1.Controls.Add(this.con2135, 93, 17);
  907. this.myTableLayoutPanel1.Controls.Add(this.label1, 93, 19);
  908. this.myTableLayoutPanel1.Controls.Add(this.con2137, 93, 21);
  909. this.myTableLayoutPanel1.Controls.Add(this.con2138, 96, 21);
  910. this.myTableLayoutPanel1.Controls.Add(this.con2326, 99, 21);
  911. this.myTableLayoutPanel1.Controls.Add(this.con2141, 105, 21);
  912. this.myTableLayoutPanel1.Controls.Add(this.panel1, 102, 21);
  913. this.myTableLayoutPanel1.Controls.Add(this.panel12, 102, 24);
  914. this.myTableLayoutPanel1.Controls.Add(this.con2274, 108, 21);
  915. this.myTableLayoutPanel1.Controls.Add(this.con2123, 93, 35);
  916. this.myTableLayoutPanel1.Controls.Add(this.label4, 93, 37);
  917. this.myTableLayoutPanel1.Controls.Add(this.con2125, 93, 39);
  918. this.myTableLayoutPanel1.Controls.Add(this.con2126, 96, 39);
  919. this.myTableLayoutPanel1.Controls.Add(this.con2327, 99, 39);
  920. this.myTableLayoutPanel1.Controls.Add(this.con2129, 102, 37);
  921. this.myTableLayoutPanel1.Controls.Add(this.con2128, 102, 39);
  922. this.myTableLayoutPanel1.Controls.Add(this.con2131, 102, 41);
  923. this.myTableLayoutPanel1.Controls.Add(this.con2273, 102, 35);
  924. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel32, 91, 43);
  925. this.myTableLayoutPanel1.Controls.Add(this.conrgv4, 89, 48);
  926. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel9, 91, 50);
  927. this.myTableLayoutPanel1.Controls.Add(this.con2114, 92, 50);
  928. this.myTableLayoutPanel1.Controls.Add(this.label34, 92, 52);
  929. this.myTableLayoutPanel1.Controls.Add(this.con2116, 92, 54);
  930. this.myTableLayoutPanel1.Controls.Add(this.con2117, 95, 54);
  931. this.myTableLayoutPanel1.Controls.Add(this.con2328, 98, 54);
  932. this.myTableLayoutPanel1.Controls.Add(this.con2120, 101, 51);
  933. this.myTableLayoutPanel1.Controls.Add(this.con2119, 101, 53);
  934. this.myTableLayoutPanel1.Controls.Add(this.con2122, 101, 55);
  935. this.myTableLayoutPanel1.Controls.Add(this.con2272, 101, 49);
  936. this.myTableLayoutPanel1.Controls.Add(this.conrgv3, 53, 5);
  937. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 40, 5);
  938. this.myTableLayoutPanel1.Controls.Add(this.con2202, 49, 3);
  939. this.myTableLayoutPanel1.Controls.Add(this.con2256, 77, 23);
  940. this.myTableLayoutPanel1.Controls.Add(this.con2255, 73, 23);
  941. this.myTableLayoutPanel1.Controls.Add(this.con2254, 68, 23);
  942. this.myTableLayoutPanel1.Controls.Add(this.con2253, 64, 23);
  943. this.myTableLayoutPanel1.Controls.Add(this.con2252, 59, 23);
  944. this.myTableLayoutPanel1.Controls.Add(this.con2251, 55, 23);
  945. this.myTableLayoutPanel1.Controls.Add(this.locationPos41, 77, 25);
  946. this.myTableLayoutPanel1.Controls.Add(this.locationPos35, 73, 25);
  947. this.myTableLayoutPanel1.Controls.Add(this.srm11, 76, 25);
  948. this.myTableLayoutPanel1.Controls.Add(this.locationPos40, 68, 25);
  949. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel15, 67, 25);
  950. this.myTableLayoutPanel1.Controls.Add(this.locationPos39, 64, 25);
  951. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel8, 59, 42);
  952. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 68, 42);
  953. this.myTableLayoutPanel1.Controls.Add(this.con2307, 6, 4);
  954. this.myTableLayoutPanel1.Controls.Add(this.con2003, 12, 4);
  955. this.myTableLayoutPanel1.Controls.Add(this.con2311, 17, 2);
  956. this.myTableLayoutPanel1.Controls.Add(this.con2312, 17, 4);
  957. this.myTableLayoutPanel1.Controls.Add(this.con2313, 17, 6);
  958. this.myTableLayoutPanel1.Controls.Add(this.con2314, 17, 8);
  959. this.myTableLayoutPanel1.Controls.Add(this.con2315, 17, 10);
  960. this.myTableLayoutPanel1.Controls.Add(this.con2316, 17, 12);
  961. this.myTableLayoutPanel1.Controls.Add(this.con2317, 17, 14);
  962. this.myTableLayoutPanel1.Controls.Add(this.con2318, 17, 16);
  963. this.myTableLayoutPanel1.Controls.Add(this.con2319, 17, 18);
  964. this.myTableLayoutPanel1.Controls.Add(this.con2320, 17, 20);
  965. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  966. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  967. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  968. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  969. this.myTableLayoutPanel1.RowCount = 58;
  970. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  971. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  972. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  973. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  974. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  975. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  976. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  977. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.285956F));
  978. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.987387F));
  979. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  980. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  981. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  982. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  983. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  984. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  985. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  986. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  987. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  988. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  989. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  990. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  991. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  992. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  993. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  994. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  995. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  996. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.522525F));
  997. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.756759F));
  998. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  999. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1000. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1001. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1002. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1003. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1004. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1005. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1006. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1007. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1008. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1009. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1010. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1011. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1012. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1013. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1014. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1015. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1016. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1017. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1018. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1019. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1020. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1021. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1022. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1023. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1024. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1025. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1026. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1027. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  1028. this.myTableLayoutPanel1.Size = new System.Drawing.Size(2156, 857);
  1029. this.myTableLayoutPanel1.TabIndex = 2;
  1030. //
  1031. // con2282
  1032. //
  1033. this.con2282.BackColor = System.Drawing.Color.Transparent;
  1034. this.myTableLayoutPanel1.SetColumnSpan(this.con2282, 3);
  1035. this.con2282.Dock = System.Windows.Forms.DockStyle.Fill;
  1036. this.con2282.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1037. this.con2282.Location = new System.Drawing.Point(380, 322);
  1038. this.con2282.Margin = new System.Windows.Forms.Padding(0);
  1039. this.con2282.Name = "con2282";
  1040. this.myTableLayoutPanel1.SetRowSpan(this.con2282, 2);
  1041. this.con2282.Size = new System.Drawing.Size(57, 28);
  1042. this.con2282.TabIndex = 869;
  1043. //
  1044. // con2010
  1045. //
  1046. this.con2010.BackColor = System.Drawing.Color.Transparent;
  1047. this.myTableLayoutPanel1.SetColumnSpan(this.con2010, 3);
  1048. this.con2010.Dock = System.Windows.Forms.DockStyle.Fill;
  1049. this.con2010.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1050. this.con2010.Location = new System.Drawing.Point(57, 364);
  1051. this.con2010.Margin = new System.Windows.Forms.Padding(0);
  1052. this.con2010.Name = "con2010";
  1053. this.myTableLayoutPanel1.SetRowSpan(this.con2010, 2);
  1054. this.con2010.Size = new System.Drawing.Size(57, 28);
  1055. this.con2010.TabIndex = 868;
  1056. //
  1057. // con2014
  1058. //
  1059. this.con2014.BackColor = System.Drawing.Color.Transparent;
  1060. this.myTableLayoutPanel1.SetColumnSpan(this.con2014, 3);
  1061. this.con2014.Dock = System.Windows.Forms.DockStyle.Fill;
  1062. this.con2014.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1063. this.con2014.Location = new System.Drawing.Point(57, 490);
  1064. this.con2014.Margin = new System.Windows.Forms.Padding(0);
  1065. this.con2014.Name = "con2014";
  1066. this.myTableLayoutPanel1.SetRowSpan(this.con2014, 2);
  1067. this.con2014.Size = new System.Drawing.Size(57, 28);
  1068. this.con2014.TabIndex = 867;
  1069. //
  1070. // con2083
  1071. //
  1072. this.con2083.BackColor = System.Drawing.Color.Transparent;
  1073. this.myTableLayoutPanel1.SetColumnSpan(this.con2083, 3);
  1074. this.con2083.Dock = System.Windows.Forms.DockStyle.Fill;
  1075. this.con2083.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1076. this.con2083.Location = new System.Drawing.Point(57, 686);
  1077. this.con2083.Margin = new System.Windows.Forms.Padding(0);
  1078. this.con2083.Name = "con2083";
  1079. this.myTableLayoutPanel1.SetRowSpan(this.con2083, 2);
  1080. this.con2083.Size = new System.Drawing.Size(57, 28);
  1081. this.con2083.TabIndex = 866;
  1082. //
  1083. // con2279
  1084. //
  1085. this.con2279.BackColor = System.Drawing.Color.Transparent;
  1086. this.myTableLayoutPanel1.SetColumnSpan(this.con2279, 3);
  1087. this.con2279.Dock = System.Windows.Forms.DockStyle.Fill;
  1088. this.con2279.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1089. this.con2279.Location = new System.Drawing.Point(304, 322);
  1090. this.con2279.Margin = new System.Windows.Forms.Padding(0);
  1091. this.con2279.Name = "con2279";
  1092. this.myTableLayoutPanel1.SetRowSpan(this.con2279, 2);
  1093. this.con2279.Size = new System.Drawing.Size(57, 28);
  1094. this.con2279.TabIndex = 858;
  1095. //
  1096. // con2058
  1097. //
  1098. this.con2058.BackColor = System.Drawing.Color.Transparent;
  1099. this.myTableLayoutPanel1.SetColumnSpan(this.con2058, 3);
  1100. this.con2058.Dock = System.Windows.Forms.DockStyle.Fill;
  1101. this.con2058.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1102. this.con2058.Location = new System.Drawing.Point(1045, 714);
  1103. this.con2058.Margin = new System.Windows.Forms.Padding(0);
  1104. this.con2058.Name = "con2058";
  1105. this.myTableLayoutPanel1.SetRowSpan(this.con2058, 2);
  1106. this.con2058.Size = new System.Drawing.Size(57, 28);
  1107. this.con2058.TabIndex = 854;
  1108. //
  1109. // con2053
  1110. //
  1111. this.con2053.BackColor = System.Drawing.Color.Transparent;
  1112. this.myTableLayoutPanel1.SetColumnSpan(this.con2053, 3);
  1113. this.con2053.Dock = System.Windows.Forms.DockStyle.Fill;
  1114. this.con2053.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1115. this.con2053.Location = new System.Drawing.Point(988, 714);
  1116. this.con2053.Margin = new System.Windows.Forms.Padding(0);
  1117. this.con2053.Name = "con2053";
  1118. this.myTableLayoutPanel1.SetRowSpan(this.con2053, 2);
  1119. this.con2053.Size = new System.Drawing.Size(57, 28);
  1120. this.con2053.TabIndex = 853;
  1121. //
  1122. // con2051
  1123. //
  1124. this.con2051.BackColor = System.Drawing.Color.Transparent;
  1125. this.myTableLayoutPanel1.SetColumnSpan(this.con2051, 3);
  1126. this.con2051.Dock = System.Windows.Forms.DockStyle.Fill;
  1127. this.con2051.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1128. this.con2051.Location = new System.Drawing.Point(931, 714);
  1129. this.con2051.Margin = new System.Windows.Forms.Padding(0);
  1130. this.con2051.Name = "con2051";
  1131. this.myTableLayoutPanel1.SetRowSpan(this.con2051, 2);
  1132. this.con2051.Size = new System.Drawing.Size(57, 28);
  1133. this.con2051.TabIndex = 847;
  1134. //
  1135. // con2039
  1136. //
  1137. this.con2039.BackColor = System.Drawing.Color.Transparent;
  1138. this.myTableLayoutPanel1.SetColumnSpan(this.con2039, 3);
  1139. this.con2039.Dock = System.Windows.Forms.DockStyle.Fill;
  1140. this.con2039.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1141. this.con2039.Location = new System.Drawing.Point(760, 714);
  1142. this.con2039.Margin = new System.Windows.Forms.Padding(0);
  1143. this.con2039.Name = "con2039";
  1144. this.myTableLayoutPanel1.SetRowSpan(this.con2039, 2);
  1145. this.con2039.Size = new System.Drawing.Size(57, 28);
  1146. this.con2039.TabIndex = 840;
  1147. //
  1148. // con2034
  1149. //
  1150. this.con2034.BackColor = System.Drawing.Color.Transparent;
  1151. this.myTableLayoutPanel1.SetColumnSpan(this.con2034, 3);
  1152. this.con2034.Dock = System.Windows.Forms.DockStyle.Fill;
  1153. this.con2034.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1154. this.con2034.Location = new System.Drawing.Point(380, 630);
  1155. this.con2034.Margin = new System.Windows.Forms.Padding(0);
  1156. this.con2034.Name = "con2034";
  1157. this.myTableLayoutPanel1.SetRowSpan(this.con2034, 2);
  1158. this.con2034.Size = new System.Drawing.Size(57, 28);
  1159. this.con2034.TabIndex = 834;
  1160. //
  1161. // con2028
  1162. //
  1163. this.con2028.BackColor = System.Drawing.Color.Transparent;
  1164. this.myTableLayoutPanel1.SetColumnSpan(this.con2028, 3);
  1165. this.con2028.Dock = System.Windows.Forms.DockStyle.Fill;
  1166. this.con2028.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1167. this.con2028.Location = new System.Drawing.Point(304, 630);
  1168. this.con2028.Margin = new System.Windows.Forms.Padding(0);
  1169. this.con2028.Name = "con2028";
  1170. this.myTableLayoutPanel1.SetRowSpan(this.con2028, 2);
  1171. this.con2028.Size = new System.Drawing.Size(57, 28);
  1172. this.con2028.TabIndex = 833;
  1173. //
  1174. // con2027
  1175. //
  1176. this.con2027.BackColor = System.Drawing.Color.Transparent;
  1177. this.myTableLayoutPanel1.SetColumnSpan(this.con2027, 3);
  1178. this.con2027.Dock = System.Windows.Forms.DockStyle.Fill;
  1179. this.con2027.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1180. this.con2027.Location = new System.Drawing.Point(228, 630);
  1181. this.con2027.Margin = new System.Windows.Forms.Padding(0);
  1182. this.con2027.Name = "con2027";
  1183. this.myTableLayoutPanel1.SetRowSpan(this.con2027, 2);
  1184. this.con2027.Size = new System.Drawing.Size(57, 28);
  1185. this.con2027.TabIndex = 829;
  1186. //
  1187. // con2022
  1188. //
  1189. this.con2022.BackColor = System.Drawing.Color.Transparent;
  1190. this.myTableLayoutPanel1.SetColumnSpan(this.con2022, 3);
  1191. this.con2022.Dock = System.Windows.Forms.DockStyle.Fill;
  1192. this.con2022.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1193. this.con2022.Location = new System.Drawing.Point(361, 714);
  1194. this.con2022.Margin = new System.Windows.Forms.Padding(0);
  1195. this.con2022.Name = "con2022";
  1196. this.myTableLayoutPanel1.SetRowSpan(this.con2022, 2);
  1197. this.con2022.Size = new System.Drawing.Size(57, 28);
  1198. this.con2022.TabIndex = 828;
  1199. //
  1200. // con2021
  1201. //
  1202. this.con2021.BackColor = System.Drawing.Color.Transparent;
  1203. this.myTableLayoutPanel1.SetColumnSpan(this.con2021, 3);
  1204. this.con2021.Dock = System.Windows.Forms.DockStyle.Fill;
  1205. this.con2021.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1206. this.con2021.Location = new System.Drawing.Point(152, 630);
  1207. this.con2021.Margin = new System.Windows.Forms.Padding(0);
  1208. this.con2021.Name = "con2021";
  1209. this.myTableLayoutPanel1.SetRowSpan(this.con2021, 2);
  1210. this.con2021.Size = new System.Drawing.Size(57, 28);
  1211. this.con2021.TabIndex = 827;
  1212. //
  1213. // con2203
  1214. //
  1215. this.myTableLayoutPanel1.SetColumnSpan(this.con2203, 3);
  1216. this.con2203.Dock = System.Windows.Forms.DockStyle.Fill;
  1217. this.con2203.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1218. this.con2203.Location = new System.Drawing.Point(1178, 98);
  1219. this.con2203.Margin = new System.Windows.Forms.Padding(0);
  1220. this.con2203.Name = "con2203";
  1221. this.myTableLayoutPanel1.SetRowSpan(this.con2203, 2);
  1222. this.con2203.Size = new System.Drawing.Size(57, 28);
  1223. this.con2203.TabIndex = 800;
  1224. //
  1225. // con2206
  1226. //
  1227. this.myTableLayoutPanel1.SetColumnSpan(this.con2206, 3);
  1228. this.con2206.Dock = System.Windows.Forms.DockStyle.Fill;
  1229. this.con2206.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1230. this.con2206.Location = new System.Drawing.Point(1349, 98);
  1231. this.con2206.Margin = new System.Windows.Forms.Padding(0);
  1232. this.con2206.Name = "con2206";
  1233. this.myTableLayoutPanel1.SetRowSpan(this.con2206, 2);
  1234. this.con2206.Size = new System.Drawing.Size(57, 28);
  1235. this.con2206.TabIndex = 799;
  1236. //
  1237. // con2204
  1238. //
  1239. this.myTableLayoutPanel1.SetColumnSpan(this.con2204, 3);
  1240. this.con2204.Dock = System.Windows.Forms.DockStyle.Fill;
  1241. this.con2204.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1242. this.con2204.Location = new System.Drawing.Point(1235, 98);
  1243. this.con2204.Margin = new System.Windows.Forms.Padding(0);
  1244. this.con2204.Name = "con2204";
  1245. this.myTableLayoutPanel1.SetRowSpan(this.con2204, 2);
  1246. this.con2204.Size = new System.Drawing.Size(57, 28);
  1247. this.con2204.TabIndex = 798;
  1248. //
  1249. // con2205
  1250. //
  1251. this.myTableLayoutPanel1.SetColumnSpan(this.con2205, 3);
  1252. this.con2205.Dock = System.Windows.Forms.DockStyle.Fill;
  1253. this.con2205.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1254. this.con2205.Location = new System.Drawing.Point(1292, 98);
  1255. this.con2205.Margin = new System.Windows.Forms.Padding(0);
  1256. this.con2205.Name = "con2205";
  1257. this.myTableLayoutPanel1.SetRowSpan(this.con2205, 2);
  1258. this.con2205.Size = new System.Drawing.Size(57, 28);
  1259. this.con2205.TabIndex = 797;
  1260. //
  1261. // tableCellLabel1
  1262. //
  1263. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  1264. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  1265. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1266. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 21);
  1267. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1268. this.tableCellLabel1.Location = new System.Drawing.Point(1064, 70);
  1269. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  1270. this.tableCellLabel1.Name = "tableCellLabel1";
  1271. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 2);
  1272. this.tableCellLabel1.Size = new System.Drawing.Size(399, 28);
  1273. this.tableCellLabel1.TabIndex = 791;
  1274. //
  1275. // con2187
  1276. //
  1277. this.myTableLayoutPanel1.SetColumnSpan(this.con2187, 3);
  1278. this.con2187.Dock = System.Windows.Forms.DockStyle.Fill;
  1279. this.con2187.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1280. this.con2187.Location = new System.Drawing.Point(1045, 98);
  1281. this.con2187.Margin = new System.Windows.Forms.Padding(0);
  1282. this.con2187.Name = "con2187";
  1283. this.myTableLayoutPanel1.SetRowSpan(this.con2187, 2);
  1284. this.con2187.Size = new System.Drawing.Size(57, 28);
  1285. this.con2187.TabIndex = 789;
  1286. //
  1287. // con2182
  1288. //
  1289. this.myTableLayoutPanel1.SetColumnSpan(this.con2182, 3);
  1290. this.con2182.Dock = System.Windows.Forms.DockStyle.Fill;
  1291. this.con2182.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1292. this.con2182.Location = new System.Drawing.Point(1102, 98);
  1293. this.con2182.Margin = new System.Windows.Forms.Padding(0);
  1294. this.con2182.Name = "con2182";
  1295. this.myTableLayoutPanel1.SetRowSpan(this.con2182, 2);
  1296. this.con2182.Size = new System.Drawing.Size(57, 28);
  1297. this.con2182.TabIndex = 788;
  1298. //
  1299. // con2271
  1300. //
  1301. this.myTableLayoutPanel1.SetColumnSpan(this.con2271, 3);
  1302. this.con2271.Dock = System.Windows.Forms.DockStyle.Fill;
  1303. this.con2271.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1304. this.con2271.Location = new System.Drawing.Point(1463, 70);
  1305. this.con2271.Margin = new System.Windows.Forms.Padding(0);
  1306. this.con2271.Name = "con2271";
  1307. this.myTableLayoutPanel1.SetRowSpan(this.con2271, 2);
  1308. this.con2271.Size = new System.Drawing.Size(57, 28);
  1309. this.con2271.TabIndex = 785;
  1310. //
  1311. // con2152
  1312. //
  1313. this.myTableLayoutPanel1.SetColumnSpan(this.con2152, 3);
  1314. this.con2152.Dock = System.Windows.Forms.DockStyle.Fill;
  1315. this.con2152.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1316. this.con2152.Location = new System.Drawing.Point(1463, 42);
  1317. this.con2152.Margin = new System.Windows.Forms.Padding(0);
  1318. this.con2152.Name = "con2152";
  1319. this.myTableLayoutPanel1.SetRowSpan(this.con2152, 2);
  1320. this.con2152.Size = new System.Drawing.Size(57, 28);
  1321. this.con2152.TabIndex = 783;
  1322. //
  1323. // tableCellLabel3
  1324. //
  1325. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  1326. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  1327. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1328. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 16);
  1329. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1330. this.tableCellLabel3.Location = new System.Drawing.Point(1045, 154);
  1331. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  1332. this.tableCellLabel3.Name = "tableCellLabel3";
  1333. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel3, 2);
  1334. this.tableCellLabel3.Size = new System.Drawing.Size(304, 28);
  1335. this.tableCellLabel3.TabIndex = 780;
  1336. //
  1337. // tableCellLabel4
  1338. //
  1339. this.tableCellLabel4.BackColor = System.Drawing.Color.Transparent;
  1340. this.tableCellLabel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel4.BackgroundImage")));
  1341. this.tableCellLabel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1342. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel4, 6);
  1343. this.tableCellLabel4.Dock = System.Windows.Forms.DockStyle.Fill;
  1344. this.tableCellLabel4.Location = new System.Drawing.Point(1406, 154);
  1345. this.tableCellLabel4.Margin = new System.Windows.Forms.Padding(0);
  1346. this.tableCellLabel4.Name = "tableCellLabel4";
  1347. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel4, 2);
  1348. this.tableCellLabel4.Size = new System.Drawing.Size(114, 28);
  1349. this.tableCellLabel4.TabIndex = 779;
  1350. //
  1351. // conrgv2
  1352. //
  1353. this.conrgv2.BackColor = System.Drawing.Color.Transparent;
  1354. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv2, 3);
  1355. this.conrgv2.Dock = System.Windows.Forms.DockStyle.Fill;
  1356. this.conrgv2.Location = new System.Drawing.Point(1349, 154);
  1357. this.conrgv2.Margin = new System.Windows.Forms.Padding(0);
  1358. this.conrgv2.Name = "conrgv2";
  1359. this.myTableLayoutPanel1.SetRowSpan(this.conrgv2, 2);
  1360. this.conrgv2.Size = new System.Drawing.Size(57, 28);
  1361. this.conrgv2.TabIndex = 781;
  1362. //
  1363. // con2172
  1364. //
  1365. this.myTableLayoutPanel1.SetColumnSpan(this.con2172, 3);
  1366. this.con2172.Dock = System.Windows.Forms.DockStyle.Fill;
  1367. this.con2172.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1368. this.con2172.Location = new System.Drawing.Point(1045, 182);
  1369. this.con2172.Margin = new System.Windows.Forms.Padding(0);
  1370. this.con2172.Name = "con2172";
  1371. this.myTableLayoutPanel1.SetRowSpan(this.con2172, 2);
  1372. this.con2172.Size = new System.Drawing.Size(57, 28);
  1373. this.con2172.TabIndex = 776;
  1374. //
  1375. // con2173
  1376. //
  1377. this.myTableLayoutPanel1.SetColumnSpan(this.con2173, 3);
  1378. this.con2173.Dock = System.Windows.Forms.DockStyle.Fill;
  1379. this.con2173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1380. this.con2173.Location = new System.Drawing.Point(1121, 182);
  1381. this.con2173.Margin = new System.Windows.Forms.Padding(0);
  1382. this.con2173.Name = "con2173";
  1383. this.myTableLayoutPanel1.SetRowSpan(this.con2173, 2);
  1384. this.con2173.Size = new System.Drawing.Size(57, 28);
  1385. this.con2173.TabIndex = 775;
  1386. //
  1387. // con2174
  1388. //
  1389. this.myTableLayoutPanel1.SetColumnSpan(this.con2174, 3);
  1390. this.con2174.Dock = System.Windows.Forms.DockStyle.Fill;
  1391. this.con2174.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1392. this.con2174.Location = new System.Drawing.Point(1216, 182);
  1393. this.con2174.Margin = new System.Windows.Forms.Padding(0);
  1394. this.con2174.Name = "con2174";
  1395. this.myTableLayoutPanel1.SetRowSpan(this.con2174, 2);
  1396. this.con2174.Size = new System.Drawing.Size(57, 28);
  1397. this.con2174.TabIndex = 774;
  1398. //
  1399. // con2175
  1400. //
  1401. this.myTableLayoutPanel1.SetColumnSpan(this.con2175, 3);
  1402. this.con2175.Dock = System.Windows.Forms.DockStyle.Fill;
  1403. this.con2175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1404. this.con2175.Location = new System.Drawing.Point(1292, 182);
  1405. this.con2175.Margin = new System.Windows.Forms.Padding(0);
  1406. this.con2175.Name = "con2175";
  1407. this.myTableLayoutPanel1.SetRowSpan(this.con2175, 2);
  1408. this.con2175.Size = new System.Drawing.Size(57, 28);
  1409. this.con2175.TabIndex = 773;
  1410. //
  1411. // con2176
  1412. //
  1413. this.myTableLayoutPanel1.SetColumnSpan(this.con2176, 3);
  1414. this.con2176.Dock = System.Windows.Forms.DockStyle.Fill;
  1415. this.con2176.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1416. this.con2176.Location = new System.Drawing.Point(1387, 182);
  1417. this.con2176.Margin = new System.Windows.Forms.Padding(0);
  1418. this.con2176.Name = "con2176";
  1419. this.myTableLayoutPanel1.SetRowSpan(this.con2176, 2);
  1420. this.con2176.Size = new System.Drawing.Size(57, 28);
  1421. this.con2176.TabIndex = 772;
  1422. //
  1423. // con2177
  1424. //
  1425. this.myTableLayoutPanel1.SetColumnSpan(this.con2177, 3);
  1426. this.con2177.Dock = System.Windows.Forms.DockStyle.Fill;
  1427. this.con2177.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1428. this.con2177.Location = new System.Drawing.Point(1463, 182);
  1429. this.con2177.Margin = new System.Windows.Forms.Padding(0);
  1430. this.con2177.Name = "con2177";
  1431. this.myTableLayoutPanel1.SetRowSpan(this.con2177, 2);
  1432. this.con2177.Size = new System.Drawing.Size(57, 28);
  1433. this.con2177.TabIndex = 771;
  1434. //
  1435. // con2147
  1436. //
  1437. this.con2147.BackColor = System.Drawing.Color.Transparent;
  1438. this.myTableLayoutPanel1.SetColumnSpan(this.con2147, 3);
  1439. this.con2147.Dock = System.Windows.Forms.DockStyle.Fill;
  1440. this.con2147.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1441. this.con2147.Location = new System.Drawing.Point(1482, 14);
  1442. this.con2147.Margin = new System.Windows.Forms.Padding(0);
  1443. this.con2147.Name = "con2147";
  1444. this.myTableLayoutPanel1.SetRowSpan(this.con2147, 2);
  1445. this.con2147.Size = new System.Drawing.Size(57, 28);
  1446. this.con2147.TabIndex = 768;
  1447. //
  1448. // con2146
  1449. //
  1450. this.con2146.BackColor = System.Drawing.Color.Transparent;
  1451. this.myTableLayoutPanel1.SetColumnSpan(this.con2146, 3);
  1452. this.con2146.Dock = System.Windows.Forms.DockStyle.Fill;
  1453. this.con2146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1454. this.con2146.Location = new System.Drawing.Point(1539, 14);
  1455. this.con2146.Margin = new System.Windows.Forms.Padding(0);
  1456. this.con2146.Name = "con2146";
  1457. this.myTableLayoutPanel1.SetRowSpan(this.con2146, 2);
  1458. this.con2146.Size = new System.Drawing.Size(57, 28);
  1459. this.con2146.TabIndex = 769;
  1460. //
  1461. // con2148
  1462. //
  1463. this.con2148.BackColor = System.Drawing.Color.Transparent;
  1464. this.myTableLayoutPanel1.SetColumnSpan(this.con2148, 3);
  1465. this.con2148.Dock = System.Windows.Forms.DockStyle.Fill;
  1466. this.con2148.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1467. this.con2148.Location = new System.Drawing.Point(1425, 14);
  1468. this.con2148.Margin = new System.Windows.Forms.Padding(0);
  1469. this.con2148.Name = "con2148";
  1470. this.myTableLayoutPanel1.SetRowSpan(this.con2148, 2);
  1471. this.con2148.Size = new System.Drawing.Size(57, 28);
  1472. this.con2148.TabIndex = 770;
  1473. //
  1474. // con2144
  1475. //
  1476. this.con2144.BackColor = System.Drawing.Color.Transparent;
  1477. this.myTableLayoutPanel1.SetColumnSpan(this.con2144, 3);
  1478. this.con2144.Dock = System.Windows.Forms.DockStyle.Fill;
  1479. this.con2144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1480. this.con2144.Location = new System.Drawing.Point(1653, 14);
  1481. this.con2144.Margin = new System.Windows.Forms.Padding(0);
  1482. this.con2144.Name = "con2144";
  1483. this.myTableLayoutPanel1.SetRowSpan(this.con2144, 2);
  1484. this.con2144.Size = new System.Drawing.Size(57, 28);
  1485. this.con2144.TabIndex = 765;
  1486. //
  1487. // con2145
  1488. //
  1489. this.con2145.BackColor = System.Drawing.Color.Transparent;
  1490. this.myTableLayoutPanel1.SetColumnSpan(this.con2145, 3);
  1491. this.con2145.Dock = System.Windows.Forms.DockStyle.Fill;
  1492. this.con2145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1493. this.con2145.Location = new System.Drawing.Point(1596, 14);
  1494. this.con2145.Margin = new System.Windows.Forms.Padding(0);
  1495. this.con2145.Name = "con2145";
  1496. this.myTableLayoutPanel1.SetRowSpan(this.con2145, 2);
  1497. this.con2145.Size = new System.Drawing.Size(57, 28);
  1498. this.con2145.TabIndex = 766;
  1499. //
  1500. // con2150
  1501. //
  1502. this.con2150.BackColor = System.Drawing.Color.Transparent;
  1503. this.myTableLayoutPanel1.SetColumnSpan(this.con2150, 3);
  1504. this.con2150.Dock = System.Windows.Forms.DockStyle.Fill;
  1505. this.con2150.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1506. this.con2150.Location = new System.Drawing.Point(1368, 14);
  1507. this.con2150.Margin = new System.Windows.Forms.Padding(0);
  1508. this.con2150.Name = "con2150";
  1509. this.myTableLayoutPanel1.SetRowSpan(this.con2150, 2);
  1510. this.con2150.Size = new System.Drawing.Size(57, 28);
  1511. this.con2150.TabIndex = 767;
  1512. //
  1513. // con2161
  1514. //
  1515. this.con2161.BackColor = System.Drawing.Color.Transparent;
  1516. this.myTableLayoutPanel1.SetColumnSpan(this.con2161, 3);
  1517. this.con2161.Dock = System.Windows.Forms.DockStyle.Fill;
  1518. this.con2161.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1519. this.con2161.Location = new System.Drawing.Point(1311, 14);
  1520. this.con2161.Margin = new System.Windows.Forms.Padding(0);
  1521. this.con2161.Name = "con2161";
  1522. this.myTableLayoutPanel1.SetRowSpan(this.con2161, 2);
  1523. this.con2161.Size = new System.Drawing.Size(57, 28);
  1524. this.con2161.TabIndex = 764;
  1525. //
  1526. // con2384
  1527. //
  1528. this.myTableLayoutPanel1.SetColumnSpan(this.con2384, 3);
  1529. this.con2384.Dock = System.Windows.Forms.DockStyle.Fill;
  1530. this.con2384.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1531. this.con2384.Location = new System.Drawing.Point(1710, 14);
  1532. this.con2384.Margin = new System.Windows.Forms.Padding(0);
  1533. this.con2384.Name = "con2384";
  1534. this.myTableLayoutPanel1.SetRowSpan(this.con2384, 2);
  1535. this.con2384.Size = new System.Drawing.Size(57, 28);
  1536. this.con2384.TabIndex = 763;
  1537. //
  1538. // con2104
  1539. //
  1540. this.con2104.BackColor = System.Drawing.Color.Transparent;
  1541. this.myTableLayoutPanel1.SetColumnSpan(this.con2104, 3);
  1542. this.con2104.Dock = System.Windows.Forms.DockStyle.Fill;
  1543. this.con2104.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1544. this.con2104.Location = new System.Drawing.Point(1349, 742);
  1545. this.con2104.Margin = new System.Windows.Forms.Padding(0);
  1546. this.con2104.Name = "con2104";
  1547. this.myTableLayoutPanel1.SetRowSpan(this.con2104, 2);
  1548. this.con2104.Size = new System.Drawing.Size(57, 28);
  1549. this.con2104.TabIndex = 716;
  1550. //
  1551. // con2102
  1552. //
  1553. this.con2102.BackColor = System.Drawing.Color.Transparent;
  1554. this.myTableLayoutPanel1.SetColumnSpan(this.con2102, 3);
  1555. this.con2102.Dock = System.Windows.Forms.DockStyle.Fill;
  1556. this.con2102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1557. this.con2102.Location = new System.Drawing.Point(1235, 742);
  1558. this.con2102.Margin = new System.Windows.Forms.Padding(0);
  1559. this.con2102.Name = "con2102";
  1560. this.myTableLayoutPanel1.SetRowSpan(this.con2102, 2);
  1561. this.con2102.Size = new System.Drawing.Size(57, 28);
  1562. this.con2102.TabIndex = 715;
  1563. //
  1564. // con2101
  1565. //
  1566. this.con2101.BackColor = System.Drawing.Color.Transparent;
  1567. this.myTableLayoutPanel1.SetColumnSpan(this.con2101, 3);
  1568. this.con2101.Dock = System.Windows.Forms.DockStyle.Fill;
  1569. this.con2101.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1570. this.con2101.Location = new System.Drawing.Point(1178, 742);
  1571. this.con2101.Margin = new System.Windows.Forms.Padding(0);
  1572. this.con2101.Name = "con2101";
  1573. this.myTableLayoutPanel1.SetRowSpan(this.con2101, 2);
  1574. this.con2101.Size = new System.Drawing.Size(57, 28);
  1575. this.con2101.TabIndex = 714;
  1576. //
  1577. // con2103
  1578. //
  1579. this.con2103.BackColor = System.Drawing.Color.Transparent;
  1580. this.myTableLayoutPanel1.SetColumnSpan(this.con2103, 3);
  1581. this.con2103.Dock = System.Windows.Forms.DockStyle.Fill;
  1582. this.con2103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1583. this.con2103.Location = new System.Drawing.Point(1292, 742);
  1584. this.con2103.Margin = new System.Windows.Forms.Padding(0);
  1585. this.con2103.Name = "con2103";
  1586. this.myTableLayoutPanel1.SetRowSpan(this.con2103, 2);
  1587. this.con2103.Size = new System.Drawing.Size(57, 28);
  1588. this.con2103.TabIndex = 712;
  1589. //
  1590. // con2108
  1591. //
  1592. this.con2108.BackColor = System.Drawing.Color.Transparent;
  1593. this.myTableLayoutPanel1.SetColumnSpan(this.con2108, 3);
  1594. this.con2108.Dock = System.Windows.Forms.DockStyle.Fill;
  1595. this.con2108.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1596. this.con2108.Location = new System.Drawing.Point(1577, 742);
  1597. this.con2108.Margin = new System.Windows.Forms.Padding(0);
  1598. this.con2108.Name = "con2108";
  1599. this.myTableLayoutPanel1.SetRowSpan(this.con2108, 2);
  1600. this.con2108.Size = new System.Drawing.Size(57, 28);
  1601. this.con2108.TabIndex = 713;
  1602. //
  1603. // con2107
  1604. //
  1605. this.con2107.BackColor = System.Drawing.Color.Transparent;
  1606. this.myTableLayoutPanel1.SetColumnSpan(this.con2107, 3);
  1607. this.con2107.Dock = System.Windows.Forms.DockStyle.Fill;
  1608. this.con2107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1609. this.con2107.Location = new System.Drawing.Point(1520, 742);
  1610. this.con2107.Margin = new System.Windows.Forms.Padding(0);
  1611. this.con2107.Name = "con2107";
  1612. this.myTableLayoutPanel1.SetRowSpan(this.con2107, 2);
  1613. this.con2107.Size = new System.Drawing.Size(57, 28);
  1614. this.con2107.TabIndex = 710;
  1615. //
  1616. // con2106
  1617. //
  1618. this.con2106.BackColor = System.Drawing.Color.Transparent;
  1619. this.myTableLayoutPanel1.SetColumnSpan(this.con2106, 3);
  1620. this.con2106.Dock = System.Windows.Forms.DockStyle.Fill;
  1621. this.con2106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1622. this.con2106.Location = new System.Drawing.Point(1463, 742);
  1623. this.con2106.Margin = new System.Windows.Forms.Padding(0);
  1624. this.con2106.Name = "con2106";
  1625. this.myTableLayoutPanel1.SetRowSpan(this.con2106, 2);
  1626. this.con2106.Size = new System.Drawing.Size(57, 28);
  1627. this.con2106.TabIndex = 711;
  1628. //
  1629. // con2105
  1630. //
  1631. this.con2105.BackColor = System.Drawing.Color.Transparent;
  1632. this.myTableLayoutPanel1.SetColumnSpan(this.con2105, 3);
  1633. this.con2105.Dock = System.Windows.Forms.DockStyle.Fill;
  1634. this.con2105.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1635. this.con2105.Location = new System.Drawing.Point(1406, 742);
  1636. this.con2105.Margin = new System.Windows.Forms.Padding(0);
  1637. this.con2105.Name = "con2105";
  1638. this.myTableLayoutPanel1.SetRowSpan(this.con2105, 2);
  1639. this.con2105.Size = new System.Drawing.Size(57, 28);
  1640. this.con2105.TabIndex = 709;
  1641. //
  1642. // con2060
  1643. //
  1644. this.con2060.BackColor = System.Drawing.Color.Transparent;
  1645. this.myTableLayoutPanel1.SetColumnSpan(this.con2060, 4);
  1646. this.con2060.Dock = System.Windows.Forms.DockStyle.Fill;
  1647. this.con2060.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1648. this.con2060.Location = new System.Drawing.Point(1045, 770);
  1649. this.con2060.Margin = new System.Windows.Forms.Padding(0);
  1650. this.con2060.Name = "con2060";
  1651. this.myTableLayoutPanel1.SetRowSpan(this.con2060, 2);
  1652. this.con2060.Size = new System.Drawing.Size(76, 28);
  1653. this.con2060.TabIndex = 708;
  1654. //
  1655. // con2079
  1656. //
  1657. this.con2079.BackColor = System.Drawing.Color.Transparent;
  1658. this.myTableLayoutPanel1.SetColumnSpan(this.con2079, 4);
  1659. this.con2079.Dock = System.Windows.Forms.DockStyle.Fill;
  1660. this.con2079.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1661. this.con2079.Location = new System.Drawing.Point(361, 770);
  1662. this.con2079.Margin = new System.Windows.Forms.Padding(0);
  1663. this.con2079.Name = "con2079";
  1664. this.myTableLayoutPanel1.SetRowSpan(this.con2079, 2);
  1665. this.con2079.Size = new System.Drawing.Size(76, 28);
  1666. this.con2079.TabIndex = 705;
  1667. //
  1668. // con2075
  1669. //
  1670. this.con2075.BackColor = System.Drawing.Color.Transparent;
  1671. this.myTableLayoutPanel1.SetColumnSpan(this.con2075, 4);
  1672. this.con2075.Dock = System.Windows.Forms.DockStyle.Fill;
  1673. this.con2075.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1674. this.con2075.Location = new System.Drawing.Point(665, 770);
  1675. this.con2075.Margin = new System.Windows.Forms.Padding(0);
  1676. this.con2075.Name = "con2075";
  1677. this.myTableLayoutPanel1.SetRowSpan(this.con2075, 2);
  1678. this.con2075.Size = new System.Drawing.Size(76, 28);
  1679. this.con2075.TabIndex = 706;
  1680. //
  1681. // con2080
  1682. //
  1683. this.con2080.BackColor = System.Drawing.Color.Transparent;
  1684. this.myTableLayoutPanel1.SetColumnSpan(this.con2080, 4);
  1685. this.con2080.Dock = System.Windows.Forms.DockStyle.Fill;
  1686. this.con2080.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1687. this.con2080.Location = new System.Drawing.Point(209, 770);
  1688. this.con2080.Margin = new System.Windows.Forms.Padding(0);
  1689. this.con2080.Name = "con2080";
  1690. this.myTableLayoutPanel1.SetRowSpan(this.con2080, 2);
  1691. this.con2080.Size = new System.Drawing.Size(76, 28);
  1692. this.con2080.TabIndex = 707;
  1693. //
  1694. // con2074
  1695. //
  1696. this.con2074.BackColor = System.Drawing.Color.Transparent;
  1697. this.myTableLayoutPanel1.SetColumnSpan(this.con2074, 4);
  1698. this.con2074.Dock = System.Windows.Forms.DockStyle.Fill;
  1699. this.con2074.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1700. this.con2074.Location = new System.Drawing.Point(741, 770);
  1701. this.con2074.Margin = new System.Windows.Forms.Padding(0);
  1702. this.con2074.Name = "con2074";
  1703. this.myTableLayoutPanel1.SetRowSpan(this.con2074, 2);
  1704. this.con2074.Size = new System.Drawing.Size(76, 28);
  1705. this.con2074.TabIndex = 702;
  1706. //
  1707. // con2078
  1708. //
  1709. this.con2078.BackColor = System.Drawing.Color.Transparent;
  1710. this.myTableLayoutPanel1.SetColumnSpan(this.con2078, 4);
  1711. this.con2078.Dock = System.Windows.Forms.DockStyle.Fill;
  1712. this.con2078.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1713. this.con2078.Location = new System.Drawing.Point(437, 770);
  1714. this.con2078.Margin = new System.Windows.Forms.Padding(0);
  1715. this.con2078.Name = "con2078";
  1716. this.myTableLayoutPanel1.SetRowSpan(this.con2078, 2);
  1717. this.con2078.Size = new System.Drawing.Size(76, 28);
  1718. this.con2078.TabIndex = 703;
  1719. //
  1720. // con2077
  1721. //
  1722. this.con2077.BackColor = System.Drawing.Color.Transparent;
  1723. this.myTableLayoutPanel1.SetColumnSpan(this.con2077, 4);
  1724. this.con2077.Dock = System.Windows.Forms.DockStyle.Fill;
  1725. this.con2077.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1726. this.con2077.Location = new System.Drawing.Point(513, 770);
  1727. this.con2077.Margin = new System.Windows.Forms.Padding(0);
  1728. this.con2077.Name = "con2077";
  1729. this.myTableLayoutPanel1.SetRowSpan(this.con2077, 2);
  1730. this.con2077.Size = new System.Drawing.Size(76, 28);
  1731. this.con2077.TabIndex = 704;
  1732. //
  1733. // con2325
  1734. //
  1735. this.con2325.BackColor = System.Drawing.Color.Transparent;
  1736. this.myTableLayoutPanel1.SetColumnSpan(this.con2325, 4);
  1737. this.con2325.Dock = System.Windows.Forms.DockStyle.Fill;
  1738. this.con2325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1739. this.con2325.Location = new System.Drawing.Point(133, 770);
  1740. this.con2325.Margin = new System.Windows.Forms.Padding(0);
  1741. this.con2325.Name = "con2325";
  1742. this.myTableLayoutPanel1.SetRowSpan(this.con2325, 2);
  1743. this.con2325.Size = new System.Drawing.Size(76, 28);
  1744. this.con2325.TabIndex = 699;
  1745. //
  1746. // con2073
  1747. //
  1748. this.con2073.BackColor = System.Drawing.Color.Transparent;
  1749. this.myTableLayoutPanel1.SetColumnSpan(this.con2073, 4);
  1750. this.con2073.Dock = System.Windows.Forms.DockStyle.Fill;
  1751. this.con2073.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1752. this.con2073.Location = new System.Drawing.Point(817, 770);
  1753. this.con2073.Margin = new System.Windows.Forms.Padding(0);
  1754. this.con2073.Name = "con2073";
  1755. this.myTableLayoutPanel1.SetRowSpan(this.con2073, 2);
  1756. this.con2073.Size = new System.Drawing.Size(76, 28);
  1757. this.con2073.TabIndex = 700;
  1758. //
  1759. // con2071
  1760. //
  1761. this.con2071.BackColor = System.Drawing.Color.Transparent;
  1762. this.myTableLayoutPanel1.SetColumnSpan(this.con2071, 4);
  1763. this.con2071.Dock = System.Windows.Forms.DockStyle.Fill;
  1764. this.con2071.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1765. this.con2071.Location = new System.Drawing.Point(969, 770);
  1766. this.con2071.Margin = new System.Windows.Forms.Padding(0);
  1767. this.con2071.Name = "con2071";
  1768. this.myTableLayoutPanel1.SetRowSpan(this.con2071, 2);
  1769. this.con2071.Size = new System.Drawing.Size(76, 28);
  1770. this.con2071.TabIndex = 701;
  1771. //
  1772. // con2072
  1773. //
  1774. this.con2072.BackColor = System.Drawing.Color.Transparent;
  1775. this.myTableLayoutPanel1.SetColumnSpan(this.con2072, 4);
  1776. this.con2072.Dock = System.Windows.Forms.DockStyle.Fill;
  1777. this.con2072.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1778. this.con2072.Location = new System.Drawing.Point(893, 770);
  1779. this.con2072.Margin = new System.Windows.Forms.Padding(0);
  1780. this.con2072.Name = "con2072";
  1781. this.myTableLayoutPanel1.SetRowSpan(this.con2072, 2);
  1782. this.con2072.Size = new System.Drawing.Size(76, 28);
  1783. this.con2072.TabIndex = 696;
  1784. //
  1785. // con2076
  1786. //
  1787. this.con2076.BackColor = System.Drawing.Color.Transparent;
  1788. this.myTableLayoutPanel1.SetColumnSpan(this.con2076, 4);
  1789. this.con2076.Dock = System.Windows.Forms.DockStyle.Fill;
  1790. this.con2076.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1791. this.con2076.Location = new System.Drawing.Point(589, 770);
  1792. this.con2076.Margin = new System.Windows.Forms.Padding(0);
  1793. this.con2076.Name = "con2076";
  1794. this.myTableLayoutPanel1.SetRowSpan(this.con2076, 2);
  1795. this.con2076.Size = new System.Drawing.Size(76, 28);
  1796. this.con2076.TabIndex = 697;
  1797. //
  1798. // con2355
  1799. //
  1800. this.con2355.BackColor = System.Drawing.Color.Transparent;
  1801. this.myTableLayoutPanel1.SetColumnSpan(this.con2355, 4);
  1802. this.con2355.Dock = System.Windows.Forms.DockStyle.Fill;
  1803. this.con2355.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1804. this.con2355.Location = new System.Drawing.Point(285, 770);
  1805. this.con2355.Margin = new System.Windows.Forms.Padding(0);
  1806. this.con2355.Name = "con2355";
  1807. this.myTableLayoutPanel1.SetRowSpan(this.con2355, 2);
  1808. this.con2355.Size = new System.Drawing.Size(76, 28);
  1809. this.con2355.TabIndex = 698;
  1810. //
  1811. // con2037
  1812. //
  1813. this.con2037.BackColor = System.Drawing.Color.Transparent;
  1814. this.myTableLayoutPanel1.SetColumnSpan(this.con2037, 3);
  1815. this.con2037.Dock = System.Windows.Forms.DockStyle.Fill;
  1816. this.con2037.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1817. this.con2037.Location = new System.Drawing.Point(703, 714);
  1818. this.con2037.Margin = new System.Windows.Forms.Padding(0);
  1819. this.con2037.Name = "con2037";
  1820. this.myTableLayoutPanel1.SetRowSpan(this.con2037, 2);
  1821. this.con2037.Size = new System.Drawing.Size(57, 28);
  1822. this.con2037.TabIndex = 693;
  1823. //
  1824. // con2044
  1825. //
  1826. this.con2044.BackColor = System.Drawing.Color.Transparent;
  1827. this.myTableLayoutPanel1.SetColumnSpan(this.con2044, 3);
  1828. this.con2044.Dock = System.Windows.Forms.DockStyle.Fill;
  1829. this.con2044.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1830. this.con2044.Location = new System.Drawing.Point(817, 714);
  1831. this.con2044.Margin = new System.Windows.Forms.Padding(0);
  1832. this.con2044.Name = "con2044";
  1833. this.myTableLayoutPanel1.SetRowSpan(this.con2044, 2);
  1834. this.con2044.Size = new System.Drawing.Size(57, 28);
  1835. this.con2044.TabIndex = 694;
  1836. //
  1837. // con2046
  1838. //
  1839. this.con2046.BackColor = System.Drawing.Color.Transparent;
  1840. this.myTableLayoutPanel1.SetColumnSpan(this.con2046, 3);
  1841. this.con2046.Dock = System.Windows.Forms.DockStyle.Fill;
  1842. this.con2046.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1843. this.con2046.Location = new System.Drawing.Point(874, 714);
  1844. this.con2046.Margin = new System.Windows.Forms.Padding(0);
  1845. this.con2046.Name = "con2046";
  1846. this.myTableLayoutPanel1.SetRowSpan(this.con2046, 2);
  1847. this.con2046.Size = new System.Drawing.Size(57, 28);
  1848. this.con2046.TabIndex = 695;
  1849. //
  1850. // con2031
  1851. //
  1852. this.con2031.BackColor = System.Drawing.Color.Transparent;
  1853. this.myTableLayoutPanel1.SetColumnSpan(this.con2031, 3);
  1854. this.con2031.Dock = System.Windows.Forms.DockStyle.Fill;
  1855. this.con2031.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1856. this.con2031.Location = new System.Drawing.Point(589, 714);
  1857. this.con2031.Margin = new System.Windows.Forms.Padding(0);
  1858. this.con2031.Name = "con2031";
  1859. this.myTableLayoutPanel1.SetRowSpan(this.con2031, 2);
  1860. this.con2031.Size = new System.Drawing.Size(57, 28);
  1861. this.con2031.TabIndex = 690;
  1862. //
  1863. // con2029
  1864. //
  1865. this.con2029.BackColor = System.Drawing.Color.Transparent;
  1866. this.myTableLayoutPanel1.SetColumnSpan(this.con2029, 3);
  1867. this.con2029.Dock = System.Windows.Forms.DockStyle.Fill;
  1868. this.con2029.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1869. this.con2029.Location = new System.Drawing.Point(532, 714);
  1870. this.con2029.Margin = new System.Windows.Forms.Padding(0);
  1871. this.con2029.Name = "con2029";
  1872. this.myTableLayoutPanel1.SetRowSpan(this.con2029, 2);
  1873. this.con2029.Size = new System.Drawing.Size(57, 28);
  1874. this.con2029.TabIndex = 691;
  1875. //
  1876. // con2036
  1877. //
  1878. this.con2036.BackColor = System.Drawing.Color.Transparent;
  1879. this.myTableLayoutPanel1.SetColumnSpan(this.con2036, 3);
  1880. this.con2036.Dock = System.Windows.Forms.DockStyle.Fill;
  1881. this.con2036.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1882. this.con2036.Location = new System.Drawing.Point(646, 714);
  1883. this.con2036.Margin = new System.Windows.Forms.Padding(0);
  1884. this.con2036.Name = "con2036";
  1885. this.myTableLayoutPanel1.SetRowSpan(this.con2036, 2);
  1886. this.con2036.Size = new System.Drawing.Size(57, 28);
  1887. this.con2036.TabIndex = 692;
  1888. //
  1889. // con2017
  1890. //
  1891. this.con2017.BackColor = System.Drawing.Color.Transparent;
  1892. this.myTableLayoutPanel1.SetColumnSpan(this.con2017, 3);
  1893. this.con2017.Dock = System.Windows.Forms.DockStyle.Fill;
  1894. this.con2017.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1895. this.con2017.Location = new System.Drawing.Point(304, 714);
  1896. this.con2017.Margin = new System.Windows.Forms.Padding(0);
  1897. this.con2017.Name = "con2017";
  1898. this.myTableLayoutPanel1.SetRowSpan(this.con2017, 2);
  1899. this.con2017.Size = new System.Drawing.Size(57, 28);
  1900. this.con2017.TabIndex = 687;
  1901. //
  1902. // con2019
  1903. //
  1904. this.con2019.BackColor = System.Drawing.Color.Transparent;
  1905. this.myTableLayoutPanel1.SetColumnSpan(this.con2019, 3);
  1906. this.con2019.Dock = System.Windows.Forms.DockStyle.Fill;
  1907. this.con2019.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1908. this.con2019.Location = new System.Drawing.Point(418, 714);
  1909. this.con2019.Margin = new System.Windows.Forms.Padding(0);
  1910. this.con2019.Name = "con2019";
  1911. this.myTableLayoutPanel1.SetRowSpan(this.con2019, 2);
  1912. this.con2019.Size = new System.Drawing.Size(57, 28);
  1913. this.con2019.TabIndex = 688;
  1914. //
  1915. // con2024
  1916. //
  1917. this.con2024.BackColor = System.Drawing.Color.Transparent;
  1918. this.myTableLayoutPanel1.SetColumnSpan(this.con2024, 3);
  1919. this.con2024.Dock = System.Windows.Forms.DockStyle.Fill;
  1920. this.con2024.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1921. this.con2024.Location = new System.Drawing.Point(475, 714);
  1922. this.con2024.Margin = new System.Windows.Forms.Padding(0);
  1923. this.con2024.Name = "con2024";
  1924. this.myTableLayoutPanel1.SetRowSpan(this.con2024, 2);
  1925. this.con2024.Size = new System.Drawing.Size(57, 28);
  1926. this.con2024.TabIndex = 689;
  1927. //
  1928. // con2324
  1929. //
  1930. this.con2324.BackColor = System.Drawing.Color.Transparent;
  1931. this.myTableLayoutPanel1.SetColumnSpan(this.con2324, 3);
  1932. this.con2324.Dock = System.Windows.Forms.DockStyle.Fill;
  1933. this.con2324.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1934. this.con2324.Location = new System.Drawing.Point(133, 714);
  1935. this.con2324.Margin = new System.Windows.Forms.Padding(0);
  1936. this.con2324.Name = "con2324";
  1937. this.myTableLayoutPanel1.SetRowSpan(this.con2324, 2);
  1938. this.con2324.Size = new System.Drawing.Size(57, 28);
  1939. this.con2324.TabIndex = 684;
  1940. //
  1941. // con2353
  1942. //
  1943. this.con2353.BackColor = System.Drawing.Color.Transparent;
  1944. this.myTableLayoutPanel1.SetColumnSpan(this.con2353, 3);
  1945. this.con2353.Dock = System.Windows.Forms.DockStyle.Fill;
  1946. this.con2353.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1947. this.con2353.Location = new System.Drawing.Point(247, 714);
  1948. this.con2353.Margin = new System.Windows.Forms.Padding(0);
  1949. this.con2353.Name = "con2353";
  1950. this.myTableLayoutPanel1.SetRowSpan(this.con2353, 2);
  1951. this.con2353.Size = new System.Drawing.Size(57, 28);
  1952. this.con2353.TabIndex = 685;
  1953. //
  1954. // con2016
  1955. //
  1956. this.con2016.BackColor = System.Drawing.Color.Transparent;
  1957. this.myTableLayoutPanel1.SetColumnSpan(this.con2016, 3);
  1958. this.con2016.Dock = System.Windows.Forms.DockStyle.Fill;
  1959. this.con2016.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1960. this.con2016.Location = new System.Drawing.Point(190, 714);
  1961. this.con2016.Margin = new System.Windows.Forms.Padding(0);
  1962. this.con2016.Name = "con2016";
  1963. this.myTableLayoutPanel1.SetRowSpan(this.con2016, 2);
  1964. this.con2016.Size = new System.Drawing.Size(57, 28);
  1965. this.con2016.TabIndex = 686;
  1966. //
  1967. // locationPos37
  1968. //
  1969. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos37, 3);
  1970. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  1971. this.locationPos37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1972. this.locationPos37.Location = new System.Drawing.Point(380, 350);
  1973. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  1974. this.locationPos37.Name = "locationPos37";
  1975. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  1976. this.locationPos37.Size = new System.Drawing.Size(57, 280);
  1977. this.locationPos37.TabIndex = 678;
  1978. //
  1979. // con2084
  1980. //
  1981. this.myTableLayoutPanel1.SetColumnSpan(this.con2084, 3);
  1982. this.con2084.Dock = System.Windows.Forms.DockStyle.Fill;
  1983. this.con2084.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1984. this.con2084.Location = new System.Drawing.Point(57, 714);
  1985. this.con2084.Margin = new System.Windows.Forms.Padding(0);
  1986. this.con2084.Name = "con2084";
  1987. this.myTableLayoutPanel1.SetRowSpan(this.con2084, 2);
  1988. this.con2084.Size = new System.Drawing.Size(57, 28);
  1989. this.con2084.TabIndex = 664;
  1990. //
  1991. // con2086
  1992. //
  1993. this.myTableLayoutPanel1.SetColumnSpan(this.con2086, 3);
  1994. this.con2086.Dock = System.Windows.Forms.DockStyle.Fill;
  1995. this.con2086.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1996. this.con2086.Location = new System.Drawing.Point(57, 742);
  1997. this.con2086.Margin = new System.Windows.Forms.Padding(0);
  1998. this.con2086.Name = "con2086";
  1999. this.myTableLayoutPanel1.SetRowSpan(this.con2086, 2);
  2000. this.con2086.Size = new System.Drawing.Size(57, 28);
  2001. this.con2086.TabIndex = 665;
  2002. //
  2003. // con2081
  2004. //
  2005. this.con2081.BackColor = System.Drawing.Color.Transparent;
  2006. this.myTableLayoutPanel1.SetColumnSpan(this.con2081, 3);
  2007. this.con2081.Dock = System.Windows.Forms.DockStyle.Fill;
  2008. this.con2081.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2009. this.con2081.Location = new System.Drawing.Point(57, 630);
  2010. this.con2081.Margin = new System.Windows.Forms.Padding(0);
  2011. this.con2081.Name = "con2081";
  2012. this.myTableLayoutPanel1.SetRowSpan(this.con2081, 2);
  2013. this.con2081.Size = new System.Drawing.Size(57, 28);
  2014. this.con2081.TabIndex = 663;
  2015. //
  2016. // con2088
  2017. //
  2018. this.con2088.BackColor = System.Drawing.Color.Transparent;
  2019. this.myTableLayoutPanel1.SetColumnSpan(this.con2088, 3);
  2020. this.con2088.Dock = System.Windows.Forms.DockStyle.Fill;
  2021. this.con2088.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2022. this.con2088.Location = new System.Drawing.Point(0, 686);
  2023. this.con2088.Margin = new System.Windows.Forms.Padding(0);
  2024. this.con2088.Name = "con2088";
  2025. this.myTableLayoutPanel1.SetRowSpan(this.con2088, 2);
  2026. this.con2088.Size = new System.Drawing.Size(57, 28);
  2027. this.con2088.TabIndex = 662;
  2028. //
  2029. // label6
  2030. //
  2031. this.label6.AutoSize = true;
  2032. this.label6.BackColor = System.Drawing.Color.Lime;
  2033. this.myTableLayoutPanel1.SetColumnSpan(this.label6, 3);
  2034. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  2035. this.label6.Location = new System.Drawing.Point(61, 658);
  2036. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2037. this.label6.Name = "label6";
  2038. this.myTableLayoutPanel1.SetRowSpan(this.label6, 2);
  2039. this.label6.Size = new System.Drawing.Size(49, 28);
  2040. this.label6.TabIndex = 660;
  2041. this.label6.Text = "上";
  2042. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2043. //
  2044. // con2015
  2045. //
  2046. this.con2015.BackColor = System.Drawing.Color.Transparent;
  2047. this.myTableLayoutPanel1.SetColumnSpan(this.con2015, 3);
  2048. this.con2015.Dock = System.Windows.Forms.DockStyle.Fill;
  2049. this.con2015.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2050. this.con2015.Location = new System.Drawing.Point(57, 434);
  2051. this.con2015.Margin = new System.Windows.Forms.Padding(0);
  2052. this.con2015.Name = "con2015";
  2053. this.myTableLayoutPanel1.SetRowSpan(this.con2015, 2);
  2054. this.con2015.Size = new System.Drawing.Size(57, 28);
  2055. this.con2015.TabIndex = 658;
  2056. //
  2057. // con2012
  2058. //
  2059. this.con2012.BackColor = System.Drawing.Color.Transparent;
  2060. this.myTableLayoutPanel1.SetColumnSpan(this.con2012, 3);
  2061. this.con2012.Dock = System.Windows.Forms.DockStyle.Fill;
  2062. this.con2012.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2063. this.con2012.Location = new System.Drawing.Point(0, 490);
  2064. this.con2012.Margin = new System.Windows.Forms.Padding(0);
  2065. this.con2012.Name = "con2012";
  2066. this.myTableLayoutPanel1.SetRowSpan(this.con2012, 2);
  2067. this.con2012.Size = new System.Drawing.Size(57, 28);
  2068. this.con2012.TabIndex = 657;
  2069. //
  2070. // label12
  2071. //
  2072. this.label12.AutoSize = true;
  2073. this.label12.BackColor = System.Drawing.Color.Lime;
  2074. this.myTableLayoutPanel1.SetColumnSpan(this.label12, 3);
  2075. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  2076. this.label12.Location = new System.Drawing.Point(61, 462);
  2077. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2078. this.label12.Name = "label12";
  2079. this.myTableLayoutPanel1.SetRowSpan(this.label12, 2);
  2080. this.label12.Size = new System.Drawing.Size(49, 28);
  2081. this.label12.TabIndex = 655;
  2082. this.label12.Text = "上";
  2083. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2084. //
  2085. // con2008
  2086. //
  2087. this.con2008.BackColor = System.Drawing.Color.Transparent;
  2088. this.myTableLayoutPanel1.SetColumnSpan(this.con2008, 3);
  2089. this.con2008.Dock = System.Windows.Forms.DockStyle.Fill;
  2090. this.con2008.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2091. this.con2008.Location = new System.Drawing.Point(0, 364);
  2092. this.con2008.Margin = new System.Windows.Forms.Padding(0);
  2093. this.con2008.Name = "con2008";
  2094. this.myTableLayoutPanel1.SetRowSpan(this.con2008, 2);
  2095. this.con2008.Size = new System.Drawing.Size(57, 28);
  2096. this.con2008.TabIndex = 653;
  2097. //
  2098. // con2011
  2099. //
  2100. this.con2011.BackColor = System.Drawing.Color.Transparent;
  2101. this.myTableLayoutPanel1.SetColumnSpan(this.con2011, 3);
  2102. this.con2011.Dock = System.Windows.Forms.DockStyle.Fill;
  2103. this.con2011.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2104. this.con2011.Location = new System.Drawing.Point(57, 308);
  2105. this.con2011.Margin = new System.Windows.Forms.Padding(0);
  2106. this.con2011.Name = "con2011";
  2107. this.myTableLayoutPanel1.SetRowSpan(this.con2011, 2);
  2108. this.con2011.Size = new System.Drawing.Size(57, 28);
  2109. this.con2011.TabIndex = 652;
  2110. //
  2111. // label28
  2112. //
  2113. this.label28.AutoSize = true;
  2114. this.label28.BackColor = System.Drawing.Color.Lime;
  2115. this.myTableLayoutPanel1.SetColumnSpan(this.label28, 3);
  2116. this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
  2117. this.label28.Location = new System.Drawing.Point(61, 336);
  2118. this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2119. this.label28.Name = "label28";
  2120. this.myTableLayoutPanel1.SetRowSpan(this.label28, 2);
  2121. this.label28.Size = new System.Drawing.Size(49, 28);
  2122. this.label28.TabIndex = 650;
  2123. this.label28.Text = "上";
  2124. this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2125. //
  2126. // con2005
  2127. //
  2128. this.con2005.BackColor = System.Drawing.Color.Transparent;
  2129. this.myTableLayoutPanel1.SetColumnSpan(this.con2005, 3);
  2130. this.con2005.Dock = System.Windows.Forms.DockStyle.Fill;
  2131. this.con2005.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2132. this.con2005.Location = new System.Drawing.Point(285, 0);
  2133. this.con2005.Margin = new System.Windows.Forms.Padding(0);
  2134. this.con2005.Name = "con2005";
  2135. this.myTableLayoutPanel1.SetRowSpan(this.con2005, 2);
  2136. this.con2005.Size = new System.Drawing.Size(57, 28);
  2137. this.con2005.TabIndex = 634;
  2138. //
  2139. // con2302
  2140. //
  2141. this.con2302.BackColor = System.Drawing.Color.Transparent;
  2142. this.myTableLayoutPanel1.SetColumnSpan(this.con2302, 3);
  2143. this.con2302.Dock = System.Windows.Forms.DockStyle.Fill;
  2144. this.con2302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2145. this.con2302.Location = new System.Drawing.Point(342, 0);
  2146. this.con2302.Margin = new System.Windows.Forms.Padding(0);
  2147. this.con2302.Name = "con2302";
  2148. this.myTableLayoutPanel1.SetRowSpan(this.con2302, 2);
  2149. this.con2302.Size = new System.Drawing.Size(57, 28);
  2150. this.con2302.TabIndex = 635;
  2151. //
  2152. // con2004
  2153. //
  2154. this.con2004.BackColor = System.Drawing.Color.Transparent;
  2155. this.myTableLayoutPanel1.SetColumnSpan(this.con2004, 3);
  2156. this.con2004.Dock = System.Windows.Forms.DockStyle.Fill;
  2157. this.con2004.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2158. this.con2004.Location = new System.Drawing.Point(228, 0);
  2159. this.con2004.Margin = new System.Windows.Forms.Padding(0);
  2160. this.con2004.Name = "con2004";
  2161. this.myTableLayoutPanel1.SetRowSpan(this.con2004, 2);
  2162. this.con2004.Size = new System.Drawing.Size(57, 28);
  2163. this.con2004.TabIndex = 636;
  2164. //
  2165. // label33
  2166. //
  2167. this.label33.AutoSize = true;
  2168. this.label33.BackColor = System.Drawing.Color.Lime;
  2169. this.myTableLayoutPanel1.SetColumnSpan(this.label33, 3);
  2170. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  2171. this.label33.Location = new System.Drawing.Point(232, 28);
  2172. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2173. this.label33.Name = "label33";
  2174. this.myTableLayoutPanel1.SetRowSpan(this.label33, 2);
  2175. this.label33.Size = new System.Drawing.Size(49, 28);
  2176. this.label33.TabIndex = 633;
  2177. this.label33.Text = "上";
  2178. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2179. //
  2180. // tableCellLabel31
  2181. //
  2182. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  2183. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  2184. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2185. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  2186. this.tableCellLabel31.Location = new System.Drawing.Point(361, 350);
  2187. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  2188. this.tableCellLabel31.Name = "tableCellLabel31";
  2189. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 22);
  2190. this.tableCellLabel31.Size = new System.Drawing.Size(19, 308);
  2191. this.tableCellLabel31.TabIndex = 436;
  2192. //
  2193. // locationPos38
  2194. //
  2195. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos38, 3);
  2196. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  2197. this.locationPos38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2198. this.locationPos38.Location = new System.Drawing.Point(456, 350);
  2199. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  2200. this.locationPos38.Name = "locationPos38";
  2201. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  2202. this.locationPos38.Size = new System.Drawing.Size(57, 280);
  2203. this.locationPos38.TabIndex = 18;
  2204. //
  2205. // locationPos49
  2206. //
  2207. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos49, 3);
  2208. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  2209. this.locationPos49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2210. this.locationPos49.Location = new System.Drawing.Point(304, 350);
  2211. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  2212. this.locationPos49.Name = "locationPos49";
  2213. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  2214. this.locationPos49.Size = new System.Drawing.Size(57, 280);
  2215. this.locationPos49.TabIndex = 474;
  2216. //
  2217. // locationPos53
  2218. //
  2219. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos53, 3);
  2220. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  2221. this.locationPos53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2222. this.locationPos53.Location = new System.Drawing.Point(228, 350);
  2223. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  2224. this.locationPos53.Name = "locationPos53";
  2225. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  2226. this.locationPos53.Size = new System.Drawing.Size(57, 280);
  2227. this.locationPos53.TabIndex = 476;
  2228. //
  2229. // srm15
  2230. //
  2231. this.srm15.BackColor = System.Drawing.Color.Transparent;
  2232. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  2233. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2234. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  2235. this.srm15.Location = new System.Drawing.Point(209, 350);
  2236. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  2237. this.srm15.Name = "srm15";
  2238. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 22);
  2239. this.srm15.Size = new System.Drawing.Size(19, 308);
  2240. this.srm15.TabIndex = 478;
  2241. //
  2242. // locationPos55
  2243. //
  2244. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos55, 3);
  2245. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  2246. this.locationPos55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2247. this.locationPos55.Location = new System.Drawing.Point(152, 350);
  2248. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  2249. this.locationPos55.Name = "locationPos55";
  2250. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  2251. this.locationPos55.Size = new System.Drawing.Size(57, 280);
  2252. this.locationPos55.TabIndex = 479;
  2253. //
  2254. // tableCellLabel33
  2255. //
  2256. this.tableCellLabel33.BackColor = System.Drawing.Color.Transparent;
  2257. this.tableCellLabel33.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel33.BackgroundImage")));
  2258. this.tableCellLabel33.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2259. this.tableCellLabel33.Dock = System.Windows.Forms.DockStyle.Fill;
  2260. this.tableCellLabel33.Location = new System.Drawing.Point(114, 280);
  2261. this.tableCellLabel33.Margin = new System.Windows.Forms.Padding(0);
  2262. this.tableCellLabel33.Name = "tableCellLabel33";
  2263. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel33, 20);
  2264. this.tableCellLabel33.Size = new System.Drawing.Size(19, 280);
  2265. this.tableCellLabel33.TabIndex = 593;
  2266. //
  2267. // tableCellLabel34
  2268. //
  2269. this.tableCellLabel34.BackColor = System.Drawing.Color.Transparent;
  2270. this.tableCellLabel34.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel34.BackgroundImage")));
  2271. this.tableCellLabel34.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2272. this.tableCellLabel34.Dock = System.Windows.Forms.DockStyle.Fill;
  2273. this.tableCellLabel34.Location = new System.Drawing.Point(114, 588);
  2274. this.tableCellLabel34.Margin = new System.Windows.Forms.Padding(0);
  2275. this.tableCellLabel34.Name = "tableCellLabel34";
  2276. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel34, 15);
  2277. this.tableCellLabel34.Size = new System.Drawing.Size(19, 210);
  2278. this.tableCellLabel34.TabIndex = 594;
  2279. //
  2280. // conrgv5
  2281. //
  2282. this.conrgv5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  2283. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv5, 3);
  2284. this.conrgv5.Dock = System.Windows.Forms.DockStyle.Fill;
  2285. this.conrgv5.Location = new System.Drawing.Point(95, 560);
  2286. this.conrgv5.Margin = new System.Windows.Forms.Padding(0);
  2287. this.conrgv5.Name = "conrgv5";
  2288. this.myTableLayoutPanel1.SetRowSpan(this.conrgv5, 2);
  2289. this.conrgv5.Size = new System.Drawing.Size(57, 28);
  2290. this.conrgv5.TabIndex = 595;
  2291. //
  2292. // con2323
  2293. //
  2294. this.con2323.BackColor = System.Drawing.Color.Transparent;
  2295. this.myTableLayoutPanel1.SetColumnSpan(this.con2323, 5);
  2296. this.con2323.Dock = System.Windows.Forms.DockStyle.Fill;
  2297. this.con2323.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2298. this.con2323.Location = new System.Drawing.Point(133, 280);
  2299. this.con2323.Margin = new System.Windows.Forms.Padding(0);
  2300. this.con2323.Name = "con2323";
  2301. this.myTableLayoutPanel1.SetRowSpan(this.con2323, 2);
  2302. this.con2323.Size = new System.Drawing.Size(95, 28);
  2303. this.con2323.TabIndex = 647;
  2304. //
  2305. // con2322
  2306. //
  2307. this.con2322.BackColor = System.Drawing.Color.Transparent;
  2308. this.myTableLayoutPanel1.SetColumnSpan(this.con2322, 5);
  2309. this.con2322.Dock = System.Windows.Forms.DockStyle.Fill;
  2310. this.con2322.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2311. this.con2322.Location = new System.Drawing.Point(228, 280);
  2312. this.con2322.Margin = new System.Windows.Forms.Padding(0);
  2313. this.con2322.Name = "con2322";
  2314. this.myTableLayoutPanel1.SetRowSpan(this.con2322, 2);
  2315. this.con2322.Size = new System.Drawing.Size(95, 28);
  2316. this.con2322.TabIndex = 648;
  2317. //
  2318. // con2308
  2319. //
  2320. this.con2308.BackColor = System.Drawing.Color.Transparent;
  2321. this.myTableLayoutPanel1.SetColumnSpan(this.con2308, 3);
  2322. this.con2308.Dock = System.Windows.Forms.DockStyle.Fill;
  2323. this.con2308.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2324. this.con2308.Location = new System.Drawing.Point(171, 56);
  2325. this.con2308.Margin = new System.Windows.Forms.Padding(0);
  2326. this.con2308.Name = "con2308";
  2327. this.myTableLayoutPanel1.SetRowSpan(this.con2308, 2);
  2328. this.con2308.Size = new System.Drawing.Size(57, 28);
  2329. this.con2308.TabIndex = 630;
  2330. //
  2331. // con2304
  2332. //
  2333. this.con2304.BackColor = System.Drawing.Color.Transparent;
  2334. this.myTableLayoutPanel1.SetColumnSpan(this.con2304, 3);
  2335. this.con2304.Dock = System.Windows.Forms.DockStyle.Fill;
  2336. this.con2304.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2337. this.con2304.Location = new System.Drawing.Point(0, 56);
  2338. this.con2304.Margin = new System.Windows.Forms.Padding(0);
  2339. this.con2304.Name = "con2304";
  2340. this.myTableLayoutPanel1.SetRowSpan(this.con2304, 2);
  2341. this.con2304.Size = new System.Drawing.Size(57, 28);
  2342. this.con2304.TabIndex = 628;
  2343. //
  2344. // con2305
  2345. //
  2346. this.con2305.BackColor = System.Drawing.Color.Transparent;
  2347. this.myTableLayoutPanel1.SetColumnSpan(this.con2305, 3);
  2348. this.con2305.Dock = System.Windows.Forms.DockStyle.Fill;
  2349. this.con2305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2350. this.con2305.Location = new System.Drawing.Point(57, 56);
  2351. this.con2305.Margin = new System.Windows.Forms.Padding(0);
  2352. this.con2305.Name = "con2305";
  2353. this.myTableLayoutPanel1.SetRowSpan(this.con2305, 2);
  2354. this.con2305.Size = new System.Drawing.Size(57, 28);
  2355. this.con2305.TabIndex = 632;
  2356. //
  2357. // con2309
  2358. //
  2359. this.myTableLayoutPanel1.SetColumnSpan(this.con2309, 3);
  2360. this.con2309.Dock = System.Windows.Forms.DockStyle.Fill;
  2361. this.con2309.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2362. this.con2309.Location = new System.Drawing.Point(0, 84);
  2363. this.con2309.Margin = new System.Windows.Forms.Padding(0);
  2364. this.con2309.Name = "con2309";
  2365. this.myTableLayoutPanel1.SetRowSpan(this.con2309, 2);
  2366. this.con2309.Size = new System.Drawing.Size(57, 25);
  2367. this.con2309.TabIndex = 825;
  2368. //
  2369. // con2310
  2370. //
  2371. this.myTableLayoutPanel1.SetColumnSpan(this.con2310, 3);
  2372. this.con2310.Dock = System.Windows.Forms.DockStyle.Fill;
  2373. this.con2310.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2374. this.con2310.Location = new System.Drawing.Point(0, 109);
  2375. this.con2310.Margin = new System.Windows.Forms.Padding(0);
  2376. this.con2310.Name = "con2310";
  2377. this.myTableLayoutPanel1.SetRowSpan(this.con2310, 2);
  2378. this.con2310.Size = new System.Drawing.Size(57, 31);
  2379. this.con2310.TabIndex = 826;
  2380. //
  2381. // con2026
  2382. //
  2383. this.con2026.BackColor = System.Drawing.Color.Transparent;
  2384. this.myTableLayoutPanel1.SetColumnSpan(this.con2026, 5);
  2385. this.con2026.Dock = System.Windows.Forms.DockStyle.Fill;
  2386. this.con2026.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2387. this.con2026.Location = new System.Drawing.Point(247, 658);
  2388. this.con2026.Margin = new System.Windows.Forms.Padding(0);
  2389. this.con2026.Name = "con2026";
  2390. this.myTableLayoutPanel1.SetRowSpan(this.con2026, 2);
  2391. this.con2026.Size = new System.Drawing.Size(95, 28);
  2392. this.con2026.TabIndex = 830;
  2393. //
  2394. // tableCellLabel10
  2395. //
  2396. this.tableCellLabel10.BackColor = System.Drawing.Color.Transparent;
  2397. this.tableCellLabel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel10.BackgroundImage")));
  2398. this.tableCellLabel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2399. this.tableCellLabel10.Dock = System.Windows.Forms.DockStyle.Fill;
  2400. this.tableCellLabel10.Location = new System.Drawing.Point(285, 686);
  2401. this.tableCellLabel10.Margin = new System.Windows.Forms.Padding(0);
  2402. this.tableCellLabel10.Name = "tableCellLabel10";
  2403. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel10, 2);
  2404. this.tableCellLabel10.Size = new System.Drawing.Size(19, 28);
  2405. this.tableCellLabel10.TabIndex = 831;
  2406. //
  2407. // tableCellLabel11
  2408. //
  2409. this.tableCellLabel11.BackColor = System.Drawing.Color.Transparent;
  2410. this.tableCellLabel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel11.BackgroundImage")));
  2411. this.tableCellLabel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2412. this.tableCellLabel11.Dock = System.Windows.Forms.DockStyle.Fill;
  2413. this.tableCellLabel11.Location = new System.Drawing.Point(285, 630);
  2414. this.tableCellLabel11.Margin = new System.Windows.Forms.Padding(0);
  2415. this.tableCellLabel11.Name = "tableCellLabel11";
  2416. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel11, 2);
  2417. this.tableCellLabel11.Size = new System.Drawing.Size(19, 28);
  2418. this.tableCellLabel11.TabIndex = 832;
  2419. //
  2420. // con2280
  2421. //
  2422. this.con2280.BackColor = System.Drawing.Color.Transparent;
  2423. this.myTableLayoutPanel1.SetColumnSpan(this.con2280, 3);
  2424. this.con2280.Dock = System.Windows.Forms.DockStyle.Fill;
  2425. this.con2280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2426. this.con2280.Location = new System.Drawing.Point(228, 322);
  2427. this.con2280.Margin = new System.Windows.Forms.Padding(0);
  2428. this.con2280.Name = "con2280";
  2429. this.myTableLayoutPanel1.SetRowSpan(this.con2280, 2);
  2430. this.con2280.Size = new System.Drawing.Size(57, 28);
  2431. this.con2280.TabIndex = 857;
  2432. //
  2433. // tableCellLabel12
  2434. //
  2435. this.tableCellLabel12.BackColor = System.Drawing.Color.Transparent;
  2436. this.tableCellLabel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel12.BackgroundImage")));
  2437. this.tableCellLabel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2438. this.tableCellLabel12.Dock = System.Windows.Forms.DockStyle.Fill;
  2439. this.tableCellLabel12.Location = new System.Drawing.Point(437, 686);
  2440. this.tableCellLabel12.Margin = new System.Windows.Forms.Padding(0);
  2441. this.tableCellLabel12.Name = "tableCellLabel12";
  2442. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel12, 2);
  2443. this.tableCellLabel12.Size = new System.Drawing.Size(19, 28);
  2444. this.tableCellLabel12.TabIndex = 836;
  2445. //
  2446. // con2033
  2447. //
  2448. this.con2033.BackColor = System.Drawing.Color.Transparent;
  2449. this.myTableLayoutPanel1.SetColumnSpan(this.con2033, 5);
  2450. this.con2033.Dock = System.Windows.Forms.DockStyle.Fill;
  2451. this.con2033.Location = new System.Drawing.Point(399, 658);
  2452. this.con2033.Margin = new System.Windows.Forms.Padding(0);
  2453. this.con2033.Name = "con2033";
  2454. this.myTableLayoutPanel1.SetRowSpan(this.con2033, 2);
  2455. this.con2033.Size = new System.Drawing.Size(95, 28);
  2456. this.con2033.TabIndex = 835;
  2457. //
  2458. // tableCellLabel13
  2459. //
  2460. this.tableCellLabel13.BackColor = System.Drawing.Color.Transparent;
  2461. this.tableCellLabel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel13.BackgroundImage")));
  2462. this.tableCellLabel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2463. this.tableCellLabel13.Dock = System.Windows.Forms.DockStyle.Fill;
  2464. this.tableCellLabel13.Location = new System.Drawing.Point(437, 630);
  2465. this.tableCellLabel13.Margin = new System.Windows.Forms.Padding(0);
  2466. this.tableCellLabel13.Name = "tableCellLabel13";
  2467. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel13, 2);
  2468. this.tableCellLabel13.Size = new System.Drawing.Size(19, 28);
  2469. this.tableCellLabel13.TabIndex = 837;
  2470. //
  2471. // con2035
  2472. //
  2473. this.con2035.BackColor = System.Drawing.Color.Transparent;
  2474. this.myTableLayoutPanel1.SetColumnSpan(this.con2035, 3);
  2475. this.con2035.Dock = System.Windows.Forms.DockStyle.Fill;
  2476. this.con2035.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2477. this.con2035.Location = new System.Drawing.Point(456, 630);
  2478. this.con2035.Margin = new System.Windows.Forms.Padding(0);
  2479. this.con2035.Name = "con2035";
  2480. this.myTableLayoutPanel1.SetRowSpan(this.con2035, 2);
  2481. this.con2035.Size = new System.Drawing.Size(57, 28);
  2482. this.con2035.TabIndex = 838;
  2483. this.con2035.Load += new System.EventHandler(this.con2035_Load);
  2484. //
  2485. // con2278
  2486. //
  2487. this.con2278.BackColor = System.Drawing.Color.Transparent;
  2488. this.myTableLayoutPanel1.SetColumnSpan(this.con2278, 3);
  2489. this.con2278.Dock = System.Windows.Forms.DockStyle.Fill;
  2490. this.con2278.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2491. this.con2278.Location = new System.Drawing.Point(456, 322);
  2492. this.con2278.Margin = new System.Windows.Forms.Padding(0);
  2493. this.con2278.Name = "con2278";
  2494. this.myTableLayoutPanel1.SetRowSpan(this.con2278, 2);
  2495. this.con2278.Size = new System.Drawing.Size(57, 28);
  2496. this.con2278.TabIndex = 859;
  2497. //
  2498. // srm14
  2499. //
  2500. this.srm14.BackColor = System.Drawing.Color.Transparent;
  2501. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  2502. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2503. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  2504. this.srm14.Location = new System.Drawing.Point(513, 350);
  2505. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  2506. this.srm14.Name = "srm14";
  2507. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 22);
  2508. this.srm14.Size = new System.Drawing.Size(19, 308);
  2509. this.srm14.TabIndex = 475;
  2510. //
  2511. // locationPos48
  2512. //
  2513. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos48, 3);
  2514. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  2515. this.locationPos48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2516. this.locationPos48.Location = new System.Drawing.Point(532, 350);
  2517. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  2518. this.locationPos48.Name = "locationPos48";
  2519. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  2520. this.locationPos48.Size = new System.Drawing.Size(57, 280);
  2521. this.locationPos48.TabIndex = 473;
  2522. //
  2523. // locationPos36
  2524. //
  2525. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos36, 3);
  2526. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  2527. this.locationPos36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2528. this.locationPos36.Location = new System.Drawing.Point(589, 350);
  2529. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  2530. this.locationPos36.Name = "locationPos36";
  2531. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  2532. this.locationPos36.Size = new System.Drawing.Size(57, 280);
  2533. this.locationPos36.TabIndex = 679;
  2534. //
  2535. // con2042
  2536. //
  2537. this.con2042.BackColor = System.Drawing.Color.Transparent;
  2538. this.myTableLayoutPanel1.SetColumnSpan(this.con2042, 3);
  2539. this.con2042.Dock = System.Windows.Forms.DockStyle.Fill;
  2540. this.con2042.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2541. this.con2042.Location = new System.Drawing.Point(532, 630);
  2542. this.con2042.Margin = new System.Windows.Forms.Padding(0);
  2543. this.con2042.Name = "con2042";
  2544. this.myTableLayoutPanel1.SetRowSpan(this.con2042, 2);
  2545. this.con2042.Size = new System.Drawing.Size(57, 28);
  2546. this.con2042.TabIndex = 839;
  2547. //
  2548. // con2041
  2549. //
  2550. this.con2041.BackColor = System.Drawing.Color.Transparent;
  2551. this.myTableLayoutPanel1.SetColumnSpan(this.con2041, 3);
  2552. this.con2041.Dock = System.Windows.Forms.DockStyle.Fill;
  2553. this.con2041.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2554. this.con2041.Location = new System.Drawing.Point(589, 630);
  2555. this.con2041.Margin = new System.Windows.Forms.Padding(0);
  2556. this.con2041.Name = "con2041";
  2557. this.myTableLayoutPanel1.SetRowSpan(this.con2041, 2);
  2558. this.con2041.Size = new System.Drawing.Size(57, 28);
  2559. this.con2041.TabIndex = 841;
  2560. //
  2561. // tableCellLabel30
  2562. //
  2563. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  2564. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  2565. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2566. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  2567. this.tableCellLabel30.Location = new System.Drawing.Point(646, 350);
  2568. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  2569. this.tableCellLabel30.Name = "tableCellLabel30";
  2570. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 22);
  2571. this.tableCellLabel30.Size = new System.Drawing.Size(19, 308);
  2572. this.tableCellLabel30.TabIndex = 680;
  2573. //
  2574. // locationPos47
  2575. //
  2576. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos47, 3);
  2577. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  2578. this.locationPos47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2579. this.locationPos47.Location = new System.Drawing.Point(665, 350);
  2580. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  2581. this.locationPos47.Name = "locationPos47";
  2582. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  2583. this.locationPos47.Size = new System.Drawing.Size(57, 280);
  2584. this.locationPos47.TabIndex = 471;
  2585. //
  2586. // con2277
  2587. //
  2588. this.con2277.BackColor = System.Drawing.Color.Transparent;
  2589. this.myTableLayoutPanel1.SetColumnSpan(this.con2277, 3);
  2590. this.con2277.Dock = System.Windows.Forms.DockStyle.Fill;
  2591. this.con2277.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2592. this.con2277.Location = new System.Drawing.Point(665, 322);
  2593. this.con2277.Margin = new System.Windows.Forms.Padding(0);
  2594. this.con2277.Name = "con2277";
  2595. this.myTableLayoutPanel1.SetRowSpan(this.con2277, 2);
  2596. this.con2277.Size = new System.Drawing.Size(57, 28);
  2597. this.con2277.TabIndex = 860;
  2598. //
  2599. // con2049
  2600. //
  2601. this.con2049.BackColor = System.Drawing.Color.Transparent;
  2602. this.myTableLayoutPanel1.SetColumnSpan(this.con2049, 3);
  2603. this.con2049.Dock = System.Windows.Forms.DockStyle.Fill;
  2604. this.con2049.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2605. this.con2049.Location = new System.Drawing.Point(665, 630);
  2606. this.con2049.Margin = new System.Windows.Forms.Padding(0);
  2607. this.con2049.Name = "con2049";
  2608. this.myTableLayoutPanel1.SetRowSpan(this.con2049, 2);
  2609. this.con2049.Size = new System.Drawing.Size(57, 28);
  2610. this.con2049.TabIndex = 842;
  2611. //
  2612. // tableCellLabel16
  2613. //
  2614. this.tableCellLabel16.BackColor = System.Drawing.Color.Transparent;
  2615. this.tableCellLabel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel16.BackgroundImage")));
  2616. this.tableCellLabel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2617. this.tableCellLabel16.Dock = System.Windows.Forms.DockStyle.Fill;
  2618. this.tableCellLabel16.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2619. this.tableCellLabel16.Location = new System.Drawing.Point(722, 630);
  2620. this.tableCellLabel16.Margin = new System.Windows.Forms.Padding(0);
  2621. this.tableCellLabel16.Name = "tableCellLabel16";
  2622. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel16, 2);
  2623. this.tableCellLabel16.Size = new System.Drawing.Size(19, 28);
  2624. this.tableCellLabel16.TabIndex = 845;
  2625. //
  2626. // con2048
  2627. //
  2628. this.con2048.BackColor = System.Drawing.Color.Transparent;
  2629. this.myTableLayoutPanel1.SetColumnSpan(this.con2048, 5);
  2630. this.con2048.Dock = System.Windows.Forms.DockStyle.Fill;
  2631. this.con2048.Location = new System.Drawing.Point(684, 658);
  2632. this.con2048.Margin = new System.Windows.Forms.Padding(0);
  2633. this.con2048.Name = "con2048";
  2634. this.myTableLayoutPanel1.SetRowSpan(this.con2048, 2);
  2635. this.con2048.Size = new System.Drawing.Size(95, 28);
  2636. this.con2048.TabIndex = 843;
  2637. //
  2638. // tableCellLabel14
  2639. //
  2640. this.tableCellLabel14.BackColor = System.Drawing.Color.Transparent;
  2641. this.tableCellLabel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel14.BackgroundImage")));
  2642. this.tableCellLabel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2643. this.tableCellLabel14.Dock = System.Windows.Forms.DockStyle.Fill;
  2644. this.tableCellLabel14.Location = new System.Drawing.Point(722, 686);
  2645. this.tableCellLabel14.Margin = new System.Windows.Forms.Padding(0);
  2646. this.tableCellLabel14.Name = "tableCellLabel14";
  2647. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel14, 2);
  2648. this.tableCellLabel14.Size = new System.Drawing.Size(19, 28);
  2649. this.tableCellLabel14.TabIndex = 844;
  2650. //
  2651. // con2050
  2652. //
  2653. this.con2050.BackColor = System.Drawing.Color.Transparent;
  2654. this.myTableLayoutPanel1.SetColumnSpan(this.con2050, 3);
  2655. this.con2050.Dock = System.Windows.Forms.DockStyle.Fill;
  2656. this.con2050.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2657. this.con2050.Location = new System.Drawing.Point(741, 630);
  2658. this.con2050.Margin = new System.Windows.Forms.Padding(0);
  2659. this.con2050.Name = "con2050";
  2660. this.myTableLayoutPanel1.SetRowSpan(this.con2050, 2);
  2661. this.con2050.Size = new System.Drawing.Size(57, 28);
  2662. this.con2050.TabIndex = 846;
  2663. //
  2664. // locationPos45
  2665. //
  2666. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos45, 3);
  2667. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  2668. this.locationPos45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2669. this.locationPos45.Location = new System.Drawing.Point(741, 350);
  2670. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  2671. this.locationPos45.Name = "locationPos45";
  2672. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  2673. this.locationPos45.Size = new System.Drawing.Size(57, 280);
  2674. this.locationPos45.TabIndex = 468;
  2675. //
  2676. // con2281
  2677. //
  2678. this.con2281.BackColor = System.Drawing.Color.Transparent;
  2679. this.myTableLayoutPanel1.SetColumnSpan(this.con2281, 3);
  2680. this.con2281.Dock = System.Windows.Forms.DockStyle.Fill;
  2681. this.con2281.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2682. this.con2281.Location = new System.Drawing.Point(741, 322);
  2683. this.con2281.Margin = new System.Windows.Forms.Padding(0);
  2684. this.con2281.Name = "con2281";
  2685. this.myTableLayoutPanel1.SetRowSpan(this.con2281, 2);
  2686. this.con2281.Size = new System.Drawing.Size(57, 28);
  2687. this.con2281.TabIndex = 870;
  2688. //
  2689. // srm13
  2690. //
  2691. this.srm13.BackColor = System.Drawing.Color.Transparent;
  2692. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  2693. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2694. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  2695. this.srm13.Location = new System.Drawing.Point(798, 350);
  2696. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  2697. this.srm13.Name = "srm13";
  2698. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 22);
  2699. this.srm13.Size = new System.Drawing.Size(19, 308);
  2700. this.srm13.TabIndex = 472;
  2701. //
  2702. // locationPos46
  2703. //
  2704. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos46, 3);
  2705. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  2706. this.locationPos46.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2707. this.locationPos46.Location = new System.Drawing.Point(817, 350);
  2708. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  2709. this.locationPos46.Name = "locationPos46";
  2710. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  2711. this.locationPos46.Size = new System.Drawing.Size(57, 280);
  2712. this.locationPos46.TabIndex = 470;
  2713. //
  2714. // con2276
  2715. //
  2716. this.con2276.BackColor = System.Drawing.Color.Transparent;
  2717. this.myTableLayoutPanel1.SetColumnSpan(this.con2276, 3);
  2718. this.con2276.Dock = System.Windows.Forms.DockStyle.Fill;
  2719. this.con2276.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2720. this.con2276.Location = new System.Drawing.Point(817, 322);
  2721. this.con2276.Margin = new System.Windows.Forms.Padding(0);
  2722. this.con2276.Name = "con2276";
  2723. this.myTableLayoutPanel1.SetRowSpan(this.con2276, 2);
  2724. this.con2276.Size = new System.Drawing.Size(57, 28);
  2725. this.con2276.TabIndex = 861;
  2726. //
  2727. // con2056
  2728. //
  2729. this.con2056.BackColor = System.Drawing.Color.Transparent;
  2730. this.myTableLayoutPanel1.SetColumnSpan(this.con2056, 3);
  2731. this.con2056.Dock = System.Windows.Forms.DockStyle.Fill;
  2732. this.con2056.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2733. this.con2056.Location = new System.Drawing.Point(817, 630);
  2734. this.con2056.Margin = new System.Windows.Forms.Padding(0);
  2735. this.con2056.Name = "con2056";
  2736. this.myTableLayoutPanel1.SetRowSpan(this.con2056, 2);
  2737. this.con2056.Size = new System.Drawing.Size(57, 28);
  2738. this.con2056.TabIndex = 848;
  2739. //
  2740. // tableCellLabel17
  2741. //
  2742. this.tableCellLabel17.BackColor = System.Drawing.Color.Transparent;
  2743. this.tableCellLabel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel17.BackgroundImage")));
  2744. this.tableCellLabel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2745. this.tableCellLabel17.Dock = System.Windows.Forms.DockStyle.Fill;
  2746. this.tableCellLabel17.Location = new System.Drawing.Point(874, 630);
  2747. this.tableCellLabel17.Margin = new System.Windows.Forms.Padding(0);
  2748. this.tableCellLabel17.Name = "tableCellLabel17";
  2749. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel17, 2);
  2750. this.tableCellLabel17.Size = new System.Drawing.Size(19, 28);
  2751. this.tableCellLabel17.TabIndex = 850;
  2752. //
  2753. // con2055
  2754. //
  2755. this.con2055.BackColor = System.Drawing.Color.Transparent;
  2756. this.myTableLayoutPanel1.SetColumnSpan(this.con2055, 5);
  2757. this.con2055.Dock = System.Windows.Forms.DockStyle.Fill;
  2758. this.con2055.Location = new System.Drawing.Point(836, 658);
  2759. this.con2055.Margin = new System.Windows.Forms.Padding(0);
  2760. this.con2055.Name = "con2055";
  2761. this.myTableLayoutPanel1.SetRowSpan(this.con2055, 2);
  2762. this.con2055.Size = new System.Drawing.Size(95, 28);
  2763. this.con2055.TabIndex = 849;
  2764. //
  2765. // tableCellLabel18
  2766. //
  2767. this.tableCellLabel18.BackColor = System.Drawing.Color.Transparent;
  2768. this.tableCellLabel18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel18.BackgroundImage")));
  2769. this.tableCellLabel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2770. this.tableCellLabel18.Dock = System.Windows.Forms.DockStyle.Fill;
  2771. this.tableCellLabel18.Location = new System.Drawing.Point(874, 686);
  2772. this.tableCellLabel18.Margin = new System.Windows.Forms.Padding(0);
  2773. this.tableCellLabel18.Name = "tableCellLabel18";
  2774. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel18, 2);
  2775. this.tableCellLabel18.Size = new System.Drawing.Size(19, 28);
  2776. this.tableCellLabel18.TabIndex = 851;
  2777. //
  2778. // locationPos42
  2779. //
  2780. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos42, 3);
  2781. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  2782. this.locationPos42.Location = new System.Drawing.Point(893, 350);
  2783. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  2784. this.locationPos42.Name = "locationPos42";
  2785. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  2786. this.locationPos42.Size = new System.Drawing.Size(57, 280);
  2787. this.locationPos42.TabIndex = 464;
  2788. //
  2789. // con2057
  2790. //
  2791. this.con2057.BackColor = System.Drawing.Color.Transparent;
  2792. this.myTableLayoutPanel1.SetColumnSpan(this.con2057, 3);
  2793. this.con2057.Dock = System.Windows.Forms.DockStyle.Fill;
  2794. this.con2057.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2795. this.con2057.Location = new System.Drawing.Point(893, 630);
  2796. this.con2057.Margin = new System.Windows.Forms.Padding(0);
  2797. this.con2057.Name = "con2057";
  2798. this.myTableLayoutPanel1.SetRowSpan(this.con2057, 2);
  2799. this.con2057.Size = new System.Drawing.Size(57, 28);
  2800. this.con2057.TabIndex = 852;
  2801. //
  2802. // con2275
  2803. //
  2804. this.con2275.BackColor = System.Drawing.Color.Transparent;
  2805. this.myTableLayoutPanel1.SetColumnSpan(this.con2275, 3);
  2806. this.con2275.Dock = System.Windows.Forms.DockStyle.Fill;
  2807. this.con2275.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2808. this.con2275.Location = new System.Drawing.Point(893, 322);
  2809. this.con2275.Margin = new System.Windows.Forms.Padding(0);
  2810. this.con2275.Name = "con2275";
  2811. this.myTableLayoutPanel1.SetRowSpan(this.con2275, 2);
  2812. this.con2275.Size = new System.Drawing.Size(57, 28);
  2813. this.con2275.TabIndex = 862;
  2814. //
  2815. // tableCellLabel29
  2816. //
  2817. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  2818. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  2819. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2820. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  2821. this.tableCellLabel29.Location = new System.Drawing.Point(950, 350);
  2822. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  2823. this.tableCellLabel29.Name = "tableCellLabel29";
  2824. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 22);
  2825. this.tableCellLabel29.Size = new System.Drawing.Size(19, 308);
  2826. this.tableCellLabel29.TabIndex = 681;
  2827. //
  2828. // locationPos54
  2829. //
  2830. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos54, 3);
  2831. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  2832. this.locationPos54.Location = new System.Drawing.Point(969, 350);
  2833. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  2834. this.locationPos54.Name = "locationPos54";
  2835. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  2836. this.locationPos54.Size = new System.Drawing.Size(57, 280);
  2837. this.locationPos54.TabIndex = 477;
  2838. //
  2839. // con2062
  2840. //
  2841. this.con2062.BackColor = System.Drawing.Color.Transparent;
  2842. this.myTableLayoutPanel1.SetColumnSpan(this.con2062, 3);
  2843. this.con2062.Dock = System.Windows.Forms.DockStyle.Fill;
  2844. this.con2062.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2845. this.con2062.Location = new System.Drawing.Point(969, 630);
  2846. this.con2062.Margin = new System.Windows.Forms.Padding(0);
  2847. this.con2062.Name = "con2062";
  2848. this.myTableLayoutPanel1.SetRowSpan(this.con2062, 2);
  2849. this.con2062.Size = new System.Drawing.Size(57, 28);
  2850. this.con2062.TabIndex = 855;
  2851. //
  2852. // tableCellLabel24
  2853. //
  2854. this.tableCellLabel24.BackColor = System.Drawing.Color.Transparent;
  2855. this.tableCellLabel24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel24.BackgroundImage")));
  2856. this.tableCellLabel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2857. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel24, 11);
  2858. this.tableCellLabel24.Dock = System.Windows.Forms.DockStyle.Fill;
  2859. this.tableCellLabel24.Location = new System.Drawing.Point(1045, 294);
  2860. this.tableCellLabel24.Margin = new System.Windows.Forms.Padding(0);
  2861. this.tableCellLabel24.Name = "tableCellLabel24";
  2862. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel24, 2);
  2863. this.tableCellLabel24.Size = new System.Drawing.Size(209, 28);
  2864. this.tableCellLabel24.TabIndex = 814;
  2865. //
  2866. // con2260
  2867. //
  2868. this.myTableLayoutPanel1.SetColumnSpan(this.con2260, 3);
  2869. this.con2260.Dock = System.Windows.Forms.DockStyle.Fill;
  2870. this.con2260.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2871. this.con2260.Location = new System.Drawing.Point(1121, 238);
  2872. this.con2260.Margin = new System.Windows.Forms.Padding(0);
  2873. this.con2260.Name = "con2260";
  2874. this.myTableLayoutPanel1.SetRowSpan(this.con2260, 2);
  2875. this.con2260.Size = new System.Drawing.Size(57, 28);
  2876. this.con2260.TabIndex = 822;
  2877. //
  2878. // con2259
  2879. //
  2880. this.myTableLayoutPanel1.SetColumnSpan(this.con2259, 3);
  2881. this.con2259.Dock = System.Windows.Forms.DockStyle.Fill;
  2882. this.con2259.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2883. this.con2259.Location = new System.Drawing.Point(1121, 266);
  2884. this.con2259.Margin = new System.Windows.Forms.Padding(0);
  2885. this.con2259.Name = "con2259";
  2886. this.myTableLayoutPanel1.SetRowSpan(this.con2259, 2);
  2887. this.con2259.Size = new System.Drawing.Size(57, 28);
  2888. this.con2259.TabIndex = 821;
  2889. //
  2890. // tableCellLabel23
  2891. //
  2892. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  2893. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  2894. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2895. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 11);
  2896. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  2897. this.tableCellLabel23.Location = new System.Drawing.Point(1311, 294);
  2898. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(0);
  2899. this.tableCellLabel23.Name = "tableCellLabel23";
  2900. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel23, 2);
  2901. this.tableCellLabel23.Size = new System.Drawing.Size(209, 28);
  2902. this.tableCellLabel23.TabIndex = 815;
  2903. this.tableCellLabel23.Load += new System.EventHandler(this.tableCellLabel23_Load);
  2904. //
  2905. // con2262
  2906. //
  2907. this.myTableLayoutPanel1.SetColumnSpan(this.con2262, 3);
  2908. this.con2262.Dock = System.Windows.Forms.DockStyle.Fill;
  2909. this.con2262.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2910. this.con2262.Location = new System.Drawing.Point(1216, 238);
  2911. this.con2262.Margin = new System.Windows.Forms.Padding(0);
  2912. this.con2262.Name = "con2262";
  2913. this.myTableLayoutPanel1.SetRowSpan(this.con2262, 2);
  2914. this.con2262.Size = new System.Drawing.Size(57, 28);
  2915. this.con2262.TabIndex = 823;
  2916. //
  2917. // con2261
  2918. //
  2919. this.myTableLayoutPanel1.SetColumnSpan(this.con2261, 3);
  2920. this.con2261.Dock = System.Windows.Forms.DockStyle.Fill;
  2921. this.con2261.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2922. this.con2261.Location = new System.Drawing.Point(1216, 266);
  2923. this.con2261.Margin = new System.Windows.Forms.Padding(0);
  2924. this.con2261.Name = "con2261";
  2925. this.myTableLayoutPanel1.SetRowSpan(this.con2261, 2);
  2926. this.con2261.Size = new System.Drawing.Size(57, 28);
  2927. this.con2261.TabIndex = 824;
  2928. //
  2929. // con2264
  2930. //
  2931. this.myTableLayoutPanel1.SetColumnSpan(this.con2264, 3);
  2932. this.con2264.Dock = System.Windows.Forms.DockStyle.Fill;
  2933. this.con2264.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2934. this.con2264.Location = new System.Drawing.Point(1387, 238);
  2935. this.con2264.Margin = new System.Windows.Forms.Padding(0);
  2936. this.con2264.Name = "con2264";
  2937. this.myTableLayoutPanel1.SetRowSpan(this.con2264, 2);
  2938. this.con2264.Size = new System.Drawing.Size(57, 28);
  2939. this.con2264.TabIndex = 818;
  2940. //
  2941. // con2263
  2942. //
  2943. this.myTableLayoutPanel1.SetColumnSpan(this.con2263, 3);
  2944. this.con2263.Dock = System.Windows.Forms.DockStyle.Fill;
  2945. this.con2263.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2946. this.con2263.Location = new System.Drawing.Point(1387, 266);
  2947. this.con2263.Margin = new System.Windows.Forms.Padding(0);
  2948. this.con2263.Name = "con2263";
  2949. this.myTableLayoutPanel1.SetRowSpan(this.con2263, 2);
  2950. this.con2263.Size = new System.Drawing.Size(57, 28);
  2951. this.con2263.TabIndex = 819;
  2952. //
  2953. // conveyor3_A17
  2954. //
  2955. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A17, 3);
  2956. this.conveyor3_A17.Dock = System.Windows.Forms.DockStyle.Fill;
  2957. this.conveyor3_A17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2958. this.conveyor3_A17.Location = new System.Drawing.Point(1539, 266);
  2959. this.conveyor3_A17.Margin = new System.Windows.Forms.Padding(0);
  2960. this.conveyor3_A17.Name = "conveyor3_A17";
  2961. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A17, 2);
  2962. this.conveyor3_A17.Size = new System.Drawing.Size(57, 28);
  2963. this.conveyor3_A17.TabIndex = 820;
  2964. this.conveyor3_A17.Visible = false;
  2965. //
  2966. // conrgv1
  2967. //
  2968. this.conrgv1.BackColor = System.Drawing.Color.Transparent;
  2969. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv1, 3);
  2970. this.conrgv1.Dock = System.Windows.Forms.DockStyle.Fill;
  2971. this.conrgv1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2972. this.conrgv1.Location = new System.Drawing.Point(1254, 294);
  2973. this.conrgv1.Margin = new System.Windows.Forms.Padding(0);
  2974. this.conrgv1.Name = "conrgv1";
  2975. this.myTableLayoutPanel1.SetRowSpan(this.conrgv1, 2);
  2976. this.conrgv1.Size = new System.Drawing.Size(57, 28);
  2977. this.conrgv1.TabIndex = 816;
  2978. //
  2979. // locationPos44
  2980. //
  2981. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos44, 3);
  2982. this.locationPos44.Dock = System.Windows.Forms.DockStyle.Fill;
  2983. this.locationPos44.Location = new System.Drawing.Point(1045, 350);
  2984. this.locationPos44.Margin = new System.Windows.Forms.Padding(0);
  2985. this.locationPos44.Name = "locationPos44";
  2986. this.myTableLayoutPanel1.SetRowSpan(this.locationPos44, 16);
  2987. this.locationPos44.Size = new System.Drawing.Size(57, 224);
  2988. this.locationPos44.TabIndex = 467;
  2989. //
  2990. // locationPos43
  2991. //
  2992. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos43, 3);
  2993. this.locationPos43.Dock = System.Windows.Forms.DockStyle.Fill;
  2994. this.locationPos43.Location = new System.Drawing.Point(1121, 350);
  2995. this.locationPos43.Margin = new System.Windows.Forms.Padding(0);
  2996. this.locationPos43.Name = "locationPos43";
  2997. this.myTableLayoutPanel1.SetRowSpan(this.locationPos43, 16);
  2998. this.locationPos43.Size = new System.Drawing.Size(57, 224);
  2999. this.locationPos43.TabIndex = 465;
  3000. //
  3001. // srm12
  3002. //
  3003. this.srm12.BackColor = System.Drawing.Color.Transparent;
  3004. this.srm12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm12.BackgroundImage")));
  3005. this.srm12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3006. this.srm12.Dock = System.Windows.Forms.DockStyle.Fill;
  3007. this.srm12.Location = new System.Drawing.Point(1102, 350);
  3008. this.srm12.Margin = new System.Windows.Forms.Padding(0);
  3009. this.srm12.Name = "srm12";
  3010. this.myTableLayoutPanel1.SetRowSpan(this.srm12, 18);
  3011. this.srm12.Size = new System.Drawing.Size(19, 252);
  3012. this.srm12.TabIndex = 466;
  3013. //
  3014. // con2153
  3015. //
  3016. this.myTableLayoutPanel1.SetColumnSpan(this.con2153, 3);
  3017. this.con2153.Dock = System.Windows.Forms.DockStyle.Fill;
  3018. this.con2153.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3019. this.con2153.Location = new System.Drawing.Point(1463, 98);
  3020. this.con2153.Margin = new System.Windows.Forms.Padding(0);
  3021. this.con2153.Name = "con2153";
  3022. this.myTableLayoutPanel1.SetRowSpan(this.con2153, 2);
  3023. this.con2153.Size = new System.Drawing.Size(57, 28);
  3024. this.con2153.TabIndex = 796;
  3025. //
  3026. // con2181
  3027. //
  3028. this.myTableLayoutPanel1.SetColumnSpan(this.con2181, 3);
  3029. this.con2181.Dock = System.Windows.Forms.DockStyle.Fill;
  3030. this.con2181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3031. this.con2181.Location = new System.Drawing.Point(1045, 126);
  3032. this.con2181.Margin = new System.Windows.Forms.Padding(0);
  3033. this.con2181.Name = "con2181";
  3034. this.myTableLayoutPanel1.SetRowSpan(this.con2181, 2);
  3035. this.con2181.Size = new System.Drawing.Size(57, 28);
  3036. this.con2181.TabIndex = 787;
  3037. //
  3038. // con2180
  3039. //
  3040. this.myTableLayoutPanel1.SetColumnSpan(this.con2180, 3);
  3041. this.con2180.Dock = System.Windows.Forms.DockStyle.Fill;
  3042. this.con2180.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3043. this.con2180.Location = new System.Drawing.Point(1102, 126);
  3044. this.con2180.Margin = new System.Windows.Forms.Padding(0);
  3045. this.con2180.Name = "con2180";
  3046. this.myTableLayoutPanel1.SetRowSpan(this.con2180, 2);
  3047. this.con2180.Size = new System.Drawing.Size(57, 28);
  3048. this.con2180.TabIndex = 786;
  3049. //
  3050. // con2207
  3051. //
  3052. this.myTableLayoutPanel1.SetColumnSpan(this.con2207, 3);
  3053. this.con2207.Dock = System.Windows.Forms.DockStyle.Fill;
  3054. this.con2207.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3055. this.con2207.Location = new System.Drawing.Point(1178, 126);
  3056. this.con2207.Margin = new System.Windows.Forms.Padding(0);
  3057. this.con2207.Name = "con2207";
  3058. this.myTableLayoutPanel1.SetRowSpan(this.con2207, 2);
  3059. this.con2207.Size = new System.Drawing.Size(57, 28);
  3060. this.con2207.TabIndex = 795;
  3061. //
  3062. // con2208
  3063. //
  3064. this.myTableLayoutPanel1.SetColumnSpan(this.con2208, 3);
  3065. this.con2208.Dock = System.Windows.Forms.DockStyle.Fill;
  3066. this.con2208.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3067. this.con2208.Location = new System.Drawing.Point(1235, 126);
  3068. this.con2208.Margin = new System.Windows.Forms.Padding(0);
  3069. this.con2208.Name = "con2208";
  3070. this.myTableLayoutPanel1.SetRowSpan(this.con2208, 2);
  3071. this.con2208.Size = new System.Drawing.Size(57, 28);
  3072. this.con2208.TabIndex = 794;
  3073. //
  3074. // con2209
  3075. //
  3076. this.myTableLayoutPanel1.SetColumnSpan(this.con2209, 3);
  3077. this.con2209.Dock = System.Windows.Forms.DockStyle.Fill;
  3078. this.con2209.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3079. this.con2209.Location = new System.Drawing.Point(1292, 126);
  3080. this.con2209.Margin = new System.Windows.Forms.Padding(0);
  3081. this.con2209.Name = "con2209";
  3082. this.myTableLayoutPanel1.SetRowSpan(this.con2209, 2);
  3083. this.con2209.Size = new System.Drawing.Size(57, 28);
  3084. this.con2209.TabIndex = 793;
  3085. //
  3086. // con2210
  3087. //
  3088. this.myTableLayoutPanel1.SetColumnSpan(this.con2210, 3);
  3089. this.con2210.Dock = System.Windows.Forms.DockStyle.Fill;
  3090. this.con2210.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3091. this.con2210.Location = new System.Drawing.Point(1349, 126);
  3092. this.con2210.Margin = new System.Windows.Forms.Padding(0);
  3093. this.con2210.Name = "con2210";
  3094. this.myTableLayoutPanel1.SetRowSpan(this.con2210, 2);
  3095. this.con2210.Size = new System.Drawing.Size(57, 28);
  3096. this.con2210.TabIndex = 782;
  3097. //
  3098. // con2211
  3099. //
  3100. this.myTableLayoutPanel1.SetColumnSpan(this.con2211, 3);
  3101. this.con2211.Dock = System.Windows.Forms.DockStyle.Fill;
  3102. this.con2211.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3103. this.con2211.Location = new System.Drawing.Point(1406, 126);
  3104. this.con2211.Margin = new System.Windows.Forms.Padding(0);
  3105. this.con2211.Name = "con2211";
  3106. this.myTableLayoutPanel1.SetRowSpan(this.con2211, 2);
  3107. this.con2211.Size = new System.Drawing.Size(57, 28);
  3108. this.con2211.TabIndex = 784;
  3109. //
  3110. // con2192
  3111. //
  3112. this.myTableLayoutPanel1.SetColumnSpan(this.con2192, 3);
  3113. this.con2192.Dock = System.Windows.Forms.DockStyle.Fill;
  3114. this.con2192.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3115. this.con2192.Location = new System.Drawing.Point(931, 98);
  3116. this.con2192.Margin = new System.Windows.Forms.Padding(0);
  3117. this.con2192.Name = "con2192";
  3118. this.myTableLayoutPanel1.SetRowSpan(this.con2192, 2);
  3119. this.con2192.Size = new System.Drawing.Size(57, 28);
  3120. this.con2192.TabIndex = 803;
  3121. //
  3122. // con2195
  3123. //
  3124. this.myTableLayoutPanel1.SetColumnSpan(this.con2195, 3);
  3125. this.con2195.Dock = System.Windows.Forms.DockStyle.Fill;
  3126. this.con2195.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3127. this.con2195.Location = new System.Drawing.Point(874, 98);
  3128. this.con2195.Margin = new System.Windows.Forms.Padding(0);
  3129. this.con2195.Name = "con2195";
  3130. this.myTableLayoutPanel1.SetRowSpan(this.con2195, 2);
  3131. this.con2195.Size = new System.Drawing.Size(57, 28);
  3132. this.con2195.TabIndex = 802;
  3133. //
  3134. // con2198
  3135. //
  3136. this.myTableLayoutPanel1.SetColumnSpan(this.con2198, 3);
  3137. this.con2198.Dock = System.Windows.Forms.DockStyle.Fill;
  3138. this.con2198.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3139. this.con2198.Location = new System.Drawing.Point(817, 98);
  3140. this.con2198.Margin = new System.Windows.Forms.Padding(0);
  3141. this.con2198.Name = "con2198";
  3142. this.myTableLayoutPanel1.SetRowSpan(this.con2198, 2);
  3143. this.con2198.Size = new System.Drawing.Size(57, 28);
  3144. this.con2198.TabIndex = 804;
  3145. //
  3146. // con2201
  3147. //
  3148. this.myTableLayoutPanel1.SetColumnSpan(this.con2201, 3);
  3149. this.con2201.Dock = System.Windows.Forms.DockStyle.Fill;
  3150. this.con2201.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3151. this.con2201.Location = new System.Drawing.Point(760, 98);
  3152. this.con2201.Margin = new System.Windows.Forms.Padding(0);
  3153. this.con2201.Name = "con2201";
  3154. this.myTableLayoutPanel1.SetRowSpan(this.con2201, 2);
  3155. this.con2201.Size = new System.Drawing.Size(57, 28);
  3156. this.con2201.TabIndex = 801;
  3157. //
  3158. // con2265
  3159. //
  3160. this.myTableLayoutPanel1.SetColumnSpan(this.con2265, 3);
  3161. this.con2265.Dock = System.Windows.Forms.DockStyle.Fill;
  3162. this.con2265.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3163. this.con2265.Location = new System.Drawing.Point(1463, 238);
  3164. this.con2265.Margin = new System.Windows.Forms.Padding(0);
  3165. this.con2265.Name = "con2265";
  3166. this.myTableLayoutPanel1.SetRowSpan(this.con2265, 4);
  3167. this.con2265.Size = new System.Drawing.Size(57, 56);
  3168. this.con2265.TabIndex = 817;
  3169. //
  3170. // con2382
  3171. //
  3172. this.myTableLayoutPanel1.SetColumnSpan(this.con2382, 3);
  3173. this.con2382.Dock = System.Windows.Forms.DockStyle.Fill;
  3174. this.con2382.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3175. this.con2382.Location = new System.Drawing.Point(1710, 42);
  3176. this.con2382.Margin = new System.Windows.Forms.Padding(0);
  3177. this.con2382.Name = "con2382";
  3178. this.myTableLayoutPanel1.SetRowSpan(this.con2382, 2);
  3179. this.con2382.Size = new System.Drawing.Size(57, 28);
  3180. this.con2382.TabIndex = 732;
  3181. //
  3182. // con2381
  3183. //
  3184. this.myTableLayoutPanel1.SetColumnSpan(this.con2381, 3);
  3185. this.con2381.Dock = System.Windows.Forms.DockStyle.Fill;
  3186. this.con2381.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3187. this.con2381.Location = new System.Drawing.Point(1710, 70);
  3188. this.con2381.Margin = new System.Windows.Forms.Padding(0);
  3189. this.con2381.Name = "con2381";
  3190. this.myTableLayoutPanel1.SetRowSpan(this.con2381, 2);
  3191. this.con2381.Size = new System.Drawing.Size(57, 28);
  3192. this.con2381.TabIndex = 760;
  3193. //
  3194. // con2380
  3195. //
  3196. this.myTableLayoutPanel1.SetColumnSpan(this.con2380, 3);
  3197. this.con2380.Dock = System.Windows.Forms.DockStyle.Fill;
  3198. this.con2380.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3199. this.con2380.Location = new System.Drawing.Point(1710, 98);
  3200. this.con2380.Margin = new System.Windows.Forms.Padding(0);
  3201. this.con2380.Name = "con2380";
  3202. this.myTableLayoutPanel1.SetRowSpan(this.con2380, 2);
  3203. this.con2380.Size = new System.Drawing.Size(57, 28);
  3204. this.con2380.TabIndex = 761;
  3205. //
  3206. // con2379
  3207. //
  3208. this.myTableLayoutPanel1.SetColumnSpan(this.con2379, 3);
  3209. this.con2379.Dock = System.Windows.Forms.DockStyle.Fill;
  3210. this.con2379.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3211. this.con2379.Location = new System.Drawing.Point(1710, 126);
  3212. this.con2379.Margin = new System.Windows.Forms.Padding(0);
  3213. this.con2379.Name = "con2379";
  3214. this.myTableLayoutPanel1.SetRowSpan(this.con2379, 2);
  3215. this.con2379.Size = new System.Drawing.Size(57, 28);
  3216. this.con2379.TabIndex = 759;
  3217. //
  3218. // con2378
  3219. //
  3220. this.myTableLayoutPanel1.SetColumnSpan(this.con2378, 3);
  3221. this.con2378.Dock = System.Windows.Forms.DockStyle.Fill;
  3222. this.con2378.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3223. this.con2378.Location = new System.Drawing.Point(1710, 154);
  3224. this.con2378.Margin = new System.Windows.Forms.Padding(0);
  3225. this.con2378.Name = "con2378";
  3226. this.myTableLayoutPanel1.SetRowSpan(this.con2378, 2);
  3227. this.con2378.Size = new System.Drawing.Size(57, 28);
  3228. this.con2378.TabIndex = 762;
  3229. //
  3230. // con2377
  3231. //
  3232. this.myTableLayoutPanel1.SetColumnSpan(this.con2377, 3);
  3233. this.con2377.Dock = System.Windows.Forms.DockStyle.Fill;
  3234. this.con2377.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3235. this.con2377.Location = new System.Drawing.Point(1710, 182);
  3236. this.con2377.Margin = new System.Windows.Forms.Padding(0);
  3237. this.con2377.Name = "con2377";
  3238. this.myTableLayoutPanel1.SetRowSpan(this.con2377, 2);
  3239. this.con2377.Size = new System.Drawing.Size(57, 28);
  3240. this.con2377.TabIndex = 738;
  3241. //
  3242. // con2376
  3243. //
  3244. this.myTableLayoutPanel1.SetColumnSpan(this.con2376, 3);
  3245. this.con2376.Dock = System.Windows.Forms.DockStyle.Fill;
  3246. this.con2376.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3247. this.con2376.Location = new System.Drawing.Point(1710, 210);
  3248. this.con2376.Margin = new System.Windows.Forms.Padding(0);
  3249. this.con2376.Name = "con2376";
  3250. this.myTableLayoutPanel1.SetRowSpan(this.con2376, 2);
  3251. this.con2376.Size = new System.Drawing.Size(57, 28);
  3252. this.con2376.TabIndex = 735;
  3253. //
  3254. // con2375
  3255. //
  3256. this.myTableLayoutPanel1.SetColumnSpan(this.con2375, 3);
  3257. this.con2375.Dock = System.Windows.Forms.DockStyle.Fill;
  3258. this.con2375.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3259. this.con2375.Location = new System.Drawing.Point(1710, 238);
  3260. this.con2375.Margin = new System.Windows.Forms.Padding(0);
  3261. this.con2375.Name = "con2375";
  3262. this.myTableLayoutPanel1.SetRowSpan(this.con2375, 2);
  3263. this.con2375.Size = new System.Drawing.Size(57, 28);
  3264. this.con2375.TabIndex = 734;
  3265. //
  3266. // con2374
  3267. //
  3268. this.myTableLayoutPanel1.SetColumnSpan(this.con2374, 3);
  3269. this.con2374.Dock = System.Windows.Forms.DockStyle.Fill;
  3270. this.con2374.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3271. this.con2374.Location = new System.Drawing.Point(1710, 266);
  3272. this.con2374.Margin = new System.Windows.Forms.Padding(0);
  3273. this.con2374.Name = "con2374";
  3274. this.myTableLayoutPanel1.SetRowSpan(this.con2374, 2);
  3275. this.con2374.Size = new System.Drawing.Size(57, 28);
  3276. this.con2374.TabIndex = 739;
  3277. //
  3278. // con2385
  3279. //
  3280. this.myTableLayoutPanel1.SetColumnSpan(this.con2385, 3);
  3281. this.con2385.Dock = System.Windows.Forms.DockStyle.Fill;
  3282. this.con2385.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3283. this.con2385.Location = new System.Drawing.Point(1710, 294);
  3284. this.con2385.Margin = new System.Windows.Forms.Padding(0);
  3285. this.con2385.Name = "con2385";
  3286. this.myTableLayoutPanel1.SetRowSpan(this.con2385, 2);
  3287. this.con2385.Size = new System.Drawing.Size(57, 28);
  3288. this.con2385.TabIndex = 736;
  3289. //
  3290. // con2386
  3291. //
  3292. this.myTableLayoutPanel1.SetColumnSpan(this.con2386, 3);
  3293. this.con2386.Dock = System.Windows.Forms.DockStyle.Fill;
  3294. this.con2386.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3295. this.con2386.Location = new System.Drawing.Point(1710, 322);
  3296. this.con2386.Margin = new System.Windows.Forms.Padding(0);
  3297. this.con2386.Name = "con2386";
  3298. this.myTableLayoutPanel1.SetRowSpan(this.con2386, 2);
  3299. this.con2386.Size = new System.Drawing.Size(57, 28);
  3300. this.con2386.TabIndex = 737;
  3301. //
  3302. // con2387
  3303. //
  3304. this.myTableLayoutPanel1.SetColumnSpan(this.con2387, 3);
  3305. this.con2387.Dock = System.Windows.Forms.DockStyle.Fill;
  3306. this.con2387.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3307. this.con2387.Location = new System.Drawing.Point(1710, 350);
  3308. this.con2387.Margin = new System.Windows.Forms.Padding(0);
  3309. this.con2387.Name = "con2387";
  3310. this.myTableLayoutPanel1.SetRowSpan(this.con2387, 2);
  3311. this.con2387.Size = new System.Drawing.Size(57, 27);
  3312. this.con2387.TabIndex = 733;
  3313. //
  3314. // con2388
  3315. //
  3316. this.myTableLayoutPanel1.SetColumnSpan(this.con2388, 3);
  3317. this.con2388.Dock = System.Windows.Forms.DockStyle.Fill;
  3318. this.con2388.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3319. this.con2388.Location = new System.Drawing.Point(1710, 377);
  3320. this.con2388.Margin = new System.Windows.Forms.Padding(0);
  3321. this.con2388.Name = "con2388";
  3322. this.myTableLayoutPanel1.SetRowSpan(this.con2388, 2);
  3323. this.con2388.Size = new System.Drawing.Size(57, 29);
  3324. this.con2388.TabIndex = 729;
  3325. //
  3326. // con2372
  3327. //
  3328. this.myTableLayoutPanel1.SetColumnSpan(this.con2372, 3);
  3329. this.con2372.Dock = System.Windows.Forms.DockStyle.Fill;
  3330. this.con2372.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3331. this.con2372.Location = new System.Drawing.Point(1710, 406);
  3332. this.con2372.Margin = new System.Windows.Forms.Padding(0);
  3333. this.con2372.Name = "con2372";
  3334. this.myTableLayoutPanel1.SetRowSpan(this.con2372, 2);
  3335. this.con2372.Size = new System.Drawing.Size(57, 28);
  3336. this.con2372.TabIndex = 730;
  3337. //
  3338. // con2371
  3339. //
  3340. this.myTableLayoutPanel1.SetColumnSpan(this.con2371, 3);
  3341. this.con2371.Dock = System.Windows.Forms.DockStyle.Fill;
  3342. this.con2371.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3343. this.con2371.Location = new System.Drawing.Point(1710, 434);
  3344. this.con2371.Margin = new System.Windows.Forms.Padding(0);
  3345. this.con2371.Name = "con2371";
  3346. this.myTableLayoutPanel1.SetRowSpan(this.con2371, 2);
  3347. this.con2371.Size = new System.Drawing.Size(57, 28);
  3348. this.con2371.TabIndex = 728;
  3349. //
  3350. // con2370
  3351. //
  3352. this.myTableLayoutPanel1.SetColumnSpan(this.con2370, 3);
  3353. this.con2370.Dock = System.Windows.Forms.DockStyle.Fill;
  3354. this.con2370.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3355. this.con2370.Location = new System.Drawing.Point(1710, 462);
  3356. this.con2370.Margin = new System.Windows.Forms.Padding(0);
  3357. this.con2370.Name = "con2370";
  3358. this.myTableLayoutPanel1.SetRowSpan(this.con2370, 2);
  3359. this.con2370.Size = new System.Drawing.Size(57, 28);
  3360. this.con2370.TabIndex = 731;
  3361. //
  3362. // con2369
  3363. //
  3364. this.myTableLayoutPanel1.SetColumnSpan(this.con2369, 3);
  3365. this.con2369.Dock = System.Windows.Forms.DockStyle.Fill;
  3366. this.con2369.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3367. this.con2369.Location = new System.Drawing.Point(1710, 490);
  3368. this.con2369.Margin = new System.Windows.Forms.Padding(0);
  3369. this.con2369.Name = "con2369";
  3370. this.myTableLayoutPanel1.SetRowSpan(this.con2369, 2);
  3371. this.con2369.Size = new System.Drawing.Size(57, 28);
  3372. this.con2369.TabIndex = 727;
  3373. //
  3374. // con2368
  3375. //
  3376. this.myTableLayoutPanel1.SetColumnSpan(this.con2368, 3);
  3377. this.con2368.Dock = System.Windows.Forms.DockStyle.Fill;
  3378. this.con2368.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3379. this.con2368.Location = new System.Drawing.Point(1710, 518);
  3380. this.con2368.Margin = new System.Windows.Forms.Padding(0);
  3381. this.con2368.Name = "con2368";
  3382. this.myTableLayoutPanel1.SetRowSpan(this.con2368, 2);
  3383. this.con2368.Size = new System.Drawing.Size(57, 28);
  3384. this.con2368.TabIndex = 726;
  3385. //
  3386. // con2366
  3387. //
  3388. this.myTableLayoutPanel1.SetColumnSpan(this.con2366, 3);
  3389. this.con2366.Dock = System.Windows.Forms.DockStyle.Fill;
  3390. this.con2366.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3391. this.con2366.Location = new System.Drawing.Point(1710, 546);
  3392. this.con2366.Margin = new System.Windows.Forms.Padding(0);
  3393. this.con2366.Name = "con2366";
  3394. this.myTableLayoutPanel1.SetRowSpan(this.con2366, 2);
  3395. this.con2366.Size = new System.Drawing.Size(57, 28);
  3396. this.con2366.TabIndex = 725;
  3397. //
  3398. // con2365
  3399. //
  3400. this.myTableLayoutPanel1.SetColumnSpan(this.con2365, 3);
  3401. this.con2365.Dock = System.Windows.Forms.DockStyle.Fill;
  3402. this.con2365.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3403. this.con2365.Location = new System.Drawing.Point(1710, 574);
  3404. this.con2365.Margin = new System.Windows.Forms.Padding(0);
  3405. this.con2365.Name = "con2365";
  3406. this.myTableLayoutPanel1.SetRowSpan(this.con2365, 2);
  3407. this.con2365.Size = new System.Drawing.Size(57, 28);
  3408. this.con2365.TabIndex = 724;
  3409. //
  3410. // con2364
  3411. //
  3412. this.con2364.BackColor = System.Drawing.Color.Transparent;
  3413. this.myTableLayoutPanel1.SetColumnSpan(this.con2364, 3);
  3414. this.con2364.Dock = System.Windows.Forms.DockStyle.Fill;
  3415. this.con2364.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3416. this.con2364.Location = new System.Drawing.Point(1653, 574);
  3417. this.con2364.Margin = new System.Windows.Forms.Padding(0);
  3418. this.con2364.Name = "con2364";
  3419. this.myTableLayoutPanel1.SetRowSpan(this.con2364, 2);
  3420. this.con2364.Size = new System.Drawing.Size(57, 28);
  3421. this.con2364.TabIndex = 723;
  3422. //
  3423. // con2362
  3424. //
  3425. this.con2362.BackColor = System.Drawing.Color.Transparent;
  3426. this.myTableLayoutPanel1.SetColumnSpan(this.con2362, 3);
  3427. this.con2362.Dock = System.Windows.Forms.DockStyle.Fill;
  3428. this.con2362.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3429. this.con2362.Location = new System.Drawing.Point(1596, 574);
  3430. this.con2362.Margin = new System.Windows.Forms.Padding(0);
  3431. this.con2362.Name = "con2362";
  3432. this.myTableLayoutPanel1.SetRowSpan(this.con2362, 2);
  3433. this.con2362.Size = new System.Drawing.Size(57, 28);
  3434. this.con2362.TabIndex = 722;
  3435. //
  3436. // con2360
  3437. //
  3438. this.myTableLayoutPanel1.SetColumnSpan(this.con2360, 3);
  3439. this.con2360.Dock = System.Windows.Forms.DockStyle.Fill;
  3440. this.con2360.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3441. this.con2360.Location = new System.Drawing.Point(1596, 602);
  3442. this.con2360.Margin = new System.Windows.Forms.Padding(0);
  3443. this.con2360.Name = "con2360";
  3444. this.myTableLayoutPanel1.SetRowSpan(this.con2360, 2);
  3445. this.con2360.Size = new System.Drawing.Size(57, 28);
  3446. this.con2360.TabIndex = 520;
  3447. //
  3448. // con2359
  3449. //
  3450. this.myTableLayoutPanel1.SetColumnSpan(this.con2359, 3);
  3451. this.con2359.Dock = System.Windows.Forms.DockStyle.Fill;
  3452. this.con2359.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3453. this.con2359.Location = new System.Drawing.Point(1596, 630);
  3454. this.con2359.Margin = new System.Windows.Forms.Padding(0);
  3455. this.con2359.Name = "con2359";
  3456. this.myTableLayoutPanel1.SetRowSpan(this.con2359, 2);
  3457. this.con2359.Size = new System.Drawing.Size(57, 28);
  3458. this.con2359.TabIndex = 512;
  3459. //
  3460. // con2135
  3461. //
  3462. this.myTableLayoutPanel1.SetColumnSpan(this.con2135, 3);
  3463. this.con2135.Dock = System.Windows.Forms.DockStyle.Fill;
  3464. this.con2135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3465. this.con2135.Location = new System.Drawing.Point(1767, 238);
  3466. this.con2135.Margin = new System.Windows.Forms.Padding(0);
  3467. this.con2135.Name = "con2135";
  3468. this.myTableLayoutPanel1.SetRowSpan(this.con2135, 2);
  3469. this.con2135.Size = new System.Drawing.Size(57, 28);
  3470. this.con2135.TabIndex = 751;
  3471. //
  3472. // label1
  3473. //
  3474. this.label1.AutoSize = true;
  3475. this.label1.BackColor = System.Drawing.Color.Lime;
  3476. this.myTableLayoutPanel1.SetColumnSpan(this.label1, 3);
  3477. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  3478. this.label1.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3479. this.label1.Location = new System.Drawing.Point(1771, 266);
  3480. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3481. this.label1.Name = "label1";
  3482. this.myTableLayoutPanel1.SetRowSpan(this.label1, 2);
  3483. this.label1.Size = new System.Drawing.Size(49, 28);
  3484. this.label1.TabIndex = 753;
  3485. this.label1.Text = "上";
  3486. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3487. //
  3488. // con2137
  3489. //
  3490. this.con2137.BackColor = System.Drawing.Color.Transparent;
  3491. this.myTableLayoutPanel1.SetColumnSpan(this.con2137, 3);
  3492. this.con2137.Dock = System.Windows.Forms.DockStyle.Fill;
  3493. this.con2137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3494. this.con2137.Location = new System.Drawing.Point(1767, 294);
  3495. this.con2137.Margin = new System.Windows.Forms.Padding(0);
  3496. this.con2137.Name = "con2137";
  3497. this.myTableLayoutPanel1.SetRowSpan(this.con2137, 2);
  3498. this.con2137.Size = new System.Drawing.Size(57, 28);
  3499. this.con2137.TabIndex = 865;
  3500. //
  3501. // con2138
  3502. //
  3503. this.con2138.BackColor = System.Drawing.Color.Transparent;
  3504. this.myTableLayoutPanel1.SetColumnSpan(this.con2138, 3);
  3505. this.con2138.Dock = System.Windows.Forms.DockStyle.Fill;
  3506. this.con2138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3507. this.con2138.Location = new System.Drawing.Point(1824, 294);
  3508. this.con2138.Margin = new System.Windows.Forms.Padding(0);
  3509. this.con2138.Name = "con2138";
  3510. this.myTableLayoutPanel1.SetRowSpan(this.con2138, 2);
  3511. this.con2138.Size = new System.Drawing.Size(57, 28);
  3512. this.con2138.TabIndex = 749;
  3513. //
  3514. // con2326
  3515. //
  3516. this.con2326.BackColor = System.Drawing.Color.Transparent;
  3517. this.myTableLayoutPanel1.SetColumnSpan(this.con2326, 3);
  3518. this.con2326.Dock = System.Windows.Forms.DockStyle.Fill;
  3519. this.con2326.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3520. this.con2326.Location = new System.Drawing.Point(1881, 294);
  3521. this.con2326.Margin = new System.Windows.Forms.Padding(0);
  3522. this.con2326.Name = "con2326";
  3523. this.myTableLayoutPanel1.SetRowSpan(this.con2326, 2);
  3524. this.con2326.Size = new System.Drawing.Size(57, 28);
  3525. this.con2326.TabIndex = 750;
  3526. //
  3527. // con2141
  3528. //
  3529. this.con2141.BackColor = System.Drawing.Color.Transparent;
  3530. this.myTableLayoutPanel1.SetColumnSpan(this.con2141, 3);
  3531. this.con2141.Dock = System.Windows.Forms.DockStyle.Fill;
  3532. this.con2141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3533. this.con2141.Location = new System.Drawing.Point(1995, 294);
  3534. this.con2141.Margin = new System.Windows.Forms.Padding(0);
  3535. this.con2141.Name = "con2141";
  3536. this.myTableLayoutPanel1.SetRowSpan(this.con2141, 2);
  3537. this.con2141.Size = new System.Drawing.Size(57, 28);
  3538. this.con2141.TabIndex = 757;
  3539. //
  3540. // panel1
  3541. //
  3542. this.myTableLayoutPanel1.SetColumnSpan(this.panel1, 3);
  3543. this.panel1.Controls.Add(this.con2140);
  3544. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3545. this.panel1.Location = new System.Drawing.Point(1941, 297);
  3546. this.panel1.Name = "panel1";
  3547. this.myTableLayoutPanel1.SetRowSpan(this.panel1, 3);
  3548. this.panel1.Size = new System.Drawing.Size(51, 36);
  3549. this.panel1.TabIndex = 871;
  3550. //
  3551. // con2140
  3552. //
  3553. this.con2140.Dock = System.Windows.Forms.DockStyle.Fill;
  3554. this.con2140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3555. this.con2140.Location = new System.Drawing.Point(0, 0);
  3556. this.con2140.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3557. this.con2140.Name = "con2140";
  3558. this.con2140.Size = new System.Drawing.Size(51, 36);
  3559. this.con2140.TabIndex = 756;
  3560. //
  3561. // panel12
  3562. //
  3563. this.myTableLayoutPanel1.SetColumnSpan(this.panel12, 3);
  3564. this.panel12.Controls.Add(this.con2143);
  3565. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  3566. this.panel12.Location = new System.Drawing.Point(1941, 339);
  3567. this.panel12.Name = "panel12";
  3568. this.myTableLayoutPanel1.SetRowSpan(this.panel12, 3);
  3569. this.panel12.Size = new System.Drawing.Size(51, 35);
  3570. this.panel12.TabIndex = 881;
  3571. //
  3572. // con2143
  3573. //
  3574. this.con2143.Dock = System.Windows.Forms.DockStyle.Fill;
  3575. this.con2143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3576. this.con2143.Location = new System.Drawing.Point(0, 0);
  3577. this.con2143.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3578. this.con2143.Name = "con2143";
  3579. this.con2143.Size = new System.Drawing.Size(51, 35);
  3580. this.con2143.TabIndex = 755;
  3581. //
  3582. // con2274
  3583. //
  3584. this.con2274.BackColor = System.Drawing.Color.Transparent;
  3585. this.myTableLayoutPanel1.SetColumnSpan(this.con2274, 3);
  3586. this.con2274.Dock = System.Windows.Forms.DockStyle.Fill;
  3587. this.con2274.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3588. this.con2274.Location = new System.Drawing.Point(2052, 294);
  3589. this.con2274.Margin = new System.Windows.Forms.Padding(0);
  3590. this.con2274.Name = "con2274";
  3591. this.myTableLayoutPanel1.SetRowSpan(this.con2274, 2);
  3592. this.con2274.Size = new System.Drawing.Size(57, 28);
  3593. this.con2274.TabIndex = 758;
  3594. //
  3595. // con2123
  3596. //
  3597. this.myTableLayoutPanel1.SetColumnSpan(this.con2123, 3);
  3598. this.con2123.Dock = System.Windows.Forms.DockStyle.Fill;
  3599. this.con2123.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3600. this.con2123.Location = new System.Drawing.Point(1767, 490);
  3601. this.con2123.Margin = new System.Windows.Forms.Padding(0);
  3602. this.con2123.Name = "con2123";
  3603. this.myTableLayoutPanel1.SetRowSpan(this.con2123, 2);
  3604. this.con2123.Size = new System.Drawing.Size(57, 28);
  3605. this.con2123.TabIndex = 742;
  3606. //
  3607. // label4
  3608. //
  3609. this.label4.AutoSize = true;
  3610. this.label4.BackColor = System.Drawing.Color.Lime;
  3611. this.myTableLayoutPanel1.SetColumnSpan(this.label4, 3);
  3612. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  3613. this.label4.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3614. this.label4.Location = new System.Drawing.Point(1771, 518);
  3615. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3616. this.label4.Name = "label4";
  3617. this.myTableLayoutPanel1.SetRowSpan(this.label4, 2);
  3618. this.label4.Size = new System.Drawing.Size(49, 28);
  3619. this.label4.TabIndex = 744;
  3620. this.label4.Text = "上";
  3621. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3622. //
  3623. // con2125
  3624. //
  3625. this.con2125.BackColor = System.Drawing.Color.Transparent;
  3626. this.myTableLayoutPanel1.SetColumnSpan(this.con2125, 3);
  3627. this.con2125.Dock = System.Windows.Forms.DockStyle.Fill;
  3628. this.con2125.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3629. this.con2125.Location = new System.Drawing.Point(1767, 546);
  3630. this.con2125.Margin = new System.Windows.Forms.Padding(0);
  3631. this.con2125.Name = "con2125";
  3632. this.myTableLayoutPanel1.SetRowSpan(this.con2125, 2);
  3633. this.con2125.Size = new System.Drawing.Size(57, 28);
  3634. this.con2125.TabIndex = 864;
  3635. //
  3636. // con2126
  3637. //
  3638. this.con2126.BackColor = System.Drawing.Color.Transparent;
  3639. this.myTableLayoutPanel1.SetColumnSpan(this.con2126, 3);
  3640. this.con2126.Dock = System.Windows.Forms.DockStyle.Fill;
  3641. this.con2126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3642. this.con2126.Location = new System.Drawing.Point(1824, 546);
  3643. this.con2126.Margin = new System.Windows.Forms.Padding(0);
  3644. this.con2126.Name = "con2126";
  3645. this.myTableLayoutPanel1.SetRowSpan(this.con2126, 2);
  3646. this.con2126.Size = new System.Drawing.Size(57, 28);
  3647. this.con2126.TabIndex = 740;
  3648. //
  3649. // con2327
  3650. //
  3651. this.con2327.BackColor = System.Drawing.Color.Transparent;
  3652. this.myTableLayoutPanel1.SetColumnSpan(this.con2327, 3);
  3653. this.con2327.Dock = System.Windows.Forms.DockStyle.Fill;
  3654. this.con2327.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3655. this.con2327.Location = new System.Drawing.Point(1881, 546);
  3656. this.con2327.Margin = new System.Windows.Forms.Padding(0);
  3657. this.con2327.Name = "con2327";
  3658. this.myTableLayoutPanel1.SetRowSpan(this.con2327, 2);
  3659. this.con2327.Size = new System.Drawing.Size(57, 28);
  3660. this.con2327.TabIndex = 741;
  3661. //
  3662. // con2129
  3663. //
  3664. this.myTableLayoutPanel1.SetColumnSpan(this.con2129, 4);
  3665. this.con2129.Dock = System.Windows.Forms.DockStyle.Fill;
  3666. this.con2129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3667. this.con2129.Location = new System.Drawing.Point(1938, 518);
  3668. this.con2129.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3669. this.con2129.Name = "con2129";
  3670. this.myTableLayoutPanel1.SetRowSpan(this.con2129, 2);
  3671. this.con2129.Size = new System.Drawing.Size(55, 28);
  3672. this.con2129.TabIndex = 747;
  3673. //
  3674. // con2128
  3675. //
  3676. this.myTableLayoutPanel1.SetColumnSpan(this.con2128, 4);
  3677. this.con2128.Dock = System.Windows.Forms.DockStyle.Fill;
  3678. this.con2128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3679. this.con2128.Location = new System.Drawing.Point(1938, 546);
  3680. this.con2128.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3681. this.con2128.Name = "con2128";
  3682. this.myTableLayoutPanel1.SetRowSpan(this.con2128, 2);
  3683. this.con2128.Size = new System.Drawing.Size(55, 28);
  3684. this.con2128.TabIndex = 746;
  3685. //
  3686. // con2131
  3687. //
  3688. this.myTableLayoutPanel1.SetColumnSpan(this.con2131, 4);
  3689. this.con2131.Dock = System.Windows.Forms.DockStyle.Fill;
  3690. this.con2131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3691. this.con2131.Location = new System.Drawing.Point(1938, 574);
  3692. this.con2131.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3693. this.con2131.Name = "con2131";
  3694. this.myTableLayoutPanel1.SetRowSpan(this.con2131, 2);
  3695. this.con2131.Size = new System.Drawing.Size(55, 28);
  3696. this.con2131.TabIndex = 745;
  3697. //
  3698. // con2273
  3699. //
  3700. this.myTableLayoutPanel1.SetColumnSpan(this.con2273, 4);
  3701. this.con2273.Dock = System.Windows.Forms.DockStyle.Fill;
  3702. this.con2273.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3703. this.con2273.Location = new System.Drawing.Point(1938, 490);
  3704. this.con2273.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  3705. this.con2273.Name = "con2273";
  3706. this.myTableLayoutPanel1.SetRowSpan(this.con2273, 2);
  3707. this.con2273.Size = new System.Drawing.Size(55, 28);
  3708. this.con2273.TabIndex = 748;
  3709. //
  3710. // tableCellLabel32
  3711. //
  3712. this.tableCellLabel32.BackColor = System.Drawing.Color.Transparent;
  3713. this.tableCellLabel32.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel32.BackgroundImage")));
  3714. this.tableCellLabel32.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3715. this.tableCellLabel32.Dock = System.Windows.Forms.DockStyle.Fill;
  3716. this.tableCellLabel32.Location = new System.Drawing.Point(1729, 602);
  3717. this.tableCellLabel32.Margin = new System.Windows.Forms.Padding(0);
  3718. this.tableCellLabel32.Name = "tableCellLabel32";
  3719. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel32, 5);
  3720. this.tableCellLabel32.Size = new System.Drawing.Size(19, 70);
  3721. this.tableCellLabel32.TabIndex = 521;
  3722. //
  3723. // conrgv4
  3724. //
  3725. this.conrgv4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  3726. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv4, 5);
  3727. this.conrgv4.Dock = System.Windows.Forms.DockStyle.Fill;
  3728. this.conrgv4.Location = new System.Drawing.Point(1691, 672);
  3729. this.conrgv4.Margin = new System.Windows.Forms.Padding(0);
  3730. this.conrgv4.Name = "conrgv4";
  3731. this.myTableLayoutPanel1.SetRowSpan(this.conrgv4, 2);
  3732. this.conrgv4.Size = new System.Drawing.Size(95, 28);
  3733. this.conrgv4.TabIndex = 510;
  3734. //
  3735. // tableCellLabel9
  3736. //
  3737. this.tableCellLabel9.BackColor = System.Drawing.Color.Transparent;
  3738. this.tableCellLabel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel9.BackgroundImage")));
  3739. this.tableCellLabel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3740. this.tableCellLabel9.Dock = System.Windows.Forms.DockStyle.Fill;
  3741. this.tableCellLabel9.Location = new System.Drawing.Point(1729, 700);
  3742. this.tableCellLabel9.Margin = new System.Windows.Forms.Padding(0);
  3743. this.tableCellLabel9.Name = "tableCellLabel9";
  3744. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel9, 7);
  3745. this.tableCellLabel9.Size = new System.Drawing.Size(19, 98);
  3746. this.tableCellLabel9.TabIndex = 717;
  3747. //
  3748. // con2114
  3749. //
  3750. this.myTableLayoutPanel1.SetColumnSpan(this.con2114, 3);
  3751. this.con2114.Dock = System.Windows.Forms.DockStyle.Fill;
  3752. this.con2114.Location = new System.Drawing.Point(1748, 700);
  3753. this.con2114.Margin = new System.Windows.Forms.Padding(0);
  3754. this.con2114.Name = "con2114";
  3755. this.myTableLayoutPanel1.SetRowSpan(this.con2114, 2);
  3756. this.con2114.Size = new System.Drawing.Size(57, 28);
  3757. this.con2114.TabIndex = 504;
  3758. this.con2114.Load += new System.EventHandler(this.con2114_Load);
  3759. //
  3760. // label34
  3761. //
  3762. this.label34.AutoSize = true;
  3763. this.label34.BackColor = System.Drawing.Color.Lime;
  3764. this.myTableLayoutPanel1.SetColumnSpan(this.label34, 3);
  3765. this.label34.Dock = System.Windows.Forms.DockStyle.Fill;
  3766. this.label34.Location = new System.Drawing.Point(1752, 728);
  3767. this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3768. this.label34.Name = "label34";
  3769. this.myTableLayoutPanel1.SetRowSpan(this.label34, 2);
  3770. this.label34.Size = new System.Drawing.Size(49, 28);
  3771. this.label34.TabIndex = 509;
  3772. this.label34.Text = "上";
  3773. this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3774. //
  3775. // con2116
  3776. //
  3777. this.con2116.BackColor = System.Drawing.Color.Transparent;
  3778. this.myTableLayoutPanel1.SetColumnSpan(this.con2116, 3);
  3779. this.con2116.Dock = System.Windows.Forms.DockStyle.Fill;
  3780. this.con2116.Location = new System.Drawing.Point(1748, 756);
  3781. this.con2116.Margin = new System.Windows.Forms.Padding(0);
  3782. this.con2116.Name = "con2116";
  3783. this.myTableLayoutPanel1.SetRowSpan(this.con2116, 2);
  3784. this.con2116.Size = new System.Drawing.Size(57, 28);
  3785. this.con2116.TabIndex = 863;
  3786. //
  3787. // con2117
  3788. //
  3789. this.con2117.BackColor = System.Drawing.Color.Transparent;
  3790. this.myTableLayoutPanel1.SetColumnSpan(this.con2117, 3);
  3791. this.con2117.Dock = System.Windows.Forms.DockStyle.Fill;
  3792. this.con2117.Location = new System.Drawing.Point(1805, 756);
  3793. this.con2117.Margin = new System.Windows.Forms.Padding(0);
  3794. this.con2117.Name = "con2117";
  3795. this.myTableLayoutPanel1.SetRowSpan(this.con2117, 2);
  3796. this.con2117.Size = new System.Drawing.Size(57, 28);
  3797. this.con2117.TabIndex = 462;
  3798. //
  3799. // con2328
  3800. //
  3801. this.con2328.BackColor = System.Drawing.Color.Transparent;
  3802. this.myTableLayoutPanel1.SetColumnSpan(this.con2328, 3);
  3803. this.con2328.Dock = System.Windows.Forms.DockStyle.Fill;
  3804. this.con2328.Location = new System.Drawing.Point(1862, 756);
  3805. this.con2328.Margin = new System.Windows.Forms.Padding(0);
  3806. this.con2328.Name = "con2328";
  3807. this.myTableLayoutPanel1.SetRowSpan(this.con2328, 2);
  3808. this.con2328.Size = new System.Drawing.Size(57, 28);
  3809. this.con2328.TabIndex = 461;
  3810. //
  3811. // con2120
  3812. //
  3813. this.myTableLayoutPanel1.SetColumnSpan(this.con2120, 4);
  3814. this.con2120.Dock = System.Windows.Forms.DockStyle.Fill;
  3815. this.con2120.Location = new System.Drawing.Point(1919, 714);
  3816. this.con2120.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  3817. this.con2120.Name = "con2120";
  3818. this.myTableLayoutPanel1.SetRowSpan(this.con2120, 2);
  3819. this.con2120.Size = new System.Drawing.Size(61, 28);
  3820. this.con2120.TabIndex = 721;
  3821. //
  3822. // con2119
  3823. //
  3824. this.myTableLayoutPanel1.SetColumnSpan(this.con2119, 4);
  3825. this.con2119.Dock = System.Windows.Forms.DockStyle.Fill;
  3826. this.con2119.Location = new System.Drawing.Point(1919, 742);
  3827. this.con2119.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  3828. this.con2119.Name = "con2119";
  3829. this.myTableLayoutPanel1.SetRowSpan(this.con2119, 2);
  3830. this.con2119.Size = new System.Drawing.Size(61, 28);
  3831. this.con2119.TabIndex = 720;
  3832. //
  3833. // con2122
  3834. //
  3835. this.myTableLayoutPanel1.SetColumnSpan(this.con2122, 4);
  3836. this.con2122.Dock = System.Windows.Forms.DockStyle.Fill;
  3837. this.con2122.Location = new System.Drawing.Point(1919, 770);
  3838. this.con2122.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  3839. this.con2122.Name = "con2122";
  3840. this.myTableLayoutPanel1.SetRowSpan(this.con2122, 2);
  3841. this.con2122.Size = new System.Drawing.Size(61, 28);
  3842. this.con2122.TabIndex = 719;
  3843. //
  3844. // con2272
  3845. //
  3846. this.myTableLayoutPanel1.SetColumnSpan(this.con2272, 4);
  3847. this.con2272.Dock = System.Windows.Forms.DockStyle.Fill;
  3848. this.con2272.Location = new System.Drawing.Point(1919, 686);
  3849. this.con2272.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  3850. this.con2272.Name = "con2272";
  3851. this.myTableLayoutPanel1.SetRowSpan(this.con2272, 2);
  3852. this.con2272.Size = new System.Drawing.Size(61, 28);
  3853. this.con2272.TabIndex = 718;
  3854. //
  3855. // conrgv3
  3856. //
  3857. this.conrgv3.BackColor = System.Drawing.Color.Transparent;
  3858. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv3, 3);
  3859. this.conrgv3.Dock = System.Windows.Forms.DockStyle.Fill;
  3860. this.conrgv3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3861. this.conrgv3.Location = new System.Drawing.Point(1007, 70);
  3862. this.conrgv3.Margin = new System.Windows.Forms.Padding(0);
  3863. this.conrgv3.Name = "conrgv3";
  3864. this.myTableLayoutPanel1.SetRowSpan(this.conrgv3, 2);
  3865. this.conrgv3.Size = new System.Drawing.Size(57, 28);
  3866. this.conrgv3.TabIndex = 792;
  3867. //
  3868. // tableCellLabel2
  3869. //
  3870. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  3871. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  3872. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3873. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 13);
  3874. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  3875. this.tableCellLabel2.Location = new System.Drawing.Point(760, 70);
  3876. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  3877. this.tableCellLabel2.Name = "tableCellLabel2";
  3878. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel2, 2);
  3879. this.tableCellLabel2.Size = new System.Drawing.Size(247, 28);
  3880. this.tableCellLabel2.TabIndex = 790;
  3881. //
  3882. // con2202
  3883. //
  3884. this.myTableLayoutPanel1.SetColumnSpan(this.con2202, 3);
  3885. this.con2202.Dock = System.Windows.Forms.DockStyle.Fill;
  3886. this.con2202.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3887. this.con2202.Location = new System.Drawing.Point(931, 42);
  3888. this.con2202.Margin = new System.Windows.Forms.Padding(0);
  3889. this.con2202.Name = "con2202";
  3890. this.myTableLayoutPanel1.SetRowSpan(this.con2202, 2);
  3891. this.con2202.Size = new System.Drawing.Size(57, 28);
  3892. this.con2202.TabIndex = 856;
  3893. //
  3894. // con2256
  3895. //
  3896. this.myTableLayoutPanel1.SetColumnSpan(this.con2256, 3);
  3897. this.con2256.Dock = System.Windows.Forms.DockStyle.Fill;
  3898. this.con2256.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3899. this.con2256.Location = new System.Drawing.Point(1463, 322);
  3900. this.con2256.Margin = new System.Windows.Forms.Padding(0);
  3901. this.con2256.Name = "con2256";
  3902. this.myTableLayoutPanel1.SetRowSpan(this.con2256, 2);
  3903. this.con2256.Size = new System.Drawing.Size(57, 28);
  3904. this.con2256.TabIndex = 813;
  3905. //
  3906. // con2255
  3907. //
  3908. this.myTableLayoutPanel1.SetColumnSpan(this.con2255, 3);
  3909. this.con2255.Dock = System.Windows.Forms.DockStyle.Fill;
  3910. this.con2255.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3911. this.con2255.Location = new System.Drawing.Point(1387, 322);
  3912. this.con2255.Margin = new System.Windows.Forms.Padding(0);
  3913. this.con2255.Name = "con2255";
  3914. this.myTableLayoutPanel1.SetRowSpan(this.con2255, 2);
  3915. this.con2255.Size = new System.Drawing.Size(57, 28);
  3916. this.con2255.TabIndex = 808;
  3917. //
  3918. // con2254
  3919. //
  3920. this.myTableLayoutPanel1.SetColumnSpan(this.con2254, 3);
  3921. this.con2254.Dock = System.Windows.Forms.DockStyle.Fill;
  3922. this.con2254.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3923. this.con2254.Location = new System.Drawing.Point(1292, 322);
  3924. this.con2254.Margin = new System.Windows.Forms.Padding(0);
  3925. this.con2254.Name = "con2254";
  3926. this.myTableLayoutPanel1.SetRowSpan(this.con2254, 2);
  3927. this.con2254.Size = new System.Drawing.Size(57, 28);
  3928. this.con2254.TabIndex = 810;
  3929. //
  3930. // con2253
  3931. //
  3932. this.myTableLayoutPanel1.SetColumnSpan(this.con2253, 3);
  3933. this.con2253.Dock = System.Windows.Forms.DockStyle.Fill;
  3934. this.con2253.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3935. this.con2253.Location = new System.Drawing.Point(1216, 322);
  3936. this.con2253.Margin = new System.Windows.Forms.Padding(0);
  3937. this.con2253.Name = "con2253";
  3938. this.myTableLayoutPanel1.SetRowSpan(this.con2253, 2);
  3939. this.con2253.Size = new System.Drawing.Size(57, 28);
  3940. this.con2253.TabIndex = 811;
  3941. //
  3942. // con2252
  3943. //
  3944. this.myTableLayoutPanel1.SetColumnSpan(this.con2252, 3);
  3945. this.con2252.Dock = System.Windows.Forms.DockStyle.Fill;
  3946. this.con2252.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3947. this.con2252.Location = new System.Drawing.Point(1121, 322);
  3948. this.con2252.Margin = new System.Windows.Forms.Padding(0);
  3949. this.con2252.Name = "con2252";
  3950. this.myTableLayoutPanel1.SetRowSpan(this.con2252, 2);
  3951. this.con2252.Size = new System.Drawing.Size(57, 28);
  3952. this.con2252.TabIndex = 812;
  3953. //
  3954. // con2251
  3955. //
  3956. this.myTableLayoutPanel1.SetColumnSpan(this.con2251, 3);
  3957. this.con2251.Dock = System.Windows.Forms.DockStyle.Fill;
  3958. this.con2251.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3959. this.con2251.Location = new System.Drawing.Point(1045, 322);
  3960. this.con2251.Margin = new System.Windows.Forms.Padding(0);
  3961. this.con2251.Name = "con2251";
  3962. this.myTableLayoutPanel1.SetRowSpan(this.con2251, 2);
  3963. this.con2251.Size = new System.Drawing.Size(57, 28);
  3964. this.con2251.TabIndex = 809;
  3965. //
  3966. // locationPos41
  3967. //
  3968. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos41, 3);
  3969. this.locationPos41.Dock = System.Windows.Forms.DockStyle.Fill;
  3970. this.locationPos41.Location = new System.Drawing.Point(1463, 350);
  3971. this.locationPos41.Margin = new System.Windows.Forms.Padding(0);
  3972. this.locationPos41.Name = "locationPos41";
  3973. this.myTableLayoutPanel1.SetRowSpan(this.locationPos41, 16);
  3974. this.locationPos41.Size = new System.Drawing.Size(57, 224);
  3975. this.locationPos41.TabIndex = 21;
  3976. //
  3977. // locationPos35
  3978. //
  3979. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos35, 3);
  3980. this.locationPos35.Dock = System.Windows.Forms.DockStyle.Fill;
  3981. this.locationPos35.Location = new System.Drawing.Point(1387, 350);
  3982. this.locationPos35.Margin = new System.Windows.Forms.Padding(0);
  3983. this.locationPos35.Name = "locationPos35";
  3984. this.myTableLayoutPanel1.SetRowSpan(this.locationPos35, 16);
  3985. this.locationPos35.Size = new System.Drawing.Size(57, 224);
  3986. this.locationPos35.TabIndex = 683;
  3987. //
  3988. // srm11
  3989. //
  3990. this.srm11.BackColor = System.Drawing.Color.Transparent;
  3991. this.srm11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm11.BackgroundImage")));
  3992. this.srm11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3993. this.srm11.Dock = System.Windows.Forms.DockStyle.Fill;
  3994. this.srm11.Location = new System.Drawing.Point(1444, 350);
  3995. this.srm11.Margin = new System.Windows.Forms.Padding(0);
  3996. this.srm11.Name = "srm11";
  3997. this.myTableLayoutPanel1.SetRowSpan(this.srm11, 18);
  3998. this.srm11.Size = new System.Drawing.Size(19, 252);
  3999. this.srm11.TabIndex = 437;
  4000. //
  4001. // locationPos40
  4002. //
  4003. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos40, 3);
  4004. this.locationPos40.Dock = System.Windows.Forms.DockStyle.Fill;
  4005. this.locationPos40.Location = new System.Drawing.Point(1292, 350);
  4006. this.locationPos40.Margin = new System.Windows.Forms.Padding(0);
  4007. this.locationPos40.Name = "locationPos40";
  4008. this.myTableLayoutPanel1.SetRowSpan(this.locationPos40, 16);
  4009. this.locationPos40.Size = new System.Drawing.Size(57, 224);
  4010. this.locationPos40.TabIndex = 20;
  4011. //
  4012. // tableCellLabel15
  4013. //
  4014. this.tableCellLabel15.BackColor = System.Drawing.Color.Transparent;
  4015. this.tableCellLabel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel15.BackgroundImage")));
  4016. this.tableCellLabel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4017. this.tableCellLabel15.Dock = System.Windows.Forms.DockStyle.Fill;
  4018. this.tableCellLabel15.Location = new System.Drawing.Point(1273, 350);
  4019. this.tableCellLabel15.Margin = new System.Windows.Forms.Padding(0);
  4020. this.tableCellLabel15.Name = "tableCellLabel15";
  4021. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel15, 18);
  4022. this.tableCellLabel15.Size = new System.Drawing.Size(19, 252);
  4023. this.tableCellLabel15.TabIndex = 682;
  4024. //
  4025. // locationPos39
  4026. //
  4027. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos39, 3);
  4028. this.locationPos39.Dock = System.Windows.Forms.DockStyle.Fill;
  4029. this.locationPos39.Location = new System.Drawing.Point(1216, 350);
  4030. this.locationPos39.Margin = new System.Windows.Forms.Padding(0);
  4031. this.locationPos39.Name = "locationPos39";
  4032. this.myTableLayoutPanel1.SetRowSpan(this.locationPos39, 16);
  4033. this.locationPos39.Size = new System.Drawing.Size(57, 224);
  4034. this.locationPos39.TabIndex = 19;
  4035. //
  4036. // tableCellLabel8
  4037. //
  4038. this.tableCellLabel8.BackColor = System.Drawing.Color.Transparent;
  4039. this.tableCellLabel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel8.BackgroundImage")));
  4040. this.tableCellLabel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4041. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel8, 8);
  4042. this.tableCellLabel8.Dock = System.Windows.Forms.DockStyle.Fill;
  4043. this.tableCellLabel8.Location = new System.Drawing.Point(1121, 588);
  4044. this.tableCellLabel8.Margin = new System.Windows.Forms.Padding(0);
  4045. this.tableCellLabel8.Name = "tableCellLabel8";
  4046. this.tableCellLabel8.Size = new System.Drawing.Size(152, 14);
  4047. this.tableCellLabel8.TabIndex = 777;
  4048. //
  4049. // tableCellLabel6
  4050. //
  4051. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  4052. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  4053. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4054. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel6, 8);
  4055. this.tableCellLabel6.Dock = System.Windows.Forms.DockStyle.Fill;
  4056. this.tableCellLabel6.Location = new System.Drawing.Point(1292, 588);
  4057. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  4058. this.tableCellLabel6.Name = "tableCellLabel6";
  4059. this.tableCellLabel6.Size = new System.Drawing.Size(152, 14);
  4060. this.tableCellLabel6.TabIndex = 778;
  4061. //
  4062. // con2307
  4063. //
  4064. this.con2307.BackColor = System.Drawing.Color.Transparent;
  4065. this.myTableLayoutPanel1.SetColumnSpan(this.con2307, 3);
  4066. this.con2307.Dock = System.Windows.Forms.DockStyle.Fill;
  4067. this.con2307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4068. this.con2307.Location = new System.Drawing.Point(114, 56);
  4069. this.con2307.Margin = new System.Windows.Forms.Padding(0);
  4070. this.con2307.Name = "con2307";
  4071. this.myTableLayoutPanel1.SetRowSpan(this.con2307, 2);
  4072. this.con2307.Size = new System.Drawing.Size(57, 28);
  4073. this.con2307.TabIndex = 631;
  4074. //
  4075. // con2003
  4076. //
  4077. this.con2003.BackColor = System.Drawing.Color.Transparent;
  4078. this.myTableLayoutPanel1.SetColumnSpan(this.con2003, 3);
  4079. this.con2003.Dock = System.Windows.Forms.DockStyle.Fill;
  4080. this.con2003.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4081. this.con2003.Location = new System.Drawing.Point(228, 56);
  4082. this.con2003.Margin = new System.Windows.Forms.Padding(0);
  4083. this.con2003.Name = "con2003";
  4084. this.myTableLayoutPanel1.SetRowSpan(this.con2003, 2);
  4085. this.con2003.Size = new System.Drawing.Size(57, 28);
  4086. this.con2003.TabIndex = 629;
  4087. //
  4088. // con2311
  4089. //
  4090. this.myTableLayoutPanel1.SetColumnSpan(this.con2311, 4);
  4091. this.con2311.Dock = System.Windows.Forms.DockStyle.Fill;
  4092. this.con2311.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4093. this.con2311.Location = new System.Drawing.Point(323, 28);
  4094. this.con2311.Margin = new System.Windows.Forms.Padding(0, 0, 12, 0);
  4095. this.con2311.Name = "con2311";
  4096. this.myTableLayoutPanel1.SetRowSpan(this.con2311, 2);
  4097. this.con2311.Size = new System.Drawing.Size(64, 28);
  4098. this.con2311.TabIndex = 646;
  4099. //
  4100. // con2312
  4101. //
  4102. this.myTableLayoutPanel1.SetColumnSpan(this.con2312, 4);
  4103. this.con2312.Dock = System.Windows.Forms.DockStyle.Fill;
  4104. this.con2312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4105. this.con2312.Location = new System.Drawing.Point(323, 56);
  4106. this.con2312.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4107. this.con2312.Name = "con2312";
  4108. this.myTableLayoutPanel1.SetRowSpan(this.con2312, 2);
  4109. this.con2312.Size = new System.Drawing.Size(61, 28);
  4110. this.con2312.TabIndex = 642;
  4111. //
  4112. // con2313
  4113. //
  4114. this.myTableLayoutPanel1.SetColumnSpan(this.con2313, 4);
  4115. this.con2313.Dock = System.Windows.Forms.DockStyle.Fill;
  4116. this.con2313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4117. this.con2313.Location = new System.Drawing.Point(323, 84);
  4118. this.con2313.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4119. this.con2313.Name = "con2313";
  4120. this.myTableLayoutPanel1.SetRowSpan(this.con2313, 2);
  4121. this.con2313.Size = new System.Drawing.Size(61, 25);
  4122. this.con2313.TabIndex = 641;
  4123. //
  4124. // con2314
  4125. //
  4126. this.myTableLayoutPanel1.SetColumnSpan(this.con2314, 4);
  4127. this.con2314.Dock = System.Windows.Forms.DockStyle.Fill;
  4128. this.con2314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4129. this.con2314.Location = new System.Drawing.Point(323, 109);
  4130. this.con2314.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4131. this.con2314.Name = "con2314";
  4132. this.myTableLayoutPanel1.SetRowSpan(this.con2314, 2);
  4133. this.con2314.Size = new System.Drawing.Size(61, 31);
  4134. this.con2314.TabIndex = 643;
  4135. //
  4136. // con2315
  4137. //
  4138. this.myTableLayoutPanel1.SetColumnSpan(this.con2315, 4);
  4139. this.con2315.Dock = System.Windows.Forms.DockStyle.Fill;
  4140. this.con2315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4141. this.con2315.Location = new System.Drawing.Point(323, 140);
  4142. this.con2315.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4143. this.con2315.Name = "con2315";
  4144. this.myTableLayoutPanel1.SetRowSpan(this.con2315, 2);
  4145. this.con2315.Size = new System.Drawing.Size(61, 28);
  4146. this.con2315.TabIndex = 644;
  4147. //
  4148. // con2316
  4149. //
  4150. this.myTableLayoutPanel1.SetColumnSpan(this.con2316, 4);
  4151. this.con2316.Dock = System.Windows.Forms.DockStyle.Fill;
  4152. this.con2316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4153. this.con2316.Location = new System.Drawing.Point(323, 168);
  4154. this.con2316.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4155. this.con2316.Name = "con2316";
  4156. this.myTableLayoutPanel1.SetRowSpan(this.con2316, 2);
  4157. this.con2316.Size = new System.Drawing.Size(61, 28);
  4158. this.con2316.TabIndex = 640;
  4159. //
  4160. // con2317
  4161. //
  4162. this.myTableLayoutPanel1.SetColumnSpan(this.con2317, 4);
  4163. this.con2317.Dock = System.Windows.Forms.DockStyle.Fill;
  4164. this.con2317.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4165. this.con2317.Location = new System.Drawing.Point(323, 196);
  4166. this.con2317.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4167. this.con2317.Name = "con2317";
  4168. this.myTableLayoutPanel1.SetRowSpan(this.con2317, 2);
  4169. this.con2317.Size = new System.Drawing.Size(61, 28);
  4170. this.con2317.TabIndex = 645;
  4171. //
  4172. // con2318
  4173. //
  4174. this.myTableLayoutPanel1.SetColumnSpan(this.con2318, 4);
  4175. this.con2318.Dock = System.Windows.Forms.DockStyle.Fill;
  4176. this.con2318.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4177. this.con2318.Location = new System.Drawing.Point(323, 224);
  4178. this.con2318.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4179. this.con2318.Name = "con2318";
  4180. this.myTableLayoutPanel1.SetRowSpan(this.con2318, 2);
  4181. this.con2318.Size = new System.Drawing.Size(61, 28);
  4182. this.con2318.TabIndex = 637;
  4183. //
  4184. // con2319
  4185. //
  4186. this.myTableLayoutPanel1.SetColumnSpan(this.con2319, 4);
  4187. this.con2319.Dock = System.Windows.Forms.DockStyle.Fill;
  4188. this.con2319.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4189. this.con2319.Location = new System.Drawing.Point(323, 252);
  4190. this.con2319.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  4191. this.con2319.Name = "con2319";
  4192. this.myTableLayoutPanel1.SetRowSpan(this.con2319, 2);
  4193. this.con2319.Size = new System.Drawing.Size(61, 28);
  4194. this.con2319.TabIndex = 639;
  4195. //
  4196. // con2320
  4197. //
  4198. this.myTableLayoutPanel1.SetColumnSpan(this.con2320, 4);
  4199. this.con2320.Dock = System.Windows.Forms.DockStyle.Fill;
  4200. this.con2320.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4201. this.con2320.Location = new System.Drawing.Point(323, 280);
  4202. this.con2320.Margin = new System.Windows.Forms.Padding(0, 0, 12, 0);
  4203. this.con2320.Name = "con2320";
  4204. this.myTableLayoutPanel1.SetRowSpan(this.con2320, 2);
  4205. this.con2320.Size = new System.Drawing.Size(64, 28);
  4206. this.con2320.TabIndex = 638;
  4207. //
  4208. // pnlDDJ1
  4209. //
  4210. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  4211. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4212. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4213. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4214. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  4215. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  4216. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  4217. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  4218. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  4219. this.pnlDDJ1.Controls.Add(this.label84);
  4220. this.pnlDDJ1.Controls.Add(this.label85);
  4221. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  4222. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  4223. this.pnlDDJ1.Controls.Add(this.label137);
  4224. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  4225. this.pnlDDJ1.Controls.Add(this.label139);
  4226. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  4227. this.pnlDDJ1.Controls.Add(this.label13);
  4228. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  4229. this.pnlDDJ1.Controls.Add(this.label10);
  4230. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  4231. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  4232. this.pnlDDJ1.Controls.Add(this.label5);
  4233. this.pnlDDJ1.Controls.Add(this.label3);
  4234. this.pnlDDJ1.Controls.Add(this.label2);
  4235. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  4236. this.pnlDDJ1.Controls.Add(this.G1);
  4237. this.pnlDDJ1.Controls.Add(this.R1);
  4238. this.pnlDDJ1.Location = new System.Drawing.Point(0, 4);
  4239. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4240. this.pnlDDJ1.Name = "pnlDDJ1";
  4241. this.pnlDDJ1.Size = new System.Drawing.Size(244, 374);
  4242. this.pnlDDJ1.TabIndex = 25;
  4243. //
  4244. // lblInStatus1
  4245. //
  4246. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  4247. this.lblInStatus1.Location = new System.Drawing.Point(8, 2);
  4248. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4249. this.lblInStatus1.Name = "lblInStatus1";
  4250. this.lblInStatus1.Size = new System.Drawing.Size(42, 36);
  4251. this.lblInStatus1.TabIndex = 94;
  4252. this.lblInStatus1.Tag = "1";
  4253. this.lblInStatus1.Text = "入";
  4254. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4255. //
  4256. // lblOutStatus1
  4257. //
  4258. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  4259. this.lblOutStatus1.Location = new System.Drawing.Point(190, 2);
  4260. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4261. this.lblOutStatus1.Name = "lblOutStatus1";
  4262. this.lblOutStatus1.Size = new System.Drawing.Size(42, 36);
  4263. this.lblOutStatus1.TabIndex = 93;
  4264. this.lblOutStatus1.Text = "出";
  4265. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4266. //
  4267. // lblDDJWarning1
  4268. //
  4269. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  4270. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4271. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  4272. this.lblDDJWarning1.Location = new System.Drawing.Point(8, 70);
  4273. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4274. this.lblDDJWarning1.Name = "lblDDJWarning1";
  4275. this.lblDDJWarning1.Size = new System.Drawing.Size(226, 36);
  4276. this.lblDDJWarning1.TabIndex = 92;
  4277. //
  4278. // ddjPosTo1
  4279. //
  4280. this.ddjPosTo1.AutoSize = true;
  4281. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  4282. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4283. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  4284. this.ddjPosTo1.Location = new System.Drawing.Point(134, 350);
  4285. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4286. this.ddjPosTo1.Name = "ddjPosTo1";
  4287. this.ddjPosTo1.Size = new System.Drawing.Size(35, 18);
  4288. this.ddjPosTo1.TabIndex = 73;
  4289. this.ddjPosTo1.Text = "---";
  4290. //
  4291. // ddjPosFrom1
  4292. //
  4293. this.ddjPosFrom1.AutoSize = true;
  4294. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  4295. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4296. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  4297. this.ddjPosFrom1.Location = new System.Drawing.Point(134, 318);
  4298. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4299. this.ddjPosFrom1.Name = "ddjPosFrom1";
  4300. this.ddjPosFrom1.Size = new System.Drawing.Size(35, 18);
  4301. this.ddjPosFrom1.TabIndex = 72;
  4302. this.ddjPosFrom1.Text = "---";
  4303. //
  4304. // label84
  4305. //
  4306. this.label84.AutoSize = true;
  4307. this.label84.BackColor = System.Drawing.Color.Transparent;
  4308. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4309. this.label84.Location = new System.Drawing.Point(4, 318);
  4310. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4311. this.label84.Name = "label84";
  4312. this.label84.Size = new System.Drawing.Size(98, 18);
  4313. this.label84.TabIndex = 71;
  4314. this.label84.Text = "起始位置:";
  4315. //
  4316. // label85
  4317. //
  4318. this.label85.AutoSize = true;
  4319. this.label85.BackColor = System.Drawing.Color.Transparent;
  4320. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4321. this.label85.Location = new System.Drawing.Point(4, 350);
  4322. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4323. this.label85.Name = "label85";
  4324. this.label85.Size = new System.Drawing.Size(98, 18);
  4325. this.label85.TabIndex = 70;
  4326. this.label85.Text = "目标位置:";
  4327. //
  4328. // ddjMode1
  4329. //
  4330. this.ddjMode1.AutoSize = true;
  4331. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  4332. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4333. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  4334. this.ddjMode1.Location = new System.Drawing.Point(130, 110);
  4335. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4336. this.ddjMode1.Name = "ddjMode1";
  4337. this.ddjMode1.Size = new System.Drawing.Size(35, 18);
  4338. this.ddjMode1.TabIndex = 12;
  4339. this.ddjMode1.Text = "---";
  4340. //
  4341. // ddjOrdId1
  4342. //
  4343. this.ddjOrdId1.AutoSize = true;
  4344. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  4345. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4346. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  4347. this.ddjOrdId1.Location = new System.Drawing.Point(130, 170);
  4348. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4349. this.ddjOrdId1.Name = "ddjOrdId1";
  4350. this.ddjOrdId1.Size = new System.Drawing.Size(35, 18);
  4351. this.ddjOrdId1.TabIndex = 64;
  4352. this.ddjOrdId1.Text = "---";
  4353. //
  4354. // label137
  4355. //
  4356. this.label137.AutoSize = true;
  4357. this.label137.BackColor = System.Drawing.Color.Transparent;
  4358. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4359. this.label137.Location = new System.Drawing.Point(3, 170);
  4360. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4361. this.label137.Name = "label137";
  4362. this.label137.Size = new System.Drawing.Size(98, 18);
  4363. this.label137.TabIndex = 63;
  4364. this.label137.Text = "工作指令:";
  4365. //
  4366. // ddjOptType1
  4367. //
  4368. this.ddjOptType1.AutoSize = true;
  4369. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  4370. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4371. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  4372. this.ddjOptType1.Location = new System.Drawing.Point(130, 194);
  4373. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4374. this.ddjOptType1.Name = "ddjOptType1";
  4375. this.ddjOptType1.Size = new System.Drawing.Size(35, 18);
  4376. this.ddjOptType1.TabIndex = 62;
  4377. this.ddjOptType1.Text = "---";
  4378. //
  4379. // label139
  4380. //
  4381. this.label139.AutoSize = true;
  4382. this.label139.BackColor = System.Drawing.Color.Transparent;
  4383. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4384. this.label139.Location = new System.Drawing.Point(3, 194);
  4385. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4386. this.label139.Name = "label139";
  4387. this.label139.Size = new System.Drawing.Size(98, 18);
  4388. this.label139.TabIndex = 61;
  4389. this.label139.Text = "作业类型:";
  4390. //
  4391. // ddjTotal_KM1
  4392. //
  4393. this.ddjTotal_KM1.AutoSize = true;
  4394. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  4395. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4396. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  4397. this.ddjTotal_KM1.Location = new System.Drawing.Point(132, 286);
  4398. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4399. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  4400. this.ddjTotal_KM1.Size = new System.Drawing.Size(35, 18);
  4401. this.ddjTotal_KM1.TabIndex = 16;
  4402. this.ddjTotal_KM1.Text = "---";
  4403. //
  4404. // label13
  4405. //
  4406. this.label13.AutoSize = true;
  4407. this.label13.BackColor = System.Drawing.Color.Transparent;
  4408. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4409. this.label13.Location = new System.Drawing.Point(3, 110);
  4410. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4411. this.label13.Name = "label13";
  4412. this.label13.Size = new System.Drawing.Size(98, 18);
  4413. this.label13.TabIndex = 15;
  4414. this.label13.Text = "工作模式:";
  4415. //
  4416. // ddjWorkTime1
  4417. //
  4418. this.ddjWorkTime1.AutoSize = true;
  4419. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  4420. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4421. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  4422. this.ddjWorkTime1.Location = new System.Drawing.Point(130, 254);
  4423. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4424. this.ddjWorkTime1.Name = "ddjWorkTime1";
  4425. this.ddjWorkTime1.Size = new System.Drawing.Size(35, 18);
  4426. this.ddjWorkTime1.TabIndex = 14;
  4427. this.ddjWorkTime1.Text = "---";
  4428. //
  4429. // label10
  4430. //
  4431. this.label10.AutoSize = true;
  4432. this.label10.BackColor = System.Drawing.Color.Transparent;
  4433. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4434. this.label10.Location = new System.Drawing.Point(3, 254);
  4435. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4436. this.label10.Name = "label10";
  4437. this.label10.Size = new System.Drawing.Size(98, 18);
  4438. this.label10.TabIndex = 13;
  4439. this.label10.Text = "运行时长:";
  4440. //
  4441. // ddjStatus1
  4442. //
  4443. this.ddjStatus1.AutoSize = true;
  4444. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  4445. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4446. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  4447. this.ddjStatus1.Location = new System.Drawing.Point(130, 142);
  4448. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4449. this.ddjStatus1.Name = "ddjStatus1";
  4450. this.ddjStatus1.Size = new System.Drawing.Size(35, 18);
  4451. this.ddjStatus1.TabIndex = 10;
  4452. this.ddjStatus1.Text = "---";
  4453. //
  4454. // ddjPosCurr1
  4455. //
  4456. this.ddjPosCurr1.AutoSize = true;
  4457. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  4458. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4459. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  4460. this.ddjPosCurr1.Location = new System.Drawing.Point(132, 226);
  4461. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4462. this.ddjPosCurr1.Name = "ddjPosCurr1";
  4463. this.ddjPosCurr1.Size = new System.Drawing.Size(35, 18);
  4464. this.ddjPosCurr1.TabIndex = 9;
  4465. this.ddjPosCurr1.Text = "---";
  4466. //
  4467. // label5
  4468. //
  4469. this.label5.AutoSize = true;
  4470. this.label5.BackColor = System.Drawing.Color.Transparent;
  4471. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4472. this.label5.Location = new System.Drawing.Point(3, 286);
  4473. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4474. this.label5.Name = "label5";
  4475. this.label5.Size = new System.Drawing.Size(98, 18);
  4476. this.label5.TabIndex = 8;
  4477. this.label5.Text = "里 程 数:";
  4478. //
  4479. // label3
  4480. //
  4481. this.label3.AutoSize = true;
  4482. this.label3.BackColor = System.Drawing.Color.Transparent;
  4483. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4484. this.label3.Location = new System.Drawing.Point(3, 138);
  4485. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4486. this.label3.Name = "label3";
  4487. this.label3.Size = new System.Drawing.Size(98, 18);
  4488. this.label3.TabIndex = 6;
  4489. this.label3.Text = "工作状态:";
  4490. //
  4491. // label2
  4492. //
  4493. this.label2.AutoSize = true;
  4494. this.label2.BackColor = System.Drawing.Color.Transparent;
  4495. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4496. this.label2.Location = new System.Drawing.Point(3, 226);
  4497. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4498. this.label2.Name = "label2";
  4499. this.label2.Size = new System.Drawing.Size(98, 18);
  4500. this.label2.TabIndex = 1;
  4501. this.label2.Text = "当前位置:";
  4502. //
  4503. // lblsrm01
  4504. //
  4505. this.lblsrm01.AutoSize = true;
  4506. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  4507. this.lblsrm01.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4508. this.lblsrm01.Location = new System.Drawing.Point(45, 38);
  4509. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4510. this.lblsrm01.Name = "lblsrm01";
  4511. this.lblsrm01.Size = new System.Drawing.Size(136, 24);
  4512. this.lblsrm01.TabIndex = 0;
  4513. this.lblsrm01.Text = "1号 堆垛机";
  4514. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  4515. //
  4516. // G1
  4517. //
  4518. this.G1.BackColor = System.Drawing.Color.Transparent;
  4519. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  4520. this.G1.InitialImage = null;
  4521. this.G1.Location = new System.Drawing.Point(99, -2);
  4522. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4523. this.G1.Name = "G1";
  4524. this.G1.Size = new System.Drawing.Size(39, 38);
  4525. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4526. this.G1.TabIndex = 65;
  4527. this.G1.TabStop = false;
  4528. this.G1.Tag = "1";
  4529. //
  4530. // R1
  4531. //
  4532. this.R1.BackColor = System.Drawing.Color.Transparent;
  4533. this.R1.Location = new System.Drawing.Point(98, -2);
  4534. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4535. this.R1.Name = "R1";
  4536. this.R1.Size = new System.Drawing.Size(39, 38);
  4537. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4538. this.R1.TabIndex = 5;
  4539. this.R1.TabStop = false;
  4540. //
  4541. // pnlDDJ2
  4542. //
  4543. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  4544. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4545. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4546. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4547. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  4548. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  4549. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  4550. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  4551. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  4552. this.pnlDDJ2.Controls.Add(this.label15);
  4553. this.pnlDDJ2.Controls.Add(this.label16);
  4554. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  4555. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  4556. this.pnlDDJ2.Controls.Add(this.label22);
  4557. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  4558. this.pnlDDJ2.Controls.Add(this.label26);
  4559. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  4560. this.pnlDDJ2.Controls.Add(this.label29);
  4561. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  4562. this.pnlDDJ2.Controls.Add(this.label32);
  4563. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  4564. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  4565. this.pnlDDJ2.Controls.Add(this.label83);
  4566. this.pnlDDJ2.Controls.Add(this.label86);
  4567. this.pnlDDJ2.Controls.Add(this.label87);
  4568. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  4569. this.pnlDDJ2.Controls.Add(this.G2);
  4570. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  4571. this.pnlDDJ2.Location = new System.Drawing.Point(252, 4);
  4572. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4573. this.pnlDDJ2.Name = "pnlDDJ2";
  4574. this.pnlDDJ2.Size = new System.Drawing.Size(244, 374);
  4575. this.pnlDDJ2.TabIndex = 26;
  4576. //
  4577. // lblInStatus2
  4578. //
  4579. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  4580. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  4581. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4582. this.lblInStatus2.Name = "lblInStatus2";
  4583. this.lblInStatus2.Size = new System.Drawing.Size(42, 36);
  4584. this.lblInStatus2.TabIndex = 95;
  4585. this.lblInStatus2.Tag = "2";
  4586. this.lblInStatus2.Text = "入";
  4587. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4588. //
  4589. // lblOutStatus2
  4590. //
  4591. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  4592. this.lblOutStatus2.Location = new System.Drawing.Point(190, 2);
  4593. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4594. this.lblOutStatus2.Name = "lblOutStatus2";
  4595. this.lblOutStatus2.Size = new System.Drawing.Size(42, 36);
  4596. this.lblOutStatus2.TabIndex = 94;
  4597. this.lblOutStatus2.Text = "出";
  4598. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4599. //
  4600. // lblDDJWarning2
  4601. //
  4602. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  4603. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4604. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  4605. this.lblDDJWarning2.Location = new System.Drawing.Point(6, 70);
  4606. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4607. this.lblDDJWarning2.Name = "lblDDJWarning2";
  4608. this.lblDDJWarning2.Size = new System.Drawing.Size(231, 36);
  4609. this.lblDDJWarning2.TabIndex = 93;
  4610. //
  4611. // ddjPosTo2
  4612. //
  4613. this.ddjPosTo2.AutoSize = true;
  4614. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  4615. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4616. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  4617. this.ddjPosTo2.Location = new System.Drawing.Point(138, 348);
  4618. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4619. this.ddjPosTo2.Name = "ddjPosTo2";
  4620. this.ddjPosTo2.Size = new System.Drawing.Size(35, 18);
  4621. this.ddjPosTo2.TabIndex = 91;
  4622. this.ddjPosTo2.Text = "---";
  4623. //
  4624. // ddjPosFrom2
  4625. //
  4626. this.ddjPosFrom2.AutoSize = true;
  4627. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  4628. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4629. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  4630. this.ddjPosFrom2.Location = new System.Drawing.Point(138, 314);
  4631. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4632. this.ddjPosFrom2.Name = "ddjPosFrom2";
  4633. this.ddjPosFrom2.Size = new System.Drawing.Size(35, 18);
  4634. this.ddjPosFrom2.TabIndex = 90;
  4635. this.ddjPosFrom2.Text = "---";
  4636. //
  4637. // label15
  4638. //
  4639. this.label15.AutoSize = true;
  4640. this.label15.BackColor = System.Drawing.Color.Transparent;
  4641. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4642. this.label15.Location = new System.Drawing.Point(6, 314);
  4643. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4644. this.label15.Name = "label15";
  4645. this.label15.Size = new System.Drawing.Size(98, 18);
  4646. this.label15.TabIndex = 89;
  4647. this.label15.Text = "起始位置:";
  4648. //
  4649. // label16
  4650. //
  4651. this.label16.AutoSize = true;
  4652. this.label16.BackColor = System.Drawing.Color.Transparent;
  4653. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4654. this.label16.Location = new System.Drawing.Point(6, 348);
  4655. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4656. this.label16.Name = "label16";
  4657. this.label16.Size = new System.Drawing.Size(98, 18);
  4658. this.label16.TabIndex = 88;
  4659. this.label16.Text = "目标位置:";
  4660. //
  4661. // ddjMode2
  4662. //
  4663. this.ddjMode2.AutoSize = true;
  4664. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  4665. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4666. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  4667. this.ddjMode2.Location = new System.Drawing.Point(135, 108);
  4668. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4669. this.ddjMode2.Name = "ddjMode2";
  4670. this.ddjMode2.Size = new System.Drawing.Size(35, 18);
  4671. this.ddjMode2.TabIndex = 79;
  4672. this.ddjMode2.Text = "---";
  4673. //
  4674. // ddjOrdId2
  4675. //
  4676. this.ddjOrdId2.AutoSize = true;
  4677. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  4678. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4679. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  4680. this.ddjOrdId2.Location = new System.Drawing.Point(135, 168);
  4681. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4682. this.ddjOrdId2.Name = "ddjOrdId2";
  4683. this.ddjOrdId2.Size = new System.Drawing.Size(35, 18);
  4684. this.ddjOrdId2.TabIndex = 87;
  4685. this.ddjOrdId2.Text = "---";
  4686. //
  4687. // label22
  4688. //
  4689. this.label22.AutoSize = true;
  4690. this.label22.BackColor = System.Drawing.Color.Transparent;
  4691. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4692. this.label22.Location = new System.Drawing.Point(6, 168);
  4693. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4694. this.label22.Name = "label22";
  4695. this.label22.Size = new System.Drawing.Size(98, 18);
  4696. this.label22.TabIndex = 86;
  4697. this.label22.Text = "工作指令:";
  4698. //
  4699. // ddjOptType2
  4700. //
  4701. this.ddjOptType2.AutoSize = true;
  4702. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  4703. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4704. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  4705. this.ddjOptType2.Location = new System.Drawing.Point(135, 194);
  4706. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4707. this.ddjOptType2.Name = "ddjOptType2";
  4708. this.ddjOptType2.Size = new System.Drawing.Size(35, 18);
  4709. this.ddjOptType2.TabIndex = 85;
  4710. this.ddjOptType2.Text = "---";
  4711. //
  4712. // label26
  4713. //
  4714. this.label26.AutoSize = true;
  4715. this.label26.BackColor = System.Drawing.Color.Transparent;
  4716. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4717. this.label26.Location = new System.Drawing.Point(6, 194);
  4718. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4719. this.label26.Name = "label26";
  4720. this.label26.Size = new System.Drawing.Size(98, 18);
  4721. this.label26.TabIndex = 84;
  4722. this.label26.Text = "作业类型:";
  4723. //
  4724. // ddjTotal_KM2
  4725. //
  4726. this.ddjTotal_KM2.AutoSize = true;
  4727. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  4728. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4729. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  4730. this.ddjTotal_KM2.Location = new System.Drawing.Point(136, 286);
  4731. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4732. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  4733. this.ddjTotal_KM2.Size = new System.Drawing.Size(35, 18);
  4734. this.ddjTotal_KM2.TabIndex = 83;
  4735. this.ddjTotal_KM2.Text = "---";
  4736. //
  4737. // label29
  4738. //
  4739. this.label29.AutoSize = true;
  4740. this.label29.BackColor = System.Drawing.Color.Transparent;
  4741. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4742. this.label29.Location = new System.Drawing.Point(6, 108);
  4743. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4744. this.label29.Name = "label29";
  4745. this.label29.Size = new System.Drawing.Size(98, 18);
  4746. this.label29.TabIndex = 82;
  4747. this.label29.Text = "工作模式:";
  4748. //
  4749. // ddjWorkTime2
  4750. //
  4751. this.ddjWorkTime2.AutoSize = true;
  4752. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  4753. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4754. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  4755. this.ddjWorkTime2.Location = new System.Drawing.Point(136, 254);
  4756. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4757. this.ddjWorkTime2.Name = "ddjWorkTime2";
  4758. this.ddjWorkTime2.Size = new System.Drawing.Size(35, 18);
  4759. this.ddjWorkTime2.TabIndex = 81;
  4760. this.ddjWorkTime2.Text = "---";
  4761. //
  4762. // label32
  4763. //
  4764. this.label32.AutoSize = true;
  4765. this.label32.BackColor = System.Drawing.Color.Transparent;
  4766. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4767. this.label32.Location = new System.Drawing.Point(6, 254);
  4768. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4769. this.label32.Name = "label32";
  4770. this.label32.Size = new System.Drawing.Size(98, 18);
  4771. this.label32.TabIndex = 80;
  4772. this.label32.Text = "运行时长:";
  4773. //
  4774. // ddjStatus2
  4775. //
  4776. this.ddjStatus2.AutoSize = true;
  4777. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  4778. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4779. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  4780. this.ddjStatus2.Location = new System.Drawing.Point(135, 134);
  4781. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4782. this.ddjStatus2.Name = "ddjStatus2";
  4783. this.ddjStatus2.Size = new System.Drawing.Size(35, 18);
  4784. this.ddjStatus2.TabIndex = 78;
  4785. this.ddjStatus2.Text = "---";
  4786. //
  4787. // ddjPosCurr2
  4788. //
  4789. this.ddjPosCurr2.AutoSize = true;
  4790. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  4791. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4792. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  4793. this.ddjPosCurr2.Location = new System.Drawing.Point(136, 222);
  4794. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4795. this.ddjPosCurr2.Name = "ddjPosCurr2";
  4796. this.ddjPosCurr2.Size = new System.Drawing.Size(35, 18);
  4797. this.ddjPosCurr2.TabIndex = 77;
  4798. this.ddjPosCurr2.Text = "---";
  4799. //
  4800. // label83
  4801. //
  4802. this.label83.AutoSize = true;
  4803. this.label83.BackColor = System.Drawing.Color.Transparent;
  4804. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4805. this.label83.Location = new System.Drawing.Point(6, 286);
  4806. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4807. this.label83.Name = "label83";
  4808. this.label83.Size = new System.Drawing.Size(98, 18);
  4809. this.label83.TabIndex = 76;
  4810. this.label83.Text = "里 程 数:";
  4811. //
  4812. // label86
  4813. //
  4814. this.label86.AutoSize = true;
  4815. this.label86.BackColor = System.Drawing.Color.Transparent;
  4816. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4817. this.label86.Location = new System.Drawing.Point(6, 134);
  4818. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4819. this.label86.Name = "label86";
  4820. this.label86.Size = new System.Drawing.Size(98, 18);
  4821. this.label86.TabIndex = 75;
  4822. this.label86.Text = "工作状态:";
  4823. //
  4824. // label87
  4825. //
  4826. this.label87.AutoSize = true;
  4827. this.label87.BackColor = System.Drawing.Color.Transparent;
  4828. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4829. this.label87.Location = new System.Drawing.Point(6, 222);
  4830. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4831. this.label87.Name = "label87";
  4832. this.label87.Size = new System.Drawing.Size(98, 18);
  4833. this.label87.TabIndex = 74;
  4834. this.label87.Text = "当前巷道:";
  4835. //
  4836. // lblsrm02
  4837. //
  4838. this.lblsrm02.AutoSize = true;
  4839. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  4840. this.lblsrm02.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4841. this.lblsrm02.Location = new System.Drawing.Point(57, 38);
  4842. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4843. this.lblsrm02.Name = "lblsrm02";
  4844. this.lblsrm02.Size = new System.Drawing.Size(136, 24);
  4845. this.lblsrm02.TabIndex = 0;
  4846. this.lblsrm02.Text = "2号 堆垛机";
  4847. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  4848. //
  4849. // G2
  4850. //
  4851. this.G2.BackColor = System.Drawing.Color.Transparent;
  4852. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  4853. this.G2.Location = new System.Drawing.Point(102, -2);
  4854. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4855. this.G2.Name = "G2";
  4856. this.G2.Size = new System.Drawing.Size(39, 38);
  4857. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4858. this.G2.TabIndex = 65;
  4859. this.G2.TabStop = false;
  4860. this.G2.Tag = "1";
  4861. //
  4862. // pictureBox6
  4863. //
  4864. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  4865. this.pictureBox6.Location = new System.Drawing.Point(102, -2);
  4866. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4867. this.pictureBox6.Name = "pictureBox6";
  4868. this.pictureBox6.Size = new System.Drawing.Size(39, 38);
  4869. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4870. this.pictureBox6.TabIndex = 5;
  4871. this.pictureBox6.TabStop = false;
  4872. //
  4873. // pnlDDJ3
  4874. //
  4875. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  4876. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4877. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4878. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4879. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  4880. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  4881. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  4882. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  4883. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  4884. this.pnlDDJ3.Controls.Add(this.label43);
  4885. this.pnlDDJ3.Controls.Add(this.label51);
  4886. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  4887. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  4888. this.pnlDDJ3.Controls.Add(this.label55);
  4889. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  4890. this.pnlDDJ3.Controls.Add(this.label57);
  4891. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  4892. this.pnlDDJ3.Controls.Add(this.label59);
  4893. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  4894. this.pnlDDJ3.Controls.Add(this.label61);
  4895. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  4896. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  4897. this.pnlDDJ3.Controls.Add(this.label64);
  4898. this.pnlDDJ3.Controls.Add(this.label65);
  4899. this.pnlDDJ3.Controls.Add(this.label66);
  4900. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  4901. this.pnlDDJ3.Controls.Add(this.G3);
  4902. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  4903. this.pnlDDJ3.Location = new System.Drawing.Point(504, 4);
  4904. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4905. this.pnlDDJ3.Name = "pnlDDJ3";
  4906. this.pnlDDJ3.Size = new System.Drawing.Size(244, 374);
  4907. this.pnlDDJ3.TabIndex = 28;
  4908. //
  4909. // lblInStatus3
  4910. //
  4911. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  4912. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  4913. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4914. this.lblInStatus3.Name = "lblInStatus3";
  4915. this.lblInStatus3.Size = new System.Drawing.Size(42, 36);
  4916. this.lblInStatus3.TabIndex = 96;
  4917. this.lblInStatus3.Tag = "3";
  4918. this.lblInStatus3.Text = "入";
  4919. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4920. //
  4921. // lblOutStatus3
  4922. //
  4923. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  4924. this.lblOutStatus3.Location = new System.Drawing.Point(194, 2);
  4925. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4926. this.lblOutStatus3.Name = "lblOutStatus3";
  4927. this.lblOutStatus3.Size = new System.Drawing.Size(42, 36);
  4928. this.lblOutStatus3.TabIndex = 94;
  4929. this.lblOutStatus3.Text = "出";
  4930. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4931. //
  4932. // lblDDJWarning3
  4933. //
  4934. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  4935. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4936. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  4937. this.lblDDJWarning3.Location = new System.Drawing.Point(8, 70);
  4938. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4939. this.lblDDJWarning3.Name = "lblDDJWarning3";
  4940. this.lblDDJWarning3.Size = new System.Drawing.Size(226, 36);
  4941. this.lblDDJWarning3.TabIndex = 92;
  4942. //
  4943. // ddjPosTo3
  4944. //
  4945. this.ddjPosTo3.AutoSize = true;
  4946. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  4947. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4948. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  4949. this.ddjPosTo3.Location = new System.Drawing.Point(134, 350);
  4950. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4951. this.ddjPosTo3.Name = "ddjPosTo3";
  4952. this.ddjPosTo3.Size = new System.Drawing.Size(35, 18);
  4953. this.ddjPosTo3.TabIndex = 73;
  4954. this.ddjPosTo3.Text = "---";
  4955. //
  4956. // ddjPosFrom3
  4957. //
  4958. this.ddjPosFrom3.AutoSize = true;
  4959. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  4960. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4961. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  4962. this.ddjPosFrom3.Location = new System.Drawing.Point(134, 318);
  4963. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4964. this.ddjPosFrom3.Name = "ddjPosFrom3";
  4965. this.ddjPosFrom3.Size = new System.Drawing.Size(35, 18);
  4966. this.ddjPosFrom3.TabIndex = 72;
  4967. this.ddjPosFrom3.Text = "---";
  4968. //
  4969. // label43
  4970. //
  4971. this.label43.AutoSize = true;
  4972. this.label43.BackColor = System.Drawing.Color.Transparent;
  4973. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4974. this.label43.Location = new System.Drawing.Point(4, 318);
  4975. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4976. this.label43.Name = "label43";
  4977. this.label43.Size = new System.Drawing.Size(98, 18);
  4978. this.label43.TabIndex = 71;
  4979. this.label43.Text = "起始位置:";
  4980. //
  4981. // label51
  4982. //
  4983. this.label51.AutoSize = true;
  4984. this.label51.BackColor = System.Drawing.Color.Transparent;
  4985. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4986. this.label51.Location = new System.Drawing.Point(4, 350);
  4987. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4988. this.label51.Name = "label51";
  4989. this.label51.Size = new System.Drawing.Size(98, 18);
  4990. this.label51.TabIndex = 70;
  4991. this.label51.Text = "目标位置:";
  4992. //
  4993. // ddjMode3
  4994. //
  4995. this.ddjMode3.AutoSize = true;
  4996. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  4997. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4998. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  4999. this.ddjMode3.Location = new System.Drawing.Point(130, 110);
  5000. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5001. this.ddjMode3.Name = "ddjMode3";
  5002. this.ddjMode3.Size = new System.Drawing.Size(35, 18);
  5003. this.ddjMode3.TabIndex = 12;
  5004. this.ddjMode3.Text = "---";
  5005. //
  5006. // ddjOrdId3
  5007. //
  5008. this.ddjOrdId3.AutoSize = true;
  5009. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  5010. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5011. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  5012. this.ddjOrdId3.Location = new System.Drawing.Point(130, 170);
  5013. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5014. this.ddjOrdId3.Name = "ddjOrdId3";
  5015. this.ddjOrdId3.Size = new System.Drawing.Size(35, 18);
  5016. this.ddjOrdId3.TabIndex = 64;
  5017. this.ddjOrdId3.Text = "---";
  5018. //
  5019. // label55
  5020. //
  5021. this.label55.AutoSize = true;
  5022. this.label55.BackColor = System.Drawing.Color.Transparent;
  5023. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5024. this.label55.Location = new System.Drawing.Point(3, 170);
  5025. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5026. this.label55.Name = "label55";
  5027. this.label55.Size = new System.Drawing.Size(98, 18);
  5028. this.label55.TabIndex = 63;
  5029. this.label55.Text = "工作指令:";
  5030. //
  5031. // ddjOptType3
  5032. //
  5033. this.ddjOptType3.AutoSize = true;
  5034. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  5035. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5036. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  5037. this.ddjOptType3.Location = new System.Drawing.Point(130, 194);
  5038. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5039. this.ddjOptType3.Name = "ddjOptType3";
  5040. this.ddjOptType3.Size = new System.Drawing.Size(35, 18);
  5041. this.ddjOptType3.TabIndex = 62;
  5042. this.ddjOptType3.Text = "---";
  5043. //
  5044. // label57
  5045. //
  5046. this.label57.AutoSize = true;
  5047. this.label57.BackColor = System.Drawing.Color.Transparent;
  5048. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5049. this.label57.Location = new System.Drawing.Point(3, 194);
  5050. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5051. this.label57.Name = "label57";
  5052. this.label57.Size = new System.Drawing.Size(98, 18);
  5053. this.label57.TabIndex = 61;
  5054. this.label57.Text = "作业类型:";
  5055. //
  5056. // ddjTotal_KM3
  5057. //
  5058. this.ddjTotal_KM3.AutoSize = true;
  5059. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  5060. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5061. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  5062. this.ddjTotal_KM3.Location = new System.Drawing.Point(132, 286);
  5063. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5064. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  5065. this.ddjTotal_KM3.Size = new System.Drawing.Size(35, 18);
  5066. this.ddjTotal_KM3.TabIndex = 16;
  5067. this.ddjTotal_KM3.Text = "---";
  5068. //
  5069. // label59
  5070. //
  5071. this.label59.AutoSize = true;
  5072. this.label59.BackColor = System.Drawing.Color.Transparent;
  5073. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5074. this.label59.Location = new System.Drawing.Point(3, 110);
  5075. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5076. this.label59.Name = "label59";
  5077. this.label59.Size = new System.Drawing.Size(98, 18);
  5078. this.label59.TabIndex = 15;
  5079. this.label59.Text = "工作模式:";
  5080. //
  5081. // ddjWorkTime3
  5082. //
  5083. this.ddjWorkTime3.AutoSize = true;
  5084. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  5085. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5086. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  5087. this.ddjWorkTime3.Location = new System.Drawing.Point(132, 254);
  5088. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5089. this.ddjWorkTime3.Name = "ddjWorkTime3";
  5090. this.ddjWorkTime3.Size = new System.Drawing.Size(35, 18);
  5091. this.ddjWorkTime3.TabIndex = 14;
  5092. this.ddjWorkTime3.Text = "---";
  5093. //
  5094. // label61
  5095. //
  5096. this.label61.AutoSize = true;
  5097. this.label61.BackColor = System.Drawing.Color.Transparent;
  5098. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5099. this.label61.Location = new System.Drawing.Point(3, 254);
  5100. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5101. this.label61.Name = "label61";
  5102. this.label61.Size = new System.Drawing.Size(98, 18);
  5103. this.label61.TabIndex = 13;
  5104. this.label61.Text = "运行时长:";
  5105. //
  5106. // ddjStatus3
  5107. //
  5108. this.ddjStatus3.AutoSize = true;
  5109. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  5110. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5111. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  5112. this.ddjStatus3.Location = new System.Drawing.Point(130, 142);
  5113. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5114. this.ddjStatus3.Name = "ddjStatus3";
  5115. this.ddjStatus3.Size = new System.Drawing.Size(35, 18);
  5116. this.ddjStatus3.TabIndex = 10;
  5117. this.ddjStatus3.Text = "---";
  5118. //
  5119. // ddjPosCurr3
  5120. //
  5121. this.ddjPosCurr3.AutoSize = true;
  5122. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  5123. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5124. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  5125. this.ddjPosCurr3.Location = new System.Drawing.Point(132, 226);
  5126. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5127. this.ddjPosCurr3.Name = "ddjPosCurr3";
  5128. this.ddjPosCurr3.Size = new System.Drawing.Size(35, 18);
  5129. this.ddjPosCurr3.TabIndex = 9;
  5130. this.ddjPosCurr3.Text = "---";
  5131. //
  5132. // label64
  5133. //
  5134. this.label64.AutoSize = true;
  5135. this.label64.BackColor = System.Drawing.Color.Transparent;
  5136. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5137. this.label64.Location = new System.Drawing.Point(3, 286);
  5138. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5139. this.label64.Name = "label64";
  5140. this.label64.Size = new System.Drawing.Size(98, 18);
  5141. this.label64.TabIndex = 8;
  5142. this.label64.Text = "里 程 数:";
  5143. //
  5144. // label65
  5145. //
  5146. this.label65.AutoSize = true;
  5147. this.label65.BackColor = System.Drawing.Color.Transparent;
  5148. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5149. this.label65.Location = new System.Drawing.Point(3, 138);
  5150. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5151. this.label65.Name = "label65";
  5152. this.label65.Size = new System.Drawing.Size(98, 18);
  5153. this.label65.TabIndex = 6;
  5154. this.label65.Text = "工作状态:";
  5155. //
  5156. // label66
  5157. //
  5158. this.label66.AutoSize = true;
  5159. this.label66.BackColor = System.Drawing.Color.Transparent;
  5160. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5161. this.label66.Location = new System.Drawing.Point(3, 226);
  5162. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5163. this.label66.Name = "label66";
  5164. this.label66.Size = new System.Drawing.Size(98, 18);
  5165. this.label66.TabIndex = 1;
  5166. this.label66.Text = "当前巷道:";
  5167. //
  5168. // lblsrm03
  5169. //
  5170. this.lblsrm03.AutoSize = true;
  5171. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  5172. this.lblsrm03.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5173. this.lblsrm03.Location = new System.Drawing.Point(45, 38);
  5174. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5175. this.lblsrm03.Name = "lblsrm03";
  5176. this.lblsrm03.Size = new System.Drawing.Size(136, 24);
  5177. this.lblsrm03.TabIndex = 0;
  5178. this.lblsrm03.Text = "3号 堆垛机";
  5179. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  5180. //
  5181. // G3
  5182. //
  5183. this.G3.BackColor = System.Drawing.Color.Transparent;
  5184. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  5185. this.G3.Location = new System.Drawing.Point(99, -2);
  5186. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5187. this.G3.Name = "G3";
  5188. this.G3.Size = new System.Drawing.Size(39, 38);
  5189. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5190. this.G3.TabIndex = 65;
  5191. this.G3.TabStop = false;
  5192. this.G3.Tag = "1";
  5193. //
  5194. // pictureBox10
  5195. //
  5196. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  5197. this.pictureBox10.Location = new System.Drawing.Point(98, -2);
  5198. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5199. this.pictureBox10.Name = "pictureBox10";
  5200. this.pictureBox10.Size = new System.Drawing.Size(39, 38);
  5201. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5202. this.pictureBox10.TabIndex = 5;
  5203. this.pictureBox10.TabStop = false;
  5204. //
  5205. // pnlDDJ4
  5206. //
  5207. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  5208. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5209. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5210. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5211. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  5212. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  5213. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  5214. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  5215. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  5216. this.pnlDDJ4.Controls.Add(this.label71);
  5217. this.pnlDDJ4.Controls.Add(this.label72);
  5218. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  5219. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  5220. this.pnlDDJ4.Controls.Add(this.label75);
  5221. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  5222. this.pnlDDJ4.Controls.Add(this.label77);
  5223. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  5224. this.pnlDDJ4.Controls.Add(this.label79);
  5225. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  5226. this.pnlDDJ4.Controls.Add(this.label81);
  5227. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  5228. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  5229. this.pnlDDJ4.Controls.Add(this.label89);
  5230. this.pnlDDJ4.Controls.Add(this.label90);
  5231. this.pnlDDJ4.Controls.Add(this.label91);
  5232. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  5233. this.pnlDDJ4.Controls.Add(this.G4);
  5234. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  5235. this.pnlDDJ4.Location = new System.Drawing.Point(756, 2);
  5236. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5237. this.pnlDDJ4.Name = "pnlDDJ4";
  5238. this.pnlDDJ4.Size = new System.Drawing.Size(244, 374);
  5239. this.pnlDDJ4.TabIndex = 29;
  5240. //
  5241. // lblInStatus4
  5242. //
  5243. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  5244. this.lblInStatus4.Location = new System.Drawing.Point(8, 2);
  5245. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5246. this.lblInStatus4.Name = "lblInStatus4";
  5247. this.lblInStatus4.Size = new System.Drawing.Size(42, 36);
  5248. this.lblInStatus4.TabIndex = 97;
  5249. this.lblInStatus4.Tag = "4";
  5250. this.lblInStatus4.Text = "入";
  5251. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5252. //
  5253. // lblOutStatus4
  5254. //
  5255. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  5256. this.lblOutStatus4.Location = new System.Drawing.Point(186, 2);
  5257. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5258. this.lblOutStatus4.Name = "lblOutStatus4";
  5259. this.lblOutStatus4.Size = new System.Drawing.Size(42, 36);
  5260. this.lblOutStatus4.TabIndex = 94;
  5261. this.lblOutStatus4.Text = "出";
  5262. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5263. //
  5264. // lblDDJWarning4
  5265. //
  5266. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  5267. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5268. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  5269. this.lblDDJWarning4.Location = new System.Drawing.Point(8, 70);
  5270. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5271. this.lblDDJWarning4.Name = "lblDDJWarning4";
  5272. this.lblDDJWarning4.Size = new System.Drawing.Size(226, 36);
  5273. this.lblDDJWarning4.TabIndex = 92;
  5274. //
  5275. // ddjPosTo4
  5276. //
  5277. this.ddjPosTo4.AutoSize = true;
  5278. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  5279. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5280. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  5281. this.ddjPosTo4.Location = new System.Drawing.Point(134, 350);
  5282. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5283. this.ddjPosTo4.Name = "ddjPosTo4";
  5284. this.ddjPosTo4.Size = new System.Drawing.Size(35, 18);
  5285. this.ddjPosTo4.TabIndex = 73;
  5286. this.ddjPosTo4.Text = "---";
  5287. //
  5288. // ddjPosFrom4
  5289. //
  5290. this.ddjPosFrom4.AutoSize = true;
  5291. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  5292. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5293. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  5294. this.ddjPosFrom4.Location = new System.Drawing.Point(134, 318);
  5295. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5296. this.ddjPosFrom4.Name = "ddjPosFrom4";
  5297. this.ddjPosFrom4.Size = new System.Drawing.Size(35, 18);
  5298. this.ddjPosFrom4.TabIndex = 72;
  5299. this.ddjPosFrom4.Text = "---";
  5300. //
  5301. // label71
  5302. //
  5303. this.label71.AutoSize = true;
  5304. this.label71.BackColor = System.Drawing.Color.Transparent;
  5305. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5306. this.label71.Location = new System.Drawing.Point(4, 318);
  5307. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5308. this.label71.Name = "label71";
  5309. this.label71.Size = new System.Drawing.Size(98, 18);
  5310. this.label71.TabIndex = 71;
  5311. this.label71.Text = "起始位置:";
  5312. //
  5313. // label72
  5314. //
  5315. this.label72.AutoSize = true;
  5316. this.label72.BackColor = System.Drawing.Color.Transparent;
  5317. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5318. this.label72.Location = new System.Drawing.Point(4, 350);
  5319. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5320. this.label72.Name = "label72";
  5321. this.label72.Size = new System.Drawing.Size(98, 18);
  5322. this.label72.TabIndex = 70;
  5323. this.label72.Text = "目标位置:";
  5324. //
  5325. // ddjMode4
  5326. //
  5327. this.ddjMode4.AutoSize = true;
  5328. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  5329. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5330. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  5331. this.ddjMode4.Location = new System.Drawing.Point(130, 110);
  5332. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5333. this.ddjMode4.Name = "ddjMode4";
  5334. this.ddjMode4.Size = new System.Drawing.Size(35, 18);
  5335. this.ddjMode4.TabIndex = 12;
  5336. this.ddjMode4.Text = "---";
  5337. //
  5338. // ddjOrdId4
  5339. //
  5340. this.ddjOrdId4.AutoSize = true;
  5341. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  5342. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5343. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  5344. this.ddjOrdId4.Location = new System.Drawing.Point(130, 170);
  5345. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5346. this.ddjOrdId4.Name = "ddjOrdId4";
  5347. this.ddjOrdId4.Size = new System.Drawing.Size(35, 18);
  5348. this.ddjOrdId4.TabIndex = 64;
  5349. this.ddjOrdId4.Text = "---";
  5350. //
  5351. // label75
  5352. //
  5353. this.label75.AutoSize = true;
  5354. this.label75.BackColor = System.Drawing.Color.Transparent;
  5355. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5356. this.label75.Location = new System.Drawing.Point(3, 170);
  5357. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5358. this.label75.Name = "label75";
  5359. this.label75.Size = new System.Drawing.Size(98, 18);
  5360. this.label75.TabIndex = 63;
  5361. this.label75.Text = "工作指令:";
  5362. //
  5363. // ddjOptType4
  5364. //
  5365. this.ddjOptType4.AutoSize = true;
  5366. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  5367. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5368. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  5369. this.ddjOptType4.Location = new System.Drawing.Point(130, 194);
  5370. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5371. this.ddjOptType4.Name = "ddjOptType4";
  5372. this.ddjOptType4.Size = new System.Drawing.Size(35, 18);
  5373. this.ddjOptType4.TabIndex = 62;
  5374. this.ddjOptType4.Text = "---";
  5375. //
  5376. // label77
  5377. //
  5378. this.label77.AutoSize = true;
  5379. this.label77.BackColor = System.Drawing.Color.Transparent;
  5380. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5381. this.label77.Location = new System.Drawing.Point(3, 194);
  5382. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5383. this.label77.Name = "label77";
  5384. this.label77.Size = new System.Drawing.Size(98, 18);
  5385. this.label77.TabIndex = 61;
  5386. this.label77.Text = "作业类型:";
  5387. //
  5388. // ddjTotal_KM4
  5389. //
  5390. this.ddjTotal_KM4.AutoSize = true;
  5391. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  5392. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5393. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  5394. this.ddjTotal_KM4.Location = new System.Drawing.Point(132, 286);
  5395. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5396. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  5397. this.ddjTotal_KM4.Size = new System.Drawing.Size(35, 18);
  5398. this.ddjTotal_KM4.TabIndex = 16;
  5399. this.ddjTotal_KM4.Text = "---";
  5400. //
  5401. // label79
  5402. //
  5403. this.label79.AutoSize = true;
  5404. this.label79.BackColor = System.Drawing.Color.Transparent;
  5405. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5406. this.label79.Location = new System.Drawing.Point(3, 110);
  5407. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5408. this.label79.Name = "label79";
  5409. this.label79.Size = new System.Drawing.Size(98, 18);
  5410. this.label79.TabIndex = 15;
  5411. this.label79.Text = "工作模式:";
  5412. //
  5413. // ddjWorkTime4
  5414. //
  5415. this.ddjWorkTime4.AutoSize = true;
  5416. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  5417. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5418. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  5419. this.ddjWorkTime4.Location = new System.Drawing.Point(132, 254);
  5420. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5421. this.ddjWorkTime4.Name = "ddjWorkTime4";
  5422. this.ddjWorkTime4.Size = new System.Drawing.Size(35, 18);
  5423. this.ddjWorkTime4.TabIndex = 14;
  5424. this.ddjWorkTime4.Text = "---";
  5425. //
  5426. // label81
  5427. //
  5428. this.label81.AutoSize = true;
  5429. this.label81.BackColor = System.Drawing.Color.Transparent;
  5430. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5431. this.label81.Location = new System.Drawing.Point(3, 254);
  5432. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5433. this.label81.Name = "label81";
  5434. this.label81.Size = new System.Drawing.Size(98, 18);
  5435. this.label81.TabIndex = 13;
  5436. this.label81.Text = "运行时长:";
  5437. //
  5438. // ddjStatus4
  5439. //
  5440. this.ddjStatus4.AutoSize = true;
  5441. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  5442. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5443. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  5444. this.ddjStatus4.Location = new System.Drawing.Point(130, 138);
  5445. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5446. this.ddjStatus4.Name = "ddjStatus4";
  5447. this.ddjStatus4.Size = new System.Drawing.Size(35, 18);
  5448. this.ddjStatus4.TabIndex = 10;
  5449. this.ddjStatus4.Text = "---";
  5450. //
  5451. // ddjPosCurr4
  5452. //
  5453. this.ddjPosCurr4.AutoSize = true;
  5454. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5455. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5456. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5457. this.ddjPosCurr4.Location = new System.Drawing.Point(132, 226);
  5458. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5459. this.ddjPosCurr4.Name = "ddjPosCurr4";
  5460. this.ddjPosCurr4.Size = new System.Drawing.Size(35, 18);
  5461. this.ddjPosCurr4.TabIndex = 9;
  5462. this.ddjPosCurr4.Text = "---";
  5463. //
  5464. // label89
  5465. //
  5466. this.label89.AutoSize = true;
  5467. this.label89.BackColor = System.Drawing.Color.Transparent;
  5468. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5469. this.label89.Location = new System.Drawing.Point(3, 286);
  5470. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5471. this.label89.Name = "label89";
  5472. this.label89.Size = new System.Drawing.Size(98, 18);
  5473. this.label89.TabIndex = 8;
  5474. this.label89.Text = "里 程 数:";
  5475. //
  5476. // label90
  5477. //
  5478. this.label90.AutoSize = true;
  5479. this.label90.BackColor = System.Drawing.Color.Transparent;
  5480. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5481. this.label90.Location = new System.Drawing.Point(3, 138);
  5482. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5483. this.label90.Name = "label90";
  5484. this.label90.Size = new System.Drawing.Size(98, 18);
  5485. this.label90.TabIndex = 6;
  5486. this.label90.Text = "工作状态:";
  5487. //
  5488. // label91
  5489. //
  5490. this.label91.AutoSize = true;
  5491. this.label91.BackColor = System.Drawing.Color.Transparent;
  5492. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5493. this.label91.Location = new System.Drawing.Point(3, 226);
  5494. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5495. this.label91.Name = "label91";
  5496. this.label91.Size = new System.Drawing.Size(98, 18);
  5497. this.label91.TabIndex = 1;
  5498. this.label91.Text = "当前巷道:";
  5499. //
  5500. // lblsrm04
  5501. //
  5502. this.lblsrm04.AutoSize = true;
  5503. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  5504. this.lblsrm04.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5505. this.lblsrm04.Location = new System.Drawing.Point(45, 38);
  5506. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5507. this.lblsrm04.Name = "lblsrm04";
  5508. this.lblsrm04.Size = new System.Drawing.Size(136, 24);
  5509. this.lblsrm04.TabIndex = 0;
  5510. this.lblsrm04.Text = "4号 堆垛机";
  5511. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  5512. //
  5513. // G4
  5514. //
  5515. this.G4.BackColor = System.Drawing.Color.Transparent;
  5516. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  5517. this.G4.Location = new System.Drawing.Point(99, -2);
  5518. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5519. this.G4.Name = "G4";
  5520. this.G4.Size = new System.Drawing.Size(39, 38);
  5521. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5522. this.G4.TabIndex = 65;
  5523. this.G4.TabStop = false;
  5524. this.G4.Tag = "1";
  5525. //
  5526. // pictureBox14
  5527. //
  5528. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  5529. this.pictureBox14.Location = new System.Drawing.Point(98, -2);
  5530. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5531. this.pictureBox14.Name = "pictureBox14";
  5532. this.pictureBox14.Size = new System.Drawing.Size(39, 38);
  5533. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5534. this.pictureBox14.TabIndex = 5;
  5535. this.pictureBox14.TabStop = false;
  5536. //
  5537. // myPanel1
  5538. //
  5539. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  5540. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5541. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5542. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5543. this.myPanel1.Controls.Add(this.lblInStatus5);
  5544. this.myPanel1.Controls.Add(this.lblOutStatus5);
  5545. this.myPanel1.Controls.Add(this.label11);
  5546. this.myPanel1.Controls.Add(this.ddjPosTo5);
  5547. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  5548. this.myPanel1.Controls.Add(this.label17);
  5549. this.myPanel1.Controls.Add(this.label18);
  5550. this.myPanel1.Controls.Add(this.ddjMode5);
  5551. this.myPanel1.Controls.Add(this.ddjOrdId5);
  5552. this.myPanel1.Controls.Add(this.label21);
  5553. this.myPanel1.Controls.Add(this.ddjOptType5);
  5554. this.myPanel1.Controls.Add(this.label24);
  5555. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  5556. this.myPanel1.Controls.Add(this.label27);
  5557. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  5558. this.myPanel1.Controls.Add(this.label30);
  5559. this.myPanel1.Controls.Add(this.ddjStatus5);
  5560. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  5561. this.myPanel1.Controls.Add(this.label36);
  5562. this.myPanel1.Controls.Add(this.label37);
  5563. this.myPanel1.Controls.Add(this.label38);
  5564. this.myPanel1.Controls.Add(this.lblsrm05);
  5565. this.myPanel1.Controls.Add(this.G5);
  5566. this.myPanel1.Controls.Add(this.pictureBox3);
  5567. this.myPanel1.Location = new System.Drawing.Point(1008, 2);
  5568. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5569. this.myPanel1.Name = "myPanel1";
  5570. this.myPanel1.Size = new System.Drawing.Size(244, 374);
  5571. this.myPanel1.TabIndex = 30;
  5572. //
  5573. // lblInStatus5
  5574. //
  5575. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  5576. this.lblInStatus5.Location = new System.Drawing.Point(8, 2);
  5577. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5578. this.lblInStatus5.Name = "lblInStatus5";
  5579. this.lblInStatus5.Size = new System.Drawing.Size(42, 36);
  5580. this.lblInStatus5.TabIndex = 97;
  5581. this.lblInStatus5.Tag = "4";
  5582. this.lblInStatus5.Text = "入";
  5583. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5584. //
  5585. // lblOutStatus5
  5586. //
  5587. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  5588. this.lblOutStatus5.Location = new System.Drawing.Point(186, 2);
  5589. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5590. this.lblOutStatus5.Name = "lblOutStatus5";
  5591. this.lblOutStatus5.Size = new System.Drawing.Size(42, 36);
  5592. this.lblOutStatus5.TabIndex = 94;
  5593. this.lblOutStatus5.Text = "出";
  5594. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5595. //
  5596. // label11
  5597. //
  5598. this.label11.BackColor = System.Drawing.Color.Transparent;
  5599. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5600. this.label11.ForeColor = System.Drawing.Color.Red;
  5601. this.label11.Location = new System.Drawing.Point(8, 70);
  5602. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5603. this.label11.Name = "label11";
  5604. this.label11.Size = new System.Drawing.Size(226, 36);
  5605. this.label11.TabIndex = 92;
  5606. //
  5607. // ddjPosTo5
  5608. //
  5609. this.ddjPosTo5.AutoSize = true;
  5610. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  5611. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5612. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  5613. this.ddjPosTo5.Location = new System.Drawing.Point(134, 350);
  5614. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5615. this.ddjPosTo5.Name = "ddjPosTo5";
  5616. this.ddjPosTo5.Size = new System.Drawing.Size(35, 18);
  5617. this.ddjPosTo5.TabIndex = 73;
  5618. this.ddjPosTo5.Text = "---";
  5619. //
  5620. // ddjPosFrom5
  5621. //
  5622. this.ddjPosFrom5.AutoSize = true;
  5623. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  5624. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5625. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  5626. this.ddjPosFrom5.Location = new System.Drawing.Point(134, 318);
  5627. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5628. this.ddjPosFrom5.Name = "ddjPosFrom5";
  5629. this.ddjPosFrom5.Size = new System.Drawing.Size(35, 18);
  5630. this.ddjPosFrom5.TabIndex = 72;
  5631. this.ddjPosFrom5.Text = "---";
  5632. //
  5633. // label17
  5634. //
  5635. this.label17.AutoSize = true;
  5636. this.label17.BackColor = System.Drawing.Color.Transparent;
  5637. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5638. this.label17.Location = new System.Drawing.Point(4, 318);
  5639. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5640. this.label17.Name = "label17";
  5641. this.label17.Size = new System.Drawing.Size(98, 18);
  5642. this.label17.TabIndex = 71;
  5643. this.label17.Text = "起始位置:";
  5644. //
  5645. // label18
  5646. //
  5647. this.label18.AutoSize = true;
  5648. this.label18.BackColor = System.Drawing.Color.Transparent;
  5649. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5650. this.label18.Location = new System.Drawing.Point(4, 350);
  5651. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5652. this.label18.Name = "label18";
  5653. this.label18.Size = new System.Drawing.Size(98, 18);
  5654. this.label18.TabIndex = 70;
  5655. this.label18.Text = "目标位置:";
  5656. //
  5657. // ddjMode5
  5658. //
  5659. this.ddjMode5.AutoSize = true;
  5660. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  5661. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5662. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  5663. this.ddjMode5.Location = new System.Drawing.Point(130, 110);
  5664. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5665. this.ddjMode5.Name = "ddjMode5";
  5666. this.ddjMode5.Size = new System.Drawing.Size(35, 18);
  5667. this.ddjMode5.TabIndex = 12;
  5668. this.ddjMode5.Text = "---";
  5669. //
  5670. // ddjOrdId5
  5671. //
  5672. this.ddjOrdId5.AutoSize = true;
  5673. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  5674. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5675. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  5676. this.ddjOrdId5.Location = new System.Drawing.Point(130, 170);
  5677. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5678. this.ddjOrdId5.Name = "ddjOrdId5";
  5679. this.ddjOrdId5.Size = new System.Drawing.Size(35, 18);
  5680. this.ddjOrdId5.TabIndex = 64;
  5681. this.ddjOrdId5.Text = "---";
  5682. //
  5683. // label21
  5684. //
  5685. this.label21.AutoSize = true;
  5686. this.label21.BackColor = System.Drawing.Color.Transparent;
  5687. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5688. this.label21.Location = new System.Drawing.Point(3, 170);
  5689. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5690. this.label21.Name = "label21";
  5691. this.label21.Size = new System.Drawing.Size(98, 18);
  5692. this.label21.TabIndex = 63;
  5693. this.label21.Text = "工作指令:";
  5694. //
  5695. // ddjOptType5
  5696. //
  5697. this.ddjOptType5.AutoSize = true;
  5698. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  5699. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5700. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  5701. this.ddjOptType5.Location = new System.Drawing.Point(130, 194);
  5702. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5703. this.ddjOptType5.Name = "ddjOptType5";
  5704. this.ddjOptType5.Size = new System.Drawing.Size(35, 18);
  5705. this.ddjOptType5.TabIndex = 62;
  5706. this.ddjOptType5.Text = "---";
  5707. //
  5708. // label24
  5709. //
  5710. this.label24.AutoSize = true;
  5711. this.label24.BackColor = System.Drawing.Color.Transparent;
  5712. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5713. this.label24.Location = new System.Drawing.Point(3, 194);
  5714. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5715. this.label24.Name = "label24";
  5716. this.label24.Size = new System.Drawing.Size(98, 18);
  5717. this.label24.TabIndex = 61;
  5718. this.label24.Text = "作业类型:";
  5719. //
  5720. // ddjTotal_KM5
  5721. //
  5722. this.ddjTotal_KM5.AutoSize = true;
  5723. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  5724. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5725. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  5726. this.ddjTotal_KM5.Location = new System.Drawing.Point(132, 286);
  5727. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5728. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  5729. this.ddjTotal_KM5.Size = new System.Drawing.Size(35, 18);
  5730. this.ddjTotal_KM5.TabIndex = 16;
  5731. this.ddjTotal_KM5.Text = "---";
  5732. //
  5733. // label27
  5734. //
  5735. this.label27.AutoSize = true;
  5736. this.label27.BackColor = System.Drawing.Color.Transparent;
  5737. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5738. this.label27.Location = new System.Drawing.Point(3, 110);
  5739. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5740. this.label27.Name = "label27";
  5741. this.label27.Size = new System.Drawing.Size(98, 18);
  5742. this.label27.TabIndex = 15;
  5743. this.label27.Text = "工作模式:";
  5744. //
  5745. // ddjWorkTime5
  5746. //
  5747. this.ddjWorkTime5.AutoSize = true;
  5748. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  5749. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5750. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  5751. this.ddjWorkTime5.Location = new System.Drawing.Point(132, 254);
  5752. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5753. this.ddjWorkTime5.Name = "ddjWorkTime5";
  5754. this.ddjWorkTime5.Size = new System.Drawing.Size(35, 18);
  5755. this.ddjWorkTime5.TabIndex = 14;
  5756. this.ddjWorkTime5.Text = "---";
  5757. //
  5758. // label30
  5759. //
  5760. this.label30.AutoSize = true;
  5761. this.label30.BackColor = System.Drawing.Color.Transparent;
  5762. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5763. this.label30.Location = new System.Drawing.Point(3, 254);
  5764. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5765. this.label30.Name = "label30";
  5766. this.label30.Size = new System.Drawing.Size(98, 18);
  5767. this.label30.TabIndex = 13;
  5768. this.label30.Text = "运行时长:";
  5769. //
  5770. // ddjStatus5
  5771. //
  5772. this.ddjStatus5.AutoSize = true;
  5773. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  5774. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5775. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  5776. this.ddjStatus5.Location = new System.Drawing.Point(130, 138);
  5777. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5778. this.ddjStatus5.Name = "ddjStatus5";
  5779. this.ddjStatus5.Size = new System.Drawing.Size(35, 18);
  5780. this.ddjStatus5.TabIndex = 10;
  5781. this.ddjStatus5.Text = "---";
  5782. //
  5783. // ddjPosCurr5
  5784. //
  5785. this.ddjPosCurr5.AutoSize = true;
  5786. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  5787. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5788. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  5789. this.ddjPosCurr5.Location = new System.Drawing.Point(132, 226);
  5790. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5791. this.ddjPosCurr5.Name = "ddjPosCurr5";
  5792. this.ddjPosCurr5.Size = new System.Drawing.Size(35, 18);
  5793. this.ddjPosCurr5.TabIndex = 9;
  5794. this.ddjPosCurr5.Text = "---";
  5795. //
  5796. // label36
  5797. //
  5798. this.label36.AutoSize = true;
  5799. this.label36.BackColor = System.Drawing.Color.Transparent;
  5800. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5801. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  5802. this.label36.Location = new System.Drawing.Point(3, 286);
  5803. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5804. this.label36.Name = "label36";
  5805. this.label36.Size = new System.Drawing.Size(98, 18);
  5806. this.label36.TabIndex = 8;
  5807. this.label36.Text = "里 程 数:";
  5808. //
  5809. // label37
  5810. //
  5811. this.label37.AutoSize = true;
  5812. this.label37.BackColor = System.Drawing.Color.Transparent;
  5813. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5814. this.label37.Location = new System.Drawing.Point(3, 138);
  5815. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5816. this.label37.Name = "label37";
  5817. this.label37.Size = new System.Drawing.Size(98, 18);
  5818. this.label37.TabIndex = 6;
  5819. this.label37.Text = "工作状态:";
  5820. //
  5821. // label38
  5822. //
  5823. this.label38.AutoSize = true;
  5824. this.label38.BackColor = System.Drawing.Color.Transparent;
  5825. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5826. this.label38.Location = new System.Drawing.Point(3, 226);
  5827. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5828. this.label38.Name = "label38";
  5829. this.label38.Size = new System.Drawing.Size(98, 18);
  5830. this.label38.TabIndex = 1;
  5831. this.label38.Text = "当前巷道:";
  5832. //
  5833. // lblsrm05
  5834. //
  5835. this.lblsrm05.AutoSize = true;
  5836. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  5837. this.lblsrm05.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5838. this.lblsrm05.Location = new System.Drawing.Point(45, 38);
  5839. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5840. this.lblsrm05.Name = "lblsrm05";
  5841. this.lblsrm05.Size = new System.Drawing.Size(136, 24);
  5842. this.lblsrm05.TabIndex = 0;
  5843. this.lblsrm05.Text = "5号 堆垛机";
  5844. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  5845. //
  5846. // G5
  5847. //
  5848. this.G5.BackColor = System.Drawing.Color.Transparent;
  5849. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  5850. this.G5.Location = new System.Drawing.Point(99, -2);
  5851. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5852. this.G5.Name = "G5";
  5853. this.G5.Size = new System.Drawing.Size(39, 38);
  5854. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5855. this.G5.TabIndex = 65;
  5856. this.G5.TabStop = false;
  5857. this.G5.Tag = "1";
  5858. //
  5859. // pictureBox3
  5860. //
  5861. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  5862. this.pictureBox3.Location = new System.Drawing.Point(98, -2);
  5863. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5864. this.pictureBox3.Name = "pictureBox3";
  5865. this.pictureBox3.Size = new System.Drawing.Size(39, 38);
  5866. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5867. this.pictureBox3.TabIndex = 5;
  5868. this.pictureBox3.TabStop = false;
  5869. //
  5870. // pnlRGV1089
  5871. //
  5872. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  5873. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5874. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5875. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5876. this.pnlRGV1089.Controls.Add(this.label7);
  5877. this.pnlRGV1089.Controls.Add(this.label8);
  5878. this.pnlRGV1089.Controls.Add(this.label9);
  5879. this.pnlRGV1089.Controls.Add(this.rgvOptType2);
  5880. this.pnlRGV1089.Controls.Add(this.label31);
  5881. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  5882. this.pnlRGV1089.Controls.Add(this.rgvPosCurr2);
  5883. this.pnlRGV1089.Controls.Add(this.rgvMode2);
  5884. this.pnlRGV1089.Controls.Add(this.rgvOrdId2);
  5885. this.pnlRGV1089.Controls.Add(this.label50);
  5886. this.pnlRGV1089.Controls.Add(this.rgvPosTo2);
  5887. this.pnlRGV1089.Controls.Add(this.label53);
  5888. this.pnlRGV1089.Controls.Add(this.rgvPosFrom2);
  5889. this.pnlRGV1089.Controls.Add(this.rgvStatus2);
  5890. this.pnlRGV1089.Controls.Add(this.label63);
  5891. this.pnlRGV1089.Controls.Add(this.lblrgv1089);
  5892. this.pnlRGV1089.Controls.Add(this.GV2);
  5893. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  5894. this.pnlRGV1089.Location = new System.Drawing.Point(1504, 5);
  5895. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5896. this.pnlRGV1089.Name = "pnlRGV1089";
  5897. this.pnlRGV1089.Size = new System.Drawing.Size(244, 374);
  5898. this.pnlRGV1089.TabIndex = 99;
  5899. //
  5900. // label7
  5901. //
  5902. this.label7.AutoSize = true;
  5903. this.label7.BackColor = System.Drawing.Color.Transparent;
  5904. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5905. this.label7.Location = new System.Drawing.Point(6, 293);
  5906. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5907. this.label7.Name = "label7";
  5908. this.label7.Size = new System.Drawing.Size(98, 18);
  5909. this.label7.TabIndex = 106;
  5910. this.label7.Text = "光电状态:";
  5911. //
  5912. // label8
  5913. //
  5914. this.label8.AutoSize = true;
  5915. this.label8.BackColor = System.Drawing.Color.Transparent;
  5916. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5917. this.label8.Location = new System.Drawing.Point(4, 229);
  5918. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5919. this.label8.Name = "label8";
  5920. this.label8.Size = new System.Drawing.Size(98, 18);
  5921. this.label8.TabIndex = 105;
  5922. this.label8.Text = "起始地址:";
  5923. //
  5924. // label9
  5925. //
  5926. this.label9.AutoSize = true;
  5927. this.label9.BackColor = System.Drawing.Color.Transparent;
  5928. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5929. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  5930. this.label9.Location = new System.Drawing.Point(4, 259);
  5931. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5932. this.label9.Name = "label9";
  5933. this.label9.Size = new System.Drawing.Size(98, 18);
  5934. this.label9.TabIndex = 104;
  5935. this.label9.Text = "目标地址:";
  5936. //
  5937. // rgvOptType2
  5938. //
  5939. this.rgvOptType2.AutoSize = true;
  5940. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  5941. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5942. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  5943. this.rgvOptType2.Location = new System.Drawing.Point(108, 199);
  5944. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5945. this.rgvOptType2.Name = "rgvOptType2";
  5946. this.rgvOptType2.Size = new System.Drawing.Size(35, 18);
  5947. this.rgvOptType2.TabIndex = 101;
  5948. this.rgvOptType2.Text = "---";
  5949. //
  5950. // label31
  5951. //
  5952. this.label31.AutoSize = true;
  5953. this.label31.BackColor = System.Drawing.Color.Transparent;
  5954. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5955. this.label31.Location = new System.Drawing.Point(3, 199);
  5956. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5957. this.label31.Name = "label31";
  5958. this.label31.Size = new System.Drawing.Size(98, 18);
  5959. this.label31.TabIndex = 100;
  5960. this.label31.Text = "作业类型:";
  5961. //
  5962. // lblRGVWarning1089
  5963. //
  5964. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  5965. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5966. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  5967. this.lblRGVWarning1089.Location = new System.Drawing.Point(8, 70);
  5968. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5969. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  5970. this.lblRGVWarning1089.Size = new System.Drawing.Size(226, 36);
  5971. this.lblRGVWarning1089.TabIndex = 92;
  5972. //
  5973. // rgvPosCurr2
  5974. //
  5975. this.rgvPosCurr2.AutoSize = true;
  5976. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  5977. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5978. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  5979. this.rgvPosCurr2.Location = new System.Drawing.Point(107, 293);
  5980. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5981. this.rgvPosCurr2.Name = "rgvPosCurr2";
  5982. this.rgvPosCurr2.Size = new System.Drawing.Size(35, 18);
  5983. this.rgvPosCurr2.TabIndex = 72;
  5984. this.rgvPosCurr2.Text = "---";
  5985. //
  5986. // rgvMode2
  5987. //
  5988. this.rgvMode2.AutoSize = true;
  5989. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  5990. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5991. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  5992. this.rgvMode2.Location = new System.Drawing.Point(108, 110);
  5993. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5994. this.rgvMode2.Name = "rgvMode2";
  5995. this.rgvMode2.Size = new System.Drawing.Size(35, 18);
  5996. this.rgvMode2.TabIndex = 12;
  5997. this.rgvMode2.Text = "---";
  5998. //
  5999. // rgvOrdId2
  6000. //
  6001. this.rgvOrdId2.AutoSize = true;
  6002. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  6003. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6004. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  6005. this.rgvOrdId2.Location = new System.Drawing.Point(108, 170);
  6006. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6007. this.rgvOrdId2.Name = "rgvOrdId2";
  6008. this.rgvOrdId2.Size = new System.Drawing.Size(35, 18);
  6009. this.rgvOrdId2.TabIndex = 64;
  6010. this.rgvOrdId2.Text = "---";
  6011. //
  6012. // label50
  6013. //
  6014. this.label50.AutoSize = true;
  6015. this.label50.BackColor = System.Drawing.Color.Transparent;
  6016. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6017. this.label50.Location = new System.Drawing.Point(3, 170);
  6018. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6019. this.label50.Name = "label50";
  6020. this.label50.Size = new System.Drawing.Size(98, 18);
  6021. this.label50.TabIndex = 63;
  6022. this.label50.Text = "工作指令:";
  6023. //
  6024. // rgvPosTo2
  6025. //
  6026. this.rgvPosTo2.AutoSize = true;
  6027. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  6028. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6029. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  6030. this.rgvPosTo2.Location = new System.Drawing.Point(105, 259);
  6031. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6032. this.rgvPosTo2.Name = "rgvPosTo2";
  6033. this.rgvPosTo2.Size = new System.Drawing.Size(35, 18);
  6034. this.rgvPosTo2.TabIndex = 16;
  6035. this.rgvPosTo2.Text = "---";
  6036. //
  6037. // label53
  6038. //
  6039. this.label53.AutoSize = true;
  6040. this.label53.BackColor = System.Drawing.Color.Transparent;
  6041. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6042. this.label53.Location = new System.Drawing.Point(3, 110);
  6043. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6044. this.label53.Name = "label53";
  6045. this.label53.Size = new System.Drawing.Size(98, 18);
  6046. this.label53.TabIndex = 15;
  6047. this.label53.Text = "工作模式:";
  6048. //
  6049. // rgvPosFrom2
  6050. //
  6051. this.rgvPosFrom2.AutoSize = true;
  6052. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  6053. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6054. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  6055. this.rgvPosFrom2.Location = new System.Drawing.Point(105, 229);
  6056. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6057. this.rgvPosFrom2.Name = "rgvPosFrom2";
  6058. this.rgvPosFrom2.Size = new System.Drawing.Size(35, 18);
  6059. this.rgvPosFrom2.TabIndex = 14;
  6060. this.rgvPosFrom2.Text = "---";
  6061. //
  6062. // rgvStatus2
  6063. //
  6064. this.rgvStatus2.AutoSize = true;
  6065. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  6066. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6067. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  6068. this.rgvStatus2.Location = new System.Drawing.Point(108, 138);
  6069. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6070. this.rgvStatus2.Name = "rgvStatus2";
  6071. this.rgvStatus2.Size = new System.Drawing.Size(35, 18);
  6072. this.rgvStatus2.TabIndex = 10;
  6073. this.rgvStatus2.Text = "---";
  6074. //
  6075. // label63
  6076. //
  6077. this.label63.AutoSize = true;
  6078. this.label63.BackColor = System.Drawing.Color.Transparent;
  6079. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6080. this.label63.Location = new System.Drawing.Point(3, 138);
  6081. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6082. this.label63.Name = "label63";
  6083. this.label63.Size = new System.Drawing.Size(98, 18);
  6084. this.label63.TabIndex = 6;
  6085. this.label63.Text = "工作状态:";
  6086. //
  6087. // lblrgv1089
  6088. //
  6089. this.lblrgv1089.AutoSize = true;
  6090. this.lblrgv1089.BackColor = System.Drawing.Color.Transparent;
  6091. this.lblrgv1089.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6092. this.lblrgv1089.Location = new System.Drawing.Point(66, 38);
  6093. this.lblrgv1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6094. this.lblrgv1089.Name = "lblrgv1089";
  6095. this.lblrgv1089.Size = new System.Drawing.Size(62, 24);
  6096. this.lblrgv1089.TabIndex = 0;
  6097. this.lblrgv1089.Text = "RGV2";
  6098. this.lblrgv1089.Click += new System.EventHandler(this.lblsrm01_Click);
  6099. //
  6100. // GV2
  6101. //
  6102. this.GV2.BackColor = System.Drawing.Color.Transparent;
  6103. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  6104. this.GV2.Location = new System.Drawing.Point(99, -2);
  6105. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6106. this.GV2.Name = "GV2";
  6107. this.GV2.Size = new System.Drawing.Size(39, 38);
  6108. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6109. this.GV2.TabIndex = 65;
  6110. this.GV2.TabStop = false;
  6111. this.GV2.Tag = "1";
  6112. //
  6113. // pictureBox4
  6114. //
  6115. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  6116. this.pictureBox4.Location = new System.Drawing.Point(98, -2);
  6117. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6118. this.pictureBox4.Name = "pictureBox4";
  6119. this.pictureBox4.Size = new System.Drawing.Size(39, 38);
  6120. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6121. this.pictureBox4.TabIndex = 5;
  6122. this.pictureBox4.TabStop = false;
  6123. //
  6124. // pnlRGV1091
  6125. //
  6126. this.pnlRGV1091.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1091.BackgroundImage")));
  6127. this.pnlRGV1091.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6128. this.pnlRGV1091.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6129. this.pnlRGV1091.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6130. this.pnlRGV1091.Controls.Add(this.label14);
  6131. this.pnlRGV1091.Controls.Add(this.label19);
  6132. this.pnlRGV1091.Controls.Add(this.label20);
  6133. this.pnlRGV1091.Controls.Add(this.rgvOptType3);
  6134. this.pnlRGV1091.Controls.Add(this.label74);
  6135. this.pnlRGV1091.Controls.Add(this.lblRGVWarning1091);
  6136. this.pnlRGV1091.Controls.Add(this.rgvPosCurr3);
  6137. this.pnlRGV1091.Controls.Add(this.rgvMode3);
  6138. this.pnlRGV1091.Controls.Add(this.rgvOrdId3);
  6139. this.pnlRGV1091.Controls.Add(this.label94);
  6140. this.pnlRGV1091.Controls.Add(this.rgvPosTo3);
  6141. this.pnlRGV1091.Controls.Add(this.label96);
  6142. this.pnlRGV1091.Controls.Add(this.rgvPosFrom3);
  6143. this.pnlRGV1091.Controls.Add(this.rgvStatus3);
  6144. this.pnlRGV1091.Controls.Add(this.label102);
  6145. this.pnlRGV1091.Controls.Add(this.lblrgv1091);
  6146. this.pnlRGV1091.Controls.Add(this.GV3);
  6147. this.pnlRGV1091.Controls.Add(this.pictureBox7);
  6148. this.pnlRGV1091.Location = new System.Drawing.Point(1751, 4);
  6149. this.pnlRGV1091.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6150. this.pnlRGV1091.Name = "pnlRGV1091";
  6151. this.pnlRGV1091.Size = new System.Drawing.Size(244, 374);
  6152. this.pnlRGV1091.TabIndex = 104;
  6153. //
  6154. // label14
  6155. //
  6156. this.label14.AutoSize = true;
  6157. this.label14.BackColor = System.Drawing.Color.Transparent;
  6158. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6159. this.label14.Location = new System.Drawing.Point(4, 289);
  6160. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6161. this.label14.Name = "label14";
  6162. this.label14.Size = new System.Drawing.Size(98, 18);
  6163. this.label14.TabIndex = 106;
  6164. this.label14.Text = "光电状态:";
  6165. //
  6166. // label19
  6167. //
  6168. this.label19.AutoSize = true;
  6169. this.label19.BackColor = System.Drawing.Color.Transparent;
  6170. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6171. this.label19.Location = new System.Drawing.Point(3, 227);
  6172. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6173. this.label19.Name = "label19";
  6174. this.label19.Size = new System.Drawing.Size(98, 18);
  6175. this.label19.TabIndex = 105;
  6176. this.label19.Text = "起始地址:";
  6177. //
  6178. // label20
  6179. //
  6180. this.label20.AutoSize = true;
  6181. this.label20.BackColor = System.Drawing.Color.Transparent;
  6182. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6183. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  6184. this.label20.Location = new System.Drawing.Point(3, 257);
  6185. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6186. this.label20.Name = "label20";
  6187. this.label20.Size = new System.Drawing.Size(98, 18);
  6188. this.label20.TabIndex = 104;
  6189. this.label20.Text = "目标地址:";
  6190. //
  6191. // rgvOptType3
  6192. //
  6193. this.rgvOptType3.AutoSize = true;
  6194. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  6195. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6196. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  6197. this.rgvOptType3.Location = new System.Drawing.Point(108, 199);
  6198. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6199. this.rgvOptType3.Name = "rgvOptType3";
  6200. this.rgvOptType3.Size = new System.Drawing.Size(35, 18);
  6201. this.rgvOptType3.TabIndex = 101;
  6202. this.rgvOptType3.Text = "---";
  6203. //
  6204. // label74
  6205. //
  6206. this.label74.AutoSize = true;
  6207. this.label74.BackColor = System.Drawing.Color.Transparent;
  6208. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6209. this.label74.Location = new System.Drawing.Point(3, 199);
  6210. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6211. this.label74.Name = "label74";
  6212. this.label74.Size = new System.Drawing.Size(98, 18);
  6213. this.label74.TabIndex = 100;
  6214. this.label74.Text = "作业类型:";
  6215. //
  6216. // lblRGVWarning1091
  6217. //
  6218. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  6219. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6220. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  6221. this.lblRGVWarning1091.Location = new System.Drawing.Point(8, 70);
  6222. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6223. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  6224. this.lblRGVWarning1091.Size = new System.Drawing.Size(226, 36);
  6225. this.lblRGVWarning1091.TabIndex = 92;
  6226. //
  6227. // rgvPosCurr3
  6228. //
  6229. this.rgvPosCurr3.AutoSize = true;
  6230. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  6231. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6232. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  6233. this.rgvPosCurr3.Location = new System.Drawing.Point(111, 290);
  6234. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6235. this.rgvPosCurr3.Name = "rgvPosCurr3";
  6236. this.rgvPosCurr3.Size = new System.Drawing.Size(35, 18);
  6237. this.rgvPosCurr3.TabIndex = 72;
  6238. this.rgvPosCurr3.Text = "---";
  6239. //
  6240. // rgvMode3
  6241. //
  6242. this.rgvMode3.AutoSize = true;
  6243. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  6244. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6245. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  6246. this.rgvMode3.Location = new System.Drawing.Point(108, 110);
  6247. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6248. this.rgvMode3.Name = "rgvMode3";
  6249. this.rgvMode3.Size = new System.Drawing.Size(35, 18);
  6250. this.rgvMode3.TabIndex = 12;
  6251. this.rgvMode3.Text = "---";
  6252. //
  6253. // rgvOrdId3
  6254. //
  6255. this.rgvOrdId3.AutoSize = true;
  6256. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  6257. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6258. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  6259. this.rgvOrdId3.Location = new System.Drawing.Point(108, 170);
  6260. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6261. this.rgvOrdId3.Name = "rgvOrdId3";
  6262. this.rgvOrdId3.Size = new System.Drawing.Size(35, 18);
  6263. this.rgvOrdId3.TabIndex = 64;
  6264. this.rgvOrdId3.Text = "---";
  6265. //
  6266. // label94
  6267. //
  6268. this.label94.AutoSize = true;
  6269. this.label94.BackColor = System.Drawing.Color.Transparent;
  6270. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6271. this.label94.Location = new System.Drawing.Point(3, 170);
  6272. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6273. this.label94.Name = "label94";
  6274. this.label94.Size = new System.Drawing.Size(98, 18);
  6275. this.label94.TabIndex = 63;
  6276. this.label94.Text = "工作指令:";
  6277. //
  6278. // rgvPosTo3
  6279. //
  6280. this.rgvPosTo3.AutoSize = true;
  6281. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  6282. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6283. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  6284. this.rgvPosTo3.Location = new System.Drawing.Point(109, 258);
  6285. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6286. this.rgvPosTo3.Name = "rgvPosTo3";
  6287. this.rgvPosTo3.Size = new System.Drawing.Size(35, 18);
  6288. this.rgvPosTo3.TabIndex = 16;
  6289. this.rgvPosTo3.Text = "---";
  6290. //
  6291. // label96
  6292. //
  6293. this.label96.AutoSize = true;
  6294. this.label96.BackColor = System.Drawing.Color.Transparent;
  6295. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6296. this.label96.Location = new System.Drawing.Point(3, 110);
  6297. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6298. this.label96.Name = "label96";
  6299. this.label96.Size = new System.Drawing.Size(98, 18);
  6300. this.label96.TabIndex = 15;
  6301. this.label96.Text = "工作模式:";
  6302. //
  6303. // rgvPosFrom3
  6304. //
  6305. this.rgvPosFrom3.AutoSize = true;
  6306. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  6307. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6308. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  6309. this.rgvPosFrom3.Location = new System.Drawing.Point(109, 228);
  6310. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6311. this.rgvPosFrom3.Name = "rgvPosFrom3";
  6312. this.rgvPosFrom3.Size = new System.Drawing.Size(35, 18);
  6313. this.rgvPosFrom3.TabIndex = 14;
  6314. this.rgvPosFrom3.Text = "---";
  6315. //
  6316. // rgvStatus3
  6317. //
  6318. this.rgvStatus3.AutoSize = true;
  6319. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  6320. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6321. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  6322. this.rgvStatus3.Location = new System.Drawing.Point(108, 138);
  6323. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6324. this.rgvStatus3.Name = "rgvStatus3";
  6325. this.rgvStatus3.Size = new System.Drawing.Size(35, 18);
  6326. this.rgvStatus3.TabIndex = 10;
  6327. this.rgvStatus3.Text = "---";
  6328. //
  6329. // label102
  6330. //
  6331. this.label102.AutoSize = true;
  6332. this.label102.BackColor = System.Drawing.Color.Transparent;
  6333. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6334. this.label102.Location = new System.Drawing.Point(3, 138);
  6335. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6336. this.label102.Name = "label102";
  6337. this.label102.Size = new System.Drawing.Size(98, 18);
  6338. this.label102.TabIndex = 6;
  6339. this.label102.Text = "工作状态:";
  6340. //
  6341. // lblrgv1091
  6342. //
  6343. this.lblrgv1091.AutoSize = true;
  6344. this.lblrgv1091.BackColor = System.Drawing.Color.Transparent;
  6345. this.lblrgv1091.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6346. this.lblrgv1091.Location = new System.Drawing.Point(66, 38);
  6347. this.lblrgv1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6348. this.lblrgv1091.Name = "lblrgv1091";
  6349. this.lblrgv1091.Size = new System.Drawing.Size(62, 24);
  6350. this.lblrgv1091.TabIndex = 0;
  6351. this.lblrgv1091.Text = "RGV3";
  6352. this.lblrgv1091.Click += new System.EventHandler(this.lblsrm01_Click);
  6353. //
  6354. // GV3
  6355. //
  6356. this.GV3.BackColor = System.Drawing.Color.Transparent;
  6357. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  6358. this.GV3.Location = new System.Drawing.Point(99, -2);
  6359. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6360. this.GV3.Name = "GV3";
  6361. this.GV3.Size = new System.Drawing.Size(39, 38);
  6362. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6363. this.GV3.TabIndex = 65;
  6364. this.GV3.TabStop = false;
  6365. this.GV3.Tag = "1";
  6366. //
  6367. // pictureBox7
  6368. //
  6369. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  6370. this.pictureBox7.Location = new System.Drawing.Point(98, -2);
  6371. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6372. this.pictureBox7.Name = "pictureBox7";
  6373. this.pictureBox7.Size = new System.Drawing.Size(39, 38);
  6374. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6375. this.pictureBox7.TabIndex = 5;
  6376. this.pictureBox7.TabStop = false;
  6377. //
  6378. // myPanel5
  6379. //
  6380. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  6381. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6382. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6383. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6384. this.myPanel5.Controls.Add(this.label25);
  6385. this.myPanel5.Controls.Add(this.label35);
  6386. this.myPanel5.Controls.Add(this.label39);
  6387. this.myPanel5.Controls.Add(this.rgvOptType4);
  6388. this.myPanel5.Controls.Add(this.label173);
  6389. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  6390. this.myPanel5.Controls.Add(this.rgvPosCurr4);
  6391. this.myPanel5.Controls.Add(this.rgvMode4);
  6392. this.myPanel5.Controls.Add(this.rgvOrdId4);
  6393. this.myPanel5.Controls.Add(this.label181);
  6394. this.myPanel5.Controls.Add(this.rgvPosTo4);
  6395. this.myPanel5.Controls.Add(this.label183);
  6396. this.myPanel5.Controls.Add(this.rgvPosFrom4);
  6397. this.myPanel5.Controls.Add(this.rgvStatus4);
  6398. this.myPanel5.Controls.Add(this.label189);
  6399. this.myPanel5.Controls.Add(this.lblrgv1007);
  6400. this.myPanel5.Controls.Add(this.GV4);
  6401. this.myPanel5.Controls.Add(this.pictureBox17);
  6402. this.myPanel5.Location = new System.Drawing.Point(1998, 5);
  6403. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6404. this.myPanel5.Name = "myPanel5";
  6405. this.myPanel5.Size = new System.Drawing.Size(244, 374);
  6406. this.myPanel5.TabIndex = 107;
  6407. //
  6408. // label25
  6409. //
  6410. this.label25.AutoSize = true;
  6411. this.label25.BackColor = System.Drawing.Color.Transparent;
  6412. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6413. this.label25.Location = new System.Drawing.Point(6, 290);
  6414. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6415. this.label25.Name = "label25";
  6416. this.label25.Size = new System.Drawing.Size(98, 18);
  6417. this.label25.TabIndex = 106;
  6418. this.label25.Text = "光电状态:";
  6419. //
  6420. // label35
  6421. //
  6422. this.label35.AutoSize = true;
  6423. this.label35.BackColor = System.Drawing.Color.Transparent;
  6424. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6425. this.label35.Location = new System.Drawing.Point(4, 228);
  6426. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6427. this.label35.Name = "label35";
  6428. this.label35.Size = new System.Drawing.Size(98, 18);
  6429. this.label35.TabIndex = 105;
  6430. this.label35.Text = "起始地址:";
  6431. //
  6432. // label39
  6433. //
  6434. this.label39.AutoSize = true;
  6435. this.label39.BackColor = System.Drawing.Color.Transparent;
  6436. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6437. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  6438. this.label39.Location = new System.Drawing.Point(4, 258);
  6439. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6440. this.label39.Name = "label39";
  6441. this.label39.Size = new System.Drawing.Size(98, 18);
  6442. this.label39.TabIndex = 104;
  6443. this.label39.Text = "目标地址:";
  6444. //
  6445. // rgvOptType4
  6446. //
  6447. this.rgvOptType4.AutoSize = true;
  6448. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  6449. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6450. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  6451. this.rgvOptType4.Location = new System.Drawing.Point(108, 199);
  6452. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6453. this.rgvOptType4.Name = "rgvOptType4";
  6454. this.rgvOptType4.Size = new System.Drawing.Size(35, 18);
  6455. this.rgvOptType4.TabIndex = 101;
  6456. this.rgvOptType4.Text = "---";
  6457. //
  6458. // label173
  6459. //
  6460. this.label173.AutoSize = true;
  6461. this.label173.BackColor = System.Drawing.Color.Transparent;
  6462. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6463. this.label173.Location = new System.Drawing.Point(3, 199);
  6464. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6465. this.label173.Name = "label173";
  6466. this.label173.Size = new System.Drawing.Size(98, 18);
  6467. this.label173.TabIndex = 100;
  6468. this.label173.Text = "作业类型:";
  6469. //
  6470. // lblRGVWarning1007
  6471. //
  6472. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  6473. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6474. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  6475. this.lblRGVWarning1007.Location = new System.Drawing.Point(8, 70);
  6476. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6477. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  6478. this.lblRGVWarning1007.Size = new System.Drawing.Size(226, 36);
  6479. this.lblRGVWarning1007.TabIndex = 92;
  6480. //
  6481. // rgvPosCurr4
  6482. //
  6483. this.rgvPosCurr4.AutoSize = true;
  6484. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  6485. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6486. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  6487. this.rgvPosCurr4.Location = new System.Drawing.Point(111, 293);
  6488. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6489. this.rgvPosCurr4.Name = "rgvPosCurr4";
  6490. this.rgvPosCurr4.Size = new System.Drawing.Size(35, 18);
  6491. this.rgvPosCurr4.TabIndex = 72;
  6492. this.rgvPosCurr4.Text = "---";
  6493. //
  6494. // rgvMode4
  6495. //
  6496. this.rgvMode4.AutoSize = true;
  6497. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  6498. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6499. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  6500. this.rgvMode4.Location = new System.Drawing.Point(108, 110);
  6501. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6502. this.rgvMode4.Name = "rgvMode4";
  6503. this.rgvMode4.Size = new System.Drawing.Size(35, 18);
  6504. this.rgvMode4.TabIndex = 12;
  6505. this.rgvMode4.Text = "---";
  6506. //
  6507. // rgvOrdId4
  6508. //
  6509. this.rgvOrdId4.AutoSize = true;
  6510. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  6511. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6512. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  6513. this.rgvOrdId4.Location = new System.Drawing.Point(108, 170);
  6514. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6515. this.rgvOrdId4.Name = "rgvOrdId4";
  6516. this.rgvOrdId4.Size = new System.Drawing.Size(35, 18);
  6517. this.rgvOrdId4.TabIndex = 64;
  6518. this.rgvOrdId4.Text = "---";
  6519. //
  6520. // label181
  6521. //
  6522. this.label181.AutoSize = true;
  6523. this.label181.BackColor = System.Drawing.Color.Transparent;
  6524. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6525. this.label181.Location = new System.Drawing.Point(3, 170);
  6526. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6527. this.label181.Name = "label181";
  6528. this.label181.Size = new System.Drawing.Size(98, 18);
  6529. this.label181.TabIndex = 63;
  6530. this.label181.Text = "工作指令:";
  6531. //
  6532. // rgvPosTo4
  6533. //
  6534. this.rgvPosTo4.AutoSize = true;
  6535. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  6536. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6537. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  6538. this.rgvPosTo4.Location = new System.Drawing.Point(109, 258);
  6539. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6540. this.rgvPosTo4.Name = "rgvPosTo4";
  6541. this.rgvPosTo4.Size = new System.Drawing.Size(35, 18);
  6542. this.rgvPosTo4.TabIndex = 16;
  6543. this.rgvPosTo4.Text = "---";
  6544. //
  6545. // label183
  6546. //
  6547. this.label183.AutoSize = true;
  6548. this.label183.BackColor = System.Drawing.Color.Transparent;
  6549. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6550. this.label183.Location = new System.Drawing.Point(3, 110);
  6551. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6552. this.label183.Name = "label183";
  6553. this.label183.Size = new System.Drawing.Size(98, 18);
  6554. this.label183.TabIndex = 15;
  6555. this.label183.Text = "工作模式:";
  6556. //
  6557. // rgvPosFrom4
  6558. //
  6559. this.rgvPosFrom4.AutoSize = true;
  6560. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  6561. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6562. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  6563. this.rgvPosFrom4.Location = new System.Drawing.Point(109, 228);
  6564. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6565. this.rgvPosFrom4.Name = "rgvPosFrom4";
  6566. this.rgvPosFrom4.Size = new System.Drawing.Size(35, 18);
  6567. this.rgvPosFrom4.TabIndex = 14;
  6568. this.rgvPosFrom4.Text = "---";
  6569. //
  6570. // rgvStatus4
  6571. //
  6572. this.rgvStatus4.AutoSize = true;
  6573. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  6574. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6575. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  6576. this.rgvStatus4.Location = new System.Drawing.Point(108, 138);
  6577. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6578. this.rgvStatus4.Name = "rgvStatus4";
  6579. this.rgvStatus4.Size = new System.Drawing.Size(35, 18);
  6580. this.rgvStatus4.TabIndex = 10;
  6581. this.rgvStatus4.Text = "---";
  6582. //
  6583. // label189
  6584. //
  6585. this.label189.AutoSize = true;
  6586. this.label189.BackColor = System.Drawing.Color.Transparent;
  6587. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6588. this.label189.Location = new System.Drawing.Point(3, 138);
  6589. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6590. this.label189.Name = "label189";
  6591. this.label189.Size = new System.Drawing.Size(98, 18);
  6592. this.label189.TabIndex = 6;
  6593. this.label189.Text = "工作状态:";
  6594. //
  6595. // lblrgv1007
  6596. //
  6597. this.lblrgv1007.AutoSize = true;
  6598. this.lblrgv1007.BackColor = System.Drawing.Color.Transparent;
  6599. this.lblrgv1007.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6600. this.lblrgv1007.Location = new System.Drawing.Point(66, 38);
  6601. this.lblrgv1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6602. this.lblrgv1007.Name = "lblrgv1007";
  6603. this.lblrgv1007.Size = new System.Drawing.Size(62, 24);
  6604. this.lblrgv1007.TabIndex = 0;
  6605. this.lblrgv1007.Text = "RGV4";
  6606. this.lblrgv1007.Click += new System.EventHandler(this.lblsrm01_Click);
  6607. //
  6608. // GV4
  6609. //
  6610. this.GV4.BackColor = System.Drawing.Color.Transparent;
  6611. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  6612. this.GV4.Location = new System.Drawing.Point(99, -2);
  6613. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6614. this.GV4.Name = "GV4";
  6615. this.GV4.Size = new System.Drawing.Size(39, 38);
  6616. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6617. this.GV4.TabIndex = 65;
  6618. this.GV4.TabStop = false;
  6619. this.GV4.Tag = "1";
  6620. //
  6621. // pictureBox17
  6622. //
  6623. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  6624. this.pictureBox17.Location = new System.Drawing.Point(98, -2);
  6625. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6626. this.pictureBox17.Name = "pictureBox17";
  6627. this.pictureBox17.Size = new System.Drawing.Size(39, 38);
  6628. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6629. this.pictureBox17.TabIndex = 5;
  6630. this.pictureBox17.TabStop = false;
  6631. //
  6632. // myPanel11
  6633. //
  6634. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  6635. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6636. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6637. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6638. this.myPanel11.Controls.Add(this.label40);
  6639. this.myPanel11.Controls.Add(this.label41);
  6640. this.myPanel11.Controls.Add(this.label42);
  6641. this.myPanel11.Controls.Add(this.rgvOptType5);
  6642. this.myPanel11.Controls.Add(this.label305);
  6643. this.myPanel11.Controls.Add(this.lblRGVWarning1175);
  6644. this.myPanel11.Controls.Add(this.rgvPosCurr5);
  6645. this.myPanel11.Controls.Add(this.rgvMode5);
  6646. this.myPanel11.Controls.Add(this.rgvOrdId5);
  6647. this.myPanel11.Controls.Add(this.label313);
  6648. this.myPanel11.Controls.Add(this.rgvPosTo5);
  6649. this.myPanel11.Controls.Add(this.label315);
  6650. this.myPanel11.Controls.Add(this.rgvPosFrom5);
  6651. this.myPanel11.Controls.Add(this.rgvStatus5);
  6652. this.myPanel11.Controls.Add(this.label321);
  6653. this.myPanel11.Controls.Add(this.lblrgv1175);
  6654. this.myPanel11.Controls.Add(this.GV5);
  6655. this.myPanel11.Controls.Add(this.pictureBox29);
  6656. this.myPanel11.Location = new System.Drawing.Point(2244, 5);
  6657. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6658. this.myPanel11.Name = "myPanel11";
  6659. this.myPanel11.Size = new System.Drawing.Size(244, 374);
  6660. this.myPanel11.TabIndex = 109;
  6661. //
  6662. // label40
  6663. //
  6664. this.label40.AutoSize = true;
  6665. this.label40.BackColor = System.Drawing.Color.Transparent;
  6666. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6667. this.label40.Location = new System.Drawing.Point(9, 293);
  6668. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6669. this.label40.Name = "label40";
  6670. this.label40.Size = new System.Drawing.Size(98, 18);
  6671. this.label40.TabIndex = 106;
  6672. this.label40.Text = "光电状态:";
  6673. //
  6674. // label41
  6675. //
  6676. this.label41.AutoSize = true;
  6677. this.label41.BackColor = System.Drawing.Color.Transparent;
  6678. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6679. this.label41.Location = new System.Drawing.Point(8, 229);
  6680. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6681. this.label41.Name = "label41";
  6682. this.label41.Size = new System.Drawing.Size(98, 18);
  6683. this.label41.TabIndex = 105;
  6684. this.label41.Text = "起始地址:";
  6685. //
  6686. // label42
  6687. //
  6688. this.label42.AutoSize = true;
  6689. this.label42.BackColor = System.Drawing.Color.Transparent;
  6690. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6691. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  6692. this.label42.Location = new System.Drawing.Point(8, 259);
  6693. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6694. this.label42.Name = "label42";
  6695. this.label42.Size = new System.Drawing.Size(98, 18);
  6696. this.label42.TabIndex = 104;
  6697. this.label42.Text = "目标地址:";
  6698. //
  6699. // rgvOptType5
  6700. //
  6701. this.rgvOptType5.AutoSize = true;
  6702. this.rgvOptType5.BackColor = System.Drawing.Color.Transparent;
  6703. this.rgvOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6704. this.rgvOptType5.ForeColor = System.Drawing.Color.Blue;
  6705. this.rgvOptType5.Location = new System.Drawing.Point(108, 199);
  6706. this.rgvOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6707. this.rgvOptType5.Name = "rgvOptType5";
  6708. this.rgvOptType5.Size = new System.Drawing.Size(35, 18);
  6709. this.rgvOptType5.TabIndex = 101;
  6710. this.rgvOptType5.Text = "---";
  6711. //
  6712. // label305
  6713. //
  6714. this.label305.AutoSize = true;
  6715. this.label305.BackColor = System.Drawing.Color.Transparent;
  6716. this.label305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6717. this.label305.Location = new System.Drawing.Point(3, 199);
  6718. this.label305.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6719. this.label305.Name = "label305";
  6720. this.label305.Size = new System.Drawing.Size(98, 18);
  6721. this.label305.TabIndex = 100;
  6722. this.label305.Text = "作业类型:";
  6723. //
  6724. // lblRGVWarning1175
  6725. //
  6726. this.lblRGVWarning1175.BackColor = System.Drawing.Color.Transparent;
  6727. this.lblRGVWarning1175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6728. this.lblRGVWarning1175.ForeColor = System.Drawing.Color.Red;
  6729. this.lblRGVWarning1175.Location = new System.Drawing.Point(8, 70);
  6730. this.lblRGVWarning1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6731. this.lblRGVWarning1175.Name = "lblRGVWarning1175";
  6732. this.lblRGVWarning1175.Size = new System.Drawing.Size(226, 36);
  6733. this.lblRGVWarning1175.TabIndex = 92;
  6734. //
  6735. // rgvPosCurr5
  6736. //
  6737. this.rgvPosCurr5.AutoSize = true;
  6738. this.rgvPosCurr5.BackColor = System.Drawing.Color.Transparent;
  6739. this.rgvPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6740. this.rgvPosCurr5.ForeColor = System.Drawing.Color.Blue;
  6741. this.rgvPosCurr5.Location = new System.Drawing.Point(111, 290);
  6742. this.rgvPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6743. this.rgvPosCurr5.Name = "rgvPosCurr5";
  6744. this.rgvPosCurr5.Size = new System.Drawing.Size(35, 18);
  6745. this.rgvPosCurr5.TabIndex = 72;
  6746. this.rgvPosCurr5.Text = "---";
  6747. //
  6748. // rgvMode5
  6749. //
  6750. this.rgvMode5.AutoSize = true;
  6751. this.rgvMode5.BackColor = System.Drawing.Color.Transparent;
  6752. this.rgvMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6753. this.rgvMode5.ForeColor = System.Drawing.Color.Blue;
  6754. this.rgvMode5.Location = new System.Drawing.Point(108, 110);
  6755. this.rgvMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6756. this.rgvMode5.Name = "rgvMode5";
  6757. this.rgvMode5.Size = new System.Drawing.Size(35, 18);
  6758. this.rgvMode5.TabIndex = 12;
  6759. this.rgvMode5.Text = "---";
  6760. //
  6761. // rgvOrdId5
  6762. //
  6763. this.rgvOrdId5.AutoSize = true;
  6764. this.rgvOrdId5.BackColor = System.Drawing.Color.Transparent;
  6765. this.rgvOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6766. this.rgvOrdId5.ForeColor = System.Drawing.Color.Blue;
  6767. this.rgvOrdId5.Location = new System.Drawing.Point(108, 170);
  6768. this.rgvOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6769. this.rgvOrdId5.Name = "rgvOrdId5";
  6770. this.rgvOrdId5.Size = new System.Drawing.Size(35, 18);
  6771. this.rgvOrdId5.TabIndex = 64;
  6772. this.rgvOrdId5.Text = "---";
  6773. //
  6774. // label313
  6775. //
  6776. this.label313.AutoSize = true;
  6777. this.label313.BackColor = System.Drawing.Color.Transparent;
  6778. this.label313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6779. this.label313.Location = new System.Drawing.Point(3, 170);
  6780. this.label313.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6781. this.label313.Name = "label313";
  6782. this.label313.Size = new System.Drawing.Size(98, 18);
  6783. this.label313.TabIndex = 63;
  6784. this.label313.Text = "工作指令:";
  6785. //
  6786. // rgvPosTo5
  6787. //
  6788. this.rgvPosTo5.AutoSize = true;
  6789. this.rgvPosTo5.BackColor = System.Drawing.Color.Transparent;
  6790. this.rgvPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6791. this.rgvPosTo5.ForeColor = System.Drawing.Color.Blue;
  6792. this.rgvPosTo5.Location = new System.Drawing.Point(109, 258);
  6793. this.rgvPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6794. this.rgvPosTo5.Name = "rgvPosTo5";
  6795. this.rgvPosTo5.Size = new System.Drawing.Size(35, 18);
  6796. this.rgvPosTo5.TabIndex = 16;
  6797. this.rgvPosTo5.Text = "---";
  6798. //
  6799. // label315
  6800. //
  6801. this.label315.AutoSize = true;
  6802. this.label315.BackColor = System.Drawing.Color.Transparent;
  6803. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6804. this.label315.Location = new System.Drawing.Point(3, 110);
  6805. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6806. this.label315.Name = "label315";
  6807. this.label315.Size = new System.Drawing.Size(98, 18);
  6808. this.label315.TabIndex = 15;
  6809. this.label315.Text = "工作模式:";
  6810. //
  6811. // rgvPosFrom5
  6812. //
  6813. this.rgvPosFrom5.AutoSize = true;
  6814. this.rgvPosFrom5.BackColor = System.Drawing.Color.Transparent;
  6815. this.rgvPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6816. this.rgvPosFrom5.ForeColor = System.Drawing.Color.Blue;
  6817. this.rgvPosFrom5.Location = new System.Drawing.Point(109, 228);
  6818. this.rgvPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6819. this.rgvPosFrom5.Name = "rgvPosFrom5";
  6820. this.rgvPosFrom5.Size = new System.Drawing.Size(35, 18);
  6821. this.rgvPosFrom5.TabIndex = 14;
  6822. this.rgvPosFrom5.Text = "---";
  6823. //
  6824. // rgvStatus5
  6825. //
  6826. this.rgvStatus5.AutoSize = true;
  6827. this.rgvStatus5.BackColor = System.Drawing.Color.Transparent;
  6828. this.rgvStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6829. this.rgvStatus5.ForeColor = System.Drawing.Color.Blue;
  6830. this.rgvStatus5.Location = new System.Drawing.Point(108, 138);
  6831. this.rgvStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6832. this.rgvStatus5.Name = "rgvStatus5";
  6833. this.rgvStatus5.Size = new System.Drawing.Size(35, 18);
  6834. this.rgvStatus5.TabIndex = 10;
  6835. this.rgvStatus5.Text = "---";
  6836. //
  6837. // label321
  6838. //
  6839. this.label321.AutoSize = true;
  6840. this.label321.BackColor = System.Drawing.Color.Transparent;
  6841. this.label321.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6842. this.label321.Location = new System.Drawing.Point(3, 138);
  6843. this.label321.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6844. this.label321.Name = "label321";
  6845. this.label321.Size = new System.Drawing.Size(98, 18);
  6846. this.label321.TabIndex = 6;
  6847. this.label321.Text = "工作状态:";
  6848. //
  6849. // lblrgv1175
  6850. //
  6851. this.lblrgv1175.AutoSize = true;
  6852. this.lblrgv1175.BackColor = System.Drawing.Color.Transparent;
  6853. this.lblrgv1175.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6854. this.lblrgv1175.Location = new System.Drawing.Point(66, 38);
  6855. this.lblrgv1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6856. this.lblrgv1175.Name = "lblrgv1175";
  6857. this.lblrgv1175.Size = new System.Drawing.Size(62, 24);
  6858. this.lblrgv1175.TabIndex = 0;
  6859. this.lblrgv1175.Text = "RGV5";
  6860. this.lblrgv1175.Click += new System.EventHandler(this.lblsrm01_Click);
  6861. //
  6862. // GV5
  6863. //
  6864. this.GV5.BackColor = System.Drawing.Color.Transparent;
  6865. this.GV5.Image = ((System.Drawing.Image)(resources.GetObject("GV5.Image")));
  6866. this.GV5.Location = new System.Drawing.Point(99, -2);
  6867. this.GV5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6868. this.GV5.Name = "GV5";
  6869. this.GV5.Size = new System.Drawing.Size(39, 38);
  6870. this.GV5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6871. this.GV5.TabIndex = 65;
  6872. this.GV5.TabStop = false;
  6873. this.GV5.Tag = "1";
  6874. //
  6875. // pictureBox29
  6876. //
  6877. this.pictureBox29.BackColor = System.Drawing.Color.Transparent;
  6878. this.pictureBox29.Location = new System.Drawing.Point(98, -2);
  6879. this.pictureBox29.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6880. this.pictureBox29.Name = "pictureBox29";
  6881. this.pictureBox29.Size = new System.Drawing.Size(39, 38);
  6882. this.pictureBox29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6883. this.pictureBox29.TabIndex = 5;
  6884. this.pictureBox29.TabStop = false;
  6885. //
  6886. // myPanel2
  6887. //
  6888. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  6889. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6890. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6891. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6892. this.myPanel2.Controls.Add(this.myPanel4);
  6893. this.myPanel2.Controls.Add(this.rgvOptType1);
  6894. this.myPanel2.Controls.Add(this.label23);
  6895. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  6896. this.myPanel2.Controls.Add(this.rgvPosCurr1);
  6897. this.myPanel2.Controls.Add(this.label45);
  6898. this.myPanel2.Controls.Add(this.rgvMode1);
  6899. this.myPanel2.Controls.Add(this.rgvOrdId1);
  6900. this.myPanel2.Controls.Add(this.label58);
  6901. this.myPanel2.Controls.Add(this.rgvPosTo1);
  6902. this.myPanel2.Controls.Add(this.label69);
  6903. this.myPanel2.Controls.Add(this.rgvPosFrom1);
  6904. this.myPanel2.Controls.Add(this.label73);
  6905. this.myPanel2.Controls.Add(this.rgvStatus1);
  6906. this.myPanel2.Controls.Add(this.label80);
  6907. this.myPanel2.Controls.Add(this.label92);
  6908. this.myPanel2.Controls.Add(this.lblrgv1444);
  6909. this.myPanel2.Controls.Add(this.GV1);
  6910. this.myPanel2.Controls.Add(this.pictureBox5);
  6911. this.myPanel2.Location = new System.Drawing.Point(1260, 2);
  6912. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6913. this.myPanel2.Name = "myPanel2";
  6914. this.myPanel2.Size = new System.Drawing.Size(244, 374);
  6915. this.myPanel2.TabIndex = 113;
  6916. //
  6917. // myPanel4
  6918. //
  6919. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  6920. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6921. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6922. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6923. this.myPanel4.Controls.Add(this.label124);
  6924. this.myPanel4.Controls.Add(this.label125);
  6925. this.myPanel4.Controls.Add(this.label126);
  6926. this.myPanel4.Controls.Add(this.label127);
  6927. this.myPanel4.Controls.Add(this.label128);
  6928. this.myPanel4.Controls.Add(this.label129);
  6929. this.myPanel4.Controls.Add(this.label130);
  6930. this.myPanel4.Controls.Add(this.label131);
  6931. this.myPanel4.Controls.Add(this.label132);
  6932. this.myPanel4.Controls.Add(this.label133);
  6933. this.myPanel4.Controls.Add(this.label134);
  6934. this.myPanel4.Controls.Add(this.label135);
  6935. this.myPanel4.Controls.Add(this.label136);
  6936. this.myPanel4.Controls.Add(this.label138);
  6937. this.myPanel4.Controls.Add(this.label140);
  6938. this.myPanel4.Controls.Add(this.label141);
  6939. this.myPanel4.Controls.Add(this.label142);
  6940. this.myPanel4.Controls.Add(this.label143);
  6941. this.myPanel4.Controls.Add(this.label144);
  6942. this.myPanel4.Controls.Add(this.label145);
  6943. this.myPanel4.Controls.Add(this.label146);
  6944. this.myPanel4.Controls.Add(this.label147);
  6945. this.myPanel4.Controls.Add(this.pictureBox11);
  6946. this.myPanel4.Controls.Add(this.pictureBox12);
  6947. this.myPanel4.Location = new System.Drawing.Point(284, -2);
  6948. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6949. this.myPanel4.Name = "myPanel4";
  6950. this.myPanel4.Size = new System.Drawing.Size(274, 388);
  6951. this.myPanel4.TabIndex = 106;
  6952. //
  6953. // label124
  6954. //
  6955. this.label124.BackColor = System.Drawing.Color.DarkGray;
  6956. this.label124.Location = new System.Drawing.Point(183, 5);
  6957. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6958. this.label124.Name = "label124";
  6959. this.label124.Size = new System.Drawing.Size(42, 36);
  6960. this.label124.TabIndex = 103;
  6961. this.label124.Text = "出";
  6962. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6963. //
  6964. // label125
  6965. //
  6966. this.label125.BackColor = System.Drawing.Color.DarkGray;
  6967. this.label125.Location = new System.Drawing.Point(9, 5);
  6968. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6969. this.label125.Name = "label125";
  6970. this.label125.Size = new System.Drawing.Size(42, 36);
  6971. this.label125.TabIndex = 102;
  6972. this.label125.Tag = "4";
  6973. this.label125.Text = "入";
  6974. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6975. //
  6976. // label126
  6977. //
  6978. this.label126.AutoSize = true;
  6979. this.label126.BackColor = System.Drawing.Color.Transparent;
  6980. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6981. this.label126.ForeColor = System.Drawing.Color.Blue;
  6982. this.label126.Location = new System.Drawing.Point(130, 199);
  6983. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6984. this.label126.Name = "label126";
  6985. this.label126.Size = new System.Drawing.Size(35, 18);
  6986. this.label126.TabIndex = 101;
  6987. this.label126.Text = "---";
  6988. //
  6989. // label127
  6990. //
  6991. this.label127.AutoSize = true;
  6992. this.label127.BackColor = System.Drawing.Color.Transparent;
  6993. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6994. this.label127.Location = new System.Drawing.Point(3, 199);
  6995. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6996. this.label127.Name = "label127";
  6997. this.label127.Size = new System.Drawing.Size(98, 18);
  6998. this.label127.TabIndex = 100;
  6999. this.label127.Text = "作业类型:";
  7000. //
  7001. // label128
  7002. //
  7003. this.label128.BackColor = System.Drawing.Color.Transparent;
  7004. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7005. this.label128.ForeColor = System.Drawing.Color.Red;
  7006. this.label128.Location = new System.Drawing.Point(8, 70);
  7007. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7008. this.label128.Name = "label128";
  7009. this.label128.Size = new System.Drawing.Size(226, 36);
  7010. this.label128.TabIndex = 92;
  7011. //
  7012. // label129
  7013. //
  7014. this.label129.AutoSize = true;
  7015. this.label129.BackColor = System.Drawing.Color.Transparent;
  7016. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7017. this.label129.ForeColor = System.Drawing.Color.Blue;
  7018. this.label129.Location = new System.Drawing.Point(134, 354);
  7019. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7020. this.label129.Name = "label129";
  7021. this.label129.Size = new System.Drawing.Size(35, 18);
  7022. this.label129.TabIndex = 73;
  7023. this.label129.Text = "---";
  7024. //
  7025. // label130
  7026. //
  7027. this.label130.AutoSize = true;
  7028. this.label130.BackColor = System.Drawing.Color.Transparent;
  7029. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7030. this.label130.ForeColor = System.Drawing.Color.Blue;
  7031. this.label130.Location = new System.Drawing.Point(134, 322);
  7032. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7033. this.label130.Name = "label130";
  7034. this.label130.Size = new System.Drawing.Size(35, 18);
  7035. this.label130.TabIndex = 72;
  7036. this.label130.Text = "---";
  7037. //
  7038. // label131
  7039. //
  7040. this.label131.AutoSize = true;
  7041. this.label131.BackColor = System.Drawing.Color.Transparent;
  7042. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7043. this.label131.Location = new System.Drawing.Point(4, 322);
  7044. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7045. this.label131.Name = "label131";
  7046. this.label131.Size = new System.Drawing.Size(98, 18);
  7047. this.label131.TabIndex = 71;
  7048. this.label131.Text = "起始位置:";
  7049. //
  7050. // label132
  7051. //
  7052. this.label132.AutoSize = true;
  7053. this.label132.BackColor = System.Drawing.Color.Transparent;
  7054. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7055. this.label132.Location = new System.Drawing.Point(4, 354);
  7056. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7057. this.label132.Name = "label132";
  7058. this.label132.Size = new System.Drawing.Size(98, 18);
  7059. this.label132.TabIndex = 70;
  7060. this.label132.Text = "目标位置:";
  7061. //
  7062. // label133
  7063. //
  7064. this.label133.AutoSize = true;
  7065. this.label133.BackColor = System.Drawing.Color.Transparent;
  7066. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7067. this.label133.ForeColor = System.Drawing.Color.Blue;
  7068. this.label133.Location = new System.Drawing.Point(130, 110);
  7069. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7070. this.label133.Name = "label133";
  7071. this.label133.Size = new System.Drawing.Size(35, 18);
  7072. this.label133.TabIndex = 12;
  7073. this.label133.Text = "---";
  7074. //
  7075. // label134
  7076. //
  7077. this.label134.AutoSize = true;
  7078. this.label134.BackColor = System.Drawing.Color.Transparent;
  7079. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7080. this.label134.ForeColor = System.Drawing.Color.Blue;
  7081. this.label134.Location = new System.Drawing.Point(130, 170);
  7082. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7083. this.label134.Name = "label134";
  7084. this.label134.Size = new System.Drawing.Size(35, 18);
  7085. this.label134.TabIndex = 64;
  7086. this.label134.Text = "---";
  7087. //
  7088. // label135
  7089. //
  7090. this.label135.AutoSize = true;
  7091. this.label135.BackColor = System.Drawing.Color.Transparent;
  7092. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7093. this.label135.Location = new System.Drawing.Point(3, 170);
  7094. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7095. this.label135.Name = "label135";
  7096. this.label135.Size = new System.Drawing.Size(98, 18);
  7097. this.label135.TabIndex = 63;
  7098. this.label135.Text = "工作指令:";
  7099. //
  7100. // label136
  7101. //
  7102. this.label136.AutoSize = true;
  7103. this.label136.BackColor = System.Drawing.Color.Transparent;
  7104. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7105. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  7106. this.label136.Location = new System.Drawing.Point(132, 288);
  7107. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7108. this.label136.Name = "label136";
  7109. this.label136.Size = new System.Drawing.Size(35, 18);
  7110. this.label136.TabIndex = 16;
  7111. this.label136.Text = "---";
  7112. //
  7113. // label138
  7114. //
  7115. this.label138.AutoSize = true;
  7116. this.label138.BackColor = System.Drawing.Color.Transparent;
  7117. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7118. this.label138.Location = new System.Drawing.Point(3, 110);
  7119. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7120. this.label138.Name = "label138";
  7121. this.label138.Size = new System.Drawing.Size(98, 18);
  7122. this.label138.TabIndex = 15;
  7123. this.label138.Text = "工作模式:";
  7124. //
  7125. // label140
  7126. //
  7127. this.label140.AutoSize = true;
  7128. this.label140.BackColor = System.Drawing.Color.Transparent;
  7129. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7130. this.label140.ForeColor = System.Drawing.Color.Red;
  7131. this.label140.Location = new System.Drawing.Point(132, 258);
  7132. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7133. this.label140.Name = "label140";
  7134. this.label140.Size = new System.Drawing.Size(35, 18);
  7135. this.label140.TabIndex = 14;
  7136. this.label140.Text = "---";
  7137. //
  7138. // label141
  7139. //
  7140. this.label141.AutoSize = true;
  7141. this.label141.BackColor = System.Drawing.Color.Transparent;
  7142. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7143. this.label141.Location = new System.Drawing.Point(3, 258);
  7144. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7145. this.label141.Name = "label141";
  7146. this.label141.Size = new System.Drawing.Size(98, 18);
  7147. this.label141.TabIndex = 13;
  7148. this.label141.Text = "运行时长:";
  7149. //
  7150. // label142
  7151. //
  7152. this.label142.AutoSize = true;
  7153. this.label142.BackColor = System.Drawing.Color.Transparent;
  7154. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7155. this.label142.ForeColor = System.Drawing.Color.Blue;
  7156. this.label142.Location = new System.Drawing.Point(130, 138);
  7157. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7158. this.label142.Name = "label142";
  7159. this.label142.Size = new System.Drawing.Size(35, 18);
  7160. this.label142.TabIndex = 10;
  7161. this.label142.Text = "---";
  7162. //
  7163. // label143
  7164. //
  7165. this.label143.AutoSize = true;
  7166. this.label143.BackColor = System.Drawing.Color.Transparent;
  7167. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7168. this.label143.ForeColor = System.Drawing.Color.Blue;
  7169. this.label143.Location = new System.Drawing.Point(132, 228);
  7170. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7171. this.label143.Name = "label143";
  7172. this.label143.Size = new System.Drawing.Size(35, 18);
  7173. this.label143.TabIndex = 9;
  7174. this.label143.Text = "---";
  7175. //
  7176. // label144
  7177. //
  7178. this.label144.AutoSize = true;
  7179. this.label144.BackColor = System.Drawing.Color.Transparent;
  7180. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7181. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  7182. this.label144.Location = new System.Drawing.Point(3, 288);
  7183. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7184. this.label144.Name = "label144";
  7185. this.label144.Size = new System.Drawing.Size(98, 18);
  7186. this.label144.TabIndex = 8;
  7187. this.label144.Text = "里 程 数:";
  7188. //
  7189. // label145
  7190. //
  7191. this.label145.AutoSize = true;
  7192. this.label145.BackColor = System.Drawing.Color.Transparent;
  7193. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7194. this.label145.Location = new System.Drawing.Point(3, 138);
  7195. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7196. this.label145.Name = "label145";
  7197. this.label145.Size = new System.Drawing.Size(98, 18);
  7198. this.label145.TabIndex = 6;
  7199. this.label145.Text = "工作状态:";
  7200. //
  7201. // label146
  7202. //
  7203. this.label146.AutoSize = true;
  7204. this.label146.BackColor = System.Drawing.Color.Transparent;
  7205. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7206. this.label146.Location = new System.Drawing.Point(3, 228);
  7207. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7208. this.label146.Name = "label146";
  7209. this.label146.Size = new System.Drawing.Size(98, 18);
  7210. this.label146.TabIndex = 1;
  7211. this.label146.Text = "当前位置:";
  7212. //
  7213. // label147
  7214. //
  7215. this.label147.AutoSize = true;
  7216. this.label147.BackColor = System.Drawing.Color.Transparent;
  7217. this.label147.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7218. this.label147.Location = new System.Drawing.Point(66, 38);
  7219. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7220. this.label147.Name = "label147";
  7221. this.label147.Size = new System.Drawing.Size(101, 24);
  7222. this.label147.TabIndex = 0;
  7223. this.label147.Text = "RGV1091";
  7224. //
  7225. // pictureBox11
  7226. //
  7227. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  7228. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  7229. this.pictureBox11.Location = new System.Drawing.Point(99, -2);
  7230. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7231. this.pictureBox11.Name = "pictureBox11";
  7232. this.pictureBox11.Size = new System.Drawing.Size(39, 38);
  7233. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7234. this.pictureBox11.TabIndex = 65;
  7235. this.pictureBox11.TabStop = false;
  7236. this.pictureBox11.Tag = "1";
  7237. //
  7238. // pictureBox12
  7239. //
  7240. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  7241. this.pictureBox12.Location = new System.Drawing.Point(98, -2);
  7242. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7243. this.pictureBox12.Name = "pictureBox12";
  7244. this.pictureBox12.Size = new System.Drawing.Size(39, 38);
  7245. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7246. this.pictureBox12.TabIndex = 5;
  7247. this.pictureBox12.TabStop = false;
  7248. //
  7249. // rgvOptType1
  7250. //
  7251. this.rgvOptType1.AutoSize = true;
  7252. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  7253. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7254. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  7255. this.rgvOptType1.Location = new System.Drawing.Point(108, 199);
  7256. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7257. this.rgvOptType1.Name = "rgvOptType1";
  7258. this.rgvOptType1.Size = new System.Drawing.Size(35, 18);
  7259. this.rgvOptType1.TabIndex = 101;
  7260. this.rgvOptType1.Text = "---";
  7261. //
  7262. // label23
  7263. //
  7264. this.label23.AutoSize = true;
  7265. this.label23.BackColor = System.Drawing.Color.Transparent;
  7266. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7267. this.label23.Location = new System.Drawing.Point(3, 199);
  7268. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7269. this.label23.Name = "label23";
  7270. this.label23.Size = new System.Drawing.Size(98, 18);
  7271. this.label23.TabIndex = 100;
  7272. this.label23.Text = "作业类型:";
  7273. //
  7274. // lblRGVWarning1444
  7275. //
  7276. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  7277. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7278. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  7279. this.lblRGVWarning1444.Location = new System.Drawing.Point(8, 70);
  7280. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7281. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  7282. this.lblRGVWarning1444.Size = new System.Drawing.Size(226, 36);
  7283. this.lblRGVWarning1444.TabIndex = 92;
  7284. //
  7285. // rgvPosCurr1
  7286. //
  7287. this.rgvPosCurr1.AutoSize = true;
  7288. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  7289. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7290. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  7291. this.rgvPosCurr1.Location = new System.Drawing.Point(111, 290);
  7292. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7293. this.rgvPosCurr1.Name = "rgvPosCurr1";
  7294. this.rgvPosCurr1.Size = new System.Drawing.Size(35, 18);
  7295. this.rgvPosCurr1.TabIndex = 72;
  7296. this.rgvPosCurr1.Text = "---";
  7297. //
  7298. // label45
  7299. //
  7300. this.label45.AutoSize = true;
  7301. this.label45.BackColor = System.Drawing.Color.Transparent;
  7302. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7303. this.label45.Location = new System.Drawing.Point(4, 290);
  7304. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7305. this.label45.Name = "label45";
  7306. this.label45.Size = new System.Drawing.Size(98, 18);
  7307. this.label45.TabIndex = 71;
  7308. this.label45.Text = "光电状态:";
  7309. //
  7310. // rgvMode1
  7311. //
  7312. this.rgvMode1.AutoSize = true;
  7313. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  7314. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7315. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  7316. this.rgvMode1.Location = new System.Drawing.Point(108, 110);
  7317. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7318. this.rgvMode1.Name = "rgvMode1";
  7319. this.rgvMode1.Size = new System.Drawing.Size(35, 18);
  7320. this.rgvMode1.TabIndex = 12;
  7321. this.rgvMode1.Text = "---";
  7322. //
  7323. // rgvOrdId1
  7324. //
  7325. this.rgvOrdId1.AutoSize = true;
  7326. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  7327. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7328. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  7329. this.rgvOrdId1.Location = new System.Drawing.Point(108, 170);
  7330. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7331. this.rgvOrdId1.Name = "rgvOrdId1";
  7332. this.rgvOrdId1.Size = new System.Drawing.Size(35, 18);
  7333. this.rgvOrdId1.TabIndex = 64;
  7334. this.rgvOrdId1.Text = "---";
  7335. //
  7336. // label58
  7337. //
  7338. this.label58.AutoSize = true;
  7339. this.label58.BackColor = System.Drawing.Color.Transparent;
  7340. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7341. this.label58.Location = new System.Drawing.Point(3, 170);
  7342. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7343. this.label58.Name = "label58";
  7344. this.label58.Size = new System.Drawing.Size(98, 18);
  7345. this.label58.TabIndex = 63;
  7346. this.label58.Text = "工作指令:";
  7347. //
  7348. // rgvPosTo1
  7349. //
  7350. this.rgvPosTo1.AutoSize = true;
  7351. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  7352. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7353. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  7354. this.rgvPosTo1.Location = new System.Drawing.Point(109, 258);
  7355. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7356. this.rgvPosTo1.Name = "rgvPosTo1";
  7357. this.rgvPosTo1.Size = new System.Drawing.Size(35, 18);
  7358. this.rgvPosTo1.TabIndex = 16;
  7359. this.rgvPosTo1.Text = "---";
  7360. //
  7361. // label69
  7362. //
  7363. this.label69.AutoSize = true;
  7364. this.label69.BackColor = System.Drawing.Color.Transparent;
  7365. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7366. this.label69.Location = new System.Drawing.Point(3, 110);
  7367. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7368. this.label69.Name = "label69";
  7369. this.label69.Size = new System.Drawing.Size(98, 18);
  7370. this.label69.TabIndex = 15;
  7371. this.label69.Text = "工作模式:";
  7372. //
  7373. // rgvPosFrom1
  7374. //
  7375. this.rgvPosFrom1.AutoSize = true;
  7376. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  7377. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7378. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  7379. this.rgvPosFrom1.Location = new System.Drawing.Point(109, 228);
  7380. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7381. this.rgvPosFrom1.Name = "rgvPosFrom1";
  7382. this.rgvPosFrom1.Size = new System.Drawing.Size(35, 18);
  7383. this.rgvPosFrom1.TabIndex = 14;
  7384. this.rgvPosFrom1.Text = "---";
  7385. //
  7386. // label73
  7387. //
  7388. this.label73.AutoSize = true;
  7389. this.label73.BackColor = System.Drawing.Color.Transparent;
  7390. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7391. this.label73.Location = new System.Drawing.Point(3, 228);
  7392. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7393. this.label73.Name = "label73";
  7394. this.label73.Size = new System.Drawing.Size(98, 18);
  7395. this.label73.TabIndex = 13;
  7396. this.label73.Text = "起始地址:";
  7397. //
  7398. // rgvStatus1
  7399. //
  7400. this.rgvStatus1.AutoSize = true;
  7401. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  7402. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7403. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  7404. this.rgvStatus1.Location = new System.Drawing.Point(108, 138);
  7405. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7406. this.rgvStatus1.Name = "rgvStatus1";
  7407. this.rgvStatus1.Size = new System.Drawing.Size(35, 18);
  7408. this.rgvStatus1.TabIndex = 10;
  7409. this.rgvStatus1.Text = "---";
  7410. //
  7411. // label80
  7412. //
  7413. this.label80.AutoSize = true;
  7414. this.label80.BackColor = System.Drawing.Color.Transparent;
  7415. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7416. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  7417. this.label80.Location = new System.Drawing.Point(3, 258);
  7418. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7419. this.label80.Name = "label80";
  7420. this.label80.Size = new System.Drawing.Size(98, 18);
  7421. this.label80.TabIndex = 8;
  7422. this.label80.Text = "目标地址:";
  7423. //
  7424. // label92
  7425. //
  7426. this.label92.AutoSize = true;
  7427. this.label92.BackColor = System.Drawing.Color.Transparent;
  7428. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7429. this.label92.Location = new System.Drawing.Point(3, 138);
  7430. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7431. this.label92.Name = "label92";
  7432. this.label92.Size = new System.Drawing.Size(98, 18);
  7433. this.label92.TabIndex = 6;
  7434. this.label92.Text = "工作状态:";
  7435. //
  7436. // lblrgv1444
  7437. //
  7438. this.lblrgv1444.AutoSize = true;
  7439. this.lblrgv1444.BackColor = System.Drawing.Color.Transparent;
  7440. this.lblrgv1444.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7441. this.lblrgv1444.Location = new System.Drawing.Point(66, 38);
  7442. this.lblrgv1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7443. this.lblrgv1444.Name = "lblrgv1444";
  7444. this.lblrgv1444.Size = new System.Drawing.Size(62, 24);
  7445. this.lblrgv1444.TabIndex = 0;
  7446. this.lblrgv1444.Text = "RGV1";
  7447. this.lblrgv1444.Click += new System.EventHandler(this.lblsrm01_Click);
  7448. //
  7449. // GV1
  7450. //
  7451. this.GV1.BackColor = System.Drawing.Color.Transparent;
  7452. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  7453. this.GV1.Location = new System.Drawing.Point(99, -2);
  7454. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7455. this.GV1.Name = "GV1";
  7456. this.GV1.Size = new System.Drawing.Size(39, 38);
  7457. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7458. this.GV1.TabIndex = 65;
  7459. this.GV1.TabStop = false;
  7460. this.GV1.Tag = "1";
  7461. //
  7462. // pictureBox5
  7463. //
  7464. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  7465. this.pictureBox5.Location = new System.Drawing.Point(98, -2);
  7466. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7467. this.pictureBox5.Name = "pictureBox5";
  7468. this.pictureBox5.Size = new System.Drawing.Size(39, 38);
  7469. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7470. this.pictureBox5.TabIndex = 5;
  7471. this.pictureBox5.TabStop = false;
  7472. //
  7473. // pnlBottom
  7474. //
  7475. this.pnlBottom.AutoScroll = true;
  7476. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  7477. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7478. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7479. this.pnlBottom.Controls.Add(this.myPanel2);
  7480. this.pnlBottom.Controls.Add(this.myPanel11);
  7481. this.pnlBottom.Controls.Add(this.myPanel5);
  7482. this.pnlBottom.Controls.Add(this.pnlRGV1091);
  7483. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  7484. this.pnlBottom.Controls.Add(this.myPanel1);
  7485. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  7486. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  7487. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  7488. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  7489. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
  7490. this.pnlBottom.Location = new System.Drawing.Point(4, 888);
  7491. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7492. this.pnlBottom.Name = "pnlBottom";
  7493. this.pnlBottom.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
  7494. this.pnlBottom.Size = new System.Drawing.Size(2156, 376);
  7495. this.pnlBottom.TabIndex = 126;
  7496. //
  7497. // tableLayoutPanel1
  7498. //
  7499. this.tableLayoutPanel1.AutoScroll = true;
  7500. this.tableLayoutPanel1.ColumnCount = 1;
  7501. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  7502. this.tableLayoutPanel1.Controls.Add(this.tabControl1, 0, 0);
  7503. this.tableLayoutPanel1.Controls.Add(this.pnlBottom, 0, 1);
  7504. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  7505. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  7506. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  7507. this.tableLayoutPanel1.RowCount = 2;
  7508. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
  7509. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
  7510. this.tableLayoutPanel1.Size = new System.Drawing.Size(2164, 1266);
  7511. this.tableLayoutPanel1.TabIndex = 127;
  7512. //
  7513. // Frm_YongGuanMontior
  7514. //
  7515. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  7516. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  7517. this.ClientSize = new System.Drawing.Size(2164, 1266);
  7518. this.Controls.Add(this.tableLayoutPanel1);
  7519. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7520. this.Name = "Frm_YongGuanMontior";
  7521. this.Text = "Frm_YongGuanMontior";
  7522. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  7523. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  7524. this.tabControl1.ResumeLayout(false);
  7525. this.tabPage1.ResumeLayout(false);
  7526. this.myTableLayoutPanel1.ResumeLayout(false);
  7527. this.myTableLayoutPanel1.PerformLayout();
  7528. this.panel1.ResumeLayout(false);
  7529. this.panel12.ResumeLayout(false);
  7530. this.pnlDDJ1.ResumeLayout(false);
  7531. this.pnlDDJ1.PerformLayout();
  7532. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  7533. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  7534. this.pnlDDJ2.ResumeLayout(false);
  7535. this.pnlDDJ2.PerformLayout();
  7536. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  7537. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  7538. this.pnlDDJ3.ResumeLayout(false);
  7539. this.pnlDDJ3.PerformLayout();
  7540. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  7541. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  7542. this.pnlDDJ4.ResumeLayout(false);
  7543. this.pnlDDJ4.PerformLayout();
  7544. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  7545. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  7546. this.myPanel1.ResumeLayout(false);
  7547. this.myPanel1.PerformLayout();
  7548. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  7549. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  7550. this.pnlRGV1089.ResumeLayout(false);
  7551. this.pnlRGV1089.PerformLayout();
  7552. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  7553. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  7554. this.pnlRGV1091.ResumeLayout(false);
  7555. this.pnlRGV1091.PerformLayout();
  7556. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  7557. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  7558. this.myPanel5.ResumeLayout(false);
  7559. this.myPanel5.PerformLayout();
  7560. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  7561. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  7562. this.myPanel11.ResumeLayout(false);
  7563. this.myPanel11.PerformLayout();
  7564. ((System.ComponentModel.ISupportInitialize)(this.GV5)).EndInit();
  7565. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).EndInit();
  7566. this.myPanel2.ResumeLayout(false);
  7567. this.myPanel2.PerformLayout();
  7568. this.myPanel4.ResumeLayout(false);
  7569. this.myPanel4.PerformLayout();
  7570. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  7571. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  7572. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  7573. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  7574. this.pnlBottom.ResumeLayout(false);
  7575. this.tableLayoutPanel1.ResumeLayout(false);
  7576. this.ResumeLayout(false);
  7577. }
  7578. #endregion
  7579. private System.Windows.Forms.TabControl tabControl1;
  7580. private System.Windows.Forms.TabPage tabPage1;
  7581. private MyConrols.MyPanel pnlDDJ1;
  7582. private System.Windows.Forms.Label lblInStatus1;
  7583. private System.Windows.Forms.Label lblOutStatus1;
  7584. private System.Windows.Forms.Label lblDDJWarning1;
  7585. public System.Windows.Forms.Label ddjPosTo1;
  7586. public System.Windows.Forms.Label ddjPosFrom1;
  7587. private System.Windows.Forms.Label label84;
  7588. private System.Windows.Forms.Label label85;
  7589. public System.Windows.Forms.Label ddjMode1;
  7590. public System.Windows.Forms.Label ddjOrdId1;
  7591. private System.Windows.Forms.Label label137;
  7592. public System.Windows.Forms.Label ddjOptType1;
  7593. private System.Windows.Forms.Label label139;
  7594. public System.Windows.Forms.Label ddjTotal_KM1;
  7595. private System.Windows.Forms.Label label13;
  7596. public System.Windows.Forms.Label ddjWorkTime1;
  7597. private System.Windows.Forms.Label label10;
  7598. public System.Windows.Forms.Label ddjStatus1;
  7599. public System.Windows.Forms.Label ddjPosCurr1;
  7600. private System.Windows.Forms.Label label5;
  7601. private System.Windows.Forms.Label label3;
  7602. private System.Windows.Forms.Label label2;
  7603. private System.Windows.Forms.Label lblsrm01;
  7604. public System.Windows.Forms.PictureBox G1;
  7605. public System.Windows.Forms.PictureBox R1;
  7606. private MyConrols.MyPanel pnlDDJ2;
  7607. private System.Windows.Forms.Label lblInStatus2;
  7608. private System.Windows.Forms.Label lblOutStatus2;
  7609. private System.Windows.Forms.Label lblDDJWarning2;
  7610. public System.Windows.Forms.Label ddjPosTo2;
  7611. public System.Windows.Forms.Label ddjPosFrom2;
  7612. private System.Windows.Forms.Label label15;
  7613. private System.Windows.Forms.Label label16;
  7614. public System.Windows.Forms.Label ddjMode2;
  7615. public System.Windows.Forms.Label ddjOrdId2;
  7616. private System.Windows.Forms.Label label22;
  7617. public System.Windows.Forms.Label ddjOptType2;
  7618. private System.Windows.Forms.Label label26;
  7619. public System.Windows.Forms.Label ddjTotal_KM2;
  7620. private System.Windows.Forms.Label label29;
  7621. public System.Windows.Forms.Label ddjWorkTime2;
  7622. private System.Windows.Forms.Label label32;
  7623. public System.Windows.Forms.Label ddjStatus2;
  7624. public System.Windows.Forms.Label ddjPosCurr2;
  7625. private System.Windows.Forms.Label label83;
  7626. private System.Windows.Forms.Label label86;
  7627. private System.Windows.Forms.Label label87;
  7628. private System.Windows.Forms.Label lblsrm02;
  7629. public System.Windows.Forms.PictureBox G2;
  7630. public System.Windows.Forms.PictureBox pictureBox6;
  7631. private MyConrols.MyPanel pnlDDJ3;
  7632. private System.Windows.Forms.Label lblInStatus3;
  7633. private System.Windows.Forms.Label lblOutStatus3;
  7634. private System.Windows.Forms.Label lblDDJWarning3;
  7635. public System.Windows.Forms.Label ddjPosTo3;
  7636. public System.Windows.Forms.Label ddjPosFrom3;
  7637. private System.Windows.Forms.Label label43;
  7638. private System.Windows.Forms.Label label51;
  7639. public System.Windows.Forms.Label ddjMode3;
  7640. public System.Windows.Forms.Label ddjOrdId3;
  7641. private System.Windows.Forms.Label label55;
  7642. public System.Windows.Forms.Label ddjOptType3;
  7643. private System.Windows.Forms.Label label57;
  7644. public System.Windows.Forms.Label ddjTotal_KM3;
  7645. private System.Windows.Forms.Label label59;
  7646. public System.Windows.Forms.Label ddjWorkTime3;
  7647. private System.Windows.Forms.Label label61;
  7648. public System.Windows.Forms.Label ddjStatus3;
  7649. public System.Windows.Forms.Label ddjPosCurr3;
  7650. private System.Windows.Forms.Label label64;
  7651. private System.Windows.Forms.Label label65;
  7652. private System.Windows.Forms.Label label66;
  7653. private System.Windows.Forms.Label lblsrm03;
  7654. public System.Windows.Forms.PictureBox G3;
  7655. public System.Windows.Forms.PictureBox pictureBox10;
  7656. private MyConrols.MyPanel pnlDDJ4;
  7657. private System.Windows.Forms.Label lblInStatus4;
  7658. private System.Windows.Forms.Label lblOutStatus4;
  7659. private System.Windows.Forms.Label lblDDJWarning4;
  7660. public System.Windows.Forms.Label ddjPosTo4;
  7661. public System.Windows.Forms.Label ddjPosFrom4;
  7662. private System.Windows.Forms.Label label71;
  7663. private System.Windows.Forms.Label label72;
  7664. public System.Windows.Forms.Label ddjMode4;
  7665. public System.Windows.Forms.Label ddjOrdId4;
  7666. private System.Windows.Forms.Label label75;
  7667. public System.Windows.Forms.Label ddjOptType4;
  7668. private System.Windows.Forms.Label label77;
  7669. public System.Windows.Forms.Label ddjTotal_KM4;
  7670. private System.Windows.Forms.Label label79;
  7671. public System.Windows.Forms.Label ddjWorkTime4;
  7672. private System.Windows.Forms.Label label81;
  7673. public System.Windows.Forms.Label ddjStatus4;
  7674. public System.Windows.Forms.Label ddjPosCurr4;
  7675. private System.Windows.Forms.Label label89;
  7676. private System.Windows.Forms.Label label90;
  7677. private System.Windows.Forms.Label label91;
  7678. private System.Windows.Forms.Label lblsrm04;
  7679. public System.Windows.Forms.PictureBox G4;
  7680. public System.Windows.Forms.PictureBox pictureBox14;
  7681. private MyConrols.MyPanel myPanel1;
  7682. private System.Windows.Forms.Label lblInStatus5;
  7683. private System.Windows.Forms.Label lblOutStatus5;
  7684. private System.Windows.Forms.Label label11;
  7685. public System.Windows.Forms.Label ddjPosTo5;
  7686. public System.Windows.Forms.Label ddjPosFrom5;
  7687. private System.Windows.Forms.Label label17;
  7688. private System.Windows.Forms.Label label18;
  7689. public System.Windows.Forms.Label ddjMode5;
  7690. public System.Windows.Forms.Label ddjOrdId5;
  7691. private System.Windows.Forms.Label label21;
  7692. public System.Windows.Forms.Label ddjOptType5;
  7693. private System.Windows.Forms.Label label24;
  7694. public System.Windows.Forms.Label ddjTotal_KM5;
  7695. private System.Windows.Forms.Label label27;
  7696. public System.Windows.Forms.Label ddjWorkTime5;
  7697. private System.Windows.Forms.Label label30;
  7698. public System.Windows.Forms.Label ddjStatus5;
  7699. public System.Windows.Forms.Label ddjPosCurr5;
  7700. private System.Windows.Forms.Label label36;
  7701. private System.Windows.Forms.Label label37;
  7702. private System.Windows.Forms.Label label38;
  7703. private System.Windows.Forms.Label lblsrm05;
  7704. public System.Windows.Forms.PictureBox G5;
  7705. public System.Windows.Forms.PictureBox pictureBox3;
  7706. private MyConrols.MyPanel pnlRGV1089;
  7707. private System.Windows.Forms.Label label7;
  7708. private System.Windows.Forms.Label label8;
  7709. private System.Windows.Forms.Label label9;
  7710. public System.Windows.Forms.Label rgvOptType2;
  7711. private System.Windows.Forms.Label label31;
  7712. private System.Windows.Forms.Label lblRGVWarning1089;
  7713. public System.Windows.Forms.Label rgvPosCurr2;
  7714. public System.Windows.Forms.Label rgvMode2;
  7715. public System.Windows.Forms.Label rgvOrdId2;
  7716. private System.Windows.Forms.Label label50;
  7717. public System.Windows.Forms.Label rgvPosTo2;
  7718. private System.Windows.Forms.Label label53;
  7719. public System.Windows.Forms.Label rgvPosFrom2;
  7720. public System.Windows.Forms.Label rgvStatus2;
  7721. private System.Windows.Forms.Label label63;
  7722. private System.Windows.Forms.Label lblrgv1089;
  7723. public System.Windows.Forms.PictureBox GV2;
  7724. public System.Windows.Forms.PictureBox pictureBox4;
  7725. private MyConrols.MyPanel pnlRGV1091;
  7726. private System.Windows.Forms.Label label14;
  7727. private System.Windows.Forms.Label label19;
  7728. private System.Windows.Forms.Label label20;
  7729. public System.Windows.Forms.Label rgvOptType3;
  7730. private System.Windows.Forms.Label label74;
  7731. private System.Windows.Forms.Label lblRGVWarning1091;
  7732. public System.Windows.Forms.Label rgvPosCurr3;
  7733. public System.Windows.Forms.Label rgvMode3;
  7734. public System.Windows.Forms.Label rgvOrdId3;
  7735. private System.Windows.Forms.Label label94;
  7736. public System.Windows.Forms.Label rgvPosTo3;
  7737. private System.Windows.Forms.Label label96;
  7738. public System.Windows.Forms.Label rgvPosFrom3;
  7739. public System.Windows.Forms.Label rgvStatus3;
  7740. private System.Windows.Forms.Label label102;
  7741. private System.Windows.Forms.Label lblrgv1091;
  7742. public System.Windows.Forms.PictureBox GV3;
  7743. public System.Windows.Forms.PictureBox pictureBox7;
  7744. private MyConrols.MyPanel myPanel5;
  7745. private System.Windows.Forms.Label label25;
  7746. private System.Windows.Forms.Label label35;
  7747. private System.Windows.Forms.Label label39;
  7748. public System.Windows.Forms.Label rgvOptType4;
  7749. private System.Windows.Forms.Label label173;
  7750. private System.Windows.Forms.Label lblRGVWarning1007;
  7751. public System.Windows.Forms.Label rgvPosCurr4;
  7752. public System.Windows.Forms.Label rgvMode4;
  7753. public System.Windows.Forms.Label rgvOrdId4;
  7754. private System.Windows.Forms.Label label181;
  7755. public System.Windows.Forms.Label rgvPosTo4;
  7756. private System.Windows.Forms.Label label183;
  7757. public System.Windows.Forms.Label rgvPosFrom4;
  7758. public System.Windows.Forms.Label rgvStatus4;
  7759. private System.Windows.Forms.Label label189;
  7760. private System.Windows.Forms.Label lblrgv1007;
  7761. public System.Windows.Forms.PictureBox GV4;
  7762. public System.Windows.Forms.PictureBox pictureBox17;
  7763. private MyConrols.MyPanel myPanel11;
  7764. private System.Windows.Forms.Label label40;
  7765. private System.Windows.Forms.Label label41;
  7766. private System.Windows.Forms.Label label42;
  7767. public System.Windows.Forms.Label rgvOptType5;
  7768. private System.Windows.Forms.Label label305;
  7769. private System.Windows.Forms.Label lblRGVWarning1175;
  7770. public System.Windows.Forms.Label rgvPosCurr5;
  7771. public System.Windows.Forms.Label rgvMode5;
  7772. public System.Windows.Forms.Label rgvOrdId5;
  7773. private System.Windows.Forms.Label label313;
  7774. public System.Windows.Forms.Label rgvPosTo5;
  7775. private System.Windows.Forms.Label label315;
  7776. public System.Windows.Forms.Label rgvPosFrom5;
  7777. public System.Windows.Forms.Label rgvStatus5;
  7778. private System.Windows.Forms.Label label321;
  7779. private System.Windows.Forms.Label lblrgv1175;
  7780. public System.Windows.Forms.PictureBox GV5;
  7781. public System.Windows.Forms.PictureBox pictureBox29;
  7782. private MyConrols.MyPanel myPanel2;
  7783. private MyConrols.MyPanel myPanel4;
  7784. private System.Windows.Forms.Label label124;
  7785. private System.Windows.Forms.Label label125;
  7786. public System.Windows.Forms.Label label126;
  7787. private System.Windows.Forms.Label label127;
  7788. private System.Windows.Forms.Label label128;
  7789. public System.Windows.Forms.Label label129;
  7790. public System.Windows.Forms.Label label130;
  7791. private System.Windows.Forms.Label label131;
  7792. private System.Windows.Forms.Label label132;
  7793. public System.Windows.Forms.Label label133;
  7794. public System.Windows.Forms.Label label134;
  7795. private System.Windows.Forms.Label label135;
  7796. public System.Windows.Forms.Label label136;
  7797. private System.Windows.Forms.Label label138;
  7798. public System.Windows.Forms.Label label140;
  7799. private System.Windows.Forms.Label label141;
  7800. public System.Windows.Forms.Label label142;
  7801. public System.Windows.Forms.Label label143;
  7802. private System.Windows.Forms.Label label144;
  7803. private System.Windows.Forms.Label label145;
  7804. private System.Windows.Forms.Label label146;
  7805. private System.Windows.Forms.Label label147;
  7806. public System.Windows.Forms.PictureBox pictureBox11;
  7807. public System.Windows.Forms.PictureBox pictureBox12;
  7808. public System.Windows.Forms.Label rgvOptType1;
  7809. private System.Windows.Forms.Label label23;
  7810. private System.Windows.Forms.Label lblRGVWarning1444;
  7811. public System.Windows.Forms.Label rgvPosCurr1;
  7812. private System.Windows.Forms.Label label45;
  7813. public System.Windows.Forms.Label rgvMode1;
  7814. public System.Windows.Forms.Label rgvOrdId1;
  7815. private System.Windows.Forms.Label label58;
  7816. public System.Windows.Forms.Label rgvPosTo1;
  7817. private System.Windows.Forms.Label label69;
  7818. public System.Windows.Forms.Label rgvPosFrom1;
  7819. private System.Windows.Forms.Label label73;
  7820. public System.Windows.Forms.Label rgvStatus1;
  7821. private System.Windows.Forms.Label label80;
  7822. private System.Windows.Forms.Label label92;
  7823. private System.Windows.Forms.Label lblrgv1444;
  7824. public System.Windows.Forms.PictureBox GV1;
  7825. public System.Windows.Forms.PictureBox pictureBox5;
  7826. private MyConrols.MyPanel pnlBottom;
  7827. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  7828. private From.MyTableLayoutPanel myTableLayoutPanel1;
  7829. private From.From_Montior.Conveyor_R con2281;
  7830. private From.From_Montior.Conveyor_R con2282;
  7831. private From.From_Montior.Conveyor_R con2010;
  7832. private From.From_Montior.Conveyor_R con2014;
  7833. private From.From_Montior.Conveyor_R con2083;
  7834. private From.From_Montior.Conveyor_L con2137;
  7835. private From.From_Montior.Conveyor_L con2125;
  7836. private From.From_Montior.Conveyor_L con2116;
  7837. private From.From_Montior.Conveyor_R con2275;
  7838. private From.From_Montior.Conveyor_R con2276;
  7839. private From.From_Montior.Conveyor_R con2277;
  7840. private From.From_Montior.Conveyor_R con2278;
  7841. private From.From_Montior.Conveyor_R con2279;
  7842. private From.From_Montior.Conveyor_R con2280;
  7843. private From.From_Montior.Conveyor3_A con2202;
  7844. private From.From_Montior.Conveyor_R con2062;
  7845. private From.From_Montior.Conveyor_R con2058;
  7846. private From.From_Montior.Conveyor_R con2053;
  7847. private From.From_Montior.Conveyor_R con2057;
  7848. private From.From_Montior.Conveyor4_L_R con2055;
  7849. private From.TableCellLabel tableCellLabel17;
  7850. private From.TableCellLabel tableCellLabel18;
  7851. private From.From_Montior.Conveyor_R con2056;
  7852. private From.From_Montior.Conveyor_R con2051;
  7853. private From.From_Montior.Conveyor_R con2050;
  7854. private From.From_Montior.Conveyor4_L_R con2048;
  7855. private From.TableCellLabel tableCellLabel14;
  7856. private From.TableCellLabel tableCellLabel16;
  7857. private From.From_Montior.Conveyor_R con2049;
  7858. private From.From_Montior.Conveyor_R con2041;
  7859. private From.From_Montior.Conveyor_R con2039;
  7860. private From.From_Montior.Conveyor_R con2042;
  7861. private From.From_Montior.Conveyor_R con2035;
  7862. private From.From_Montior.Conveyor4_L_R con2033;
  7863. private From.TableCellLabel tableCellLabel12;
  7864. private From.TableCellLabel tableCellLabel13;
  7865. private From.From_Montior.Conveyor_R con2034;
  7866. private From.From_Montior.Conveyor_R con2028;
  7867. private From.From_Montior.Conveyor4_L_R con2026;
  7868. private From.TableCellLabel tableCellLabel10;
  7869. private From.TableCellLabel tableCellLabel11;
  7870. private From.From_Montior.Conveyor_R con2027;
  7871. private From.From_Montior.Conveyor_R con2022;
  7872. private From.From_Montior.Conveyor_R con2021;
  7873. private From.From_Montior.Conveyor3_A con2309;
  7874. private From.From_Montior.Conveyor3_A con2310;
  7875. private From.From_Montior.Conveyor3_A con2261;
  7876. private From.From_Montior.Conveyor3_A con2262;
  7877. private From.From_Montior.Conveyor3_A con2260;
  7878. private From.From_Montior.Conveyor3_A con2259;
  7879. private From.From_Montior.Conveyor3_A conveyor3_A17;
  7880. private From.From_Montior.Conveyor3_A con2263;
  7881. private From.From_Montior.Conveyor3_A con2264;
  7882. private From.From_Montior.Conveyor3_A con2265;
  7883. private From.TableCellLabel tableCellLabel23;
  7884. private From.TableCellLabel tableCellLabel24;
  7885. private From.From_Montior.Conveyor6 conrgv1;
  7886. private From.From_Montior.Conveyor3_B con2256;
  7887. private From.From_Montior.Conveyor3_A con2252;
  7888. private From.From_Montior.Conveyor3_B con2253;
  7889. private From.From_Montior.Conveyor3_A con2254;
  7890. private From.From_Montior.Conveyor3_B con2251;
  7891. private From.From_Montior.Conveyor3_A con2255;
  7892. private From.From_Montior.Conveyor3_A con2198;
  7893. private From.From_Montior.Conveyor3_A con2192;
  7894. private From.From_Montior.Conveyor3_A con2195;
  7895. private From.From_Montior.Conveyor3_A con2201;
  7896. private From.From_Montior.Conveyor3_A con2203;
  7897. private From.From_Montior.Conveyor3_A con2206;
  7898. private From.From_Montior.Conveyor3_A con2204;
  7899. private From.From_Montior.Conveyor3_A con2205;
  7900. private From.From_Montior.Conveyor3_A con2153;
  7901. private From.From_Montior.Conveyor3_A con2207;
  7902. private From.From_Montior.Conveyor3_A con2208;
  7903. private From.From_Montior.Conveyor3_A con2209;
  7904. private From.From_Montior.Conveyor6 conrgv3;
  7905. private From.TableCellLabel tableCellLabel1;
  7906. private From.TableCellLabel tableCellLabel2;
  7907. private From.From_Montior.Conveyor3_A con2187;
  7908. private From.From_Montior.Conveyor3_A con2182;
  7909. private From.From_Montior.Conveyor3_A con2181;
  7910. private From.From_Montior.Conveyor3_A con2180;
  7911. private From.From_Montior.Conveyor3_A con2271;
  7912. private From.From_Montior.Conveyor3_A con2211;
  7913. private From.From_Montior.Conveyor3_A con2152;
  7914. private From.From_Montior.Conveyor3_A con2210;
  7915. private From.TableCellLabel tableCellLabel3;
  7916. private From.TableCellLabel tableCellLabel4;
  7917. private From.From_Montior.Conveyor6 conrgv2;
  7918. private From.TableCellLabel tableCellLabel6;
  7919. private From.TableCellLabel tableCellLabel8;
  7920. private From.From_Montior.Conveyor3_B con2172;
  7921. private From.From_Montior.Conveyor3_A con2173;
  7922. private From.From_Montior.Conveyor3_B con2174;
  7923. private From.From_Montior.Conveyor3_A con2175;
  7924. private From.From_Montior.Conveyor3_B con2176;
  7925. private From.From_Montior.Conveyor3_A con2177;
  7926. private From.From_Montior.Conveyor_R con2147;
  7927. private From.From_Montior.Conveyor_R con2146;
  7928. private From.From_Montior.Conveyor_R con2148;
  7929. private From.From_Montior.Conveyor_R con2144;
  7930. private From.From_Montior.Conveyor_R con2145;
  7931. private From.From_Montior.Conveyor_R con2150;
  7932. private From.From_Montior.Conveyor_R con2161;
  7933. private From.From_Montior.Conveyor3_A con2378;
  7934. private From.From_Montior.Conveyor3_A con2384;
  7935. private From.From_Montior.Conveyor3_A con2381;
  7936. private From.From_Montior.Conveyor3_A con2380;
  7937. private From.From_Montior.Conveyor3_A con2379;
  7938. private From.From_Montior.Conveyor_L con2141;
  7939. private From.From_Montior.Conveyor_L con2274;
  7940. private From.From_Montior.Conveyor3_B con2140;
  7941. private From.From_Montior.Conveyor3_B con2143;
  7942. private System.Windows.Forms.Label label1;
  7943. private From.From_Montior.Conveyor_L con2138;
  7944. private From.From_Montior.Conveyor_L con2326;
  7945. private From.From_Montior.Conveyor con2135;
  7946. private From.From_Montior.Conveyor3_B con2273;
  7947. private From.From_Montior.Conveyor3_B con2129;
  7948. private From.From_Montior.Conveyor3_B con2128;
  7949. private From.From_Montior.Conveyor3_B con2131;
  7950. private System.Windows.Forms.Label label4;
  7951. private From.From_Montior.Conveyor_L con2126;
  7952. private From.From_Montior.Conveyor_L con2327;
  7953. private From.From_Montior.Conveyor con2123;
  7954. private From.From_Montior.Conveyor3_A con2377;
  7955. private From.From_Montior.Conveyor3_A con2374;
  7956. private From.From_Montior.Conveyor3_A con2385;
  7957. private From.From_Montior.Conveyor3_A con2386;
  7958. private From.From_Montior.Conveyor3_A con2375;
  7959. private From.From_Montior.Conveyor3_A con2376;
  7960. private From.From_Montior.Conveyor3_A con2382;
  7961. private From.From_Montior.Conveyor3_A con2387;
  7962. private From.From_Montior.Conveyor3_A con2372;
  7963. private From.From_Montior.Conveyor3_A con2370;
  7964. private From.From_Montior.Conveyor3_A con2371;
  7965. private From.From_Montior.Conveyor3_A con2388;
  7966. private From.From_Montior.Conveyor3_A con2368;
  7967. private From.From_Montior.Conveyor3_A con2369;
  7968. private From.From_Montior.Conveyor3_A con2365;
  7969. private From.From_Montior.Conveyor3_A con2366;
  7970. private From.From_Montior.Conveyor_R con2364;
  7971. private From.From_Montior.Conveyor_R con2362;
  7972. private From.From_Montior.Conveyor3_B con2120;
  7973. private From.From_Montior.Conveyor3_B con2119;
  7974. private From.From_Montior.Conveyor3_B con2122;
  7975. private From.From_Montior.Conveyor3_B con2272;
  7976. private From.TableCellLabel tableCellLabel9;
  7977. private From.From_Montior.Conveyor_R con2104;
  7978. private From.From_Montior.Conveyor_R con2102;
  7979. private From.From_Montior.Conveyor_R con2101;
  7980. private From.From_Montior.Conveyor_R con2103;
  7981. private From.From_Montior.Conveyor_R con2108;
  7982. private From.From_Montior.Conveyor_R con2107;
  7983. private From.From_Montior.Conveyor_R con2106;
  7984. private From.From_Montior.Conveyor_R con2105;
  7985. private From.From_Montior.Conveyor_R con2060;
  7986. private From.From_Montior.Conveyor_R con2079;
  7987. private From.From_Montior.Conveyor_R con2075;
  7988. private From.From_Montior.Conveyor_R con2080;
  7989. private From.From_Montior.Conveyor_R con2074;
  7990. private From.From_Montior.Conveyor_R con2078;
  7991. private From.From_Montior.Conveyor_R con2077;
  7992. private From.From_Montior.Conveyor_R con2325;
  7993. private From.From_Montior.Conveyor_R con2073;
  7994. private From.From_Montior.Conveyor_R con2071;
  7995. private From.From_Montior.Conveyor_R con2072;
  7996. private From.From_Montior.Conveyor_R con2076;
  7997. private From.From_Montior.Conveyor_R con2355;
  7998. private From.From_Montior.Conveyor_R con2037;
  7999. private From.From_Montior.Conveyor_R con2044;
  8000. private From.From_Montior.Conveyor_R con2046;
  8001. private From.From_Montior.Conveyor_R con2031;
  8002. private From.From_Montior.Conveyor_R con2029;
  8003. private From.From_Montior.Conveyor_R con2036;
  8004. private From.From_Montior.Conveyor_R con2017;
  8005. private From.From_Montior.Conveyor_R con2019;
  8006. private From.From_Montior.Conveyor_R con2024;
  8007. private From.From_Montior.Conveyor_R con2324;
  8008. private From.From_Montior.Conveyor_R con2353;
  8009. private From.From_Montior.Conveyor_R con2016;
  8010. private From.From_Montior.LocationPos locationPos35;
  8011. private From.TableCellLabel tableCellLabel15;
  8012. private From.TableCellLabel tableCellLabel29;
  8013. private From.TableCellLabel tableCellLabel30;
  8014. private From.From_Montior.LocationPos locationPos36;
  8015. private From.From_Montior.LocationPos locationPos37;
  8016. private From.From_Montior.Conveyor3_A con2084;
  8017. private From.From_Montior.Conveyor3_A con2086;
  8018. private From.From_Montior.Conveyor_R con2081;
  8019. private From.From_Montior.Conveyor_R con2088;
  8020. private System.Windows.Forms.Label label6;
  8021. private From.From_Montior.Conveyor_R con2015;
  8022. private From.From_Montior.Conveyor_R con2012;
  8023. private System.Windows.Forms.Label label12;
  8024. private From.From_Montior.Conveyor_R con2008;
  8025. private From.From_Montior.Conveyor_R con2011;
  8026. private System.Windows.Forms.Label label28;
  8027. private From.From_Montior.Conveyor_L con2323;
  8028. private From.From_Montior.Conveyor_L con2322;
  8029. private From.From_Montior.Conveyor3_B con2311;
  8030. private From.From_Montior.Conveyor3_B con2317;
  8031. private From.From_Montior.Conveyor3_B con2315;
  8032. private From.From_Montior.Conveyor3_B con2314;
  8033. private From.From_Montior.Conveyor3_B con2312;
  8034. private From.From_Montior.Conveyor3_B con2313;
  8035. private From.From_Montior.Conveyor3_B con2316;
  8036. private From.From_Montior.Conveyor3_B con2319;
  8037. private From.From_Montior.Conveyor3_B con2320;
  8038. private From.From_Montior.Conveyor3_B con2318;
  8039. private From.From_Montior.Conveyor_L con2005;
  8040. private From.From_Montior.Conveyor_L con2302;
  8041. private From.From_Montior.Conveyor_L con2004;
  8042. private System.Windows.Forms.Label label33;
  8043. private From.From_Montior.Conveyor_R con2304;
  8044. private From.From_Montior.Conveyor_R con2003;
  8045. private From.From_Montior.Conveyor_R con2308;
  8046. private From.From_Montior.Conveyor_R con2307;
  8047. private From.From_Montior.Conveyor_R con2305;
  8048. private System.Windows.Forms.Label label34;
  8049. private From.TableCellLabel tableCellLabel31;
  8050. private From.From_Montior.LocationPos locationPos38;
  8051. private From.From_Montior.LocationPos locationPos39;
  8052. private From.From_Montior.LocationPos locationPos40;
  8053. private From.From_Montior.LocationPos locationPos41;
  8054. private From.From_Montior.srm srm11;
  8055. private From.From_Montior.Conveyor_L con2328;
  8056. private From.From_Montior.Conveyor_L con2117;
  8057. private From.From_Montior.LocationPos locationPos42;
  8058. private From.From_Montior.LocationPos locationPos43;
  8059. private From.From_Montior.srm srm12;
  8060. private From.From_Montior.LocationPos locationPos44;
  8061. private From.From_Montior.LocationPos locationPos45;
  8062. private From.From_Montior.LocationPos locationPos46;
  8063. private From.From_Montior.LocationPos locationPos47;
  8064. private From.From_Montior.srm srm13;
  8065. private From.From_Montior.LocationPos locationPos48;
  8066. private From.From_Montior.LocationPos locationPos49;
  8067. private From.From_Montior.srm srm14;
  8068. private From.From_Montior.LocationPos locationPos53;
  8069. private From.From_Montior.LocationPos locationPos54;
  8070. private From.From_Montior.srm srm15;
  8071. private From.From_Montior.LocationPos locationPos55;
  8072. private From.From_Montior.Conveyor con2114;
  8073. private From.From_Montior.Conveyor5 conrgv4;
  8074. private From.From_Montior.Conveyor con2359;
  8075. private From.From_Montior.Conveyor3_A con2360;
  8076. private From.TableCellLabel tableCellLabel32;
  8077. private From.TableCellLabel tableCellLabel33;
  8078. private From.TableCellLabel tableCellLabel34;
  8079. private From.From_Montior.Conveyor5 conrgv5;
  8080. private System.Windows.Forms.Panel panel1;
  8081. private System.Windows.Forms.Panel panel12;
  8082. }
  8083. }