Frm_YongGuanMontior.Designer.cs 482 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087
  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.pnlDDJ1 = new MyConrols.MyPanel();
  32. this.lblInStatus1 = new System.Windows.Forms.Label();
  33. this.lblOutStatus1 = new System.Windows.Forms.Label();
  34. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  35. this.ddjPosTo1 = new System.Windows.Forms.Label();
  36. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  37. this.label84 = new System.Windows.Forms.Label();
  38. this.label85 = new System.Windows.Forms.Label();
  39. this.ddjMode1 = new System.Windows.Forms.Label();
  40. this.ddjOrdId1 = new System.Windows.Forms.Label();
  41. this.label137 = new System.Windows.Forms.Label();
  42. this.ddjOptType1 = new System.Windows.Forms.Label();
  43. this.label139 = new System.Windows.Forms.Label();
  44. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  45. this.label13 = new System.Windows.Forms.Label();
  46. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  47. this.label10 = new System.Windows.Forms.Label();
  48. this.ddjStatus1 = new System.Windows.Forms.Label();
  49. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  50. this.label5 = new System.Windows.Forms.Label();
  51. this.label3 = new System.Windows.Forms.Label();
  52. this.label2 = new System.Windows.Forms.Label();
  53. this.lblsrm01 = new System.Windows.Forms.Label();
  54. this.G1 = new System.Windows.Forms.PictureBox();
  55. this.R1 = new System.Windows.Forms.PictureBox();
  56. this.pnlDDJ2 = new MyConrols.MyPanel();
  57. this.lblInStatus2 = new System.Windows.Forms.Label();
  58. this.lblOutStatus2 = new System.Windows.Forms.Label();
  59. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  60. this.ddjPosTo2 = new System.Windows.Forms.Label();
  61. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  62. this.label15 = new System.Windows.Forms.Label();
  63. this.label16 = new System.Windows.Forms.Label();
  64. this.ddjMode2 = new System.Windows.Forms.Label();
  65. this.ddjOrdId2 = new System.Windows.Forms.Label();
  66. this.label22 = new System.Windows.Forms.Label();
  67. this.ddjOptType2 = new System.Windows.Forms.Label();
  68. this.label26 = new System.Windows.Forms.Label();
  69. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  70. this.label29 = new System.Windows.Forms.Label();
  71. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  72. this.label32 = new System.Windows.Forms.Label();
  73. this.ddjStatus2 = new System.Windows.Forms.Label();
  74. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  75. this.label83 = new System.Windows.Forms.Label();
  76. this.label86 = new System.Windows.Forms.Label();
  77. this.label87 = new System.Windows.Forms.Label();
  78. this.lblsrm02 = new System.Windows.Forms.Label();
  79. this.G2 = new System.Windows.Forms.PictureBox();
  80. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  81. this.pnlDDJ3 = new MyConrols.MyPanel();
  82. this.lblInStatus3 = new System.Windows.Forms.Label();
  83. this.lblOutStatus3 = new System.Windows.Forms.Label();
  84. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  85. this.ddjPosTo3 = new System.Windows.Forms.Label();
  86. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  87. this.label43 = new System.Windows.Forms.Label();
  88. this.label51 = new System.Windows.Forms.Label();
  89. this.ddjMode3 = new System.Windows.Forms.Label();
  90. this.ddjOrdId3 = new System.Windows.Forms.Label();
  91. this.label55 = new System.Windows.Forms.Label();
  92. this.ddjOptType3 = new System.Windows.Forms.Label();
  93. this.label57 = new System.Windows.Forms.Label();
  94. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  95. this.label59 = new System.Windows.Forms.Label();
  96. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  97. this.label61 = new System.Windows.Forms.Label();
  98. this.ddjStatus3 = new System.Windows.Forms.Label();
  99. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  100. this.label64 = new System.Windows.Forms.Label();
  101. this.label65 = new System.Windows.Forms.Label();
  102. this.label66 = new System.Windows.Forms.Label();
  103. this.lblsrm03 = new System.Windows.Forms.Label();
  104. this.G3 = new System.Windows.Forms.PictureBox();
  105. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  106. this.pnlDDJ4 = new MyConrols.MyPanel();
  107. this.lblInStatus4 = new System.Windows.Forms.Label();
  108. this.lblOutStatus4 = new System.Windows.Forms.Label();
  109. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  110. this.ddjPosTo4 = new System.Windows.Forms.Label();
  111. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  112. this.label71 = new System.Windows.Forms.Label();
  113. this.label72 = new System.Windows.Forms.Label();
  114. this.ddjMode4 = new System.Windows.Forms.Label();
  115. this.ddjOrdId4 = new System.Windows.Forms.Label();
  116. this.label75 = new System.Windows.Forms.Label();
  117. this.ddjOptType4 = new System.Windows.Forms.Label();
  118. this.label77 = new System.Windows.Forms.Label();
  119. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  120. this.label79 = new System.Windows.Forms.Label();
  121. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  122. this.label81 = new System.Windows.Forms.Label();
  123. this.ddjStatus4 = new System.Windows.Forms.Label();
  124. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  125. this.label89 = new System.Windows.Forms.Label();
  126. this.label90 = new System.Windows.Forms.Label();
  127. this.label91 = new System.Windows.Forms.Label();
  128. this.lblsrm04 = new System.Windows.Forms.Label();
  129. this.G4 = new System.Windows.Forms.PictureBox();
  130. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  131. this.myPanel1 = new MyConrols.MyPanel();
  132. this.lblInStatus5 = new System.Windows.Forms.Label();
  133. this.lblOutStatus5 = new System.Windows.Forms.Label();
  134. this.label11 = new System.Windows.Forms.Label();
  135. this.ddjPosTo5 = new System.Windows.Forms.Label();
  136. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  137. this.label17 = new System.Windows.Forms.Label();
  138. this.label18 = new System.Windows.Forms.Label();
  139. this.ddjMode5 = new System.Windows.Forms.Label();
  140. this.ddjOrdId5 = new System.Windows.Forms.Label();
  141. this.label21 = new System.Windows.Forms.Label();
  142. this.ddjOptType5 = new System.Windows.Forms.Label();
  143. this.label24 = new System.Windows.Forms.Label();
  144. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  145. this.label27 = new System.Windows.Forms.Label();
  146. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  147. this.label30 = new System.Windows.Forms.Label();
  148. this.ddjStatus5 = new System.Windows.Forms.Label();
  149. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  150. this.label36 = new System.Windows.Forms.Label();
  151. this.label37 = new System.Windows.Forms.Label();
  152. this.label38 = new System.Windows.Forms.Label();
  153. this.lblsrm05 = new System.Windows.Forms.Label();
  154. this.G5 = new System.Windows.Forms.PictureBox();
  155. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  156. this.pnlRGV1089 = new MyConrols.MyPanel();
  157. this.label7 = new System.Windows.Forms.Label();
  158. this.label8 = new System.Windows.Forms.Label();
  159. this.label9 = new System.Windows.Forms.Label();
  160. this.rgvOptType2 = new System.Windows.Forms.Label();
  161. this.label31 = new System.Windows.Forms.Label();
  162. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  163. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  164. this.rgvMode2 = new System.Windows.Forms.Label();
  165. this.rgvOrdId2 = new System.Windows.Forms.Label();
  166. this.label50 = new System.Windows.Forms.Label();
  167. this.rgvPosTo2 = new System.Windows.Forms.Label();
  168. this.label53 = new System.Windows.Forms.Label();
  169. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  170. this.rgvStatus2 = new System.Windows.Forms.Label();
  171. this.label63 = new System.Windows.Forms.Label();
  172. this.lblrgv1089 = new System.Windows.Forms.Label();
  173. this.GV2 = new System.Windows.Forms.PictureBox();
  174. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  175. this.pnlRGV1091 = new MyConrols.MyPanel();
  176. this.label14 = new System.Windows.Forms.Label();
  177. this.label19 = new System.Windows.Forms.Label();
  178. this.label20 = new System.Windows.Forms.Label();
  179. this.rgvOptType3 = new System.Windows.Forms.Label();
  180. this.label74 = new System.Windows.Forms.Label();
  181. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  182. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  183. this.rgvMode3 = new System.Windows.Forms.Label();
  184. this.rgvOrdId3 = new System.Windows.Forms.Label();
  185. this.label94 = new System.Windows.Forms.Label();
  186. this.rgvPosTo3 = new System.Windows.Forms.Label();
  187. this.label96 = new System.Windows.Forms.Label();
  188. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  189. this.rgvStatus3 = new System.Windows.Forms.Label();
  190. this.label102 = new System.Windows.Forms.Label();
  191. this.lblrgv1091 = new System.Windows.Forms.Label();
  192. this.GV3 = new System.Windows.Forms.PictureBox();
  193. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  194. this.myPanel5 = new MyConrols.MyPanel();
  195. this.label25 = new System.Windows.Forms.Label();
  196. this.label35 = new System.Windows.Forms.Label();
  197. this.label39 = new System.Windows.Forms.Label();
  198. this.rgvOptType4 = new System.Windows.Forms.Label();
  199. this.label173 = new System.Windows.Forms.Label();
  200. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  201. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  202. this.rgvMode4 = new System.Windows.Forms.Label();
  203. this.rgvOrdId4 = new System.Windows.Forms.Label();
  204. this.label181 = new System.Windows.Forms.Label();
  205. this.rgvPosTo4 = new System.Windows.Forms.Label();
  206. this.label183 = new System.Windows.Forms.Label();
  207. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  208. this.rgvStatus4 = new System.Windows.Forms.Label();
  209. this.label189 = new System.Windows.Forms.Label();
  210. this.lblrgv1007 = new System.Windows.Forms.Label();
  211. this.GV4 = new System.Windows.Forms.PictureBox();
  212. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  213. this.myPanel11 = new MyConrols.MyPanel();
  214. this.label40 = new System.Windows.Forms.Label();
  215. this.label41 = new System.Windows.Forms.Label();
  216. this.label42 = new System.Windows.Forms.Label();
  217. this.rgvOptType5 = new System.Windows.Forms.Label();
  218. this.label305 = new System.Windows.Forms.Label();
  219. this.lblRGVWarning1175 = new System.Windows.Forms.Label();
  220. this.rgvPosCurr5 = new System.Windows.Forms.Label();
  221. this.rgvMode5 = new System.Windows.Forms.Label();
  222. this.rgvOrdId5 = new System.Windows.Forms.Label();
  223. this.label313 = new System.Windows.Forms.Label();
  224. this.rgvPosTo5 = new System.Windows.Forms.Label();
  225. this.label315 = new System.Windows.Forms.Label();
  226. this.rgvPosFrom5 = new System.Windows.Forms.Label();
  227. this.rgvStatus5 = new System.Windows.Forms.Label();
  228. this.label321 = new System.Windows.Forms.Label();
  229. this.lblrgv1175 = new System.Windows.Forms.Label();
  230. this.GV5 = new System.Windows.Forms.PictureBox();
  231. this.pictureBox29 = new System.Windows.Forms.PictureBox();
  232. this.myPanel2 = new MyConrols.MyPanel();
  233. this.myPanel4 = new MyConrols.MyPanel();
  234. this.label124 = new System.Windows.Forms.Label();
  235. this.label125 = new System.Windows.Forms.Label();
  236. this.label126 = new System.Windows.Forms.Label();
  237. this.label127 = new System.Windows.Forms.Label();
  238. this.label128 = new System.Windows.Forms.Label();
  239. this.label129 = new System.Windows.Forms.Label();
  240. this.label130 = new System.Windows.Forms.Label();
  241. this.label131 = new System.Windows.Forms.Label();
  242. this.label132 = new System.Windows.Forms.Label();
  243. this.label133 = new System.Windows.Forms.Label();
  244. this.label134 = new System.Windows.Forms.Label();
  245. this.label135 = new System.Windows.Forms.Label();
  246. this.label136 = new System.Windows.Forms.Label();
  247. this.label138 = new System.Windows.Forms.Label();
  248. this.label140 = new System.Windows.Forms.Label();
  249. this.label141 = new System.Windows.Forms.Label();
  250. this.label142 = new System.Windows.Forms.Label();
  251. this.label143 = new System.Windows.Forms.Label();
  252. this.label144 = new System.Windows.Forms.Label();
  253. this.label145 = new System.Windows.Forms.Label();
  254. this.label146 = new System.Windows.Forms.Label();
  255. this.label147 = new System.Windows.Forms.Label();
  256. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  257. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  258. this.rgvOptType1 = new System.Windows.Forms.Label();
  259. this.label23 = new System.Windows.Forms.Label();
  260. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  261. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  262. this.label45 = new System.Windows.Forms.Label();
  263. this.rgvMode1 = new System.Windows.Forms.Label();
  264. this.rgvOrdId1 = new System.Windows.Forms.Label();
  265. this.label58 = new System.Windows.Forms.Label();
  266. this.rgvPosTo1 = new System.Windows.Forms.Label();
  267. this.label69 = new System.Windows.Forms.Label();
  268. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  269. this.label73 = new System.Windows.Forms.Label();
  270. this.rgvStatus1 = new System.Windows.Forms.Label();
  271. this.label80 = new System.Windows.Forms.Label();
  272. this.label92 = new System.Windows.Forms.Label();
  273. this.lblrgv1444 = new System.Windows.Forms.Label();
  274. this.GV1 = new System.Windows.Forms.PictureBox();
  275. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  276. this.pnlBottom = new MyConrols.MyPanel();
  277. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  278. this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  279. this.con2282 = new WCS_Client.From.From_Montior.Conveyor_R();
  280. this.con2010 = new WCS_Client.From.From_Montior.Conveyor_R();
  281. this.con2014 = new WCS_Client.From.From_Montior.Conveyor_R();
  282. this.con2083 = new WCS_Client.From.From_Montior.Conveyor_R();
  283. this.con2279 = new WCS_Client.From.From_Montior.Conveyor_R();
  284. this.con2058 = new WCS_Client.From.From_Montior.Conveyor_R();
  285. this.con2053 = new WCS_Client.From.From_Montior.Conveyor_R();
  286. this.con2051 = new WCS_Client.From.From_Montior.Conveyor_R();
  287. this.con2039 = new WCS_Client.From.From_Montior.Conveyor_R();
  288. this.con2034 = new WCS_Client.From.From_Montior.Conveyor_R();
  289. this.con2028 = new WCS_Client.From.From_Montior.Conveyor_R();
  290. this.con2027 = new WCS_Client.From.From_Montior.Conveyor_R();
  291. this.con2022 = new WCS_Client.From.From_Montior.Conveyor_R();
  292. this.con2021 = new WCS_Client.From.From_Montior.Conveyor_R();
  293. this.con2203 = new WCS_Client.From.From_Montior.Conveyor3_A();
  294. this.con2206 = new WCS_Client.From.From_Montior.Conveyor3_A();
  295. this.con2204 = new WCS_Client.From.From_Montior.Conveyor3_A();
  296. this.con2205 = new WCS_Client.From.From_Montior.Conveyor3_A();
  297. this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
  298. this.con2187 = new WCS_Client.From.From_Montior.Conveyor3_A();
  299. this.con2182 = new WCS_Client.From.From_Montior.Conveyor3_A();
  300. this.con2271 = new WCS_Client.From.From_Montior.Conveyor3_A();
  301. this.con2152 = new WCS_Client.From.From_Montior.Conveyor3_A();
  302. this.tableCellLabel3 = new WCS_Client.From.TableCellLabel();
  303. this.tableCellLabel4 = new WCS_Client.From.TableCellLabel();
  304. this.conrgv2 = new WCS_Client.From.From_Montior.Conveyor6();
  305. this.con2172 = new WCS_Client.From.From_Montior.Conveyor3_B();
  306. this.con2173 = new WCS_Client.From.From_Montior.Conveyor3_A();
  307. this.con2174 = new WCS_Client.From.From_Montior.Conveyor3_B();
  308. this.con2175 = new WCS_Client.From.From_Montior.Conveyor3_A();
  309. this.con2176 = new WCS_Client.From.From_Montior.Conveyor3_B();
  310. this.con2177 = new WCS_Client.From.From_Montior.Conveyor3_A();
  311. this.con2147 = new WCS_Client.From.From_Montior.Conveyor_R();
  312. this.con2146 = new WCS_Client.From.From_Montior.Conveyor_R();
  313. this.con2148 = new WCS_Client.From.From_Montior.Conveyor_R();
  314. this.con2144 = new WCS_Client.From.From_Montior.Conveyor_R();
  315. this.con2145 = new WCS_Client.From.From_Montior.Conveyor_R();
  316. this.con2150 = new WCS_Client.From.From_Montior.Conveyor_R();
  317. this.con2161 = new WCS_Client.From.From_Montior.Conveyor_R();
  318. this.con2384 = new WCS_Client.From.From_Montior.Conveyor3_A();
  319. this.con2104 = new WCS_Client.From.From_Montior.Conveyor_R();
  320. this.con2102 = new WCS_Client.From.From_Montior.Conveyor_R();
  321. this.con2101 = new WCS_Client.From.From_Montior.Conveyor_R();
  322. this.con2103 = new WCS_Client.From.From_Montior.Conveyor_R();
  323. this.con2108 = new WCS_Client.From.From_Montior.Conveyor_R();
  324. this.con2107 = new WCS_Client.From.From_Montior.Conveyor_R();
  325. this.con2106 = new WCS_Client.From.From_Montior.Conveyor_R();
  326. this.con2105 = new WCS_Client.From.From_Montior.Conveyor_R();
  327. this.con2060 = new WCS_Client.From.From_Montior.Conveyor_R();
  328. this.con2079 = new WCS_Client.From.From_Montior.Conveyor_R();
  329. this.con2075 = new WCS_Client.From.From_Montior.Conveyor_R();
  330. this.con2080 = new WCS_Client.From.From_Montior.Conveyor_R();
  331. this.con2074 = new WCS_Client.From.From_Montior.Conveyor_R();
  332. this.con2078 = new WCS_Client.From.From_Montior.Conveyor_R();
  333. this.con2077 = new WCS_Client.From.From_Montior.Conveyor_R();
  334. this.con2325 = new WCS_Client.From.From_Montior.Conveyor_R();
  335. this.con2073 = new WCS_Client.From.From_Montior.Conveyor_R();
  336. this.con2071 = new WCS_Client.From.From_Montior.Conveyor_R();
  337. this.con2072 = new WCS_Client.From.From_Montior.Conveyor_R();
  338. this.con2076 = new WCS_Client.From.From_Montior.Conveyor_R();
  339. this.con2355 = new WCS_Client.From.From_Montior.Conveyor_R();
  340. this.con2037 = new WCS_Client.From.From_Montior.Conveyor_R();
  341. this.con2044 = new WCS_Client.From.From_Montior.Conveyor_R();
  342. this.con2046 = new WCS_Client.From.From_Montior.Conveyor_R();
  343. this.con2031 = new WCS_Client.From.From_Montior.Conveyor_R();
  344. this.con2029 = new WCS_Client.From.From_Montior.Conveyor_R();
  345. this.con2036 = new WCS_Client.From.From_Montior.Conveyor_R();
  346. this.con2017 = new WCS_Client.From.From_Montior.Conveyor_R();
  347. this.con2019 = new WCS_Client.From.From_Montior.Conveyor_R();
  348. this.con2024 = new WCS_Client.From.From_Montior.Conveyor_R();
  349. this.con2324 = new WCS_Client.From.From_Montior.Conveyor_R();
  350. this.con2353 = new WCS_Client.From.From_Montior.Conveyor_R();
  351. this.con2016 = new WCS_Client.From.From_Montior.Conveyor_R();
  352. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  353. this.con2084 = new WCS_Client.From.From_Montior.Conveyor3_A();
  354. this.con2086 = new WCS_Client.From.From_Montior.Conveyor3_A();
  355. this.con2081 = new WCS_Client.From.From_Montior.Conveyor_R();
  356. this.con2088 = new WCS_Client.From.From_Montior.Conveyor_R();
  357. this.label6 = new System.Windows.Forms.Label();
  358. this.con2015 = new WCS_Client.From.From_Montior.Conveyor_R();
  359. this.con2012 = new WCS_Client.From.From_Montior.Conveyor_R();
  360. this.label12 = new System.Windows.Forms.Label();
  361. this.con2008 = new WCS_Client.From.From_Montior.Conveyor_R();
  362. this.con2011 = new WCS_Client.From.From_Montior.Conveyor_R();
  363. this.label28 = new System.Windows.Forms.Label();
  364. this.con2005 = new WCS_Client.From.From_Montior.Conveyor_L();
  365. this.con2302 = new WCS_Client.From.From_Montior.Conveyor_L();
  366. this.con2004 = new WCS_Client.From.From_Montior.Conveyor_L();
  367. this.label33 = new System.Windows.Forms.Label();
  368. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  369. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  370. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  371. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  372. this.srm15 = new WCS_Client.From.From_Montior.srm();
  373. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  374. this.tableCellLabel33 = new WCS_Client.From.TableCellLabel();
  375. this.tableCellLabel34 = new WCS_Client.From.TableCellLabel();
  376. this.conrgv5 = new WCS_Client.From.From_Montior.Conveyor5();
  377. this.con2323 = new WCS_Client.From.From_Montior.Conveyor_L();
  378. this.con2322 = new WCS_Client.From.From_Montior.Conveyor_L();
  379. this.con2308 = new WCS_Client.From.From_Montior.Conveyor_R();
  380. this.con2304 = new WCS_Client.From.From_Montior.Conveyor_R();
  381. this.con2305 = new WCS_Client.From.From_Montior.Conveyor_R();
  382. this.con2309 = new WCS_Client.From.From_Montior.Conveyor3_A();
  383. this.con2310 = new WCS_Client.From.From_Montior.Conveyor3_A();
  384. this.con2026 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  385. this.tableCellLabel10 = new WCS_Client.From.TableCellLabel();
  386. this.tableCellLabel11 = new WCS_Client.From.TableCellLabel();
  387. this.con2280 = new WCS_Client.From.From_Montior.Conveyor_R();
  388. this.tableCellLabel12 = new WCS_Client.From.TableCellLabel();
  389. this.con2033 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  390. this.tableCellLabel13 = new WCS_Client.From.TableCellLabel();
  391. this.con2035 = new WCS_Client.From.From_Montior.Conveyor_R();
  392. this.con2278 = new WCS_Client.From.From_Montior.Conveyor_R();
  393. this.srm14 = new WCS_Client.From.From_Montior.srm();
  394. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  395. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  396. this.con2042 = new WCS_Client.From.From_Montior.Conveyor_R();
  397. this.con2041 = new WCS_Client.From.From_Montior.Conveyor_R();
  398. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  399. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  400. this.con2277 = new WCS_Client.From.From_Montior.Conveyor_R();
  401. this.con2049 = new WCS_Client.From.From_Montior.Conveyor_R();
  402. this.tableCellLabel16 = new WCS_Client.From.TableCellLabel();
  403. this.con2048 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  404. this.tableCellLabel14 = new WCS_Client.From.TableCellLabel();
  405. this.con2050 = new WCS_Client.From.From_Montior.Conveyor_R();
  406. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  407. this.con2281 = new WCS_Client.From.From_Montior.Conveyor_R();
  408. this.srm13 = new WCS_Client.From.From_Montior.srm();
  409. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  410. this.con2276 = new WCS_Client.From.From_Montior.Conveyor_R();
  411. this.con2056 = new WCS_Client.From.From_Montior.Conveyor_R();
  412. this.tableCellLabel17 = new WCS_Client.From.TableCellLabel();
  413. this.con2055 = new WCS_Client.From.From_Montior.Conveyor4_L_R();
  414. this.tableCellLabel18 = new WCS_Client.From.TableCellLabel();
  415. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  416. this.con2057 = new WCS_Client.From.From_Montior.Conveyor_R();
  417. this.con2275 = new WCS_Client.From.From_Montior.Conveyor_R();
  418. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  419. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  420. this.con2062 = new WCS_Client.From.From_Montior.Conveyor_R();
  421. this.tableCellLabel24 = new WCS_Client.From.TableCellLabel();
  422. this.con2260 = new WCS_Client.From.From_Montior.Conveyor3_A();
  423. this.con2259 = new WCS_Client.From.From_Montior.Conveyor3_A();
  424. this.tableCellLabel23 = new WCS_Client.From.TableCellLabel();
  425. this.con2262 = new WCS_Client.From.From_Montior.Conveyor3_A();
  426. this.con2261 = new WCS_Client.From.From_Montior.Conveyor3_A();
  427. this.con2264 = new WCS_Client.From.From_Montior.Conveyor3_A();
  428. this.con2263 = new WCS_Client.From.From_Montior.Conveyor3_A();
  429. this.conveyor3_A17 = new WCS_Client.From.From_Montior.Conveyor3_A();
  430. this.conrgv1 = new WCS_Client.From.From_Montior.Conveyor6();
  431. this.locationPos44 = new WCS_Client.From.From_Montior.LocationPos();
  432. this.locationPos43 = new WCS_Client.From.From_Montior.LocationPos();
  433. this.srm12 = new WCS_Client.From.From_Montior.srm();
  434. this.con2153 = new WCS_Client.From.From_Montior.Conveyor3_A();
  435. this.con2181 = new WCS_Client.From.From_Montior.Conveyor3_A();
  436. this.con2180 = new WCS_Client.From.From_Montior.Conveyor3_A();
  437. this.con2207 = new WCS_Client.From.From_Montior.Conveyor3_A();
  438. this.con2208 = new WCS_Client.From.From_Montior.Conveyor3_A();
  439. this.con2209 = new WCS_Client.From.From_Montior.Conveyor3_A();
  440. this.con2210 = new WCS_Client.From.From_Montior.Conveyor3_A();
  441. this.con2211 = new WCS_Client.From.From_Montior.Conveyor3_A();
  442. this.con2192 = new WCS_Client.From.From_Montior.Conveyor3_A();
  443. this.con2195 = new WCS_Client.From.From_Montior.Conveyor3_A();
  444. this.con2198 = new WCS_Client.From.From_Montior.Conveyor3_A();
  445. this.con2201 = new WCS_Client.From.From_Montior.Conveyor3_A();
  446. this.con2265 = new WCS_Client.From.From_Montior.Conveyor3_A();
  447. this.con2382 = new WCS_Client.From.From_Montior.Conveyor3_A();
  448. this.con2381 = new WCS_Client.From.From_Montior.Conveyor3_A();
  449. this.con2380 = new WCS_Client.From.From_Montior.Conveyor3_A();
  450. this.con2379 = new WCS_Client.From.From_Montior.Conveyor3_A();
  451. this.con2378 = new WCS_Client.From.From_Montior.Conveyor3_A();
  452. this.con2377 = new WCS_Client.From.From_Montior.Conveyor3_A();
  453. this.con2376 = new WCS_Client.From.From_Montior.Conveyor3_A();
  454. this.con2375 = new WCS_Client.From.From_Montior.Conveyor3_A();
  455. this.con2374 = new WCS_Client.From.From_Montior.Conveyor3_A();
  456. this.con2385 = new WCS_Client.From.From_Montior.Conveyor3_A();
  457. this.con2386 = new WCS_Client.From.From_Montior.Conveyor3_A();
  458. this.con2387 = new WCS_Client.From.From_Montior.Conveyor3_A();
  459. this.con2388 = new WCS_Client.From.From_Montior.Conveyor3_A();
  460. this.con2372 = new WCS_Client.From.From_Montior.Conveyor3_A();
  461. this.con2371 = new WCS_Client.From.From_Montior.Conveyor3_A();
  462. this.con2370 = new WCS_Client.From.From_Montior.Conveyor3_A();
  463. this.con2369 = new WCS_Client.From.From_Montior.Conveyor3_A();
  464. this.con2368 = new WCS_Client.From.From_Montior.Conveyor3_A();
  465. this.con2366 = new WCS_Client.From.From_Montior.Conveyor3_A();
  466. this.con2365 = new WCS_Client.From.From_Montior.Conveyor3_A();
  467. this.con2364 = new WCS_Client.From.From_Montior.Conveyor_R();
  468. this.con2362 = new WCS_Client.From.From_Montior.Conveyor_R();
  469. this.con2360 = new WCS_Client.From.From_Montior.Conveyor3_A();
  470. this.con2359 = new WCS_Client.From.From_Montior.Conveyor();
  471. this.con2135 = new WCS_Client.From.From_Montior.Conveyor();
  472. this.label1 = new System.Windows.Forms.Label();
  473. this.con2137 = new WCS_Client.From.From_Montior.Conveyor_L();
  474. this.con2138 = new WCS_Client.From.From_Montior.Conveyor_L();
  475. this.con2326 = new WCS_Client.From.From_Montior.Conveyor_L();
  476. this.con2141 = new WCS_Client.From.From_Montior.Conveyor_L();
  477. this.panel1 = new System.Windows.Forms.Panel();
  478. this.con2140 = new WCS_Client.From.From_Montior.Conveyor3_B();
  479. this.panel12 = new System.Windows.Forms.Panel();
  480. this.con2143 = new WCS_Client.From.From_Montior.Conveyor3_B();
  481. this.con2274 = new WCS_Client.From.From_Montior.Conveyor_L();
  482. this.con2123 = new WCS_Client.From.From_Montior.Conveyor();
  483. this.label4 = new System.Windows.Forms.Label();
  484. this.con2125 = new WCS_Client.From.From_Montior.Conveyor_L();
  485. this.con2126 = new WCS_Client.From.From_Montior.Conveyor_L();
  486. this.con2327 = new WCS_Client.From.From_Montior.Conveyor_L();
  487. this.con2129 = new WCS_Client.From.From_Montior.Conveyor3_B();
  488. this.con2128 = new WCS_Client.From.From_Montior.Conveyor3_B();
  489. this.con2131 = new WCS_Client.From.From_Montior.Conveyor3_B();
  490. this.con2273 = new WCS_Client.From.From_Montior.Conveyor3_B();
  491. this.tableCellLabel32 = new WCS_Client.From.TableCellLabel();
  492. this.conrgv4 = new WCS_Client.From.From_Montior.Conveyor5();
  493. this.tableCellLabel9 = new WCS_Client.From.TableCellLabel();
  494. this.con2114 = new WCS_Client.From.From_Montior.Conveyor();
  495. this.label34 = new System.Windows.Forms.Label();
  496. this.con2116 = new WCS_Client.From.From_Montior.Conveyor_L();
  497. this.con2117 = new WCS_Client.From.From_Montior.Conveyor_L();
  498. this.con2328 = new WCS_Client.From.From_Montior.Conveyor_L();
  499. this.con2120 = new WCS_Client.From.From_Montior.Conveyor3_B();
  500. this.con2119 = new WCS_Client.From.From_Montior.Conveyor3_B();
  501. this.con2122 = new WCS_Client.From.From_Montior.Conveyor3_B();
  502. this.con2272 = new WCS_Client.From.From_Montior.Conveyor3_B();
  503. this.conrgv3 = new WCS_Client.From.From_Montior.Conveyor6();
  504. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  505. this.con2202 = new WCS_Client.From.From_Montior.Conveyor3_A();
  506. this.con2256 = new WCS_Client.From.From_Montior.Conveyor3_B();
  507. this.con2255 = new WCS_Client.From.From_Montior.Conveyor3_A();
  508. this.con2254 = new WCS_Client.From.From_Montior.Conveyor3_A();
  509. this.con2253 = new WCS_Client.From.From_Montior.Conveyor3_B();
  510. this.con2252 = new WCS_Client.From.From_Montior.Conveyor3_A();
  511. this.con2251 = new WCS_Client.From.From_Montior.Conveyor3_B();
  512. this.locationPos41 = new WCS_Client.From.From_Montior.LocationPos();
  513. this.locationPos35 = new WCS_Client.From.From_Montior.LocationPos();
  514. this.srm11 = new WCS_Client.From.From_Montior.srm();
  515. this.locationPos40 = new WCS_Client.From.From_Montior.LocationPos();
  516. this.tableCellLabel15 = new WCS_Client.From.TableCellLabel();
  517. this.locationPos39 = new WCS_Client.From.From_Montior.LocationPos();
  518. this.tableCellLabel8 = new WCS_Client.From.TableCellLabel();
  519. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  520. this.con2307 = new WCS_Client.From.From_Montior.Conveyor_R();
  521. this.con2003 = new WCS_Client.From.From_Montior.Conveyor_R();
  522. this.con2311 = new WCS_Client.From.From_Montior.Conveyor3_B();
  523. this.con2312 = new WCS_Client.From.From_Montior.Conveyor3_B();
  524. this.con2313 = new WCS_Client.From.From_Montior.Conveyor3_B();
  525. this.con2314 = new WCS_Client.From.From_Montior.Conveyor3_B();
  526. this.con2315 = new WCS_Client.From.From_Montior.Conveyor3_B();
  527. this.con2316 = new WCS_Client.From.From_Montior.Conveyor3_B();
  528. this.con2317 = new WCS_Client.From.From_Montior.Conveyor3_B();
  529. this.con2318 = new WCS_Client.From.From_Montior.Conveyor3_B();
  530. this.con2319 = new WCS_Client.From.From_Montior.Conveyor3_B();
  531. this.con2320 = new WCS_Client.From.From_Montior.Conveyor3_B();
  532. this.tabControl1.SuspendLayout();
  533. this.tabPage1.SuspendLayout();
  534. this.pnlDDJ1.SuspendLayout();
  535. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  536. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  537. this.pnlDDJ2.SuspendLayout();
  538. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  539. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  540. this.pnlDDJ3.SuspendLayout();
  541. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  542. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  543. this.pnlDDJ4.SuspendLayout();
  544. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  545. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  546. this.myPanel1.SuspendLayout();
  547. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  548. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  549. this.pnlRGV1089.SuspendLayout();
  550. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  551. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  552. this.pnlRGV1091.SuspendLayout();
  553. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  554. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  555. this.myPanel5.SuspendLayout();
  556. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  557. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  558. this.myPanel11.SuspendLayout();
  559. ((System.ComponentModel.ISupportInitialize)(this.GV5)).BeginInit();
  560. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).BeginInit();
  561. this.myPanel2.SuspendLayout();
  562. this.myPanel4.SuspendLayout();
  563. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  564. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  565. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  566. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  567. this.pnlBottom.SuspendLayout();
  568. this.tableLayoutPanel1.SuspendLayout();
  569. this.myTableLayoutPanel1.SuspendLayout();
  570. this.panel1.SuspendLayout();
  571. this.panel12.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. // pnlDDJ1
  599. //
  600. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  601. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  602. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  603. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  604. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  605. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  606. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  607. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  608. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  609. this.pnlDDJ1.Controls.Add(this.label84);
  610. this.pnlDDJ1.Controls.Add(this.label85);
  611. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  612. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  613. this.pnlDDJ1.Controls.Add(this.label137);
  614. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  615. this.pnlDDJ1.Controls.Add(this.label139);
  616. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  617. this.pnlDDJ1.Controls.Add(this.label13);
  618. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  619. this.pnlDDJ1.Controls.Add(this.label10);
  620. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  621. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  622. this.pnlDDJ1.Controls.Add(this.label5);
  623. this.pnlDDJ1.Controls.Add(this.label3);
  624. this.pnlDDJ1.Controls.Add(this.label2);
  625. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  626. this.pnlDDJ1.Controls.Add(this.G1);
  627. this.pnlDDJ1.Controls.Add(this.R1);
  628. this.pnlDDJ1.Location = new System.Drawing.Point(0, 4);
  629. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  630. this.pnlDDJ1.Name = "pnlDDJ1";
  631. this.pnlDDJ1.Size = new System.Drawing.Size(244, 374);
  632. this.pnlDDJ1.TabIndex = 25;
  633. //
  634. // lblInStatus1
  635. //
  636. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  637. this.lblInStatus1.Location = new System.Drawing.Point(8, 2);
  638. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  639. this.lblInStatus1.Name = "lblInStatus1";
  640. this.lblInStatus1.Size = new System.Drawing.Size(42, 36);
  641. this.lblInStatus1.TabIndex = 94;
  642. this.lblInStatus1.Tag = "1";
  643. this.lblInStatus1.Text = "入";
  644. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  645. //
  646. // lblOutStatus1
  647. //
  648. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  649. this.lblOutStatus1.Location = new System.Drawing.Point(190, 2);
  650. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  651. this.lblOutStatus1.Name = "lblOutStatus1";
  652. this.lblOutStatus1.Size = new System.Drawing.Size(42, 36);
  653. this.lblOutStatus1.TabIndex = 93;
  654. this.lblOutStatus1.Text = "出";
  655. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  656. //
  657. // lblDDJWarning1
  658. //
  659. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  660. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  661. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  662. this.lblDDJWarning1.Location = new System.Drawing.Point(8, 70);
  663. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  664. this.lblDDJWarning1.Name = "lblDDJWarning1";
  665. this.lblDDJWarning1.Size = new System.Drawing.Size(226, 36);
  666. this.lblDDJWarning1.TabIndex = 92;
  667. //
  668. // ddjPosTo1
  669. //
  670. this.ddjPosTo1.AutoSize = true;
  671. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  672. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  673. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  674. this.ddjPosTo1.Location = new System.Drawing.Point(134, 350);
  675. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  676. this.ddjPosTo1.Name = "ddjPosTo1";
  677. this.ddjPosTo1.Size = new System.Drawing.Size(35, 18);
  678. this.ddjPosTo1.TabIndex = 73;
  679. this.ddjPosTo1.Text = "---";
  680. //
  681. // ddjPosFrom1
  682. //
  683. this.ddjPosFrom1.AutoSize = true;
  684. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  685. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  686. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  687. this.ddjPosFrom1.Location = new System.Drawing.Point(134, 318);
  688. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  689. this.ddjPosFrom1.Name = "ddjPosFrom1";
  690. this.ddjPosFrom1.Size = new System.Drawing.Size(35, 18);
  691. this.ddjPosFrom1.TabIndex = 72;
  692. this.ddjPosFrom1.Text = "---";
  693. //
  694. // label84
  695. //
  696. this.label84.AutoSize = true;
  697. this.label84.BackColor = System.Drawing.Color.Transparent;
  698. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  699. this.label84.Location = new System.Drawing.Point(4, 318);
  700. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  701. this.label84.Name = "label84";
  702. this.label84.Size = new System.Drawing.Size(98, 18);
  703. this.label84.TabIndex = 71;
  704. this.label84.Text = "起始位置:";
  705. //
  706. // label85
  707. //
  708. this.label85.AutoSize = true;
  709. this.label85.BackColor = System.Drawing.Color.Transparent;
  710. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  711. this.label85.Location = new System.Drawing.Point(4, 350);
  712. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  713. this.label85.Name = "label85";
  714. this.label85.Size = new System.Drawing.Size(98, 18);
  715. this.label85.TabIndex = 70;
  716. this.label85.Text = "目标位置:";
  717. //
  718. // ddjMode1
  719. //
  720. this.ddjMode1.AutoSize = true;
  721. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  722. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  723. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  724. this.ddjMode1.Location = new System.Drawing.Point(130, 110);
  725. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  726. this.ddjMode1.Name = "ddjMode1";
  727. this.ddjMode1.Size = new System.Drawing.Size(35, 18);
  728. this.ddjMode1.TabIndex = 12;
  729. this.ddjMode1.Text = "---";
  730. //
  731. // ddjOrdId1
  732. //
  733. this.ddjOrdId1.AutoSize = true;
  734. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  735. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  736. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  737. this.ddjOrdId1.Location = new System.Drawing.Point(130, 170);
  738. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  739. this.ddjOrdId1.Name = "ddjOrdId1";
  740. this.ddjOrdId1.Size = new System.Drawing.Size(35, 18);
  741. this.ddjOrdId1.TabIndex = 64;
  742. this.ddjOrdId1.Text = "---";
  743. //
  744. // label137
  745. //
  746. this.label137.AutoSize = true;
  747. this.label137.BackColor = System.Drawing.Color.Transparent;
  748. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  749. this.label137.Location = new System.Drawing.Point(3, 170);
  750. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  751. this.label137.Name = "label137";
  752. this.label137.Size = new System.Drawing.Size(98, 18);
  753. this.label137.TabIndex = 63;
  754. this.label137.Text = "工作指令:";
  755. //
  756. // ddjOptType1
  757. //
  758. this.ddjOptType1.AutoSize = true;
  759. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  760. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  761. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  762. this.ddjOptType1.Location = new System.Drawing.Point(130, 194);
  763. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  764. this.ddjOptType1.Name = "ddjOptType1";
  765. this.ddjOptType1.Size = new System.Drawing.Size(35, 18);
  766. this.ddjOptType1.TabIndex = 62;
  767. this.ddjOptType1.Text = "---";
  768. //
  769. // label139
  770. //
  771. this.label139.AutoSize = true;
  772. this.label139.BackColor = System.Drawing.Color.Transparent;
  773. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  774. this.label139.Location = new System.Drawing.Point(3, 194);
  775. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  776. this.label139.Name = "label139";
  777. this.label139.Size = new System.Drawing.Size(98, 18);
  778. this.label139.TabIndex = 61;
  779. this.label139.Text = "作业类型:";
  780. //
  781. // ddjTotal_KM1
  782. //
  783. this.ddjTotal_KM1.AutoSize = true;
  784. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  785. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  786. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  787. this.ddjTotal_KM1.Location = new System.Drawing.Point(132, 286);
  788. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  789. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  790. this.ddjTotal_KM1.Size = new System.Drawing.Size(35, 18);
  791. this.ddjTotal_KM1.TabIndex = 16;
  792. this.ddjTotal_KM1.Text = "---";
  793. //
  794. // label13
  795. //
  796. this.label13.AutoSize = true;
  797. this.label13.BackColor = System.Drawing.Color.Transparent;
  798. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  799. this.label13.Location = new System.Drawing.Point(3, 110);
  800. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  801. this.label13.Name = "label13";
  802. this.label13.Size = new System.Drawing.Size(98, 18);
  803. this.label13.TabIndex = 15;
  804. this.label13.Text = "工作模式:";
  805. //
  806. // ddjWorkTime1
  807. //
  808. this.ddjWorkTime1.AutoSize = true;
  809. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  810. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  811. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  812. this.ddjWorkTime1.Location = new System.Drawing.Point(130, 254);
  813. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  814. this.ddjWorkTime1.Name = "ddjWorkTime1";
  815. this.ddjWorkTime1.Size = new System.Drawing.Size(35, 18);
  816. this.ddjWorkTime1.TabIndex = 14;
  817. this.ddjWorkTime1.Text = "---";
  818. //
  819. // label10
  820. //
  821. this.label10.AutoSize = true;
  822. this.label10.BackColor = System.Drawing.Color.Transparent;
  823. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  824. this.label10.Location = new System.Drawing.Point(3, 254);
  825. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  826. this.label10.Name = "label10";
  827. this.label10.Size = new System.Drawing.Size(98, 18);
  828. this.label10.TabIndex = 13;
  829. this.label10.Text = "运行时长:";
  830. //
  831. // ddjStatus1
  832. //
  833. this.ddjStatus1.AutoSize = true;
  834. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  835. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  836. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  837. this.ddjStatus1.Location = new System.Drawing.Point(130, 142);
  838. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  839. this.ddjStatus1.Name = "ddjStatus1";
  840. this.ddjStatus1.Size = new System.Drawing.Size(35, 18);
  841. this.ddjStatus1.TabIndex = 10;
  842. this.ddjStatus1.Text = "---";
  843. //
  844. // ddjPosCurr1
  845. //
  846. this.ddjPosCurr1.AutoSize = true;
  847. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  848. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  849. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  850. this.ddjPosCurr1.Location = new System.Drawing.Point(132, 226);
  851. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  852. this.ddjPosCurr1.Name = "ddjPosCurr1";
  853. this.ddjPosCurr1.Size = new System.Drawing.Size(35, 18);
  854. this.ddjPosCurr1.TabIndex = 9;
  855. this.ddjPosCurr1.Text = "---";
  856. //
  857. // label5
  858. //
  859. this.label5.AutoSize = true;
  860. this.label5.BackColor = System.Drawing.Color.Transparent;
  861. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  862. this.label5.Location = new System.Drawing.Point(3, 286);
  863. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  864. this.label5.Name = "label5";
  865. this.label5.Size = new System.Drawing.Size(98, 18);
  866. this.label5.TabIndex = 8;
  867. this.label5.Text = "里 程 数:";
  868. //
  869. // label3
  870. //
  871. this.label3.AutoSize = true;
  872. this.label3.BackColor = System.Drawing.Color.Transparent;
  873. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  874. this.label3.Location = new System.Drawing.Point(3, 138);
  875. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  876. this.label3.Name = "label3";
  877. this.label3.Size = new System.Drawing.Size(98, 18);
  878. this.label3.TabIndex = 6;
  879. this.label3.Text = "工作状态:";
  880. //
  881. // label2
  882. //
  883. this.label2.AutoSize = true;
  884. this.label2.BackColor = System.Drawing.Color.Transparent;
  885. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  886. this.label2.Location = new System.Drawing.Point(3, 226);
  887. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  888. this.label2.Name = "label2";
  889. this.label2.Size = new System.Drawing.Size(98, 18);
  890. this.label2.TabIndex = 1;
  891. this.label2.Text = "当前位置:";
  892. //
  893. // lblsrm01
  894. //
  895. this.lblsrm01.AutoSize = true;
  896. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  897. 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)));
  898. this.lblsrm01.Location = new System.Drawing.Point(45, 38);
  899. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  900. this.lblsrm01.Name = "lblsrm01";
  901. this.lblsrm01.Size = new System.Drawing.Size(136, 24);
  902. this.lblsrm01.TabIndex = 0;
  903. this.lblsrm01.Text = "1号 堆垛机";
  904. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  905. //
  906. // G1
  907. //
  908. this.G1.BackColor = System.Drawing.Color.Transparent;
  909. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  910. this.G1.InitialImage = null;
  911. this.G1.Location = new System.Drawing.Point(99, -2);
  912. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  913. this.G1.Name = "G1";
  914. this.G1.Size = new System.Drawing.Size(39, 38);
  915. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  916. this.G1.TabIndex = 65;
  917. this.G1.TabStop = false;
  918. this.G1.Tag = "1";
  919. //
  920. // R1
  921. //
  922. this.R1.BackColor = System.Drawing.Color.Transparent;
  923. this.R1.Location = new System.Drawing.Point(98, -2);
  924. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  925. this.R1.Name = "R1";
  926. this.R1.Size = new System.Drawing.Size(39, 38);
  927. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  928. this.R1.TabIndex = 5;
  929. this.R1.TabStop = false;
  930. //
  931. // pnlDDJ2
  932. //
  933. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  934. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  935. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  936. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  937. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  938. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  939. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  940. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  941. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  942. this.pnlDDJ2.Controls.Add(this.label15);
  943. this.pnlDDJ2.Controls.Add(this.label16);
  944. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  945. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  946. this.pnlDDJ2.Controls.Add(this.label22);
  947. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  948. this.pnlDDJ2.Controls.Add(this.label26);
  949. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  950. this.pnlDDJ2.Controls.Add(this.label29);
  951. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  952. this.pnlDDJ2.Controls.Add(this.label32);
  953. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  954. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  955. this.pnlDDJ2.Controls.Add(this.label83);
  956. this.pnlDDJ2.Controls.Add(this.label86);
  957. this.pnlDDJ2.Controls.Add(this.label87);
  958. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  959. this.pnlDDJ2.Controls.Add(this.G2);
  960. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  961. this.pnlDDJ2.Location = new System.Drawing.Point(252, 4);
  962. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  963. this.pnlDDJ2.Name = "pnlDDJ2";
  964. this.pnlDDJ2.Size = new System.Drawing.Size(244, 374);
  965. this.pnlDDJ2.TabIndex = 26;
  966. //
  967. // lblInStatus2
  968. //
  969. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  970. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  971. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  972. this.lblInStatus2.Name = "lblInStatus2";
  973. this.lblInStatus2.Size = new System.Drawing.Size(42, 36);
  974. this.lblInStatus2.TabIndex = 95;
  975. this.lblInStatus2.Tag = "2";
  976. this.lblInStatus2.Text = "入";
  977. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  978. //
  979. // lblOutStatus2
  980. //
  981. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  982. this.lblOutStatus2.Location = new System.Drawing.Point(190, 2);
  983. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  984. this.lblOutStatus2.Name = "lblOutStatus2";
  985. this.lblOutStatus2.Size = new System.Drawing.Size(42, 36);
  986. this.lblOutStatus2.TabIndex = 94;
  987. this.lblOutStatus2.Text = "出";
  988. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  989. //
  990. // lblDDJWarning2
  991. //
  992. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  993. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  994. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  995. this.lblDDJWarning2.Location = new System.Drawing.Point(6, 70);
  996. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  997. this.lblDDJWarning2.Name = "lblDDJWarning2";
  998. this.lblDDJWarning2.Size = new System.Drawing.Size(231, 36);
  999. this.lblDDJWarning2.TabIndex = 93;
  1000. //
  1001. // ddjPosTo2
  1002. //
  1003. this.ddjPosTo2.AutoSize = true;
  1004. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  1005. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1006. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  1007. this.ddjPosTo2.Location = new System.Drawing.Point(138, 348);
  1008. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1009. this.ddjPosTo2.Name = "ddjPosTo2";
  1010. this.ddjPosTo2.Size = new System.Drawing.Size(35, 18);
  1011. this.ddjPosTo2.TabIndex = 91;
  1012. this.ddjPosTo2.Text = "---";
  1013. //
  1014. // ddjPosFrom2
  1015. //
  1016. this.ddjPosFrom2.AutoSize = true;
  1017. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  1018. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1019. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  1020. this.ddjPosFrom2.Location = new System.Drawing.Point(138, 314);
  1021. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1022. this.ddjPosFrom2.Name = "ddjPosFrom2";
  1023. this.ddjPosFrom2.Size = new System.Drawing.Size(35, 18);
  1024. this.ddjPosFrom2.TabIndex = 90;
  1025. this.ddjPosFrom2.Text = "---";
  1026. //
  1027. // label15
  1028. //
  1029. this.label15.AutoSize = true;
  1030. this.label15.BackColor = System.Drawing.Color.Transparent;
  1031. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1032. this.label15.Location = new System.Drawing.Point(6, 314);
  1033. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1034. this.label15.Name = "label15";
  1035. this.label15.Size = new System.Drawing.Size(98, 18);
  1036. this.label15.TabIndex = 89;
  1037. this.label15.Text = "起始位置:";
  1038. //
  1039. // label16
  1040. //
  1041. this.label16.AutoSize = true;
  1042. this.label16.BackColor = System.Drawing.Color.Transparent;
  1043. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1044. this.label16.Location = new System.Drawing.Point(6, 348);
  1045. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1046. this.label16.Name = "label16";
  1047. this.label16.Size = new System.Drawing.Size(98, 18);
  1048. this.label16.TabIndex = 88;
  1049. this.label16.Text = "目标位置:";
  1050. //
  1051. // ddjMode2
  1052. //
  1053. this.ddjMode2.AutoSize = true;
  1054. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  1055. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1056. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  1057. this.ddjMode2.Location = new System.Drawing.Point(135, 108);
  1058. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1059. this.ddjMode2.Name = "ddjMode2";
  1060. this.ddjMode2.Size = new System.Drawing.Size(35, 18);
  1061. this.ddjMode2.TabIndex = 79;
  1062. this.ddjMode2.Text = "---";
  1063. //
  1064. // ddjOrdId2
  1065. //
  1066. this.ddjOrdId2.AutoSize = true;
  1067. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  1068. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1069. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  1070. this.ddjOrdId2.Location = new System.Drawing.Point(135, 168);
  1071. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1072. this.ddjOrdId2.Name = "ddjOrdId2";
  1073. this.ddjOrdId2.Size = new System.Drawing.Size(35, 18);
  1074. this.ddjOrdId2.TabIndex = 87;
  1075. this.ddjOrdId2.Text = "---";
  1076. //
  1077. // label22
  1078. //
  1079. this.label22.AutoSize = true;
  1080. this.label22.BackColor = System.Drawing.Color.Transparent;
  1081. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1082. this.label22.Location = new System.Drawing.Point(6, 168);
  1083. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1084. this.label22.Name = "label22";
  1085. this.label22.Size = new System.Drawing.Size(98, 18);
  1086. this.label22.TabIndex = 86;
  1087. this.label22.Text = "工作指令:";
  1088. //
  1089. // ddjOptType2
  1090. //
  1091. this.ddjOptType2.AutoSize = true;
  1092. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  1093. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1094. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  1095. this.ddjOptType2.Location = new System.Drawing.Point(135, 194);
  1096. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1097. this.ddjOptType2.Name = "ddjOptType2";
  1098. this.ddjOptType2.Size = new System.Drawing.Size(35, 18);
  1099. this.ddjOptType2.TabIndex = 85;
  1100. this.ddjOptType2.Text = "---";
  1101. //
  1102. // label26
  1103. //
  1104. this.label26.AutoSize = true;
  1105. this.label26.BackColor = System.Drawing.Color.Transparent;
  1106. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1107. this.label26.Location = new System.Drawing.Point(6, 194);
  1108. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1109. this.label26.Name = "label26";
  1110. this.label26.Size = new System.Drawing.Size(98, 18);
  1111. this.label26.TabIndex = 84;
  1112. this.label26.Text = "作业类型:";
  1113. //
  1114. // ddjTotal_KM2
  1115. //
  1116. this.ddjTotal_KM2.AutoSize = true;
  1117. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  1118. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1119. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  1120. this.ddjTotal_KM2.Location = new System.Drawing.Point(136, 286);
  1121. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1122. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  1123. this.ddjTotal_KM2.Size = new System.Drawing.Size(35, 18);
  1124. this.ddjTotal_KM2.TabIndex = 83;
  1125. this.ddjTotal_KM2.Text = "---";
  1126. //
  1127. // label29
  1128. //
  1129. this.label29.AutoSize = true;
  1130. this.label29.BackColor = System.Drawing.Color.Transparent;
  1131. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1132. this.label29.Location = new System.Drawing.Point(6, 108);
  1133. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1134. this.label29.Name = "label29";
  1135. this.label29.Size = new System.Drawing.Size(98, 18);
  1136. this.label29.TabIndex = 82;
  1137. this.label29.Text = "工作模式:";
  1138. //
  1139. // ddjWorkTime2
  1140. //
  1141. this.ddjWorkTime2.AutoSize = true;
  1142. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  1143. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1144. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  1145. this.ddjWorkTime2.Location = new System.Drawing.Point(136, 254);
  1146. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1147. this.ddjWorkTime2.Name = "ddjWorkTime2";
  1148. this.ddjWorkTime2.Size = new System.Drawing.Size(35, 18);
  1149. this.ddjWorkTime2.TabIndex = 81;
  1150. this.ddjWorkTime2.Text = "---";
  1151. //
  1152. // label32
  1153. //
  1154. this.label32.AutoSize = true;
  1155. this.label32.BackColor = System.Drawing.Color.Transparent;
  1156. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1157. this.label32.Location = new System.Drawing.Point(6, 254);
  1158. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1159. this.label32.Name = "label32";
  1160. this.label32.Size = new System.Drawing.Size(98, 18);
  1161. this.label32.TabIndex = 80;
  1162. this.label32.Text = "运行时长:";
  1163. //
  1164. // ddjStatus2
  1165. //
  1166. this.ddjStatus2.AutoSize = true;
  1167. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  1168. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1169. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  1170. this.ddjStatus2.Location = new System.Drawing.Point(135, 134);
  1171. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1172. this.ddjStatus2.Name = "ddjStatus2";
  1173. this.ddjStatus2.Size = new System.Drawing.Size(35, 18);
  1174. this.ddjStatus2.TabIndex = 78;
  1175. this.ddjStatus2.Text = "---";
  1176. //
  1177. // ddjPosCurr2
  1178. //
  1179. this.ddjPosCurr2.AutoSize = true;
  1180. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  1181. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1182. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  1183. this.ddjPosCurr2.Location = new System.Drawing.Point(136, 222);
  1184. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1185. this.ddjPosCurr2.Name = "ddjPosCurr2";
  1186. this.ddjPosCurr2.Size = new System.Drawing.Size(35, 18);
  1187. this.ddjPosCurr2.TabIndex = 77;
  1188. this.ddjPosCurr2.Text = "---";
  1189. //
  1190. // label83
  1191. //
  1192. this.label83.AutoSize = true;
  1193. this.label83.BackColor = System.Drawing.Color.Transparent;
  1194. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1195. this.label83.Location = new System.Drawing.Point(6, 286);
  1196. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1197. this.label83.Name = "label83";
  1198. this.label83.Size = new System.Drawing.Size(98, 18);
  1199. this.label83.TabIndex = 76;
  1200. this.label83.Text = "里 程 数:";
  1201. //
  1202. // label86
  1203. //
  1204. this.label86.AutoSize = true;
  1205. this.label86.BackColor = System.Drawing.Color.Transparent;
  1206. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1207. this.label86.Location = new System.Drawing.Point(6, 134);
  1208. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1209. this.label86.Name = "label86";
  1210. this.label86.Size = new System.Drawing.Size(98, 18);
  1211. this.label86.TabIndex = 75;
  1212. this.label86.Text = "工作状态:";
  1213. //
  1214. // label87
  1215. //
  1216. this.label87.AutoSize = true;
  1217. this.label87.BackColor = System.Drawing.Color.Transparent;
  1218. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1219. this.label87.Location = new System.Drawing.Point(6, 222);
  1220. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1221. this.label87.Name = "label87";
  1222. this.label87.Size = new System.Drawing.Size(98, 18);
  1223. this.label87.TabIndex = 74;
  1224. this.label87.Text = "当前巷道:";
  1225. //
  1226. // lblsrm02
  1227. //
  1228. this.lblsrm02.AutoSize = true;
  1229. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  1230. 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)));
  1231. this.lblsrm02.Location = new System.Drawing.Point(57, 38);
  1232. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1233. this.lblsrm02.Name = "lblsrm02";
  1234. this.lblsrm02.Size = new System.Drawing.Size(136, 24);
  1235. this.lblsrm02.TabIndex = 0;
  1236. this.lblsrm02.Text = "2号 堆垛机";
  1237. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  1238. //
  1239. // G2
  1240. //
  1241. this.G2.BackColor = System.Drawing.Color.Transparent;
  1242. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  1243. this.G2.Location = new System.Drawing.Point(102, -2);
  1244. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1245. this.G2.Name = "G2";
  1246. this.G2.Size = new System.Drawing.Size(39, 38);
  1247. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1248. this.G2.TabIndex = 65;
  1249. this.G2.TabStop = false;
  1250. this.G2.Tag = "1";
  1251. //
  1252. // pictureBox6
  1253. //
  1254. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  1255. this.pictureBox6.Location = new System.Drawing.Point(102, -2);
  1256. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1257. this.pictureBox6.Name = "pictureBox6";
  1258. this.pictureBox6.Size = new System.Drawing.Size(39, 38);
  1259. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1260. this.pictureBox6.TabIndex = 5;
  1261. this.pictureBox6.TabStop = false;
  1262. //
  1263. // pnlDDJ3
  1264. //
  1265. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  1266. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1267. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  1268. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  1269. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  1270. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  1271. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  1272. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  1273. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  1274. this.pnlDDJ3.Controls.Add(this.label43);
  1275. this.pnlDDJ3.Controls.Add(this.label51);
  1276. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  1277. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  1278. this.pnlDDJ3.Controls.Add(this.label55);
  1279. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  1280. this.pnlDDJ3.Controls.Add(this.label57);
  1281. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  1282. this.pnlDDJ3.Controls.Add(this.label59);
  1283. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  1284. this.pnlDDJ3.Controls.Add(this.label61);
  1285. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  1286. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  1287. this.pnlDDJ3.Controls.Add(this.label64);
  1288. this.pnlDDJ3.Controls.Add(this.label65);
  1289. this.pnlDDJ3.Controls.Add(this.label66);
  1290. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  1291. this.pnlDDJ3.Controls.Add(this.G3);
  1292. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  1293. this.pnlDDJ3.Location = new System.Drawing.Point(504, 4);
  1294. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1295. this.pnlDDJ3.Name = "pnlDDJ3";
  1296. this.pnlDDJ3.Size = new System.Drawing.Size(244, 374);
  1297. this.pnlDDJ3.TabIndex = 28;
  1298. //
  1299. // lblInStatus3
  1300. //
  1301. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  1302. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  1303. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1304. this.lblInStatus3.Name = "lblInStatus3";
  1305. this.lblInStatus3.Size = new System.Drawing.Size(42, 36);
  1306. this.lblInStatus3.TabIndex = 96;
  1307. this.lblInStatus3.Tag = "3";
  1308. this.lblInStatus3.Text = "入";
  1309. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1310. //
  1311. // lblOutStatus3
  1312. //
  1313. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  1314. this.lblOutStatus3.Location = new System.Drawing.Point(194, 2);
  1315. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1316. this.lblOutStatus3.Name = "lblOutStatus3";
  1317. this.lblOutStatus3.Size = new System.Drawing.Size(42, 36);
  1318. this.lblOutStatus3.TabIndex = 94;
  1319. this.lblOutStatus3.Text = "出";
  1320. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1321. //
  1322. // lblDDJWarning3
  1323. //
  1324. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  1325. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1326. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  1327. this.lblDDJWarning3.Location = new System.Drawing.Point(8, 70);
  1328. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1329. this.lblDDJWarning3.Name = "lblDDJWarning3";
  1330. this.lblDDJWarning3.Size = new System.Drawing.Size(226, 36);
  1331. this.lblDDJWarning3.TabIndex = 92;
  1332. //
  1333. // ddjPosTo3
  1334. //
  1335. this.ddjPosTo3.AutoSize = true;
  1336. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  1337. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1338. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  1339. this.ddjPosTo3.Location = new System.Drawing.Point(134, 350);
  1340. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1341. this.ddjPosTo3.Name = "ddjPosTo3";
  1342. this.ddjPosTo3.Size = new System.Drawing.Size(35, 18);
  1343. this.ddjPosTo3.TabIndex = 73;
  1344. this.ddjPosTo3.Text = "---";
  1345. //
  1346. // ddjPosFrom3
  1347. //
  1348. this.ddjPosFrom3.AutoSize = true;
  1349. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  1350. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1351. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  1352. this.ddjPosFrom3.Location = new System.Drawing.Point(134, 318);
  1353. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1354. this.ddjPosFrom3.Name = "ddjPosFrom3";
  1355. this.ddjPosFrom3.Size = new System.Drawing.Size(35, 18);
  1356. this.ddjPosFrom3.TabIndex = 72;
  1357. this.ddjPosFrom3.Text = "---";
  1358. //
  1359. // label43
  1360. //
  1361. this.label43.AutoSize = true;
  1362. this.label43.BackColor = System.Drawing.Color.Transparent;
  1363. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1364. this.label43.Location = new System.Drawing.Point(4, 318);
  1365. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1366. this.label43.Name = "label43";
  1367. this.label43.Size = new System.Drawing.Size(98, 18);
  1368. this.label43.TabIndex = 71;
  1369. this.label43.Text = "起始位置:";
  1370. //
  1371. // label51
  1372. //
  1373. this.label51.AutoSize = true;
  1374. this.label51.BackColor = System.Drawing.Color.Transparent;
  1375. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1376. this.label51.Location = new System.Drawing.Point(4, 350);
  1377. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1378. this.label51.Name = "label51";
  1379. this.label51.Size = new System.Drawing.Size(98, 18);
  1380. this.label51.TabIndex = 70;
  1381. this.label51.Text = "目标位置:";
  1382. //
  1383. // ddjMode3
  1384. //
  1385. this.ddjMode3.AutoSize = true;
  1386. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  1387. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1388. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  1389. this.ddjMode3.Location = new System.Drawing.Point(130, 110);
  1390. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1391. this.ddjMode3.Name = "ddjMode3";
  1392. this.ddjMode3.Size = new System.Drawing.Size(35, 18);
  1393. this.ddjMode3.TabIndex = 12;
  1394. this.ddjMode3.Text = "---";
  1395. //
  1396. // ddjOrdId3
  1397. //
  1398. this.ddjOrdId3.AutoSize = true;
  1399. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  1400. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1401. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  1402. this.ddjOrdId3.Location = new System.Drawing.Point(130, 170);
  1403. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1404. this.ddjOrdId3.Name = "ddjOrdId3";
  1405. this.ddjOrdId3.Size = new System.Drawing.Size(35, 18);
  1406. this.ddjOrdId3.TabIndex = 64;
  1407. this.ddjOrdId3.Text = "---";
  1408. //
  1409. // label55
  1410. //
  1411. this.label55.AutoSize = true;
  1412. this.label55.BackColor = System.Drawing.Color.Transparent;
  1413. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1414. this.label55.Location = new System.Drawing.Point(3, 170);
  1415. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1416. this.label55.Name = "label55";
  1417. this.label55.Size = new System.Drawing.Size(98, 18);
  1418. this.label55.TabIndex = 63;
  1419. this.label55.Text = "工作指令:";
  1420. //
  1421. // ddjOptType3
  1422. //
  1423. this.ddjOptType3.AutoSize = true;
  1424. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  1425. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1426. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  1427. this.ddjOptType3.Location = new System.Drawing.Point(130, 194);
  1428. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1429. this.ddjOptType3.Name = "ddjOptType3";
  1430. this.ddjOptType3.Size = new System.Drawing.Size(35, 18);
  1431. this.ddjOptType3.TabIndex = 62;
  1432. this.ddjOptType3.Text = "---";
  1433. //
  1434. // label57
  1435. //
  1436. this.label57.AutoSize = true;
  1437. this.label57.BackColor = System.Drawing.Color.Transparent;
  1438. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1439. this.label57.Location = new System.Drawing.Point(3, 194);
  1440. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1441. this.label57.Name = "label57";
  1442. this.label57.Size = new System.Drawing.Size(98, 18);
  1443. this.label57.TabIndex = 61;
  1444. this.label57.Text = "作业类型:";
  1445. //
  1446. // ddjTotal_KM3
  1447. //
  1448. this.ddjTotal_KM3.AutoSize = true;
  1449. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  1450. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1451. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  1452. this.ddjTotal_KM3.Location = new System.Drawing.Point(132, 286);
  1453. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1454. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  1455. this.ddjTotal_KM3.Size = new System.Drawing.Size(35, 18);
  1456. this.ddjTotal_KM3.TabIndex = 16;
  1457. this.ddjTotal_KM3.Text = "---";
  1458. //
  1459. // label59
  1460. //
  1461. this.label59.AutoSize = true;
  1462. this.label59.BackColor = System.Drawing.Color.Transparent;
  1463. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1464. this.label59.Location = new System.Drawing.Point(3, 110);
  1465. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1466. this.label59.Name = "label59";
  1467. this.label59.Size = new System.Drawing.Size(98, 18);
  1468. this.label59.TabIndex = 15;
  1469. this.label59.Text = "工作模式:";
  1470. //
  1471. // ddjWorkTime3
  1472. //
  1473. this.ddjWorkTime3.AutoSize = true;
  1474. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  1475. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1476. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  1477. this.ddjWorkTime3.Location = new System.Drawing.Point(132, 254);
  1478. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1479. this.ddjWorkTime3.Name = "ddjWorkTime3";
  1480. this.ddjWorkTime3.Size = new System.Drawing.Size(35, 18);
  1481. this.ddjWorkTime3.TabIndex = 14;
  1482. this.ddjWorkTime3.Text = "---";
  1483. //
  1484. // label61
  1485. //
  1486. this.label61.AutoSize = true;
  1487. this.label61.BackColor = System.Drawing.Color.Transparent;
  1488. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1489. this.label61.Location = new System.Drawing.Point(3, 254);
  1490. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1491. this.label61.Name = "label61";
  1492. this.label61.Size = new System.Drawing.Size(98, 18);
  1493. this.label61.TabIndex = 13;
  1494. this.label61.Text = "运行时长:";
  1495. //
  1496. // ddjStatus3
  1497. //
  1498. this.ddjStatus3.AutoSize = true;
  1499. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  1500. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1501. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  1502. this.ddjStatus3.Location = new System.Drawing.Point(130, 142);
  1503. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1504. this.ddjStatus3.Name = "ddjStatus3";
  1505. this.ddjStatus3.Size = new System.Drawing.Size(35, 18);
  1506. this.ddjStatus3.TabIndex = 10;
  1507. this.ddjStatus3.Text = "---";
  1508. //
  1509. // ddjPosCurr3
  1510. //
  1511. this.ddjPosCurr3.AutoSize = true;
  1512. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  1513. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1514. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  1515. this.ddjPosCurr3.Location = new System.Drawing.Point(132, 226);
  1516. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1517. this.ddjPosCurr3.Name = "ddjPosCurr3";
  1518. this.ddjPosCurr3.Size = new System.Drawing.Size(35, 18);
  1519. this.ddjPosCurr3.TabIndex = 9;
  1520. this.ddjPosCurr3.Text = "---";
  1521. //
  1522. // label64
  1523. //
  1524. this.label64.AutoSize = true;
  1525. this.label64.BackColor = System.Drawing.Color.Transparent;
  1526. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1527. this.label64.Location = new System.Drawing.Point(3, 286);
  1528. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1529. this.label64.Name = "label64";
  1530. this.label64.Size = new System.Drawing.Size(98, 18);
  1531. this.label64.TabIndex = 8;
  1532. this.label64.Text = "里 程 数:";
  1533. //
  1534. // label65
  1535. //
  1536. this.label65.AutoSize = true;
  1537. this.label65.BackColor = System.Drawing.Color.Transparent;
  1538. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1539. this.label65.Location = new System.Drawing.Point(3, 138);
  1540. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1541. this.label65.Name = "label65";
  1542. this.label65.Size = new System.Drawing.Size(98, 18);
  1543. this.label65.TabIndex = 6;
  1544. this.label65.Text = "工作状态:";
  1545. //
  1546. // label66
  1547. //
  1548. this.label66.AutoSize = true;
  1549. this.label66.BackColor = System.Drawing.Color.Transparent;
  1550. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1551. this.label66.Location = new System.Drawing.Point(3, 226);
  1552. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1553. this.label66.Name = "label66";
  1554. this.label66.Size = new System.Drawing.Size(98, 18);
  1555. this.label66.TabIndex = 1;
  1556. this.label66.Text = "当前巷道:";
  1557. //
  1558. // lblsrm03
  1559. //
  1560. this.lblsrm03.AutoSize = true;
  1561. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  1562. 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)));
  1563. this.lblsrm03.Location = new System.Drawing.Point(45, 38);
  1564. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1565. this.lblsrm03.Name = "lblsrm03";
  1566. this.lblsrm03.Size = new System.Drawing.Size(136, 24);
  1567. this.lblsrm03.TabIndex = 0;
  1568. this.lblsrm03.Text = "3号 堆垛机";
  1569. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  1570. //
  1571. // G3
  1572. //
  1573. this.G3.BackColor = System.Drawing.Color.Transparent;
  1574. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  1575. this.G3.Location = new System.Drawing.Point(99, -2);
  1576. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1577. this.G3.Name = "G3";
  1578. this.G3.Size = new System.Drawing.Size(39, 38);
  1579. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1580. this.G3.TabIndex = 65;
  1581. this.G3.TabStop = false;
  1582. this.G3.Tag = "1";
  1583. //
  1584. // pictureBox10
  1585. //
  1586. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  1587. this.pictureBox10.Location = new System.Drawing.Point(98, -2);
  1588. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1589. this.pictureBox10.Name = "pictureBox10";
  1590. this.pictureBox10.Size = new System.Drawing.Size(39, 38);
  1591. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1592. this.pictureBox10.TabIndex = 5;
  1593. this.pictureBox10.TabStop = false;
  1594. //
  1595. // pnlDDJ4
  1596. //
  1597. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  1598. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1599. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  1600. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  1601. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  1602. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  1603. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  1604. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  1605. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  1606. this.pnlDDJ4.Controls.Add(this.label71);
  1607. this.pnlDDJ4.Controls.Add(this.label72);
  1608. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  1609. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  1610. this.pnlDDJ4.Controls.Add(this.label75);
  1611. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  1612. this.pnlDDJ4.Controls.Add(this.label77);
  1613. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  1614. this.pnlDDJ4.Controls.Add(this.label79);
  1615. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  1616. this.pnlDDJ4.Controls.Add(this.label81);
  1617. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  1618. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  1619. this.pnlDDJ4.Controls.Add(this.label89);
  1620. this.pnlDDJ4.Controls.Add(this.label90);
  1621. this.pnlDDJ4.Controls.Add(this.label91);
  1622. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  1623. this.pnlDDJ4.Controls.Add(this.G4);
  1624. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  1625. this.pnlDDJ4.Location = new System.Drawing.Point(756, 2);
  1626. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1627. this.pnlDDJ4.Name = "pnlDDJ4";
  1628. this.pnlDDJ4.Size = new System.Drawing.Size(244, 374);
  1629. this.pnlDDJ4.TabIndex = 29;
  1630. //
  1631. // lblInStatus4
  1632. //
  1633. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  1634. this.lblInStatus4.Location = new System.Drawing.Point(8, 2);
  1635. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1636. this.lblInStatus4.Name = "lblInStatus4";
  1637. this.lblInStatus4.Size = new System.Drawing.Size(42, 36);
  1638. this.lblInStatus4.TabIndex = 97;
  1639. this.lblInStatus4.Tag = "4";
  1640. this.lblInStatus4.Text = "入";
  1641. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1642. //
  1643. // lblOutStatus4
  1644. //
  1645. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  1646. this.lblOutStatus4.Location = new System.Drawing.Point(186, 2);
  1647. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1648. this.lblOutStatus4.Name = "lblOutStatus4";
  1649. this.lblOutStatus4.Size = new System.Drawing.Size(42, 36);
  1650. this.lblOutStatus4.TabIndex = 94;
  1651. this.lblOutStatus4.Text = "出";
  1652. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1653. //
  1654. // lblDDJWarning4
  1655. //
  1656. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  1657. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1658. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  1659. this.lblDDJWarning4.Location = new System.Drawing.Point(8, 70);
  1660. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1661. this.lblDDJWarning4.Name = "lblDDJWarning4";
  1662. this.lblDDJWarning4.Size = new System.Drawing.Size(226, 36);
  1663. this.lblDDJWarning4.TabIndex = 92;
  1664. //
  1665. // ddjPosTo4
  1666. //
  1667. this.ddjPosTo4.AutoSize = true;
  1668. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  1669. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1670. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  1671. this.ddjPosTo4.Location = new System.Drawing.Point(134, 350);
  1672. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1673. this.ddjPosTo4.Name = "ddjPosTo4";
  1674. this.ddjPosTo4.Size = new System.Drawing.Size(35, 18);
  1675. this.ddjPosTo4.TabIndex = 73;
  1676. this.ddjPosTo4.Text = "---";
  1677. //
  1678. // ddjPosFrom4
  1679. //
  1680. this.ddjPosFrom4.AutoSize = true;
  1681. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  1682. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1683. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  1684. this.ddjPosFrom4.Location = new System.Drawing.Point(134, 318);
  1685. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1686. this.ddjPosFrom4.Name = "ddjPosFrom4";
  1687. this.ddjPosFrom4.Size = new System.Drawing.Size(35, 18);
  1688. this.ddjPosFrom4.TabIndex = 72;
  1689. this.ddjPosFrom4.Text = "---";
  1690. //
  1691. // label71
  1692. //
  1693. this.label71.AutoSize = true;
  1694. this.label71.BackColor = System.Drawing.Color.Transparent;
  1695. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1696. this.label71.Location = new System.Drawing.Point(4, 318);
  1697. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1698. this.label71.Name = "label71";
  1699. this.label71.Size = new System.Drawing.Size(98, 18);
  1700. this.label71.TabIndex = 71;
  1701. this.label71.Text = "起始位置:";
  1702. //
  1703. // label72
  1704. //
  1705. this.label72.AutoSize = true;
  1706. this.label72.BackColor = System.Drawing.Color.Transparent;
  1707. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1708. this.label72.Location = new System.Drawing.Point(4, 350);
  1709. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1710. this.label72.Name = "label72";
  1711. this.label72.Size = new System.Drawing.Size(98, 18);
  1712. this.label72.TabIndex = 70;
  1713. this.label72.Text = "目标位置:";
  1714. //
  1715. // ddjMode4
  1716. //
  1717. this.ddjMode4.AutoSize = true;
  1718. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  1719. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1720. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  1721. this.ddjMode4.Location = new System.Drawing.Point(130, 110);
  1722. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1723. this.ddjMode4.Name = "ddjMode4";
  1724. this.ddjMode4.Size = new System.Drawing.Size(35, 18);
  1725. this.ddjMode4.TabIndex = 12;
  1726. this.ddjMode4.Text = "---";
  1727. //
  1728. // ddjOrdId4
  1729. //
  1730. this.ddjOrdId4.AutoSize = true;
  1731. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  1732. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1733. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  1734. this.ddjOrdId4.Location = new System.Drawing.Point(130, 170);
  1735. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1736. this.ddjOrdId4.Name = "ddjOrdId4";
  1737. this.ddjOrdId4.Size = new System.Drawing.Size(35, 18);
  1738. this.ddjOrdId4.TabIndex = 64;
  1739. this.ddjOrdId4.Text = "---";
  1740. //
  1741. // label75
  1742. //
  1743. this.label75.AutoSize = true;
  1744. this.label75.BackColor = System.Drawing.Color.Transparent;
  1745. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1746. this.label75.Location = new System.Drawing.Point(3, 170);
  1747. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1748. this.label75.Name = "label75";
  1749. this.label75.Size = new System.Drawing.Size(98, 18);
  1750. this.label75.TabIndex = 63;
  1751. this.label75.Text = "工作指令:";
  1752. //
  1753. // ddjOptType4
  1754. //
  1755. this.ddjOptType4.AutoSize = true;
  1756. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  1757. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1758. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  1759. this.ddjOptType4.Location = new System.Drawing.Point(130, 194);
  1760. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1761. this.ddjOptType4.Name = "ddjOptType4";
  1762. this.ddjOptType4.Size = new System.Drawing.Size(35, 18);
  1763. this.ddjOptType4.TabIndex = 62;
  1764. this.ddjOptType4.Text = "---";
  1765. //
  1766. // label77
  1767. //
  1768. this.label77.AutoSize = true;
  1769. this.label77.BackColor = System.Drawing.Color.Transparent;
  1770. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1771. this.label77.Location = new System.Drawing.Point(3, 194);
  1772. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1773. this.label77.Name = "label77";
  1774. this.label77.Size = new System.Drawing.Size(98, 18);
  1775. this.label77.TabIndex = 61;
  1776. this.label77.Text = "作业类型:";
  1777. //
  1778. // ddjTotal_KM4
  1779. //
  1780. this.ddjTotal_KM4.AutoSize = true;
  1781. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  1782. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1783. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  1784. this.ddjTotal_KM4.Location = new System.Drawing.Point(132, 286);
  1785. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1786. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  1787. this.ddjTotal_KM4.Size = new System.Drawing.Size(35, 18);
  1788. this.ddjTotal_KM4.TabIndex = 16;
  1789. this.ddjTotal_KM4.Text = "---";
  1790. //
  1791. // label79
  1792. //
  1793. this.label79.AutoSize = true;
  1794. this.label79.BackColor = System.Drawing.Color.Transparent;
  1795. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1796. this.label79.Location = new System.Drawing.Point(3, 110);
  1797. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1798. this.label79.Name = "label79";
  1799. this.label79.Size = new System.Drawing.Size(98, 18);
  1800. this.label79.TabIndex = 15;
  1801. this.label79.Text = "工作模式:";
  1802. //
  1803. // ddjWorkTime4
  1804. //
  1805. this.ddjWorkTime4.AutoSize = true;
  1806. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  1807. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1808. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  1809. this.ddjWorkTime4.Location = new System.Drawing.Point(132, 254);
  1810. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1811. this.ddjWorkTime4.Name = "ddjWorkTime4";
  1812. this.ddjWorkTime4.Size = new System.Drawing.Size(35, 18);
  1813. this.ddjWorkTime4.TabIndex = 14;
  1814. this.ddjWorkTime4.Text = "---";
  1815. //
  1816. // label81
  1817. //
  1818. this.label81.AutoSize = true;
  1819. this.label81.BackColor = System.Drawing.Color.Transparent;
  1820. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1821. this.label81.Location = new System.Drawing.Point(3, 254);
  1822. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1823. this.label81.Name = "label81";
  1824. this.label81.Size = new System.Drawing.Size(98, 18);
  1825. this.label81.TabIndex = 13;
  1826. this.label81.Text = "运行时长:";
  1827. //
  1828. // ddjStatus4
  1829. //
  1830. this.ddjStatus4.AutoSize = true;
  1831. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  1832. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1833. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  1834. this.ddjStatus4.Location = new System.Drawing.Point(130, 138);
  1835. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1836. this.ddjStatus4.Name = "ddjStatus4";
  1837. this.ddjStatus4.Size = new System.Drawing.Size(35, 18);
  1838. this.ddjStatus4.TabIndex = 10;
  1839. this.ddjStatus4.Text = "---";
  1840. //
  1841. // ddjPosCurr4
  1842. //
  1843. this.ddjPosCurr4.AutoSize = true;
  1844. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  1845. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1846. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  1847. this.ddjPosCurr4.Location = new System.Drawing.Point(132, 226);
  1848. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1849. this.ddjPosCurr4.Name = "ddjPosCurr4";
  1850. this.ddjPosCurr4.Size = new System.Drawing.Size(35, 18);
  1851. this.ddjPosCurr4.TabIndex = 9;
  1852. this.ddjPosCurr4.Text = "---";
  1853. //
  1854. // label89
  1855. //
  1856. this.label89.AutoSize = true;
  1857. this.label89.BackColor = System.Drawing.Color.Transparent;
  1858. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1859. this.label89.Location = new System.Drawing.Point(3, 286);
  1860. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1861. this.label89.Name = "label89";
  1862. this.label89.Size = new System.Drawing.Size(98, 18);
  1863. this.label89.TabIndex = 8;
  1864. this.label89.Text = "里 程 数:";
  1865. //
  1866. // label90
  1867. //
  1868. this.label90.AutoSize = true;
  1869. this.label90.BackColor = System.Drawing.Color.Transparent;
  1870. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1871. this.label90.Location = new System.Drawing.Point(3, 138);
  1872. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1873. this.label90.Name = "label90";
  1874. this.label90.Size = new System.Drawing.Size(98, 18);
  1875. this.label90.TabIndex = 6;
  1876. this.label90.Text = "工作状态:";
  1877. //
  1878. // label91
  1879. //
  1880. this.label91.AutoSize = true;
  1881. this.label91.BackColor = System.Drawing.Color.Transparent;
  1882. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1883. this.label91.Location = new System.Drawing.Point(3, 226);
  1884. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1885. this.label91.Name = "label91";
  1886. this.label91.Size = new System.Drawing.Size(98, 18);
  1887. this.label91.TabIndex = 1;
  1888. this.label91.Text = "当前巷道:";
  1889. //
  1890. // lblsrm04
  1891. //
  1892. this.lblsrm04.AutoSize = true;
  1893. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  1894. 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)));
  1895. this.lblsrm04.Location = new System.Drawing.Point(45, 38);
  1896. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1897. this.lblsrm04.Name = "lblsrm04";
  1898. this.lblsrm04.Size = new System.Drawing.Size(136, 24);
  1899. this.lblsrm04.TabIndex = 0;
  1900. this.lblsrm04.Text = "4号 堆垛机";
  1901. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  1902. //
  1903. // G4
  1904. //
  1905. this.G4.BackColor = System.Drawing.Color.Transparent;
  1906. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  1907. this.G4.Location = new System.Drawing.Point(99, -2);
  1908. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1909. this.G4.Name = "G4";
  1910. this.G4.Size = new System.Drawing.Size(39, 38);
  1911. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1912. this.G4.TabIndex = 65;
  1913. this.G4.TabStop = false;
  1914. this.G4.Tag = "1";
  1915. //
  1916. // pictureBox14
  1917. //
  1918. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  1919. this.pictureBox14.Location = new System.Drawing.Point(98, -2);
  1920. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1921. this.pictureBox14.Name = "pictureBox14";
  1922. this.pictureBox14.Size = new System.Drawing.Size(39, 38);
  1923. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  1924. this.pictureBox14.TabIndex = 5;
  1925. this.pictureBox14.TabStop = false;
  1926. //
  1927. // myPanel1
  1928. //
  1929. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  1930. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  1931. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  1932. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  1933. this.myPanel1.Controls.Add(this.lblInStatus5);
  1934. this.myPanel1.Controls.Add(this.lblOutStatus5);
  1935. this.myPanel1.Controls.Add(this.label11);
  1936. this.myPanel1.Controls.Add(this.ddjPosTo5);
  1937. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  1938. this.myPanel1.Controls.Add(this.label17);
  1939. this.myPanel1.Controls.Add(this.label18);
  1940. this.myPanel1.Controls.Add(this.ddjMode5);
  1941. this.myPanel1.Controls.Add(this.ddjOrdId5);
  1942. this.myPanel1.Controls.Add(this.label21);
  1943. this.myPanel1.Controls.Add(this.ddjOptType5);
  1944. this.myPanel1.Controls.Add(this.label24);
  1945. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  1946. this.myPanel1.Controls.Add(this.label27);
  1947. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  1948. this.myPanel1.Controls.Add(this.label30);
  1949. this.myPanel1.Controls.Add(this.ddjStatus5);
  1950. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  1951. this.myPanel1.Controls.Add(this.label36);
  1952. this.myPanel1.Controls.Add(this.label37);
  1953. this.myPanel1.Controls.Add(this.label38);
  1954. this.myPanel1.Controls.Add(this.lblsrm05);
  1955. this.myPanel1.Controls.Add(this.G5);
  1956. this.myPanel1.Controls.Add(this.pictureBox3);
  1957. this.myPanel1.Location = new System.Drawing.Point(1008, 2);
  1958. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1959. this.myPanel1.Name = "myPanel1";
  1960. this.myPanel1.Size = new System.Drawing.Size(244, 374);
  1961. this.myPanel1.TabIndex = 30;
  1962. //
  1963. // lblInStatus5
  1964. //
  1965. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  1966. this.lblInStatus5.Location = new System.Drawing.Point(8, 2);
  1967. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1968. this.lblInStatus5.Name = "lblInStatus5";
  1969. this.lblInStatus5.Size = new System.Drawing.Size(42, 36);
  1970. this.lblInStatus5.TabIndex = 97;
  1971. this.lblInStatus5.Tag = "4";
  1972. this.lblInStatus5.Text = "入";
  1973. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1974. //
  1975. // lblOutStatus5
  1976. //
  1977. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  1978. this.lblOutStatus5.Location = new System.Drawing.Point(186, 2);
  1979. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1980. this.lblOutStatus5.Name = "lblOutStatus5";
  1981. this.lblOutStatus5.Size = new System.Drawing.Size(42, 36);
  1982. this.lblOutStatus5.TabIndex = 94;
  1983. this.lblOutStatus5.Text = "出";
  1984. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1985. //
  1986. // label11
  1987. //
  1988. this.label11.BackColor = System.Drawing.Color.Transparent;
  1989. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1990. this.label11.ForeColor = System.Drawing.Color.Red;
  1991. this.label11.Location = new System.Drawing.Point(8, 70);
  1992. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1993. this.label11.Name = "label11";
  1994. this.label11.Size = new System.Drawing.Size(226, 36);
  1995. this.label11.TabIndex = 92;
  1996. //
  1997. // ddjPosTo5
  1998. //
  1999. this.ddjPosTo5.AutoSize = true;
  2000. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  2001. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2002. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  2003. this.ddjPosTo5.Location = new System.Drawing.Point(134, 350);
  2004. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2005. this.ddjPosTo5.Name = "ddjPosTo5";
  2006. this.ddjPosTo5.Size = new System.Drawing.Size(35, 18);
  2007. this.ddjPosTo5.TabIndex = 73;
  2008. this.ddjPosTo5.Text = "---";
  2009. //
  2010. // ddjPosFrom5
  2011. //
  2012. this.ddjPosFrom5.AutoSize = true;
  2013. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  2014. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2015. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  2016. this.ddjPosFrom5.Location = new System.Drawing.Point(134, 318);
  2017. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2018. this.ddjPosFrom5.Name = "ddjPosFrom5";
  2019. this.ddjPosFrom5.Size = new System.Drawing.Size(35, 18);
  2020. this.ddjPosFrom5.TabIndex = 72;
  2021. this.ddjPosFrom5.Text = "---";
  2022. //
  2023. // label17
  2024. //
  2025. this.label17.AutoSize = true;
  2026. this.label17.BackColor = System.Drawing.Color.Transparent;
  2027. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2028. this.label17.Location = new System.Drawing.Point(4, 318);
  2029. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2030. this.label17.Name = "label17";
  2031. this.label17.Size = new System.Drawing.Size(98, 18);
  2032. this.label17.TabIndex = 71;
  2033. this.label17.Text = "起始位置:";
  2034. //
  2035. // label18
  2036. //
  2037. this.label18.AutoSize = true;
  2038. this.label18.BackColor = System.Drawing.Color.Transparent;
  2039. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2040. this.label18.Location = new System.Drawing.Point(4, 350);
  2041. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2042. this.label18.Name = "label18";
  2043. this.label18.Size = new System.Drawing.Size(98, 18);
  2044. this.label18.TabIndex = 70;
  2045. this.label18.Text = "目标位置:";
  2046. //
  2047. // ddjMode5
  2048. //
  2049. this.ddjMode5.AutoSize = true;
  2050. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  2051. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2052. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  2053. this.ddjMode5.Location = new System.Drawing.Point(130, 110);
  2054. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2055. this.ddjMode5.Name = "ddjMode5";
  2056. this.ddjMode5.Size = new System.Drawing.Size(35, 18);
  2057. this.ddjMode5.TabIndex = 12;
  2058. this.ddjMode5.Text = "---";
  2059. //
  2060. // ddjOrdId5
  2061. //
  2062. this.ddjOrdId5.AutoSize = true;
  2063. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  2064. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2065. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  2066. this.ddjOrdId5.Location = new System.Drawing.Point(130, 170);
  2067. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2068. this.ddjOrdId5.Name = "ddjOrdId5";
  2069. this.ddjOrdId5.Size = new System.Drawing.Size(35, 18);
  2070. this.ddjOrdId5.TabIndex = 64;
  2071. this.ddjOrdId5.Text = "---";
  2072. //
  2073. // label21
  2074. //
  2075. this.label21.AutoSize = true;
  2076. this.label21.BackColor = System.Drawing.Color.Transparent;
  2077. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2078. this.label21.Location = new System.Drawing.Point(3, 170);
  2079. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2080. this.label21.Name = "label21";
  2081. this.label21.Size = new System.Drawing.Size(98, 18);
  2082. this.label21.TabIndex = 63;
  2083. this.label21.Text = "工作指令:";
  2084. //
  2085. // ddjOptType5
  2086. //
  2087. this.ddjOptType5.AutoSize = true;
  2088. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  2089. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2090. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  2091. this.ddjOptType5.Location = new System.Drawing.Point(130, 194);
  2092. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2093. this.ddjOptType5.Name = "ddjOptType5";
  2094. this.ddjOptType5.Size = new System.Drawing.Size(35, 18);
  2095. this.ddjOptType5.TabIndex = 62;
  2096. this.ddjOptType5.Text = "---";
  2097. //
  2098. // label24
  2099. //
  2100. this.label24.AutoSize = true;
  2101. this.label24.BackColor = System.Drawing.Color.Transparent;
  2102. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2103. this.label24.Location = new System.Drawing.Point(3, 194);
  2104. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2105. this.label24.Name = "label24";
  2106. this.label24.Size = new System.Drawing.Size(98, 18);
  2107. this.label24.TabIndex = 61;
  2108. this.label24.Text = "作业类型:";
  2109. //
  2110. // ddjTotal_KM5
  2111. //
  2112. this.ddjTotal_KM5.AutoSize = true;
  2113. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  2114. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2115. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  2116. this.ddjTotal_KM5.Location = new System.Drawing.Point(132, 286);
  2117. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2118. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  2119. this.ddjTotal_KM5.Size = new System.Drawing.Size(35, 18);
  2120. this.ddjTotal_KM5.TabIndex = 16;
  2121. this.ddjTotal_KM5.Text = "---";
  2122. //
  2123. // label27
  2124. //
  2125. this.label27.AutoSize = true;
  2126. this.label27.BackColor = System.Drawing.Color.Transparent;
  2127. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2128. this.label27.Location = new System.Drawing.Point(3, 110);
  2129. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2130. this.label27.Name = "label27";
  2131. this.label27.Size = new System.Drawing.Size(98, 18);
  2132. this.label27.TabIndex = 15;
  2133. this.label27.Text = "工作模式:";
  2134. //
  2135. // ddjWorkTime5
  2136. //
  2137. this.ddjWorkTime5.AutoSize = true;
  2138. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  2139. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2140. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  2141. this.ddjWorkTime5.Location = new System.Drawing.Point(132, 254);
  2142. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2143. this.ddjWorkTime5.Name = "ddjWorkTime5";
  2144. this.ddjWorkTime5.Size = new System.Drawing.Size(35, 18);
  2145. this.ddjWorkTime5.TabIndex = 14;
  2146. this.ddjWorkTime5.Text = "---";
  2147. //
  2148. // label30
  2149. //
  2150. this.label30.AutoSize = true;
  2151. this.label30.BackColor = System.Drawing.Color.Transparent;
  2152. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2153. this.label30.Location = new System.Drawing.Point(3, 254);
  2154. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2155. this.label30.Name = "label30";
  2156. this.label30.Size = new System.Drawing.Size(98, 18);
  2157. this.label30.TabIndex = 13;
  2158. this.label30.Text = "运行时长:";
  2159. //
  2160. // ddjStatus5
  2161. //
  2162. this.ddjStatus5.AutoSize = true;
  2163. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  2164. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2165. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  2166. this.ddjStatus5.Location = new System.Drawing.Point(130, 138);
  2167. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2168. this.ddjStatus5.Name = "ddjStatus5";
  2169. this.ddjStatus5.Size = new System.Drawing.Size(35, 18);
  2170. this.ddjStatus5.TabIndex = 10;
  2171. this.ddjStatus5.Text = "---";
  2172. //
  2173. // ddjPosCurr5
  2174. //
  2175. this.ddjPosCurr5.AutoSize = true;
  2176. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  2177. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2178. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  2179. this.ddjPosCurr5.Location = new System.Drawing.Point(132, 226);
  2180. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2181. this.ddjPosCurr5.Name = "ddjPosCurr5";
  2182. this.ddjPosCurr5.Size = new System.Drawing.Size(35, 18);
  2183. this.ddjPosCurr5.TabIndex = 9;
  2184. this.ddjPosCurr5.Text = "---";
  2185. //
  2186. // label36
  2187. //
  2188. this.label36.AutoSize = true;
  2189. this.label36.BackColor = System.Drawing.Color.Transparent;
  2190. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2191. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  2192. this.label36.Location = new System.Drawing.Point(3, 286);
  2193. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2194. this.label36.Name = "label36";
  2195. this.label36.Size = new System.Drawing.Size(98, 18);
  2196. this.label36.TabIndex = 8;
  2197. this.label36.Text = "里 程 数:";
  2198. //
  2199. // label37
  2200. //
  2201. this.label37.AutoSize = true;
  2202. this.label37.BackColor = System.Drawing.Color.Transparent;
  2203. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2204. this.label37.Location = new System.Drawing.Point(3, 138);
  2205. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2206. this.label37.Name = "label37";
  2207. this.label37.Size = new System.Drawing.Size(98, 18);
  2208. this.label37.TabIndex = 6;
  2209. this.label37.Text = "工作状态:";
  2210. //
  2211. // label38
  2212. //
  2213. this.label38.AutoSize = true;
  2214. this.label38.BackColor = System.Drawing.Color.Transparent;
  2215. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2216. this.label38.Location = new System.Drawing.Point(3, 226);
  2217. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2218. this.label38.Name = "label38";
  2219. this.label38.Size = new System.Drawing.Size(98, 18);
  2220. this.label38.TabIndex = 1;
  2221. this.label38.Text = "当前巷道:";
  2222. //
  2223. // lblsrm05
  2224. //
  2225. this.lblsrm05.AutoSize = true;
  2226. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  2227. 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)));
  2228. this.lblsrm05.Location = new System.Drawing.Point(45, 38);
  2229. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2230. this.lblsrm05.Name = "lblsrm05";
  2231. this.lblsrm05.Size = new System.Drawing.Size(136, 24);
  2232. this.lblsrm05.TabIndex = 0;
  2233. this.lblsrm05.Text = "5号 堆垛机";
  2234. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  2235. //
  2236. // G5
  2237. //
  2238. this.G5.BackColor = System.Drawing.Color.Transparent;
  2239. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  2240. this.G5.Location = new System.Drawing.Point(99, -2);
  2241. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2242. this.G5.Name = "G5";
  2243. this.G5.Size = new System.Drawing.Size(39, 38);
  2244. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2245. this.G5.TabIndex = 65;
  2246. this.G5.TabStop = false;
  2247. this.G5.Tag = "1";
  2248. //
  2249. // pictureBox3
  2250. //
  2251. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  2252. this.pictureBox3.Location = new System.Drawing.Point(98, -2);
  2253. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2254. this.pictureBox3.Name = "pictureBox3";
  2255. this.pictureBox3.Size = new System.Drawing.Size(39, 38);
  2256. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2257. this.pictureBox3.TabIndex = 5;
  2258. this.pictureBox3.TabStop = false;
  2259. //
  2260. // pnlRGV1089
  2261. //
  2262. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  2263. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2264. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  2265. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  2266. this.pnlRGV1089.Controls.Add(this.label7);
  2267. this.pnlRGV1089.Controls.Add(this.label8);
  2268. this.pnlRGV1089.Controls.Add(this.label9);
  2269. this.pnlRGV1089.Controls.Add(this.rgvOptType2);
  2270. this.pnlRGV1089.Controls.Add(this.label31);
  2271. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  2272. this.pnlRGV1089.Controls.Add(this.rgvPosCurr2);
  2273. this.pnlRGV1089.Controls.Add(this.rgvMode2);
  2274. this.pnlRGV1089.Controls.Add(this.rgvOrdId2);
  2275. this.pnlRGV1089.Controls.Add(this.label50);
  2276. this.pnlRGV1089.Controls.Add(this.rgvPosTo2);
  2277. this.pnlRGV1089.Controls.Add(this.label53);
  2278. this.pnlRGV1089.Controls.Add(this.rgvPosFrom2);
  2279. this.pnlRGV1089.Controls.Add(this.rgvStatus2);
  2280. this.pnlRGV1089.Controls.Add(this.label63);
  2281. this.pnlRGV1089.Controls.Add(this.lblrgv1089);
  2282. this.pnlRGV1089.Controls.Add(this.GV2);
  2283. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  2284. this.pnlRGV1089.Location = new System.Drawing.Point(1504, 5);
  2285. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2286. this.pnlRGV1089.Name = "pnlRGV1089";
  2287. this.pnlRGV1089.Size = new System.Drawing.Size(244, 374);
  2288. this.pnlRGV1089.TabIndex = 99;
  2289. //
  2290. // label7
  2291. //
  2292. this.label7.AutoSize = true;
  2293. this.label7.BackColor = System.Drawing.Color.Transparent;
  2294. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2295. this.label7.Location = new System.Drawing.Point(6, 293);
  2296. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2297. this.label7.Name = "label7";
  2298. this.label7.Size = new System.Drawing.Size(98, 18);
  2299. this.label7.TabIndex = 106;
  2300. this.label7.Text = "光电状态:";
  2301. //
  2302. // label8
  2303. //
  2304. this.label8.AutoSize = true;
  2305. this.label8.BackColor = System.Drawing.Color.Transparent;
  2306. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2307. this.label8.Location = new System.Drawing.Point(4, 229);
  2308. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2309. this.label8.Name = "label8";
  2310. this.label8.Size = new System.Drawing.Size(98, 18);
  2311. this.label8.TabIndex = 105;
  2312. this.label8.Text = "起始地址:";
  2313. //
  2314. // label9
  2315. //
  2316. this.label9.AutoSize = true;
  2317. this.label9.BackColor = System.Drawing.Color.Transparent;
  2318. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2319. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  2320. this.label9.Location = new System.Drawing.Point(4, 259);
  2321. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2322. this.label9.Name = "label9";
  2323. this.label9.Size = new System.Drawing.Size(98, 18);
  2324. this.label9.TabIndex = 104;
  2325. this.label9.Text = "目标地址:";
  2326. //
  2327. // rgvOptType2
  2328. //
  2329. this.rgvOptType2.AutoSize = true;
  2330. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  2331. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2332. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  2333. this.rgvOptType2.Location = new System.Drawing.Point(108, 199);
  2334. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2335. this.rgvOptType2.Name = "rgvOptType2";
  2336. this.rgvOptType2.Size = new System.Drawing.Size(35, 18);
  2337. this.rgvOptType2.TabIndex = 101;
  2338. this.rgvOptType2.Text = "---";
  2339. //
  2340. // label31
  2341. //
  2342. this.label31.AutoSize = true;
  2343. this.label31.BackColor = System.Drawing.Color.Transparent;
  2344. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2345. this.label31.Location = new System.Drawing.Point(3, 199);
  2346. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2347. this.label31.Name = "label31";
  2348. this.label31.Size = new System.Drawing.Size(98, 18);
  2349. this.label31.TabIndex = 100;
  2350. this.label31.Text = "作业类型:";
  2351. //
  2352. // lblRGVWarning1089
  2353. //
  2354. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  2355. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2356. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  2357. this.lblRGVWarning1089.Location = new System.Drawing.Point(8, 70);
  2358. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2359. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  2360. this.lblRGVWarning1089.Size = new System.Drawing.Size(226, 36);
  2361. this.lblRGVWarning1089.TabIndex = 92;
  2362. //
  2363. // rgvPosCurr2
  2364. //
  2365. this.rgvPosCurr2.AutoSize = true;
  2366. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  2367. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2368. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  2369. this.rgvPosCurr2.Location = new System.Drawing.Point(107, 293);
  2370. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2371. this.rgvPosCurr2.Name = "rgvPosCurr2";
  2372. this.rgvPosCurr2.Size = new System.Drawing.Size(35, 18);
  2373. this.rgvPosCurr2.TabIndex = 72;
  2374. this.rgvPosCurr2.Text = "---";
  2375. //
  2376. // rgvMode2
  2377. //
  2378. this.rgvMode2.AutoSize = true;
  2379. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  2380. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2381. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  2382. this.rgvMode2.Location = new System.Drawing.Point(108, 110);
  2383. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2384. this.rgvMode2.Name = "rgvMode2";
  2385. this.rgvMode2.Size = new System.Drawing.Size(35, 18);
  2386. this.rgvMode2.TabIndex = 12;
  2387. this.rgvMode2.Text = "---";
  2388. //
  2389. // rgvOrdId2
  2390. //
  2391. this.rgvOrdId2.AutoSize = true;
  2392. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  2393. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2394. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  2395. this.rgvOrdId2.Location = new System.Drawing.Point(108, 170);
  2396. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2397. this.rgvOrdId2.Name = "rgvOrdId2";
  2398. this.rgvOrdId2.Size = new System.Drawing.Size(35, 18);
  2399. this.rgvOrdId2.TabIndex = 64;
  2400. this.rgvOrdId2.Text = "---";
  2401. //
  2402. // label50
  2403. //
  2404. this.label50.AutoSize = true;
  2405. this.label50.BackColor = System.Drawing.Color.Transparent;
  2406. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2407. this.label50.Location = new System.Drawing.Point(3, 170);
  2408. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2409. this.label50.Name = "label50";
  2410. this.label50.Size = new System.Drawing.Size(98, 18);
  2411. this.label50.TabIndex = 63;
  2412. this.label50.Text = "工作指令:";
  2413. //
  2414. // rgvPosTo2
  2415. //
  2416. this.rgvPosTo2.AutoSize = true;
  2417. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  2418. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2419. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  2420. this.rgvPosTo2.Location = new System.Drawing.Point(105, 259);
  2421. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2422. this.rgvPosTo2.Name = "rgvPosTo2";
  2423. this.rgvPosTo2.Size = new System.Drawing.Size(35, 18);
  2424. this.rgvPosTo2.TabIndex = 16;
  2425. this.rgvPosTo2.Text = "---";
  2426. //
  2427. // label53
  2428. //
  2429. this.label53.AutoSize = true;
  2430. this.label53.BackColor = System.Drawing.Color.Transparent;
  2431. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2432. this.label53.Location = new System.Drawing.Point(3, 110);
  2433. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2434. this.label53.Name = "label53";
  2435. this.label53.Size = new System.Drawing.Size(98, 18);
  2436. this.label53.TabIndex = 15;
  2437. this.label53.Text = "工作模式:";
  2438. //
  2439. // rgvPosFrom2
  2440. //
  2441. this.rgvPosFrom2.AutoSize = true;
  2442. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  2443. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2444. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  2445. this.rgvPosFrom2.Location = new System.Drawing.Point(105, 229);
  2446. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2447. this.rgvPosFrom2.Name = "rgvPosFrom2";
  2448. this.rgvPosFrom2.Size = new System.Drawing.Size(35, 18);
  2449. this.rgvPosFrom2.TabIndex = 14;
  2450. this.rgvPosFrom2.Text = "---";
  2451. //
  2452. // rgvStatus2
  2453. //
  2454. this.rgvStatus2.AutoSize = true;
  2455. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  2456. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2457. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  2458. this.rgvStatus2.Location = new System.Drawing.Point(108, 138);
  2459. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2460. this.rgvStatus2.Name = "rgvStatus2";
  2461. this.rgvStatus2.Size = new System.Drawing.Size(35, 18);
  2462. this.rgvStatus2.TabIndex = 10;
  2463. this.rgvStatus2.Text = "---";
  2464. //
  2465. // label63
  2466. //
  2467. this.label63.AutoSize = true;
  2468. this.label63.BackColor = System.Drawing.Color.Transparent;
  2469. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2470. this.label63.Location = new System.Drawing.Point(3, 138);
  2471. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2472. this.label63.Name = "label63";
  2473. this.label63.Size = new System.Drawing.Size(98, 18);
  2474. this.label63.TabIndex = 6;
  2475. this.label63.Text = "工作状态:";
  2476. //
  2477. // lblrgv1089
  2478. //
  2479. this.lblrgv1089.AutoSize = true;
  2480. this.lblrgv1089.BackColor = System.Drawing.Color.Transparent;
  2481. 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)));
  2482. this.lblrgv1089.Location = new System.Drawing.Point(66, 38);
  2483. this.lblrgv1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2484. this.lblrgv1089.Name = "lblrgv1089";
  2485. this.lblrgv1089.Size = new System.Drawing.Size(62, 24);
  2486. this.lblrgv1089.TabIndex = 0;
  2487. this.lblrgv1089.Text = "RGV2";
  2488. this.lblrgv1089.Click += new System.EventHandler(this.lblsrm01_Click);
  2489. //
  2490. // GV2
  2491. //
  2492. this.GV2.BackColor = System.Drawing.Color.Transparent;
  2493. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  2494. this.GV2.Location = new System.Drawing.Point(99, -2);
  2495. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2496. this.GV2.Name = "GV2";
  2497. this.GV2.Size = new System.Drawing.Size(39, 38);
  2498. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2499. this.GV2.TabIndex = 65;
  2500. this.GV2.TabStop = false;
  2501. this.GV2.Tag = "1";
  2502. //
  2503. // pictureBox4
  2504. //
  2505. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  2506. this.pictureBox4.Location = new System.Drawing.Point(98, -2);
  2507. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2508. this.pictureBox4.Name = "pictureBox4";
  2509. this.pictureBox4.Size = new System.Drawing.Size(39, 38);
  2510. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2511. this.pictureBox4.TabIndex = 5;
  2512. this.pictureBox4.TabStop = false;
  2513. //
  2514. // pnlRGV1091
  2515. //
  2516. this.pnlRGV1091.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1091.BackgroundImage")));
  2517. this.pnlRGV1091.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2518. this.pnlRGV1091.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  2519. this.pnlRGV1091.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  2520. this.pnlRGV1091.Controls.Add(this.label14);
  2521. this.pnlRGV1091.Controls.Add(this.label19);
  2522. this.pnlRGV1091.Controls.Add(this.label20);
  2523. this.pnlRGV1091.Controls.Add(this.rgvOptType3);
  2524. this.pnlRGV1091.Controls.Add(this.label74);
  2525. this.pnlRGV1091.Controls.Add(this.lblRGVWarning1091);
  2526. this.pnlRGV1091.Controls.Add(this.rgvPosCurr3);
  2527. this.pnlRGV1091.Controls.Add(this.rgvMode3);
  2528. this.pnlRGV1091.Controls.Add(this.rgvOrdId3);
  2529. this.pnlRGV1091.Controls.Add(this.label94);
  2530. this.pnlRGV1091.Controls.Add(this.rgvPosTo3);
  2531. this.pnlRGV1091.Controls.Add(this.label96);
  2532. this.pnlRGV1091.Controls.Add(this.rgvPosFrom3);
  2533. this.pnlRGV1091.Controls.Add(this.rgvStatus3);
  2534. this.pnlRGV1091.Controls.Add(this.label102);
  2535. this.pnlRGV1091.Controls.Add(this.lblrgv1091);
  2536. this.pnlRGV1091.Controls.Add(this.GV3);
  2537. this.pnlRGV1091.Controls.Add(this.pictureBox7);
  2538. this.pnlRGV1091.Location = new System.Drawing.Point(1751, 4);
  2539. this.pnlRGV1091.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2540. this.pnlRGV1091.Name = "pnlRGV1091";
  2541. this.pnlRGV1091.Size = new System.Drawing.Size(244, 374);
  2542. this.pnlRGV1091.TabIndex = 104;
  2543. //
  2544. // label14
  2545. //
  2546. this.label14.AutoSize = true;
  2547. this.label14.BackColor = System.Drawing.Color.Transparent;
  2548. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2549. this.label14.Location = new System.Drawing.Point(4, 289);
  2550. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2551. this.label14.Name = "label14";
  2552. this.label14.Size = new System.Drawing.Size(98, 18);
  2553. this.label14.TabIndex = 106;
  2554. this.label14.Text = "光电状态:";
  2555. //
  2556. // label19
  2557. //
  2558. this.label19.AutoSize = true;
  2559. this.label19.BackColor = System.Drawing.Color.Transparent;
  2560. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2561. this.label19.Location = new System.Drawing.Point(3, 227);
  2562. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2563. this.label19.Name = "label19";
  2564. this.label19.Size = new System.Drawing.Size(98, 18);
  2565. this.label19.TabIndex = 105;
  2566. this.label19.Text = "起始地址:";
  2567. //
  2568. // label20
  2569. //
  2570. this.label20.AutoSize = true;
  2571. this.label20.BackColor = System.Drawing.Color.Transparent;
  2572. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2573. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  2574. this.label20.Location = new System.Drawing.Point(3, 257);
  2575. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2576. this.label20.Name = "label20";
  2577. this.label20.Size = new System.Drawing.Size(98, 18);
  2578. this.label20.TabIndex = 104;
  2579. this.label20.Text = "目标地址:";
  2580. //
  2581. // rgvOptType3
  2582. //
  2583. this.rgvOptType3.AutoSize = true;
  2584. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  2585. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2586. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  2587. this.rgvOptType3.Location = new System.Drawing.Point(108, 199);
  2588. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2589. this.rgvOptType3.Name = "rgvOptType3";
  2590. this.rgvOptType3.Size = new System.Drawing.Size(35, 18);
  2591. this.rgvOptType3.TabIndex = 101;
  2592. this.rgvOptType3.Text = "---";
  2593. //
  2594. // label74
  2595. //
  2596. this.label74.AutoSize = true;
  2597. this.label74.BackColor = System.Drawing.Color.Transparent;
  2598. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2599. this.label74.Location = new System.Drawing.Point(3, 199);
  2600. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2601. this.label74.Name = "label74";
  2602. this.label74.Size = new System.Drawing.Size(98, 18);
  2603. this.label74.TabIndex = 100;
  2604. this.label74.Text = "作业类型:";
  2605. //
  2606. // lblRGVWarning1091
  2607. //
  2608. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  2609. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2610. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  2611. this.lblRGVWarning1091.Location = new System.Drawing.Point(8, 70);
  2612. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2613. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  2614. this.lblRGVWarning1091.Size = new System.Drawing.Size(226, 36);
  2615. this.lblRGVWarning1091.TabIndex = 92;
  2616. //
  2617. // rgvPosCurr3
  2618. //
  2619. this.rgvPosCurr3.AutoSize = true;
  2620. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  2621. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2622. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  2623. this.rgvPosCurr3.Location = new System.Drawing.Point(111, 290);
  2624. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2625. this.rgvPosCurr3.Name = "rgvPosCurr3";
  2626. this.rgvPosCurr3.Size = new System.Drawing.Size(35, 18);
  2627. this.rgvPosCurr3.TabIndex = 72;
  2628. this.rgvPosCurr3.Text = "---";
  2629. //
  2630. // rgvMode3
  2631. //
  2632. this.rgvMode3.AutoSize = true;
  2633. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  2634. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2635. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  2636. this.rgvMode3.Location = new System.Drawing.Point(108, 110);
  2637. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2638. this.rgvMode3.Name = "rgvMode3";
  2639. this.rgvMode3.Size = new System.Drawing.Size(35, 18);
  2640. this.rgvMode3.TabIndex = 12;
  2641. this.rgvMode3.Text = "---";
  2642. //
  2643. // rgvOrdId3
  2644. //
  2645. this.rgvOrdId3.AutoSize = true;
  2646. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  2647. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2648. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  2649. this.rgvOrdId3.Location = new System.Drawing.Point(108, 170);
  2650. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2651. this.rgvOrdId3.Name = "rgvOrdId3";
  2652. this.rgvOrdId3.Size = new System.Drawing.Size(35, 18);
  2653. this.rgvOrdId3.TabIndex = 64;
  2654. this.rgvOrdId3.Text = "---";
  2655. //
  2656. // label94
  2657. //
  2658. this.label94.AutoSize = true;
  2659. this.label94.BackColor = System.Drawing.Color.Transparent;
  2660. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2661. this.label94.Location = new System.Drawing.Point(3, 170);
  2662. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2663. this.label94.Name = "label94";
  2664. this.label94.Size = new System.Drawing.Size(98, 18);
  2665. this.label94.TabIndex = 63;
  2666. this.label94.Text = "工作指令:";
  2667. //
  2668. // rgvPosTo3
  2669. //
  2670. this.rgvPosTo3.AutoSize = true;
  2671. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  2672. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2673. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  2674. this.rgvPosTo3.Location = new System.Drawing.Point(109, 258);
  2675. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2676. this.rgvPosTo3.Name = "rgvPosTo3";
  2677. this.rgvPosTo3.Size = new System.Drawing.Size(35, 18);
  2678. this.rgvPosTo3.TabIndex = 16;
  2679. this.rgvPosTo3.Text = "---";
  2680. //
  2681. // label96
  2682. //
  2683. this.label96.AutoSize = true;
  2684. this.label96.BackColor = System.Drawing.Color.Transparent;
  2685. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2686. this.label96.Location = new System.Drawing.Point(3, 110);
  2687. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2688. this.label96.Name = "label96";
  2689. this.label96.Size = new System.Drawing.Size(98, 18);
  2690. this.label96.TabIndex = 15;
  2691. this.label96.Text = "工作模式:";
  2692. //
  2693. // rgvPosFrom3
  2694. //
  2695. this.rgvPosFrom3.AutoSize = true;
  2696. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  2697. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2698. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  2699. this.rgvPosFrom3.Location = new System.Drawing.Point(109, 228);
  2700. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2701. this.rgvPosFrom3.Name = "rgvPosFrom3";
  2702. this.rgvPosFrom3.Size = new System.Drawing.Size(35, 18);
  2703. this.rgvPosFrom3.TabIndex = 14;
  2704. this.rgvPosFrom3.Text = "---";
  2705. //
  2706. // rgvStatus3
  2707. //
  2708. this.rgvStatus3.AutoSize = true;
  2709. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  2710. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2711. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  2712. this.rgvStatus3.Location = new System.Drawing.Point(108, 138);
  2713. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2714. this.rgvStatus3.Name = "rgvStatus3";
  2715. this.rgvStatus3.Size = new System.Drawing.Size(35, 18);
  2716. this.rgvStatus3.TabIndex = 10;
  2717. this.rgvStatus3.Text = "---";
  2718. //
  2719. // label102
  2720. //
  2721. this.label102.AutoSize = true;
  2722. this.label102.BackColor = System.Drawing.Color.Transparent;
  2723. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2724. this.label102.Location = new System.Drawing.Point(3, 138);
  2725. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2726. this.label102.Name = "label102";
  2727. this.label102.Size = new System.Drawing.Size(98, 18);
  2728. this.label102.TabIndex = 6;
  2729. this.label102.Text = "工作状态:";
  2730. //
  2731. // lblrgv1091
  2732. //
  2733. this.lblrgv1091.AutoSize = true;
  2734. this.lblrgv1091.BackColor = System.Drawing.Color.Transparent;
  2735. 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)));
  2736. this.lblrgv1091.Location = new System.Drawing.Point(66, 38);
  2737. this.lblrgv1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2738. this.lblrgv1091.Name = "lblrgv1091";
  2739. this.lblrgv1091.Size = new System.Drawing.Size(62, 24);
  2740. this.lblrgv1091.TabIndex = 0;
  2741. this.lblrgv1091.Text = "RGV3";
  2742. this.lblrgv1091.Click += new System.EventHandler(this.lblsrm01_Click);
  2743. //
  2744. // GV3
  2745. //
  2746. this.GV3.BackColor = System.Drawing.Color.Transparent;
  2747. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  2748. this.GV3.Location = new System.Drawing.Point(99, -2);
  2749. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2750. this.GV3.Name = "GV3";
  2751. this.GV3.Size = new System.Drawing.Size(39, 38);
  2752. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2753. this.GV3.TabIndex = 65;
  2754. this.GV3.TabStop = false;
  2755. this.GV3.Tag = "1";
  2756. //
  2757. // pictureBox7
  2758. //
  2759. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  2760. this.pictureBox7.Location = new System.Drawing.Point(98, -2);
  2761. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2762. this.pictureBox7.Name = "pictureBox7";
  2763. this.pictureBox7.Size = new System.Drawing.Size(39, 38);
  2764. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  2765. this.pictureBox7.TabIndex = 5;
  2766. this.pictureBox7.TabStop = false;
  2767. //
  2768. // myPanel5
  2769. //
  2770. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  2771. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  2772. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  2773. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  2774. this.myPanel5.Controls.Add(this.label25);
  2775. this.myPanel5.Controls.Add(this.label35);
  2776. this.myPanel5.Controls.Add(this.label39);
  2777. this.myPanel5.Controls.Add(this.rgvOptType4);
  2778. this.myPanel5.Controls.Add(this.label173);
  2779. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  2780. this.myPanel5.Controls.Add(this.rgvPosCurr4);
  2781. this.myPanel5.Controls.Add(this.rgvMode4);
  2782. this.myPanel5.Controls.Add(this.rgvOrdId4);
  2783. this.myPanel5.Controls.Add(this.label181);
  2784. this.myPanel5.Controls.Add(this.rgvPosTo4);
  2785. this.myPanel5.Controls.Add(this.label183);
  2786. this.myPanel5.Controls.Add(this.rgvPosFrom4);
  2787. this.myPanel5.Controls.Add(this.rgvStatus4);
  2788. this.myPanel5.Controls.Add(this.label189);
  2789. this.myPanel5.Controls.Add(this.lblrgv1007);
  2790. this.myPanel5.Controls.Add(this.GV4);
  2791. this.myPanel5.Controls.Add(this.pictureBox17);
  2792. this.myPanel5.Location = new System.Drawing.Point(1998, 5);
  2793. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  2794. this.myPanel5.Name = "myPanel5";
  2795. this.myPanel5.Size = new System.Drawing.Size(244, 374);
  2796. this.myPanel5.TabIndex = 107;
  2797. //
  2798. // label25
  2799. //
  2800. this.label25.AutoSize = true;
  2801. this.label25.BackColor = System.Drawing.Color.Transparent;
  2802. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2803. this.label25.Location = new System.Drawing.Point(6, 290);
  2804. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2805. this.label25.Name = "label25";
  2806. this.label25.Size = new System.Drawing.Size(98, 18);
  2807. this.label25.TabIndex = 106;
  2808. this.label25.Text = "光电状态:";
  2809. //
  2810. // label35
  2811. //
  2812. this.label35.AutoSize = true;
  2813. this.label35.BackColor = System.Drawing.Color.Transparent;
  2814. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2815. this.label35.Location = new System.Drawing.Point(4, 228);
  2816. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2817. this.label35.Name = "label35";
  2818. this.label35.Size = new System.Drawing.Size(98, 18);
  2819. this.label35.TabIndex = 105;
  2820. this.label35.Text = "起始地址:";
  2821. //
  2822. // label39
  2823. //
  2824. this.label39.AutoSize = true;
  2825. this.label39.BackColor = System.Drawing.Color.Transparent;
  2826. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2827. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  2828. this.label39.Location = new System.Drawing.Point(4, 258);
  2829. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2830. this.label39.Name = "label39";
  2831. this.label39.Size = new System.Drawing.Size(98, 18);
  2832. this.label39.TabIndex = 104;
  2833. this.label39.Text = "目标地址:";
  2834. //
  2835. // rgvOptType4
  2836. //
  2837. this.rgvOptType4.AutoSize = true;
  2838. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  2839. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2840. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  2841. this.rgvOptType4.Location = new System.Drawing.Point(108, 199);
  2842. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2843. this.rgvOptType4.Name = "rgvOptType4";
  2844. this.rgvOptType4.Size = new System.Drawing.Size(35, 18);
  2845. this.rgvOptType4.TabIndex = 101;
  2846. this.rgvOptType4.Text = "---";
  2847. //
  2848. // label173
  2849. //
  2850. this.label173.AutoSize = true;
  2851. this.label173.BackColor = System.Drawing.Color.Transparent;
  2852. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2853. this.label173.Location = new System.Drawing.Point(3, 199);
  2854. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2855. this.label173.Name = "label173";
  2856. this.label173.Size = new System.Drawing.Size(98, 18);
  2857. this.label173.TabIndex = 100;
  2858. this.label173.Text = "作业类型:";
  2859. //
  2860. // lblRGVWarning1007
  2861. //
  2862. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  2863. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2864. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  2865. this.lblRGVWarning1007.Location = new System.Drawing.Point(8, 70);
  2866. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2867. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  2868. this.lblRGVWarning1007.Size = new System.Drawing.Size(226, 36);
  2869. this.lblRGVWarning1007.TabIndex = 92;
  2870. //
  2871. // rgvPosCurr4
  2872. //
  2873. this.rgvPosCurr4.AutoSize = true;
  2874. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  2875. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2876. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  2877. this.rgvPosCurr4.Location = new System.Drawing.Point(111, 293);
  2878. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2879. this.rgvPosCurr4.Name = "rgvPosCurr4";
  2880. this.rgvPosCurr4.Size = new System.Drawing.Size(35, 18);
  2881. this.rgvPosCurr4.TabIndex = 72;
  2882. this.rgvPosCurr4.Text = "---";
  2883. //
  2884. // rgvMode4
  2885. //
  2886. this.rgvMode4.AutoSize = true;
  2887. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  2888. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2889. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  2890. this.rgvMode4.Location = new System.Drawing.Point(108, 110);
  2891. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2892. this.rgvMode4.Name = "rgvMode4";
  2893. this.rgvMode4.Size = new System.Drawing.Size(35, 18);
  2894. this.rgvMode4.TabIndex = 12;
  2895. this.rgvMode4.Text = "---";
  2896. //
  2897. // rgvOrdId4
  2898. //
  2899. this.rgvOrdId4.AutoSize = true;
  2900. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  2901. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2902. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  2903. this.rgvOrdId4.Location = new System.Drawing.Point(108, 170);
  2904. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2905. this.rgvOrdId4.Name = "rgvOrdId4";
  2906. this.rgvOrdId4.Size = new System.Drawing.Size(35, 18);
  2907. this.rgvOrdId4.TabIndex = 64;
  2908. this.rgvOrdId4.Text = "---";
  2909. //
  2910. // label181
  2911. //
  2912. this.label181.AutoSize = true;
  2913. this.label181.BackColor = System.Drawing.Color.Transparent;
  2914. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2915. this.label181.Location = new System.Drawing.Point(3, 170);
  2916. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2917. this.label181.Name = "label181";
  2918. this.label181.Size = new System.Drawing.Size(98, 18);
  2919. this.label181.TabIndex = 63;
  2920. this.label181.Text = "工作指令:";
  2921. //
  2922. // rgvPosTo4
  2923. //
  2924. this.rgvPosTo4.AutoSize = true;
  2925. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  2926. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2927. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  2928. this.rgvPosTo4.Location = new System.Drawing.Point(109, 258);
  2929. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2930. this.rgvPosTo4.Name = "rgvPosTo4";
  2931. this.rgvPosTo4.Size = new System.Drawing.Size(35, 18);
  2932. this.rgvPosTo4.TabIndex = 16;
  2933. this.rgvPosTo4.Text = "---";
  2934. //
  2935. // label183
  2936. //
  2937. this.label183.AutoSize = true;
  2938. this.label183.BackColor = System.Drawing.Color.Transparent;
  2939. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2940. this.label183.Location = new System.Drawing.Point(3, 110);
  2941. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2942. this.label183.Name = "label183";
  2943. this.label183.Size = new System.Drawing.Size(98, 18);
  2944. this.label183.TabIndex = 15;
  2945. this.label183.Text = "工作模式:";
  2946. //
  2947. // rgvPosFrom4
  2948. //
  2949. this.rgvPosFrom4.AutoSize = true;
  2950. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  2951. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2952. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  2953. this.rgvPosFrom4.Location = new System.Drawing.Point(109, 228);
  2954. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2955. this.rgvPosFrom4.Name = "rgvPosFrom4";
  2956. this.rgvPosFrom4.Size = new System.Drawing.Size(35, 18);
  2957. this.rgvPosFrom4.TabIndex = 14;
  2958. this.rgvPosFrom4.Text = "---";
  2959. //
  2960. // rgvStatus4
  2961. //
  2962. this.rgvStatus4.AutoSize = true;
  2963. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  2964. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2965. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  2966. this.rgvStatus4.Location = new System.Drawing.Point(108, 138);
  2967. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2968. this.rgvStatus4.Name = "rgvStatus4";
  2969. this.rgvStatus4.Size = new System.Drawing.Size(35, 18);
  2970. this.rgvStatus4.TabIndex = 10;
  2971. this.rgvStatus4.Text = "---";
  2972. //
  2973. // label189
  2974. //
  2975. this.label189.AutoSize = true;
  2976. this.label189.BackColor = System.Drawing.Color.Transparent;
  2977. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2978. this.label189.Location = new System.Drawing.Point(3, 138);
  2979. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2980. this.label189.Name = "label189";
  2981. this.label189.Size = new System.Drawing.Size(98, 18);
  2982. this.label189.TabIndex = 6;
  2983. this.label189.Text = "工作状态:";
  2984. //
  2985. // lblrgv1007
  2986. //
  2987. this.lblrgv1007.AutoSize = true;
  2988. this.lblrgv1007.BackColor = System.Drawing.Color.Transparent;
  2989. 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)));
  2990. this.lblrgv1007.Location = new System.Drawing.Point(66, 38);
  2991. this.lblrgv1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  2992. this.lblrgv1007.Name = "lblrgv1007";
  2993. this.lblrgv1007.Size = new System.Drawing.Size(62, 24);
  2994. this.lblrgv1007.TabIndex = 0;
  2995. this.lblrgv1007.Text = "RGV4";
  2996. this.lblrgv1007.Click += new System.EventHandler(this.lblsrm01_Click);
  2997. //
  2998. // GV4
  2999. //
  3000. this.GV4.BackColor = System.Drawing.Color.Transparent;
  3001. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  3002. this.GV4.Location = new System.Drawing.Point(99, -2);
  3003. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3004. this.GV4.Name = "GV4";
  3005. this.GV4.Size = new System.Drawing.Size(39, 38);
  3006. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3007. this.GV4.TabIndex = 65;
  3008. this.GV4.TabStop = false;
  3009. this.GV4.Tag = "1";
  3010. //
  3011. // pictureBox17
  3012. //
  3013. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  3014. this.pictureBox17.Location = new System.Drawing.Point(98, -2);
  3015. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3016. this.pictureBox17.Name = "pictureBox17";
  3017. this.pictureBox17.Size = new System.Drawing.Size(39, 38);
  3018. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3019. this.pictureBox17.TabIndex = 5;
  3020. this.pictureBox17.TabStop = false;
  3021. //
  3022. // myPanel11
  3023. //
  3024. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  3025. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3026. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3027. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3028. this.myPanel11.Controls.Add(this.label40);
  3029. this.myPanel11.Controls.Add(this.label41);
  3030. this.myPanel11.Controls.Add(this.label42);
  3031. this.myPanel11.Controls.Add(this.rgvOptType5);
  3032. this.myPanel11.Controls.Add(this.label305);
  3033. this.myPanel11.Controls.Add(this.lblRGVWarning1175);
  3034. this.myPanel11.Controls.Add(this.rgvPosCurr5);
  3035. this.myPanel11.Controls.Add(this.rgvMode5);
  3036. this.myPanel11.Controls.Add(this.rgvOrdId5);
  3037. this.myPanel11.Controls.Add(this.label313);
  3038. this.myPanel11.Controls.Add(this.rgvPosTo5);
  3039. this.myPanel11.Controls.Add(this.label315);
  3040. this.myPanel11.Controls.Add(this.rgvPosFrom5);
  3041. this.myPanel11.Controls.Add(this.rgvStatus5);
  3042. this.myPanel11.Controls.Add(this.label321);
  3043. this.myPanel11.Controls.Add(this.lblrgv1175);
  3044. this.myPanel11.Controls.Add(this.GV5);
  3045. this.myPanel11.Controls.Add(this.pictureBox29);
  3046. this.myPanel11.Location = new System.Drawing.Point(2244, 5);
  3047. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3048. this.myPanel11.Name = "myPanel11";
  3049. this.myPanel11.Size = new System.Drawing.Size(244, 374);
  3050. this.myPanel11.TabIndex = 109;
  3051. //
  3052. // label40
  3053. //
  3054. this.label40.AutoSize = true;
  3055. this.label40.BackColor = System.Drawing.Color.Transparent;
  3056. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3057. this.label40.Location = new System.Drawing.Point(9, 293);
  3058. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3059. this.label40.Name = "label40";
  3060. this.label40.Size = new System.Drawing.Size(98, 18);
  3061. this.label40.TabIndex = 106;
  3062. this.label40.Text = "光电状态:";
  3063. //
  3064. // label41
  3065. //
  3066. this.label41.AutoSize = true;
  3067. this.label41.BackColor = System.Drawing.Color.Transparent;
  3068. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3069. this.label41.Location = new System.Drawing.Point(8, 229);
  3070. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3071. this.label41.Name = "label41";
  3072. this.label41.Size = new System.Drawing.Size(98, 18);
  3073. this.label41.TabIndex = 105;
  3074. this.label41.Text = "起始地址:";
  3075. //
  3076. // label42
  3077. //
  3078. this.label42.AutoSize = true;
  3079. this.label42.BackColor = System.Drawing.Color.Transparent;
  3080. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3081. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  3082. this.label42.Location = new System.Drawing.Point(8, 259);
  3083. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3084. this.label42.Name = "label42";
  3085. this.label42.Size = new System.Drawing.Size(98, 18);
  3086. this.label42.TabIndex = 104;
  3087. this.label42.Text = "目标地址:";
  3088. //
  3089. // rgvOptType5
  3090. //
  3091. this.rgvOptType5.AutoSize = true;
  3092. this.rgvOptType5.BackColor = System.Drawing.Color.Transparent;
  3093. this.rgvOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3094. this.rgvOptType5.ForeColor = System.Drawing.Color.Blue;
  3095. this.rgvOptType5.Location = new System.Drawing.Point(108, 199);
  3096. this.rgvOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3097. this.rgvOptType5.Name = "rgvOptType5";
  3098. this.rgvOptType5.Size = new System.Drawing.Size(35, 18);
  3099. this.rgvOptType5.TabIndex = 101;
  3100. this.rgvOptType5.Text = "---";
  3101. //
  3102. // label305
  3103. //
  3104. this.label305.AutoSize = true;
  3105. this.label305.BackColor = System.Drawing.Color.Transparent;
  3106. this.label305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3107. this.label305.Location = new System.Drawing.Point(3, 199);
  3108. this.label305.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3109. this.label305.Name = "label305";
  3110. this.label305.Size = new System.Drawing.Size(98, 18);
  3111. this.label305.TabIndex = 100;
  3112. this.label305.Text = "作业类型:";
  3113. //
  3114. // lblRGVWarning1175
  3115. //
  3116. this.lblRGVWarning1175.BackColor = System.Drawing.Color.Transparent;
  3117. this.lblRGVWarning1175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3118. this.lblRGVWarning1175.ForeColor = System.Drawing.Color.Red;
  3119. this.lblRGVWarning1175.Location = new System.Drawing.Point(8, 70);
  3120. this.lblRGVWarning1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3121. this.lblRGVWarning1175.Name = "lblRGVWarning1175";
  3122. this.lblRGVWarning1175.Size = new System.Drawing.Size(226, 36);
  3123. this.lblRGVWarning1175.TabIndex = 92;
  3124. //
  3125. // rgvPosCurr5
  3126. //
  3127. this.rgvPosCurr5.AutoSize = true;
  3128. this.rgvPosCurr5.BackColor = System.Drawing.Color.Transparent;
  3129. this.rgvPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3130. this.rgvPosCurr5.ForeColor = System.Drawing.Color.Blue;
  3131. this.rgvPosCurr5.Location = new System.Drawing.Point(111, 290);
  3132. this.rgvPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3133. this.rgvPosCurr5.Name = "rgvPosCurr5";
  3134. this.rgvPosCurr5.Size = new System.Drawing.Size(35, 18);
  3135. this.rgvPosCurr5.TabIndex = 72;
  3136. this.rgvPosCurr5.Text = "---";
  3137. //
  3138. // rgvMode5
  3139. //
  3140. this.rgvMode5.AutoSize = true;
  3141. this.rgvMode5.BackColor = System.Drawing.Color.Transparent;
  3142. this.rgvMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3143. this.rgvMode5.ForeColor = System.Drawing.Color.Blue;
  3144. this.rgvMode5.Location = new System.Drawing.Point(108, 110);
  3145. this.rgvMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3146. this.rgvMode5.Name = "rgvMode5";
  3147. this.rgvMode5.Size = new System.Drawing.Size(35, 18);
  3148. this.rgvMode5.TabIndex = 12;
  3149. this.rgvMode5.Text = "---";
  3150. //
  3151. // rgvOrdId5
  3152. //
  3153. this.rgvOrdId5.AutoSize = true;
  3154. this.rgvOrdId5.BackColor = System.Drawing.Color.Transparent;
  3155. this.rgvOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3156. this.rgvOrdId5.ForeColor = System.Drawing.Color.Blue;
  3157. this.rgvOrdId5.Location = new System.Drawing.Point(108, 170);
  3158. this.rgvOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3159. this.rgvOrdId5.Name = "rgvOrdId5";
  3160. this.rgvOrdId5.Size = new System.Drawing.Size(35, 18);
  3161. this.rgvOrdId5.TabIndex = 64;
  3162. this.rgvOrdId5.Text = "---";
  3163. //
  3164. // label313
  3165. //
  3166. this.label313.AutoSize = true;
  3167. this.label313.BackColor = System.Drawing.Color.Transparent;
  3168. this.label313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3169. this.label313.Location = new System.Drawing.Point(3, 170);
  3170. this.label313.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3171. this.label313.Name = "label313";
  3172. this.label313.Size = new System.Drawing.Size(98, 18);
  3173. this.label313.TabIndex = 63;
  3174. this.label313.Text = "工作指令:";
  3175. //
  3176. // rgvPosTo5
  3177. //
  3178. this.rgvPosTo5.AutoSize = true;
  3179. this.rgvPosTo5.BackColor = System.Drawing.Color.Transparent;
  3180. this.rgvPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3181. this.rgvPosTo5.ForeColor = System.Drawing.Color.Blue;
  3182. this.rgvPosTo5.Location = new System.Drawing.Point(109, 258);
  3183. this.rgvPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3184. this.rgvPosTo5.Name = "rgvPosTo5";
  3185. this.rgvPosTo5.Size = new System.Drawing.Size(35, 18);
  3186. this.rgvPosTo5.TabIndex = 16;
  3187. this.rgvPosTo5.Text = "---";
  3188. //
  3189. // label315
  3190. //
  3191. this.label315.AutoSize = true;
  3192. this.label315.BackColor = System.Drawing.Color.Transparent;
  3193. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3194. this.label315.Location = new System.Drawing.Point(3, 110);
  3195. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3196. this.label315.Name = "label315";
  3197. this.label315.Size = new System.Drawing.Size(98, 18);
  3198. this.label315.TabIndex = 15;
  3199. this.label315.Text = "工作模式:";
  3200. //
  3201. // rgvPosFrom5
  3202. //
  3203. this.rgvPosFrom5.AutoSize = true;
  3204. this.rgvPosFrom5.BackColor = System.Drawing.Color.Transparent;
  3205. this.rgvPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3206. this.rgvPosFrom5.ForeColor = System.Drawing.Color.Blue;
  3207. this.rgvPosFrom5.Location = new System.Drawing.Point(109, 228);
  3208. this.rgvPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3209. this.rgvPosFrom5.Name = "rgvPosFrom5";
  3210. this.rgvPosFrom5.Size = new System.Drawing.Size(35, 18);
  3211. this.rgvPosFrom5.TabIndex = 14;
  3212. this.rgvPosFrom5.Text = "---";
  3213. //
  3214. // rgvStatus5
  3215. //
  3216. this.rgvStatus5.AutoSize = true;
  3217. this.rgvStatus5.BackColor = System.Drawing.Color.Transparent;
  3218. this.rgvStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3219. this.rgvStatus5.ForeColor = System.Drawing.Color.Blue;
  3220. this.rgvStatus5.Location = new System.Drawing.Point(108, 138);
  3221. this.rgvStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3222. this.rgvStatus5.Name = "rgvStatus5";
  3223. this.rgvStatus5.Size = new System.Drawing.Size(35, 18);
  3224. this.rgvStatus5.TabIndex = 10;
  3225. this.rgvStatus5.Text = "---";
  3226. //
  3227. // label321
  3228. //
  3229. this.label321.AutoSize = true;
  3230. this.label321.BackColor = System.Drawing.Color.Transparent;
  3231. this.label321.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3232. this.label321.Location = new System.Drawing.Point(3, 138);
  3233. this.label321.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3234. this.label321.Name = "label321";
  3235. this.label321.Size = new System.Drawing.Size(98, 18);
  3236. this.label321.TabIndex = 6;
  3237. this.label321.Text = "工作状态:";
  3238. //
  3239. // lblrgv1175
  3240. //
  3241. this.lblrgv1175.AutoSize = true;
  3242. this.lblrgv1175.BackColor = System.Drawing.Color.Transparent;
  3243. 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)));
  3244. this.lblrgv1175.Location = new System.Drawing.Point(66, 38);
  3245. this.lblrgv1175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3246. this.lblrgv1175.Name = "lblrgv1175";
  3247. this.lblrgv1175.Size = new System.Drawing.Size(62, 24);
  3248. this.lblrgv1175.TabIndex = 0;
  3249. this.lblrgv1175.Text = "RGV5";
  3250. this.lblrgv1175.Click += new System.EventHandler(this.lblsrm01_Click);
  3251. //
  3252. // GV5
  3253. //
  3254. this.GV5.BackColor = System.Drawing.Color.Transparent;
  3255. this.GV5.Image = ((System.Drawing.Image)(resources.GetObject("GV5.Image")));
  3256. this.GV5.Location = new System.Drawing.Point(99, -2);
  3257. this.GV5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3258. this.GV5.Name = "GV5";
  3259. this.GV5.Size = new System.Drawing.Size(39, 38);
  3260. this.GV5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3261. this.GV5.TabIndex = 65;
  3262. this.GV5.TabStop = false;
  3263. this.GV5.Tag = "1";
  3264. //
  3265. // pictureBox29
  3266. //
  3267. this.pictureBox29.BackColor = System.Drawing.Color.Transparent;
  3268. this.pictureBox29.Location = new System.Drawing.Point(98, -2);
  3269. this.pictureBox29.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3270. this.pictureBox29.Name = "pictureBox29";
  3271. this.pictureBox29.Size = new System.Drawing.Size(39, 38);
  3272. this.pictureBox29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3273. this.pictureBox29.TabIndex = 5;
  3274. this.pictureBox29.TabStop = false;
  3275. //
  3276. // myPanel2
  3277. //
  3278. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  3279. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3280. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3281. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3282. this.myPanel2.Controls.Add(this.myPanel4);
  3283. this.myPanel2.Controls.Add(this.rgvOptType1);
  3284. this.myPanel2.Controls.Add(this.label23);
  3285. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  3286. this.myPanel2.Controls.Add(this.rgvPosCurr1);
  3287. this.myPanel2.Controls.Add(this.label45);
  3288. this.myPanel2.Controls.Add(this.rgvMode1);
  3289. this.myPanel2.Controls.Add(this.rgvOrdId1);
  3290. this.myPanel2.Controls.Add(this.label58);
  3291. this.myPanel2.Controls.Add(this.rgvPosTo1);
  3292. this.myPanel2.Controls.Add(this.label69);
  3293. this.myPanel2.Controls.Add(this.rgvPosFrom1);
  3294. this.myPanel2.Controls.Add(this.label73);
  3295. this.myPanel2.Controls.Add(this.rgvStatus1);
  3296. this.myPanel2.Controls.Add(this.label80);
  3297. this.myPanel2.Controls.Add(this.label92);
  3298. this.myPanel2.Controls.Add(this.lblrgv1444);
  3299. this.myPanel2.Controls.Add(this.GV1);
  3300. this.myPanel2.Controls.Add(this.pictureBox5);
  3301. this.myPanel2.Location = new System.Drawing.Point(1260, 2);
  3302. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3303. this.myPanel2.Name = "myPanel2";
  3304. this.myPanel2.Size = new System.Drawing.Size(244, 374);
  3305. this.myPanel2.TabIndex = 113;
  3306. //
  3307. // myPanel4
  3308. //
  3309. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  3310. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3311. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3312. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3313. this.myPanel4.Controls.Add(this.label124);
  3314. this.myPanel4.Controls.Add(this.label125);
  3315. this.myPanel4.Controls.Add(this.label126);
  3316. this.myPanel4.Controls.Add(this.label127);
  3317. this.myPanel4.Controls.Add(this.label128);
  3318. this.myPanel4.Controls.Add(this.label129);
  3319. this.myPanel4.Controls.Add(this.label130);
  3320. this.myPanel4.Controls.Add(this.label131);
  3321. this.myPanel4.Controls.Add(this.label132);
  3322. this.myPanel4.Controls.Add(this.label133);
  3323. this.myPanel4.Controls.Add(this.label134);
  3324. this.myPanel4.Controls.Add(this.label135);
  3325. this.myPanel4.Controls.Add(this.label136);
  3326. this.myPanel4.Controls.Add(this.label138);
  3327. this.myPanel4.Controls.Add(this.label140);
  3328. this.myPanel4.Controls.Add(this.label141);
  3329. this.myPanel4.Controls.Add(this.label142);
  3330. this.myPanel4.Controls.Add(this.label143);
  3331. this.myPanel4.Controls.Add(this.label144);
  3332. this.myPanel4.Controls.Add(this.label145);
  3333. this.myPanel4.Controls.Add(this.label146);
  3334. this.myPanel4.Controls.Add(this.label147);
  3335. this.myPanel4.Controls.Add(this.pictureBox11);
  3336. this.myPanel4.Controls.Add(this.pictureBox12);
  3337. this.myPanel4.Location = new System.Drawing.Point(284, -2);
  3338. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3339. this.myPanel4.Name = "myPanel4";
  3340. this.myPanel4.Size = new System.Drawing.Size(274, 388);
  3341. this.myPanel4.TabIndex = 106;
  3342. //
  3343. // label124
  3344. //
  3345. this.label124.BackColor = System.Drawing.Color.DarkGray;
  3346. this.label124.Location = new System.Drawing.Point(183, 5);
  3347. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3348. this.label124.Name = "label124";
  3349. this.label124.Size = new System.Drawing.Size(42, 36);
  3350. this.label124.TabIndex = 103;
  3351. this.label124.Text = "出";
  3352. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3353. //
  3354. // label125
  3355. //
  3356. this.label125.BackColor = System.Drawing.Color.DarkGray;
  3357. this.label125.Location = new System.Drawing.Point(9, 5);
  3358. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3359. this.label125.Name = "label125";
  3360. this.label125.Size = new System.Drawing.Size(42, 36);
  3361. this.label125.TabIndex = 102;
  3362. this.label125.Tag = "4";
  3363. this.label125.Text = "入";
  3364. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3365. //
  3366. // label126
  3367. //
  3368. this.label126.AutoSize = true;
  3369. this.label126.BackColor = System.Drawing.Color.Transparent;
  3370. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3371. this.label126.ForeColor = System.Drawing.Color.Blue;
  3372. this.label126.Location = new System.Drawing.Point(130, 199);
  3373. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3374. this.label126.Name = "label126";
  3375. this.label126.Size = new System.Drawing.Size(35, 18);
  3376. this.label126.TabIndex = 101;
  3377. this.label126.Text = "---";
  3378. //
  3379. // label127
  3380. //
  3381. this.label127.AutoSize = true;
  3382. this.label127.BackColor = System.Drawing.Color.Transparent;
  3383. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3384. this.label127.Location = new System.Drawing.Point(3, 199);
  3385. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3386. this.label127.Name = "label127";
  3387. this.label127.Size = new System.Drawing.Size(98, 18);
  3388. this.label127.TabIndex = 100;
  3389. this.label127.Text = "作业类型:";
  3390. //
  3391. // label128
  3392. //
  3393. this.label128.BackColor = System.Drawing.Color.Transparent;
  3394. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3395. this.label128.ForeColor = System.Drawing.Color.Red;
  3396. this.label128.Location = new System.Drawing.Point(8, 70);
  3397. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3398. this.label128.Name = "label128";
  3399. this.label128.Size = new System.Drawing.Size(226, 36);
  3400. this.label128.TabIndex = 92;
  3401. //
  3402. // label129
  3403. //
  3404. this.label129.AutoSize = true;
  3405. this.label129.BackColor = System.Drawing.Color.Transparent;
  3406. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3407. this.label129.ForeColor = System.Drawing.Color.Blue;
  3408. this.label129.Location = new System.Drawing.Point(134, 354);
  3409. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3410. this.label129.Name = "label129";
  3411. this.label129.Size = new System.Drawing.Size(35, 18);
  3412. this.label129.TabIndex = 73;
  3413. this.label129.Text = "---";
  3414. //
  3415. // label130
  3416. //
  3417. this.label130.AutoSize = true;
  3418. this.label130.BackColor = System.Drawing.Color.Transparent;
  3419. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3420. this.label130.ForeColor = System.Drawing.Color.Blue;
  3421. this.label130.Location = new System.Drawing.Point(134, 322);
  3422. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3423. this.label130.Name = "label130";
  3424. this.label130.Size = new System.Drawing.Size(35, 18);
  3425. this.label130.TabIndex = 72;
  3426. this.label130.Text = "---";
  3427. //
  3428. // label131
  3429. //
  3430. this.label131.AutoSize = true;
  3431. this.label131.BackColor = System.Drawing.Color.Transparent;
  3432. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3433. this.label131.Location = new System.Drawing.Point(4, 322);
  3434. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3435. this.label131.Name = "label131";
  3436. this.label131.Size = new System.Drawing.Size(98, 18);
  3437. this.label131.TabIndex = 71;
  3438. this.label131.Text = "起始位置:";
  3439. //
  3440. // label132
  3441. //
  3442. this.label132.AutoSize = true;
  3443. this.label132.BackColor = System.Drawing.Color.Transparent;
  3444. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3445. this.label132.Location = new System.Drawing.Point(4, 354);
  3446. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3447. this.label132.Name = "label132";
  3448. this.label132.Size = new System.Drawing.Size(98, 18);
  3449. this.label132.TabIndex = 70;
  3450. this.label132.Text = "目标位置:";
  3451. //
  3452. // label133
  3453. //
  3454. this.label133.AutoSize = true;
  3455. this.label133.BackColor = System.Drawing.Color.Transparent;
  3456. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3457. this.label133.ForeColor = System.Drawing.Color.Blue;
  3458. this.label133.Location = new System.Drawing.Point(130, 110);
  3459. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3460. this.label133.Name = "label133";
  3461. this.label133.Size = new System.Drawing.Size(35, 18);
  3462. this.label133.TabIndex = 12;
  3463. this.label133.Text = "---";
  3464. //
  3465. // label134
  3466. //
  3467. this.label134.AutoSize = true;
  3468. this.label134.BackColor = System.Drawing.Color.Transparent;
  3469. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3470. this.label134.ForeColor = System.Drawing.Color.Blue;
  3471. this.label134.Location = new System.Drawing.Point(130, 170);
  3472. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3473. this.label134.Name = "label134";
  3474. this.label134.Size = new System.Drawing.Size(35, 18);
  3475. this.label134.TabIndex = 64;
  3476. this.label134.Text = "---";
  3477. //
  3478. // label135
  3479. //
  3480. this.label135.AutoSize = true;
  3481. this.label135.BackColor = System.Drawing.Color.Transparent;
  3482. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3483. this.label135.Location = new System.Drawing.Point(3, 170);
  3484. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3485. this.label135.Name = "label135";
  3486. this.label135.Size = new System.Drawing.Size(98, 18);
  3487. this.label135.TabIndex = 63;
  3488. this.label135.Text = "工作指令:";
  3489. //
  3490. // label136
  3491. //
  3492. this.label136.AutoSize = true;
  3493. this.label136.BackColor = System.Drawing.Color.Transparent;
  3494. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3495. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  3496. this.label136.Location = new System.Drawing.Point(132, 288);
  3497. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3498. this.label136.Name = "label136";
  3499. this.label136.Size = new System.Drawing.Size(35, 18);
  3500. this.label136.TabIndex = 16;
  3501. this.label136.Text = "---";
  3502. //
  3503. // label138
  3504. //
  3505. this.label138.AutoSize = true;
  3506. this.label138.BackColor = System.Drawing.Color.Transparent;
  3507. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3508. this.label138.Location = new System.Drawing.Point(3, 110);
  3509. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3510. this.label138.Name = "label138";
  3511. this.label138.Size = new System.Drawing.Size(98, 18);
  3512. this.label138.TabIndex = 15;
  3513. this.label138.Text = "工作模式:";
  3514. //
  3515. // label140
  3516. //
  3517. this.label140.AutoSize = true;
  3518. this.label140.BackColor = System.Drawing.Color.Transparent;
  3519. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3520. this.label140.ForeColor = System.Drawing.Color.Red;
  3521. this.label140.Location = new System.Drawing.Point(132, 258);
  3522. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3523. this.label140.Name = "label140";
  3524. this.label140.Size = new System.Drawing.Size(35, 18);
  3525. this.label140.TabIndex = 14;
  3526. this.label140.Text = "---";
  3527. //
  3528. // label141
  3529. //
  3530. this.label141.AutoSize = true;
  3531. this.label141.BackColor = System.Drawing.Color.Transparent;
  3532. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3533. this.label141.Location = new System.Drawing.Point(3, 258);
  3534. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3535. this.label141.Name = "label141";
  3536. this.label141.Size = new System.Drawing.Size(98, 18);
  3537. this.label141.TabIndex = 13;
  3538. this.label141.Text = "运行时长:";
  3539. //
  3540. // label142
  3541. //
  3542. this.label142.AutoSize = true;
  3543. this.label142.BackColor = System.Drawing.Color.Transparent;
  3544. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3545. this.label142.ForeColor = System.Drawing.Color.Blue;
  3546. this.label142.Location = new System.Drawing.Point(130, 138);
  3547. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3548. this.label142.Name = "label142";
  3549. this.label142.Size = new System.Drawing.Size(35, 18);
  3550. this.label142.TabIndex = 10;
  3551. this.label142.Text = "---";
  3552. //
  3553. // label143
  3554. //
  3555. this.label143.AutoSize = true;
  3556. this.label143.BackColor = System.Drawing.Color.Transparent;
  3557. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3558. this.label143.ForeColor = System.Drawing.Color.Blue;
  3559. this.label143.Location = new System.Drawing.Point(132, 228);
  3560. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3561. this.label143.Name = "label143";
  3562. this.label143.Size = new System.Drawing.Size(35, 18);
  3563. this.label143.TabIndex = 9;
  3564. this.label143.Text = "---";
  3565. //
  3566. // label144
  3567. //
  3568. this.label144.AutoSize = true;
  3569. this.label144.BackColor = System.Drawing.Color.Transparent;
  3570. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3571. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  3572. this.label144.Location = new System.Drawing.Point(3, 288);
  3573. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3574. this.label144.Name = "label144";
  3575. this.label144.Size = new System.Drawing.Size(98, 18);
  3576. this.label144.TabIndex = 8;
  3577. this.label144.Text = "里 程 数:";
  3578. //
  3579. // label145
  3580. //
  3581. this.label145.AutoSize = true;
  3582. this.label145.BackColor = System.Drawing.Color.Transparent;
  3583. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3584. this.label145.Location = new System.Drawing.Point(3, 138);
  3585. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3586. this.label145.Name = "label145";
  3587. this.label145.Size = new System.Drawing.Size(98, 18);
  3588. this.label145.TabIndex = 6;
  3589. this.label145.Text = "工作状态:";
  3590. //
  3591. // label146
  3592. //
  3593. this.label146.AutoSize = true;
  3594. this.label146.BackColor = System.Drawing.Color.Transparent;
  3595. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3596. this.label146.Location = new System.Drawing.Point(3, 228);
  3597. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3598. this.label146.Name = "label146";
  3599. this.label146.Size = new System.Drawing.Size(98, 18);
  3600. this.label146.TabIndex = 1;
  3601. this.label146.Text = "当前位置:";
  3602. //
  3603. // label147
  3604. //
  3605. this.label147.AutoSize = true;
  3606. this.label147.BackColor = System.Drawing.Color.Transparent;
  3607. 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)));
  3608. this.label147.Location = new System.Drawing.Point(66, 38);
  3609. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3610. this.label147.Name = "label147";
  3611. this.label147.Size = new System.Drawing.Size(101, 24);
  3612. this.label147.TabIndex = 0;
  3613. this.label147.Text = "RGV1091";
  3614. //
  3615. // pictureBox11
  3616. //
  3617. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  3618. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  3619. this.pictureBox11.Location = new System.Drawing.Point(99, -2);
  3620. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3621. this.pictureBox11.Name = "pictureBox11";
  3622. this.pictureBox11.Size = new System.Drawing.Size(39, 38);
  3623. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3624. this.pictureBox11.TabIndex = 65;
  3625. this.pictureBox11.TabStop = false;
  3626. this.pictureBox11.Tag = "1";
  3627. //
  3628. // pictureBox12
  3629. //
  3630. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  3631. this.pictureBox12.Location = new System.Drawing.Point(98, -2);
  3632. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3633. this.pictureBox12.Name = "pictureBox12";
  3634. this.pictureBox12.Size = new System.Drawing.Size(39, 38);
  3635. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3636. this.pictureBox12.TabIndex = 5;
  3637. this.pictureBox12.TabStop = false;
  3638. //
  3639. // rgvOptType1
  3640. //
  3641. this.rgvOptType1.AutoSize = true;
  3642. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  3643. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3644. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  3645. this.rgvOptType1.Location = new System.Drawing.Point(108, 199);
  3646. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3647. this.rgvOptType1.Name = "rgvOptType1";
  3648. this.rgvOptType1.Size = new System.Drawing.Size(35, 18);
  3649. this.rgvOptType1.TabIndex = 101;
  3650. this.rgvOptType1.Text = "---";
  3651. //
  3652. // label23
  3653. //
  3654. this.label23.AutoSize = true;
  3655. this.label23.BackColor = System.Drawing.Color.Transparent;
  3656. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3657. this.label23.Location = new System.Drawing.Point(3, 199);
  3658. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3659. this.label23.Name = "label23";
  3660. this.label23.Size = new System.Drawing.Size(98, 18);
  3661. this.label23.TabIndex = 100;
  3662. this.label23.Text = "作业类型:";
  3663. //
  3664. // lblRGVWarning1444
  3665. //
  3666. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  3667. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3668. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  3669. this.lblRGVWarning1444.Location = new System.Drawing.Point(8, 70);
  3670. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3671. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  3672. this.lblRGVWarning1444.Size = new System.Drawing.Size(226, 36);
  3673. this.lblRGVWarning1444.TabIndex = 92;
  3674. //
  3675. // rgvPosCurr1
  3676. //
  3677. this.rgvPosCurr1.AutoSize = true;
  3678. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  3679. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3680. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  3681. this.rgvPosCurr1.Location = new System.Drawing.Point(111, 290);
  3682. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3683. this.rgvPosCurr1.Name = "rgvPosCurr1";
  3684. this.rgvPosCurr1.Size = new System.Drawing.Size(35, 18);
  3685. this.rgvPosCurr1.TabIndex = 72;
  3686. this.rgvPosCurr1.Text = "---";
  3687. //
  3688. // label45
  3689. //
  3690. this.label45.AutoSize = true;
  3691. this.label45.BackColor = System.Drawing.Color.Transparent;
  3692. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3693. this.label45.Location = new System.Drawing.Point(4, 290);
  3694. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3695. this.label45.Name = "label45";
  3696. this.label45.Size = new System.Drawing.Size(98, 18);
  3697. this.label45.TabIndex = 71;
  3698. this.label45.Text = "光电状态:";
  3699. //
  3700. // rgvMode1
  3701. //
  3702. this.rgvMode1.AutoSize = true;
  3703. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  3704. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3705. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  3706. this.rgvMode1.Location = new System.Drawing.Point(108, 110);
  3707. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3708. this.rgvMode1.Name = "rgvMode1";
  3709. this.rgvMode1.Size = new System.Drawing.Size(35, 18);
  3710. this.rgvMode1.TabIndex = 12;
  3711. this.rgvMode1.Text = "---";
  3712. //
  3713. // rgvOrdId1
  3714. //
  3715. this.rgvOrdId1.AutoSize = true;
  3716. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  3717. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3718. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  3719. this.rgvOrdId1.Location = new System.Drawing.Point(108, 170);
  3720. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3721. this.rgvOrdId1.Name = "rgvOrdId1";
  3722. this.rgvOrdId1.Size = new System.Drawing.Size(35, 18);
  3723. this.rgvOrdId1.TabIndex = 64;
  3724. this.rgvOrdId1.Text = "---";
  3725. //
  3726. // label58
  3727. //
  3728. this.label58.AutoSize = true;
  3729. this.label58.BackColor = System.Drawing.Color.Transparent;
  3730. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3731. this.label58.Location = new System.Drawing.Point(3, 170);
  3732. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3733. this.label58.Name = "label58";
  3734. this.label58.Size = new System.Drawing.Size(98, 18);
  3735. this.label58.TabIndex = 63;
  3736. this.label58.Text = "工作指令:";
  3737. //
  3738. // rgvPosTo1
  3739. //
  3740. this.rgvPosTo1.AutoSize = true;
  3741. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  3742. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3743. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  3744. this.rgvPosTo1.Location = new System.Drawing.Point(109, 258);
  3745. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3746. this.rgvPosTo1.Name = "rgvPosTo1";
  3747. this.rgvPosTo1.Size = new System.Drawing.Size(35, 18);
  3748. this.rgvPosTo1.TabIndex = 16;
  3749. this.rgvPosTo1.Text = "---";
  3750. //
  3751. // label69
  3752. //
  3753. this.label69.AutoSize = true;
  3754. this.label69.BackColor = System.Drawing.Color.Transparent;
  3755. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3756. this.label69.Location = new System.Drawing.Point(3, 110);
  3757. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3758. this.label69.Name = "label69";
  3759. this.label69.Size = new System.Drawing.Size(98, 18);
  3760. this.label69.TabIndex = 15;
  3761. this.label69.Text = "工作模式:";
  3762. //
  3763. // rgvPosFrom1
  3764. //
  3765. this.rgvPosFrom1.AutoSize = true;
  3766. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  3767. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3768. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  3769. this.rgvPosFrom1.Location = new System.Drawing.Point(109, 228);
  3770. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3771. this.rgvPosFrom1.Name = "rgvPosFrom1";
  3772. this.rgvPosFrom1.Size = new System.Drawing.Size(35, 18);
  3773. this.rgvPosFrom1.TabIndex = 14;
  3774. this.rgvPosFrom1.Text = "---";
  3775. //
  3776. // label73
  3777. //
  3778. this.label73.AutoSize = true;
  3779. this.label73.BackColor = System.Drawing.Color.Transparent;
  3780. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3781. this.label73.Location = new System.Drawing.Point(3, 228);
  3782. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3783. this.label73.Name = "label73";
  3784. this.label73.Size = new System.Drawing.Size(98, 18);
  3785. this.label73.TabIndex = 13;
  3786. this.label73.Text = "起始地址:";
  3787. //
  3788. // rgvStatus1
  3789. //
  3790. this.rgvStatus1.AutoSize = true;
  3791. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  3792. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3793. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  3794. this.rgvStatus1.Location = new System.Drawing.Point(108, 138);
  3795. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3796. this.rgvStatus1.Name = "rgvStatus1";
  3797. this.rgvStatus1.Size = new System.Drawing.Size(35, 18);
  3798. this.rgvStatus1.TabIndex = 10;
  3799. this.rgvStatus1.Text = "---";
  3800. //
  3801. // label80
  3802. //
  3803. this.label80.AutoSize = true;
  3804. this.label80.BackColor = System.Drawing.Color.Transparent;
  3805. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3806. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  3807. this.label80.Location = new System.Drawing.Point(3, 258);
  3808. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3809. this.label80.Name = "label80";
  3810. this.label80.Size = new System.Drawing.Size(98, 18);
  3811. this.label80.TabIndex = 8;
  3812. this.label80.Text = "目标地址:";
  3813. //
  3814. // label92
  3815. //
  3816. this.label92.AutoSize = true;
  3817. this.label92.BackColor = System.Drawing.Color.Transparent;
  3818. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3819. this.label92.Location = new System.Drawing.Point(3, 138);
  3820. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3821. this.label92.Name = "label92";
  3822. this.label92.Size = new System.Drawing.Size(98, 18);
  3823. this.label92.TabIndex = 6;
  3824. this.label92.Text = "工作状态:";
  3825. //
  3826. // lblrgv1444
  3827. //
  3828. this.lblrgv1444.AutoSize = true;
  3829. this.lblrgv1444.BackColor = System.Drawing.Color.Transparent;
  3830. 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)));
  3831. this.lblrgv1444.Location = new System.Drawing.Point(66, 38);
  3832. this.lblrgv1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3833. this.lblrgv1444.Name = "lblrgv1444";
  3834. this.lblrgv1444.Size = new System.Drawing.Size(62, 24);
  3835. this.lblrgv1444.TabIndex = 0;
  3836. this.lblrgv1444.Text = "RGV1";
  3837. this.lblrgv1444.Click += new System.EventHandler(this.lblsrm01_Click);
  3838. //
  3839. // GV1
  3840. //
  3841. this.GV1.BackColor = System.Drawing.Color.Transparent;
  3842. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  3843. this.GV1.Location = new System.Drawing.Point(99, -2);
  3844. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3845. this.GV1.Name = "GV1";
  3846. this.GV1.Size = new System.Drawing.Size(39, 38);
  3847. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3848. this.GV1.TabIndex = 65;
  3849. this.GV1.TabStop = false;
  3850. this.GV1.Tag = "1";
  3851. //
  3852. // pictureBox5
  3853. //
  3854. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  3855. this.pictureBox5.Location = new System.Drawing.Point(98, -2);
  3856. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3857. this.pictureBox5.Name = "pictureBox5";
  3858. this.pictureBox5.Size = new System.Drawing.Size(39, 38);
  3859. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3860. this.pictureBox5.TabIndex = 5;
  3861. this.pictureBox5.TabStop = false;
  3862. //
  3863. // pnlBottom
  3864. //
  3865. this.pnlBottom.AutoScroll = true;
  3866. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  3867. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3868. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3869. this.pnlBottom.Controls.Add(this.myPanel2);
  3870. this.pnlBottom.Controls.Add(this.myPanel11);
  3871. this.pnlBottom.Controls.Add(this.myPanel5);
  3872. this.pnlBottom.Controls.Add(this.pnlRGV1091);
  3873. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  3874. this.pnlBottom.Controls.Add(this.myPanel1);
  3875. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  3876. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  3877. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  3878. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  3879. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
  3880. this.pnlBottom.Location = new System.Drawing.Point(4, 888);
  3881. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3882. this.pnlBottom.Name = "pnlBottom";
  3883. this.pnlBottom.Padding = new System.Windows.Forms.Padding(15, 0, 0, 0);
  3884. this.pnlBottom.Size = new System.Drawing.Size(2156, 376);
  3885. this.pnlBottom.TabIndex = 126;
  3886. //
  3887. // tableLayoutPanel1
  3888. //
  3889. this.tableLayoutPanel1.AutoScroll = true;
  3890. this.tableLayoutPanel1.ColumnCount = 1;
  3891. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  3892. this.tableLayoutPanel1.Controls.Add(this.tabControl1, 0, 0);
  3893. this.tableLayoutPanel1.Controls.Add(this.pnlBottom, 0, 1);
  3894. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  3895. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  3896. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  3897. this.tableLayoutPanel1.RowCount = 2;
  3898. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
  3899. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
  3900. this.tableLayoutPanel1.Size = new System.Drawing.Size(2164, 1266);
  3901. this.tableLayoutPanel1.TabIndex = 127;
  3902. //
  3903. // myTableLayoutPanel1
  3904. //
  3905. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  3906. this.myTableLayoutPanel1.ColumnCount = 112;
  3907. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3908. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3909. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3910. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3911. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3912. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3913. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3914. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3915. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3916. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3917. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3918. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3919. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3920. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3921. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3922. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3923. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3924. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3925. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3926. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3927. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3928. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3929. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3930. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3931. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3932. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3933. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3934. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3935. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3936. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3937. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3938. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3939. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3940. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3941. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3942. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3943. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3944. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3945. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3946. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3947. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3948. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3949. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3950. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3951. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3952. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3953. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3954. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3955. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3956. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3957. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3958. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3959. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3960. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3961. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3962. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3963. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3964. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3965. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3966. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3967. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3968. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3969. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3970. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3971. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3972. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3973. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3974. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3975. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3976. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3977. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3978. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3979. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3980. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3981. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3982. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3983. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3984. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3985. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3986. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3987. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3988. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3989. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3990. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3991. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3992. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3993. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3994. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3995. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3996. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3997. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3998. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  3999. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4000. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4001. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4002. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4003. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4004. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4005. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4006. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4007. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4008. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4009. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4010. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4011. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4012. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4013. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4014. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4015. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4016. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4017. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4018. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8928562F));
  4019. this.myTableLayoutPanel1.Controls.Add(this.con2282, 20, 23);
  4020. this.myTableLayoutPanel1.Controls.Add(this.con2010, 3, 26);
  4021. this.myTableLayoutPanel1.Controls.Add(this.con2014, 3, 35);
  4022. this.myTableLayoutPanel1.Controls.Add(this.con2083, 3, 49);
  4023. this.myTableLayoutPanel1.Controls.Add(this.con2279, 16, 23);
  4024. this.myTableLayoutPanel1.Controls.Add(this.con2058, 55, 51);
  4025. this.myTableLayoutPanel1.Controls.Add(this.con2053, 52, 51);
  4026. this.myTableLayoutPanel1.Controls.Add(this.con2051, 49, 51);
  4027. this.myTableLayoutPanel1.Controls.Add(this.con2039, 40, 51);
  4028. this.myTableLayoutPanel1.Controls.Add(this.con2034, 20, 45);
  4029. this.myTableLayoutPanel1.Controls.Add(this.con2028, 16, 45);
  4030. this.myTableLayoutPanel1.Controls.Add(this.con2027, 12, 45);
  4031. this.myTableLayoutPanel1.Controls.Add(this.con2022, 19, 51);
  4032. this.myTableLayoutPanel1.Controls.Add(this.con2021, 8, 45);
  4033. this.myTableLayoutPanel1.Controls.Add(this.con2203, 62, 7);
  4034. this.myTableLayoutPanel1.Controls.Add(this.con2206, 71, 7);
  4035. this.myTableLayoutPanel1.Controls.Add(this.con2204, 65, 7);
  4036. this.myTableLayoutPanel1.Controls.Add(this.con2205, 68, 7);
  4037. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 56, 5);
  4038. this.myTableLayoutPanel1.Controls.Add(this.con2187, 55, 7);
  4039. this.myTableLayoutPanel1.Controls.Add(this.con2182, 58, 7);
  4040. this.myTableLayoutPanel1.Controls.Add(this.con2271, 77, 5);
  4041. this.myTableLayoutPanel1.Controls.Add(this.con2152, 77, 3);
  4042. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 55, 11);
  4043. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel4, 74, 11);
  4044. this.myTableLayoutPanel1.Controls.Add(this.conrgv2, 71, 11);
  4045. this.myTableLayoutPanel1.Controls.Add(this.con2172, 55, 13);
  4046. this.myTableLayoutPanel1.Controls.Add(this.con2173, 59, 13);
  4047. this.myTableLayoutPanel1.Controls.Add(this.con2174, 64, 13);
  4048. this.myTableLayoutPanel1.Controls.Add(this.con2175, 68, 13);
  4049. this.myTableLayoutPanel1.Controls.Add(this.con2176, 73, 13);
  4050. this.myTableLayoutPanel1.Controls.Add(this.con2177, 77, 13);
  4051. this.myTableLayoutPanel1.Controls.Add(this.con2147, 78, 1);
  4052. this.myTableLayoutPanel1.Controls.Add(this.con2146, 81, 1);
  4053. this.myTableLayoutPanel1.Controls.Add(this.con2148, 75, 1);
  4054. this.myTableLayoutPanel1.Controls.Add(this.con2144, 87, 1);
  4055. this.myTableLayoutPanel1.Controls.Add(this.con2145, 84, 1);
  4056. this.myTableLayoutPanel1.Controls.Add(this.con2150, 72, 1);
  4057. this.myTableLayoutPanel1.Controls.Add(this.con2161, 69, 1);
  4058. this.myTableLayoutPanel1.Controls.Add(this.con2384, 90, 1);
  4059. this.myTableLayoutPanel1.Controls.Add(this.con2104, 71, 53);
  4060. this.myTableLayoutPanel1.Controls.Add(this.con2102, 65, 53);
  4061. this.myTableLayoutPanel1.Controls.Add(this.con2101, 62, 53);
  4062. this.myTableLayoutPanel1.Controls.Add(this.con2103, 68, 53);
  4063. this.myTableLayoutPanel1.Controls.Add(this.con2108, 83, 53);
  4064. this.myTableLayoutPanel1.Controls.Add(this.con2107, 80, 53);
  4065. this.myTableLayoutPanel1.Controls.Add(this.con2106, 77, 53);
  4066. this.myTableLayoutPanel1.Controls.Add(this.con2105, 74, 53);
  4067. this.myTableLayoutPanel1.Controls.Add(this.con2060, 55, 55);
  4068. this.myTableLayoutPanel1.Controls.Add(this.con2079, 19, 55);
  4069. this.myTableLayoutPanel1.Controls.Add(this.con2075, 35, 55);
  4070. this.myTableLayoutPanel1.Controls.Add(this.con2080, 11, 55);
  4071. this.myTableLayoutPanel1.Controls.Add(this.con2074, 39, 55);
  4072. this.myTableLayoutPanel1.Controls.Add(this.con2078, 23, 55);
  4073. this.myTableLayoutPanel1.Controls.Add(this.con2077, 27, 55);
  4074. this.myTableLayoutPanel1.Controls.Add(this.con2325, 7, 55);
  4075. this.myTableLayoutPanel1.Controls.Add(this.con2073, 43, 55);
  4076. this.myTableLayoutPanel1.Controls.Add(this.con2071, 51, 55);
  4077. this.myTableLayoutPanel1.Controls.Add(this.con2072, 47, 55);
  4078. this.myTableLayoutPanel1.Controls.Add(this.con2076, 31, 55);
  4079. this.myTableLayoutPanel1.Controls.Add(this.con2355, 15, 55);
  4080. this.myTableLayoutPanel1.Controls.Add(this.con2037, 37, 51);
  4081. this.myTableLayoutPanel1.Controls.Add(this.con2044, 43, 51);
  4082. this.myTableLayoutPanel1.Controls.Add(this.con2046, 46, 51);
  4083. this.myTableLayoutPanel1.Controls.Add(this.con2031, 31, 51);
  4084. this.myTableLayoutPanel1.Controls.Add(this.con2029, 28, 51);
  4085. this.myTableLayoutPanel1.Controls.Add(this.con2036, 34, 51);
  4086. this.myTableLayoutPanel1.Controls.Add(this.con2017, 16, 51);
  4087. this.myTableLayoutPanel1.Controls.Add(this.con2019, 22, 51);
  4088. this.myTableLayoutPanel1.Controls.Add(this.con2024, 25, 51);
  4089. this.myTableLayoutPanel1.Controls.Add(this.con2324, 7, 51);
  4090. this.myTableLayoutPanel1.Controls.Add(this.con2353, 13, 51);
  4091. this.myTableLayoutPanel1.Controls.Add(this.con2016, 10, 51);
  4092. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 20, 25);
  4093. this.myTableLayoutPanel1.Controls.Add(this.con2084, 3, 51);
  4094. this.myTableLayoutPanel1.Controls.Add(this.con2086, 3, 53);
  4095. this.myTableLayoutPanel1.Controls.Add(this.con2081, 3, 45);
  4096. this.myTableLayoutPanel1.Controls.Add(this.con2088, 0, 49);
  4097. this.myTableLayoutPanel1.Controls.Add(this.label6, 3, 47);
  4098. this.myTableLayoutPanel1.Controls.Add(this.con2015, 3, 31);
  4099. this.myTableLayoutPanel1.Controls.Add(this.con2012, 0, 35);
  4100. this.myTableLayoutPanel1.Controls.Add(this.label12, 3, 33);
  4101. this.myTableLayoutPanel1.Controls.Add(this.con2008, 0, 26);
  4102. this.myTableLayoutPanel1.Controls.Add(this.con2011, 3, 22);
  4103. this.myTableLayoutPanel1.Controls.Add(this.label28, 3, 24);
  4104. this.myTableLayoutPanel1.Controls.Add(this.con2005, 15, 0);
  4105. this.myTableLayoutPanel1.Controls.Add(this.con2302, 18, 0);
  4106. this.myTableLayoutPanel1.Controls.Add(this.con2004, 12, 0);
  4107. this.myTableLayoutPanel1.Controls.Add(this.label33, 12, 2);
  4108. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 19, 25);
  4109. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 24, 25);
  4110. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 16, 25);
  4111. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 12, 25);
  4112. this.myTableLayoutPanel1.Controls.Add(this.srm15, 11, 25);
  4113. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 8, 25);
  4114. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel33, 6, 20);
  4115. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel34, 6, 42);
  4116. this.myTableLayoutPanel1.Controls.Add(this.conrgv5, 5, 40);
  4117. this.myTableLayoutPanel1.Controls.Add(this.con2323, 7, 20);
  4118. this.myTableLayoutPanel1.Controls.Add(this.con2322, 12, 20);
  4119. this.myTableLayoutPanel1.Controls.Add(this.con2308, 9, 4);
  4120. this.myTableLayoutPanel1.Controls.Add(this.con2304, 0, 4);
  4121. this.myTableLayoutPanel1.Controls.Add(this.con2305, 3, 4);
  4122. this.myTableLayoutPanel1.Controls.Add(this.con2309, 0, 6);
  4123. this.myTableLayoutPanel1.Controls.Add(this.con2310, 0, 8);
  4124. this.myTableLayoutPanel1.Controls.Add(this.con2026, 13, 47);
  4125. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel10, 15, 49);
  4126. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel11, 15, 45);
  4127. this.myTableLayoutPanel1.Controls.Add(this.con2280, 12, 23);
  4128. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel12, 23, 49);
  4129. this.myTableLayoutPanel1.Controls.Add(this.con2033, 21, 47);
  4130. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel13, 23, 45);
  4131. this.myTableLayoutPanel1.Controls.Add(this.con2035, 24, 45);
  4132. this.myTableLayoutPanel1.Controls.Add(this.con2278, 24, 23);
  4133. this.myTableLayoutPanel1.Controls.Add(this.srm14, 27, 25);
  4134. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 28, 25);
  4135. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 31, 25);
  4136. this.myTableLayoutPanel1.Controls.Add(this.con2042, 28, 45);
  4137. this.myTableLayoutPanel1.Controls.Add(this.con2041, 31, 45);
  4138. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 34, 25);
  4139. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 35, 25);
  4140. this.myTableLayoutPanel1.Controls.Add(this.con2277, 35, 23);
  4141. this.myTableLayoutPanel1.Controls.Add(this.con2049, 35, 45);
  4142. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel16, 38, 45);
  4143. this.myTableLayoutPanel1.Controls.Add(this.con2048, 36, 47);
  4144. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel14, 38, 49);
  4145. this.myTableLayoutPanel1.Controls.Add(this.con2050, 39, 45);
  4146. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 39, 25);
  4147. this.myTableLayoutPanel1.Controls.Add(this.con2281, 39, 23);
  4148. this.myTableLayoutPanel1.Controls.Add(this.srm13, 42, 25);
  4149. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 43, 25);
  4150. this.myTableLayoutPanel1.Controls.Add(this.con2276, 43, 23);
  4151. this.myTableLayoutPanel1.Controls.Add(this.con2056, 43, 45);
  4152. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel17, 46, 45);
  4153. this.myTableLayoutPanel1.Controls.Add(this.con2055, 44, 47);
  4154. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel18, 46, 49);
  4155. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 47, 25);
  4156. this.myTableLayoutPanel1.Controls.Add(this.con2057, 47, 45);
  4157. this.myTableLayoutPanel1.Controls.Add(this.con2275, 47, 23);
  4158. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 50, 25);
  4159. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 51, 25);
  4160. this.myTableLayoutPanel1.Controls.Add(this.con2062, 51, 45);
  4161. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel24, 55, 21);
  4162. this.myTableLayoutPanel1.Controls.Add(this.con2260, 59, 17);
  4163. this.myTableLayoutPanel1.Controls.Add(this.con2259, 59, 19);
  4164. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 69, 21);
  4165. this.myTableLayoutPanel1.Controls.Add(this.con2262, 64, 17);
  4166. this.myTableLayoutPanel1.Controls.Add(this.con2261, 64, 19);
  4167. this.myTableLayoutPanel1.Controls.Add(this.con2264, 73, 17);
  4168. this.myTableLayoutPanel1.Controls.Add(this.con2263, 73, 19);
  4169. this.myTableLayoutPanel1.Controls.Add(this.conveyor3_A17, 77, 19);
  4170. this.myTableLayoutPanel1.Controls.Add(this.conrgv1, 66, 21);
  4171. this.myTableLayoutPanel1.Controls.Add(this.locationPos44, 55, 25);
  4172. this.myTableLayoutPanel1.Controls.Add(this.locationPos43, 59, 25);
  4173. this.myTableLayoutPanel1.Controls.Add(this.srm12, 58, 25);
  4174. this.myTableLayoutPanel1.Controls.Add(this.con2153, 77, 7);
  4175. this.myTableLayoutPanel1.Controls.Add(this.con2181, 55, 9);
  4176. this.myTableLayoutPanel1.Controls.Add(this.con2180, 58, 9);
  4177. this.myTableLayoutPanel1.Controls.Add(this.con2207, 62, 9);
  4178. this.myTableLayoutPanel1.Controls.Add(this.con2208, 65, 9);
  4179. this.myTableLayoutPanel1.Controls.Add(this.con2209, 68, 9);
  4180. this.myTableLayoutPanel1.Controls.Add(this.con2210, 71, 9);
  4181. this.myTableLayoutPanel1.Controls.Add(this.con2211, 74, 9);
  4182. this.myTableLayoutPanel1.Controls.Add(this.con2192, 49, 7);
  4183. this.myTableLayoutPanel1.Controls.Add(this.con2195, 46, 7);
  4184. this.myTableLayoutPanel1.Controls.Add(this.con2198, 43, 7);
  4185. this.myTableLayoutPanel1.Controls.Add(this.con2201, 40, 7);
  4186. this.myTableLayoutPanel1.Controls.Add(this.con2265, 77, 17);
  4187. this.myTableLayoutPanel1.Controls.Add(this.con2382, 90, 3);
  4188. this.myTableLayoutPanel1.Controls.Add(this.con2381, 90, 5);
  4189. this.myTableLayoutPanel1.Controls.Add(this.con2380, 90, 7);
  4190. this.myTableLayoutPanel1.Controls.Add(this.con2379, 90, 9);
  4191. this.myTableLayoutPanel1.Controls.Add(this.con2378, 90, 11);
  4192. this.myTableLayoutPanel1.Controls.Add(this.con2377, 90, 13);
  4193. this.myTableLayoutPanel1.Controls.Add(this.con2376, 90, 15);
  4194. this.myTableLayoutPanel1.Controls.Add(this.con2375, 90, 17);
  4195. this.myTableLayoutPanel1.Controls.Add(this.con2374, 90, 19);
  4196. this.myTableLayoutPanel1.Controls.Add(this.con2385, 90, 21);
  4197. this.myTableLayoutPanel1.Controls.Add(this.con2386, 90, 23);
  4198. this.myTableLayoutPanel1.Controls.Add(this.con2387, 90, 25);
  4199. this.myTableLayoutPanel1.Controls.Add(this.con2388, 90, 27);
  4200. this.myTableLayoutPanel1.Controls.Add(this.con2372, 90, 29);
  4201. this.myTableLayoutPanel1.Controls.Add(this.con2371, 90, 31);
  4202. this.myTableLayoutPanel1.Controls.Add(this.con2370, 90, 33);
  4203. this.myTableLayoutPanel1.Controls.Add(this.con2369, 90, 35);
  4204. this.myTableLayoutPanel1.Controls.Add(this.con2368, 90, 37);
  4205. this.myTableLayoutPanel1.Controls.Add(this.con2366, 90, 39);
  4206. this.myTableLayoutPanel1.Controls.Add(this.con2365, 90, 41);
  4207. this.myTableLayoutPanel1.Controls.Add(this.con2364, 87, 41);
  4208. this.myTableLayoutPanel1.Controls.Add(this.con2362, 84, 41);
  4209. this.myTableLayoutPanel1.Controls.Add(this.con2360, 84, 43);
  4210. this.myTableLayoutPanel1.Controls.Add(this.con2359, 84, 45);
  4211. this.myTableLayoutPanel1.Controls.Add(this.con2135, 93, 17);
  4212. this.myTableLayoutPanel1.Controls.Add(this.label1, 93, 19);
  4213. this.myTableLayoutPanel1.Controls.Add(this.con2137, 93, 21);
  4214. this.myTableLayoutPanel1.Controls.Add(this.con2138, 96, 21);
  4215. this.myTableLayoutPanel1.Controls.Add(this.con2326, 99, 21);
  4216. this.myTableLayoutPanel1.Controls.Add(this.con2141, 105, 21);
  4217. this.myTableLayoutPanel1.Controls.Add(this.panel1, 102, 21);
  4218. this.myTableLayoutPanel1.Controls.Add(this.panel12, 102, 24);
  4219. this.myTableLayoutPanel1.Controls.Add(this.con2274, 108, 21);
  4220. this.myTableLayoutPanel1.Controls.Add(this.con2123, 93, 35);
  4221. this.myTableLayoutPanel1.Controls.Add(this.label4, 93, 37);
  4222. this.myTableLayoutPanel1.Controls.Add(this.con2125, 93, 39);
  4223. this.myTableLayoutPanel1.Controls.Add(this.con2126, 96, 39);
  4224. this.myTableLayoutPanel1.Controls.Add(this.con2327, 99, 39);
  4225. this.myTableLayoutPanel1.Controls.Add(this.con2129, 102, 37);
  4226. this.myTableLayoutPanel1.Controls.Add(this.con2128, 102, 39);
  4227. this.myTableLayoutPanel1.Controls.Add(this.con2131, 102, 41);
  4228. this.myTableLayoutPanel1.Controls.Add(this.con2273, 102, 35);
  4229. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel32, 91, 43);
  4230. this.myTableLayoutPanel1.Controls.Add(this.conrgv4, 89, 48);
  4231. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel9, 91, 50);
  4232. this.myTableLayoutPanel1.Controls.Add(this.con2114, 92, 50);
  4233. this.myTableLayoutPanel1.Controls.Add(this.label34, 92, 52);
  4234. this.myTableLayoutPanel1.Controls.Add(this.con2116, 92, 54);
  4235. this.myTableLayoutPanel1.Controls.Add(this.con2117, 95, 54);
  4236. this.myTableLayoutPanel1.Controls.Add(this.con2328, 98, 54);
  4237. this.myTableLayoutPanel1.Controls.Add(this.con2120, 101, 51);
  4238. this.myTableLayoutPanel1.Controls.Add(this.con2119, 101, 53);
  4239. this.myTableLayoutPanel1.Controls.Add(this.con2122, 101, 55);
  4240. this.myTableLayoutPanel1.Controls.Add(this.con2272, 101, 49);
  4241. this.myTableLayoutPanel1.Controls.Add(this.conrgv3, 53, 5);
  4242. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 40, 5);
  4243. this.myTableLayoutPanel1.Controls.Add(this.con2202, 49, 3);
  4244. this.myTableLayoutPanel1.Controls.Add(this.con2256, 77, 23);
  4245. this.myTableLayoutPanel1.Controls.Add(this.con2255, 73, 23);
  4246. this.myTableLayoutPanel1.Controls.Add(this.con2254, 68, 23);
  4247. this.myTableLayoutPanel1.Controls.Add(this.con2253, 64, 23);
  4248. this.myTableLayoutPanel1.Controls.Add(this.con2252, 59, 23);
  4249. this.myTableLayoutPanel1.Controls.Add(this.con2251, 55, 23);
  4250. this.myTableLayoutPanel1.Controls.Add(this.locationPos41, 77, 25);
  4251. this.myTableLayoutPanel1.Controls.Add(this.locationPos35, 73, 25);
  4252. this.myTableLayoutPanel1.Controls.Add(this.srm11, 76, 25);
  4253. this.myTableLayoutPanel1.Controls.Add(this.locationPos40, 68, 25);
  4254. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel15, 67, 25);
  4255. this.myTableLayoutPanel1.Controls.Add(this.locationPos39, 64, 25);
  4256. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel8, 59, 42);
  4257. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 68, 42);
  4258. this.myTableLayoutPanel1.Controls.Add(this.con2307, 6, 4);
  4259. this.myTableLayoutPanel1.Controls.Add(this.con2003, 12, 4);
  4260. this.myTableLayoutPanel1.Controls.Add(this.con2311, 17, 2);
  4261. this.myTableLayoutPanel1.Controls.Add(this.con2312, 17, 4);
  4262. this.myTableLayoutPanel1.Controls.Add(this.con2313, 17, 6);
  4263. this.myTableLayoutPanel1.Controls.Add(this.con2314, 17, 8);
  4264. this.myTableLayoutPanel1.Controls.Add(this.con2315, 17, 10);
  4265. this.myTableLayoutPanel1.Controls.Add(this.con2316, 17, 12);
  4266. this.myTableLayoutPanel1.Controls.Add(this.con2317, 17, 14);
  4267. this.myTableLayoutPanel1.Controls.Add(this.con2318, 17, 16);
  4268. this.myTableLayoutPanel1.Controls.Add(this.con2319, 17, 18);
  4269. this.myTableLayoutPanel1.Controls.Add(this.con2320, 17, 20);
  4270. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  4271. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  4272. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4273. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  4274. this.myTableLayoutPanel1.RowCount = 58;
  4275. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4276. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4277. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4278. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4279. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4280. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4281. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4282. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.285956F));
  4283. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.987387F));
  4284. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4285. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4286. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4287. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4288. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4289. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4290. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4291. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4292. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4293. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4294. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4295. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4296. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4297. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4298. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4299. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4300. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4301. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.522525F));
  4302. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.756759F));
  4303. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4304. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4305. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4306. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4307. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4308. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4309. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4310. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4311. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4312. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4313. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4314. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4315. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4316. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4317. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4318. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4319. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4320. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4321. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4322. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4323. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4324. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4325. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4326. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4327. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4328. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4329. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4330. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4331. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4332. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.730507F));
  4333. this.myTableLayoutPanel1.Size = new System.Drawing.Size(2156, 857);
  4334. this.myTableLayoutPanel1.TabIndex = 2;
  4335. //
  4336. // con2282
  4337. //
  4338. this.con2282.BackColor = System.Drawing.Color.Transparent;
  4339. this.myTableLayoutPanel1.SetColumnSpan(this.con2282, 3);
  4340. this.con2282.Dock = System.Windows.Forms.DockStyle.Fill;
  4341. this.con2282.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4342. this.con2282.Location = new System.Drawing.Point(380, 322);
  4343. this.con2282.Margin = new System.Windows.Forms.Padding(0);
  4344. this.con2282.Name = "con2282";
  4345. this.myTableLayoutPanel1.SetRowSpan(this.con2282, 2);
  4346. this.con2282.Size = new System.Drawing.Size(57, 28);
  4347. this.con2282.TabIndex = 869;
  4348. //
  4349. // con2010
  4350. //
  4351. this.con2010.BackColor = System.Drawing.Color.Transparent;
  4352. this.myTableLayoutPanel1.SetColumnSpan(this.con2010, 3);
  4353. this.con2010.Dock = System.Windows.Forms.DockStyle.Fill;
  4354. this.con2010.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4355. this.con2010.Location = new System.Drawing.Point(57, 364);
  4356. this.con2010.Margin = new System.Windows.Forms.Padding(0);
  4357. this.con2010.Name = "con2010";
  4358. this.myTableLayoutPanel1.SetRowSpan(this.con2010, 2);
  4359. this.con2010.Size = new System.Drawing.Size(57, 28);
  4360. this.con2010.TabIndex = 868;
  4361. //
  4362. // con2014
  4363. //
  4364. this.con2014.BackColor = System.Drawing.Color.Transparent;
  4365. this.myTableLayoutPanel1.SetColumnSpan(this.con2014, 3);
  4366. this.con2014.Dock = System.Windows.Forms.DockStyle.Fill;
  4367. this.con2014.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4368. this.con2014.Location = new System.Drawing.Point(57, 490);
  4369. this.con2014.Margin = new System.Windows.Forms.Padding(0);
  4370. this.con2014.Name = "con2014";
  4371. this.myTableLayoutPanel1.SetRowSpan(this.con2014, 2);
  4372. this.con2014.Size = new System.Drawing.Size(57, 28);
  4373. this.con2014.TabIndex = 867;
  4374. //
  4375. // con2083
  4376. //
  4377. this.con2083.BackColor = System.Drawing.Color.Transparent;
  4378. this.myTableLayoutPanel1.SetColumnSpan(this.con2083, 3);
  4379. this.con2083.Dock = System.Windows.Forms.DockStyle.Fill;
  4380. this.con2083.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4381. this.con2083.Location = new System.Drawing.Point(57, 686);
  4382. this.con2083.Margin = new System.Windows.Forms.Padding(0);
  4383. this.con2083.Name = "con2083";
  4384. this.myTableLayoutPanel1.SetRowSpan(this.con2083, 2);
  4385. this.con2083.Size = new System.Drawing.Size(57, 28);
  4386. this.con2083.TabIndex = 866;
  4387. //
  4388. // con2279
  4389. //
  4390. this.con2279.BackColor = System.Drawing.Color.Transparent;
  4391. this.myTableLayoutPanel1.SetColumnSpan(this.con2279, 3);
  4392. this.con2279.Dock = System.Windows.Forms.DockStyle.Fill;
  4393. this.con2279.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4394. this.con2279.Location = new System.Drawing.Point(304, 322);
  4395. this.con2279.Margin = new System.Windows.Forms.Padding(0);
  4396. this.con2279.Name = "con2279";
  4397. this.myTableLayoutPanel1.SetRowSpan(this.con2279, 2);
  4398. this.con2279.Size = new System.Drawing.Size(57, 28);
  4399. this.con2279.TabIndex = 858;
  4400. //
  4401. // con2058
  4402. //
  4403. this.con2058.BackColor = System.Drawing.Color.Transparent;
  4404. this.myTableLayoutPanel1.SetColumnSpan(this.con2058, 3);
  4405. this.con2058.Dock = System.Windows.Forms.DockStyle.Fill;
  4406. this.con2058.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4407. this.con2058.Location = new System.Drawing.Point(1045, 714);
  4408. this.con2058.Margin = new System.Windows.Forms.Padding(0);
  4409. this.con2058.Name = "con2058";
  4410. this.myTableLayoutPanel1.SetRowSpan(this.con2058, 2);
  4411. this.con2058.Size = new System.Drawing.Size(57, 28);
  4412. this.con2058.TabIndex = 854;
  4413. //
  4414. // con2053
  4415. //
  4416. this.con2053.BackColor = System.Drawing.Color.Transparent;
  4417. this.myTableLayoutPanel1.SetColumnSpan(this.con2053, 3);
  4418. this.con2053.Dock = System.Windows.Forms.DockStyle.Fill;
  4419. this.con2053.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4420. this.con2053.Location = new System.Drawing.Point(988, 714);
  4421. this.con2053.Margin = new System.Windows.Forms.Padding(0);
  4422. this.con2053.Name = "con2053";
  4423. this.myTableLayoutPanel1.SetRowSpan(this.con2053, 2);
  4424. this.con2053.Size = new System.Drawing.Size(57, 28);
  4425. this.con2053.TabIndex = 853;
  4426. //
  4427. // con2051
  4428. //
  4429. this.con2051.BackColor = System.Drawing.Color.Transparent;
  4430. this.myTableLayoutPanel1.SetColumnSpan(this.con2051, 3);
  4431. this.con2051.Dock = System.Windows.Forms.DockStyle.Fill;
  4432. this.con2051.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4433. this.con2051.Location = new System.Drawing.Point(931, 714);
  4434. this.con2051.Margin = new System.Windows.Forms.Padding(0);
  4435. this.con2051.Name = "con2051";
  4436. this.myTableLayoutPanel1.SetRowSpan(this.con2051, 2);
  4437. this.con2051.Size = new System.Drawing.Size(57, 28);
  4438. this.con2051.TabIndex = 847;
  4439. //
  4440. // con2039
  4441. //
  4442. this.con2039.BackColor = System.Drawing.Color.Transparent;
  4443. this.myTableLayoutPanel1.SetColumnSpan(this.con2039, 3);
  4444. this.con2039.Dock = System.Windows.Forms.DockStyle.Fill;
  4445. this.con2039.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4446. this.con2039.Location = new System.Drawing.Point(760, 714);
  4447. this.con2039.Margin = new System.Windows.Forms.Padding(0);
  4448. this.con2039.Name = "con2039";
  4449. this.myTableLayoutPanel1.SetRowSpan(this.con2039, 2);
  4450. this.con2039.Size = new System.Drawing.Size(57, 28);
  4451. this.con2039.TabIndex = 840;
  4452. //
  4453. // con2034
  4454. //
  4455. this.con2034.BackColor = System.Drawing.Color.Transparent;
  4456. this.myTableLayoutPanel1.SetColumnSpan(this.con2034, 3);
  4457. this.con2034.Dock = System.Windows.Forms.DockStyle.Fill;
  4458. this.con2034.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4459. this.con2034.Location = new System.Drawing.Point(380, 630);
  4460. this.con2034.Margin = new System.Windows.Forms.Padding(0);
  4461. this.con2034.Name = "con2034";
  4462. this.myTableLayoutPanel1.SetRowSpan(this.con2034, 2);
  4463. this.con2034.Size = new System.Drawing.Size(57, 28);
  4464. this.con2034.TabIndex = 834;
  4465. //
  4466. // con2028
  4467. //
  4468. this.con2028.BackColor = System.Drawing.Color.Transparent;
  4469. this.myTableLayoutPanel1.SetColumnSpan(this.con2028, 3);
  4470. this.con2028.Dock = System.Windows.Forms.DockStyle.Fill;
  4471. this.con2028.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4472. this.con2028.Location = new System.Drawing.Point(304, 630);
  4473. this.con2028.Margin = new System.Windows.Forms.Padding(0);
  4474. this.con2028.Name = "con2028";
  4475. this.myTableLayoutPanel1.SetRowSpan(this.con2028, 2);
  4476. this.con2028.Size = new System.Drawing.Size(57, 28);
  4477. this.con2028.TabIndex = 833;
  4478. //
  4479. // con2027
  4480. //
  4481. this.con2027.BackColor = System.Drawing.Color.Transparent;
  4482. this.myTableLayoutPanel1.SetColumnSpan(this.con2027, 3);
  4483. this.con2027.Dock = System.Windows.Forms.DockStyle.Fill;
  4484. this.con2027.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4485. this.con2027.Location = new System.Drawing.Point(228, 630);
  4486. this.con2027.Margin = new System.Windows.Forms.Padding(0);
  4487. this.con2027.Name = "con2027";
  4488. this.myTableLayoutPanel1.SetRowSpan(this.con2027, 2);
  4489. this.con2027.Size = new System.Drawing.Size(57, 28);
  4490. this.con2027.TabIndex = 829;
  4491. //
  4492. // con2022
  4493. //
  4494. this.con2022.BackColor = System.Drawing.Color.Transparent;
  4495. this.myTableLayoutPanel1.SetColumnSpan(this.con2022, 3);
  4496. this.con2022.Dock = System.Windows.Forms.DockStyle.Fill;
  4497. this.con2022.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4498. this.con2022.Location = new System.Drawing.Point(361, 714);
  4499. this.con2022.Margin = new System.Windows.Forms.Padding(0);
  4500. this.con2022.Name = "con2022";
  4501. this.myTableLayoutPanel1.SetRowSpan(this.con2022, 2);
  4502. this.con2022.Size = new System.Drawing.Size(57, 28);
  4503. this.con2022.TabIndex = 828;
  4504. //
  4505. // con2021
  4506. //
  4507. this.con2021.BackColor = System.Drawing.Color.Transparent;
  4508. this.myTableLayoutPanel1.SetColumnSpan(this.con2021, 3);
  4509. this.con2021.Dock = System.Windows.Forms.DockStyle.Fill;
  4510. this.con2021.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4511. this.con2021.Location = new System.Drawing.Point(152, 630);
  4512. this.con2021.Margin = new System.Windows.Forms.Padding(0);
  4513. this.con2021.Name = "con2021";
  4514. this.myTableLayoutPanel1.SetRowSpan(this.con2021, 2);
  4515. this.con2021.Size = new System.Drawing.Size(57, 28);
  4516. this.con2021.TabIndex = 827;
  4517. //
  4518. // con2203
  4519. //
  4520. this.myTableLayoutPanel1.SetColumnSpan(this.con2203, 3);
  4521. this.con2203.Dock = System.Windows.Forms.DockStyle.Fill;
  4522. this.con2203.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4523. this.con2203.Location = new System.Drawing.Point(1178, 98);
  4524. this.con2203.Margin = new System.Windows.Forms.Padding(0);
  4525. this.con2203.Name = "con2203";
  4526. this.myTableLayoutPanel1.SetRowSpan(this.con2203, 2);
  4527. this.con2203.Size = new System.Drawing.Size(57, 28);
  4528. this.con2203.TabIndex = 800;
  4529. //
  4530. // con2206
  4531. //
  4532. this.myTableLayoutPanel1.SetColumnSpan(this.con2206, 3);
  4533. this.con2206.Dock = System.Windows.Forms.DockStyle.Fill;
  4534. this.con2206.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4535. this.con2206.Location = new System.Drawing.Point(1349, 98);
  4536. this.con2206.Margin = new System.Windows.Forms.Padding(0);
  4537. this.con2206.Name = "con2206";
  4538. this.myTableLayoutPanel1.SetRowSpan(this.con2206, 2);
  4539. this.con2206.Size = new System.Drawing.Size(57, 28);
  4540. this.con2206.TabIndex = 799;
  4541. //
  4542. // con2204
  4543. //
  4544. this.myTableLayoutPanel1.SetColumnSpan(this.con2204, 3);
  4545. this.con2204.Dock = System.Windows.Forms.DockStyle.Fill;
  4546. this.con2204.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4547. this.con2204.Location = new System.Drawing.Point(1235, 98);
  4548. this.con2204.Margin = new System.Windows.Forms.Padding(0);
  4549. this.con2204.Name = "con2204";
  4550. this.myTableLayoutPanel1.SetRowSpan(this.con2204, 2);
  4551. this.con2204.Size = new System.Drawing.Size(57, 28);
  4552. this.con2204.TabIndex = 798;
  4553. //
  4554. // con2205
  4555. //
  4556. this.myTableLayoutPanel1.SetColumnSpan(this.con2205, 3);
  4557. this.con2205.Dock = System.Windows.Forms.DockStyle.Fill;
  4558. this.con2205.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4559. this.con2205.Location = new System.Drawing.Point(1292, 98);
  4560. this.con2205.Margin = new System.Windows.Forms.Padding(0);
  4561. this.con2205.Name = "con2205";
  4562. this.myTableLayoutPanel1.SetRowSpan(this.con2205, 2);
  4563. this.con2205.Size = new System.Drawing.Size(57, 28);
  4564. this.con2205.TabIndex = 797;
  4565. //
  4566. // tableCellLabel1
  4567. //
  4568. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  4569. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  4570. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4571. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 21);
  4572. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  4573. this.tableCellLabel1.Location = new System.Drawing.Point(1064, 70);
  4574. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  4575. this.tableCellLabel1.Name = "tableCellLabel1";
  4576. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 2);
  4577. this.tableCellLabel1.Size = new System.Drawing.Size(399, 28);
  4578. this.tableCellLabel1.TabIndex = 791;
  4579. //
  4580. // con2187
  4581. //
  4582. this.myTableLayoutPanel1.SetColumnSpan(this.con2187, 3);
  4583. this.con2187.Dock = System.Windows.Forms.DockStyle.Fill;
  4584. this.con2187.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4585. this.con2187.Location = new System.Drawing.Point(1045, 98);
  4586. this.con2187.Margin = new System.Windows.Forms.Padding(0);
  4587. this.con2187.Name = "con2187";
  4588. this.myTableLayoutPanel1.SetRowSpan(this.con2187, 2);
  4589. this.con2187.Size = new System.Drawing.Size(57, 28);
  4590. this.con2187.TabIndex = 789;
  4591. //
  4592. // con2182
  4593. //
  4594. this.myTableLayoutPanel1.SetColumnSpan(this.con2182, 3);
  4595. this.con2182.Dock = System.Windows.Forms.DockStyle.Fill;
  4596. this.con2182.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4597. this.con2182.Location = new System.Drawing.Point(1102, 98);
  4598. this.con2182.Margin = new System.Windows.Forms.Padding(0);
  4599. this.con2182.Name = "con2182";
  4600. this.myTableLayoutPanel1.SetRowSpan(this.con2182, 2);
  4601. this.con2182.Size = new System.Drawing.Size(57, 28);
  4602. this.con2182.TabIndex = 788;
  4603. //
  4604. // con2271
  4605. //
  4606. this.myTableLayoutPanel1.SetColumnSpan(this.con2271, 3);
  4607. this.con2271.Dock = System.Windows.Forms.DockStyle.Fill;
  4608. this.con2271.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4609. this.con2271.Location = new System.Drawing.Point(1463, 70);
  4610. this.con2271.Margin = new System.Windows.Forms.Padding(0);
  4611. this.con2271.Name = "con2271";
  4612. this.myTableLayoutPanel1.SetRowSpan(this.con2271, 2);
  4613. this.con2271.Size = new System.Drawing.Size(57, 28);
  4614. this.con2271.TabIndex = 785;
  4615. //
  4616. // con2152
  4617. //
  4618. this.myTableLayoutPanel1.SetColumnSpan(this.con2152, 3);
  4619. this.con2152.Dock = System.Windows.Forms.DockStyle.Fill;
  4620. this.con2152.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4621. this.con2152.Location = new System.Drawing.Point(1463, 42);
  4622. this.con2152.Margin = new System.Windows.Forms.Padding(0);
  4623. this.con2152.Name = "con2152";
  4624. this.myTableLayoutPanel1.SetRowSpan(this.con2152, 2);
  4625. this.con2152.Size = new System.Drawing.Size(57, 28);
  4626. this.con2152.TabIndex = 783;
  4627. //
  4628. // tableCellLabel3
  4629. //
  4630. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  4631. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  4632. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4633. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 16);
  4634. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  4635. this.tableCellLabel3.Location = new System.Drawing.Point(1045, 154);
  4636. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  4637. this.tableCellLabel3.Name = "tableCellLabel3";
  4638. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel3, 2);
  4639. this.tableCellLabel3.Size = new System.Drawing.Size(304, 28);
  4640. this.tableCellLabel3.TabIndex = 780;
  4641. //
  4642. // tableCellLabel4
  4643. //
  4644. this.tableCellLabel4.BackColor = System.Drawing.Color.Transparent;
  4645. this.tableCellLabel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel4.BackgroundImage")));
  4646. this.tableCellLabel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  4647. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel4, 6);
  4648. this.tableCellLabel4.Dock = System.Windows.Forms.DockStyle.Fill;
  4649. this.tableCellLabel4.Location = new System.Drawing.Point(1406, 154);
  4650. this.tableCellLabel4.Margin = new System.Windows.Forms.Padding(0);
  4651. this.tableCellLabel4.Name = "tableCellLabel4";
  4652. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel4, 2);
  4653. this.tableCellLabel4.Size = new System.Drawing.Size(114, 28);
  4654. this.tableCellLabel4.TabIndex = 779;
  4655. //
  4656. // conrgv2
  4657. //
  4658. this.conrgv2.BackColor = System.Drawing.Color.Transparent;
  4659. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv2, 3);
  4660. this.conrgv2.Dock = System.Windows.Forms.DockStyle.Fill;
  4661. this.conrgv2.Location = new System.Drawing.Point(1349, 154);
  4662. this.conrgv2.Margin = new System.Windows.Forms.Padding(0);
  4663. this.conrgv2.Name = "conrgv2";
  4664. this.myTableLayoutPanel1.SetRowSpan(this.conrgv2, 2);
  4665. this.conrgv2.Size = new System.Drawing.Size(57, 28);
  4666. this.conrgv2.TabIndex = 781;
  4667. //
  4668. // con2172
  4669. //
  4670. this.myTableLayoutPanel1.SetColumnSpan(this.con2172, 3);
  4671. this.con2172.Dock = System.Windows.Forms.DockStyle.Fill;
  4672. this.con2172.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4673. this.con2172.Location = new System.Drawing.Point(1045, 182);
  4674. this.con2172.Margin = new System.Windows.Forms.Padding(0);
  4675. this.con2172.Name = "con2172";
  4676. this.myTableLayoutPanel1.SetRowSpan(this.con2172, 2);
  4677. this.con2172.Size = new System.Drawing.Size(57, 28);
  4678. this.con2172.TabIndex = 776;
  4679. //
  4680. // con2173
  4681. //
  4682. this.myTableLayoutPanel1.SetColumnSpan(this.con2173, 3);
  4683. this.con2173.Dock = System.Windows.Forms.DockStyle.Fill;
  4684. this.con2173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4685. this.con2173.Location = new System.Drawing.Point(1121, 182);
  4686. this.con2173.Margin = new System.Windows.Forms.Padding(0);
  4687. this.con2173.Name = "con2173";
  4688. this.myTableLayoutPanel1.SetRowSpan(this.con2173, 2);
  4689. this.con2173.Size = new System.Drawing.Size(57, 28);
  4690. this.con2173.TabIndex = 775;
  4691. //
  4692. // con2174
  4693. //
  4694. this.myTableLayoutPanel1.SetColumnSpan(this.con2174, 3);
  4695. this.con2174.Dock = System.Windows.Forms.DockStyle.Fill;
  4696. this.con2174.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4697. this.con2174.Location = new System.Drawing.Point(1216, 182);
  4698. this.con2174.Margin = new System.Windows.Forms.Padding(0);
  4699. this.con2174.Name = "con2174";
  4700. this.myTableLayoutPanel1.SetRowSpan(this.con2174, 2);
  4701. this.con2174.Size = new System.Drawing.Size(57, 28);
  4702. this.con2174.TabIndex = 774;
  4703. //
  4704. // con2175
  4705. //
  4706. this.myTableLayoutPanel1.SetColumnSpan(this.con2175, 3);
  4707. this.con2175.Dock = System.Windows.Forms.DockStyle.Fill;
  4708. this.con2175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4709. this.con2175.Location = new System.Drawing.Point(1292, 182);
  4710. this.con2175.Margin = new System.Windows.Forms.Padding(0);
  4711. this.con2175.Name = "con2175";
  4712. this.myTableLayoutPanel1.SetRowSpan(this.con2175, 2);
  4713. this.con2175.Size = new System.Drawing.Size(57, 28);
  4714. this.con2175.TabIndex = 773;
  4715. //
  4716. // con2176
  4717. //
  4718. this.myTableLayoutPanel1.SetColumnSpan(this.con2176, 3);
  4719. this.con2176.Dock = System.Windows.Forms.DockStyle.Fill;
  4720. this.con2176.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4721. this.con2176.Location = new System.Drawing.Point(1387, 182);
  4722. this.con2176.Margin = new System.Windows.Forms.Padding(0);
  4723. this.con2176.Name = "con2176";
  4724. this.myTableLayoutPanel1.SetRowSpan(this.con2176, 2);
  4725. this.con2176.Size = new System.Drawing.Size(57, 28);
  4726. this.con2176.TabIndex = 772;
  4727. //
  4728. // con2177
  4729. //
  4730. this.myTableLayoutPanel1.SetColumnSpan(this.con2177, 3);
  4731. this.con2177.Dock = System.Windows.Forms.DockStyle.Fill;
  4732. this.con2177.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4733. this.con2177.Location = new System.Drawing.Point(1463, 182);
  4734. this.con2177.Margin = new System.Windows.Forms.Padding(0);
  4735. this.con2177.Name = "con2177";
  4736. this.myTableLayoutPanel1.SetRowSpan(this.con2177, 2);
  4737. this.con2177.Size = new System.Drawing.Size(57, 28);
  4738. this.con2177.TabIndex = 771;
  4739. //
  4740. // con2147
  4741. //
  4742. this.con2147.BackColor = System.Drawing.Color.Transparent;
  4743. this.myTableLayoutPanel1.SetColumnSpan(this.con2147, 3);
  4744. this.con2147.Dock = System.Windows.Forms.DockStyle.Fill;
  4745. this.con2147.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4746. this.con2147.Location = new System.Drawing.Point(1482, 14);
  4747. this.con2147.Margin = new System.Windows.Forms.Padding(0);
  4748. this.con2147.Name = "con2147";
  4749. this.myTableLayoutPanel1.SetRowSpan(this.con2147, 2);
  4750. this.con2147.Size = new System.Drawing.Size(57, 28);
  4751. this.con2147.TabIndex = 768;
  4752. //
  4753. // con2146
  4754. //
  4755. this.con2146.BackColor = System.Drawing.Color.Transparent;
  4756. this.myTableLayoutPanel1.SetColumnSpan(this.con2146, 3);
  4757. this.con2146.Dock = System.Windows.Forms.DockStyle.Fill;
  4758. this.con2146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4759. this.con2146.Location = new System.Drawing.Point(1539, 14);
  4760. this.con2146.Margin = new System.Windows.Forms.Padding(0);
  4761. this.con2146.Name = "con2146";
  4762. this.myTableLayoutPanel1.SetRowSpan(this.con2146, 2);
  4763. this.con2146.Size = new System.Drawing.Size(57, 28);
  4764. this.con2146.TabIndex = 769;
  4765. //
  4766. // con2148
  4767. //
  4768. this.con2148.BackColor = System.Drawing.Color.Transparent;
  4769. this.myTableLayoutPanel1.SetColumnSpan(this.con2148, 3);
  4770. this.con2148.Dock = System.Windows.Forms.DockStyle.Fill;
  4771. this.con2148.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4772. this.con2148.Location = new System.Drawing.Point(1425, 14);
  4773. this.con2148.Margin = new System.Windows.Forms.Padding(0);
  4774. this.con2148.Name = "con2148";
  4775. this.myTableLayoutPanel1.SetRowSpan(this.con2148, 2);
  4776. this.con2148.Size = new System.Drawing.Size(57, 28);
  4777. this.con2148.TabIndex = 770;
  4778. //
  4779. // con2144
  4780. //
  4781. this.con2144.BackColor = System.Drawing.Color.Transparent;
  4782. this.myTableLayoutPanel1.SetColumnSpan(this.con2144, 3);
  4783. this.con2144.Dock = System.Windows.Forms.DockStyle.Fill;
  4784. this.con2144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4785. this.con2144.Location = new System.Drawing.Point(1653, 14);
  4786. this.con2144.Margin = new System.Windows.Forms.Padding(0);
  4787. this.con2144.Name = "con2144";
  4788. this.myTableLayoutPanel1.SetRowSpan(this.con2144, 2);
  4789. this.con2144.Size = new System.Drawing.Size(57, 28);
  4790. this.con2144.TabIndex = 765;
  4791. //
  4792. // con2145
  4793. //
  4794. this.con2145.BackColor = System.Drawing.Color.Transparent;
  4795. this.myTableLayoutPanel1.SetColumnSpan(this.con2145, 3);
  4796. this.con2145.Dock = System.Windows.Forms.DockStyle.Fill;
  4797. this.con2145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4798. this.con2145.Location = new System.Drawing.Point(1596, 14);
  4799. this.con2145.Margin = new System.Windows.Forms.Padding(0);
  4800. this.con2145.Name = "con2145";
  4801. this.myTableLayoutPanel1.SetRowSpan(this.con2145, 2);
  4802. this.con2145.Size = new System.Drawing.Size(57, 28);
  4803. this.con2145.TabIndex = 766;
  4804. //
  4805. // con2150
  4806. //
  4807. this.con2150.BackColor = System.Drawing.Color.Transparent;
  4808. this.myTableLayoutPanel1.SetColumnSpan(this.con2150, 3);
  4809. this.con2150.Dock = System.Windows.Forms.DockStyle.Fill;
  4810. this.con2150.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4811. this.con2150.Location = new System.Drawing.Point(1368, 14);
  4812. this.con2150.Margin = new System.Windows.Forms.Padding(0);
  4813. this.con2150.Name = "con2150";
  4814. this.myTableLayoutPanel1.SetRowSpan(this.con2150, 2);
  4815. this.con2150.Size = new System.Drawing.Size(57, 28);
  4816. this.con2150.TabIndex = 767;
  4817. //
  4818. // con2161
  4819. //
  4820. this.con2161.BackColor = System.Drawing.Color.Transparent;
  4821. this.myTableLayoutPanel1.SetColumnSpan(this.con2161, 3);
  4822. this.con2161.Dock = System.Windows.Forms.DockStyle.Fill;
  4823. this.con2161.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4824. this.con2161.Location = new System.Drawing.Point(1311, 14);
  4825. this.con2161.Margin = new System.Windows.Forms.Padding(0);
  4826. this.con2161.Name = "con2161";
  4827. this.myTableLayoutPanel1.SetRowSpan(this.con2161, 2);
  4828. this.con2161.Size = new System.Drawing.Size(57, 28);
  4829. this.con2161.TabIndex = 764;
  4830. //
  4831. // con2384
  4832. //
  4833. this.myTableLayoutPanel1.SetColumnSpan(this.con2384, 3);
  4834. this.con2384.Dock = System.Windows.Forms.DockStyle.Fill;
  4835. this.con2384.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4836. this.con2384.Location = new System.Drawing.Point(1710, 14);
  4837. this.con2384.Margin = new System.Windows.Forms.Padding(0);
  4838. this.con2384.Name = "con2384";
  4839. this.myTableLayoutPanel1.SetRowSpan(this.con2384, 2);
  4840. this.con2384.Size = new System.Drawing.Size(57, 28);
  4841. this.con2384.TabIndex = 763;
  4842. //
  4843. // con2104
  4844. //
  4845. this.con2104.BackColor = System.Drawing.Color.Transparent;
  4846. this.myTableLayoutPanel1.SetColumnSpan(this.con2104, 3);
  4847. this.con2104.Dock = System.Windows.Forms.DockStyle.Fill;
  4848. this.con2104.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4849. this.con2104.Location = new System.Drawing.Point(1349, 742);
  4850. this.con2104.Margin = new System.Windows.Forms.Padding(0);
  4851. this.con2104.Name = "con2104";
  4852. this.myTableLayoutPanel1.SetRowSpan(this.con2104, 2);
  4853. this.con2104.Size = new System.Drawing.Size(57, 28);
  4854. this.con2104.TabIndex = 716;
  4855. //
  4856. // con2102
  4857. //
  4858. this.con2102.BackColor = System.Drawing.Color.Transparent;
  4859. this.myTableLayoutPanel1.SetColumnSpan(this.con2102, 3);
  4860. this.con2102.Dock = System.Windows.Forms.DockStyle.Fill;
  4861. this.con2102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4862. this.con2102.Location = new System.Drawing.Point(1235, 742);
  4863. this.con2102.Margin = new System.Windows.Forms.Padding(0);
  4864. this.con2102.Name = "con2102";
  4865. this.myTableLayoutPanel1.SetRowSpan(this.con2102, 2);
  4866. this.con2102.Size = new System.Drawing.Size(57, 28);
  4867. this.con2102.TabIndex = 715;
  4868. //
  4869. // con2101
  4870. //
  4871. this.con2101.BackColor = System.Drawing.Color.Transparent;
  4872. this.myTableLayoutPanel1.SetColumnSpan(this.con2101, 3);
  4873. this.con2101.Dock = System.Windows.Forms.DockStyle.Fill;
  4874. this.con2101.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4875. this.con2101.Location = new System.Drawing.Point(1178, 742);
  4876. this.con2101.Margin = new System.Windows.Forms.Padding(0);
  4877. this.con2101.Name = "con2101";
  4878. this.myTableLayoutPanel1.SetRowSpan(this.con2101, 2);
  4879. this.con2101.Size = new System.Drawing.Size(57, 28);
  4880. this.con2101.TabIndex = 714;
  4881. //
  4882. // con2103
  4883. //
  4884. this.con2103.BackColor = System.Drawing.Color.Transparent;
  4885. this.myTableLayoutPanel1.SetColumnSpan(this.con2103, 3);
  4886. this.con2103.Dock = System.Windows.Forms.DockStyle.Fill;
  4887. this.con2103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4888. this.con2103.Location = new System.Drawing.Point(1292, 742);
  4889. this.con2103.Margin = new System.Windows.Forms.Padding(0);
  4890. this.con2103.Name = "con2103";
  4891. this.myTableLayoutPanel1.SetRowSpan(this.con2103, 2);
  4892. this.con2103.Size = new System.Drawing.Size(57, 28);
  4893. this.con2103.TabIndex = 712;
  4894. //
  4895. // con2108
  4896. //
  4897. this.con2108.BackColor = System.Drawing.Color.Transparent;
  4898. this.myTableLayoutPanel1.SetColumnSpan(this.con2108, 3);
  4899. this.con2108.Dock = System.Windows.Forms.DockStyle.Fill;
  4900. this.con2108.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4901. this.con2108.Location = new System.Drawing.Point(1577, 742);
  4902. this.con2108.Margin = new System.Windows.Forms.Padding(0);
  4903. this.con2108.Name = "con2108";
  4904. this.myTableLayoutPanel1.SetRowSpan(this.con2108, 2);
  4905. this.con2108.Size = new System.Drawing.Size(57, 28);
  4906. this.con2108.TabIndex = 713;
  4907. //
  4908. // con2107
  4909. //
  4910. this.con2107.BackColor = System.Drawing.Color.Transparent;
  4911. this.myTableLayoutPanel1.SetColumnSpan(this.con2107, 3);
  4912. this.con2107.Dock = System.Windows.Forms.DockStyle.Fill;
  4913. this.con2107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4914. this.con2107.Location = new System.Drawing.Point(1520, 742);
  4915. this.con2107.Margin = new System.Windows.Forms.Padding(0);
  4916. this.con2107.Name = "con2107";
  4917. this.myTableLayoutPanel1.SetRowSpan(this.con2107, 2);
  4918. this.con2107.Size = new System.Drawing.Size(57, 28);
  4919. this.con2107.TabIndex = 710;
  4920. //
  4921. // con2106
  4922. //
  4923. this.con2106.BackColor = System.Drawing.Color.Transparent;
  4924. this.myTableLayoutPanel1.SetColumnSpan(this.con2106, 3);
  4925. this.con2106.Dock = System.Windows.Forms.DockStyle.Fill;
  4926. this.con2106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4927. this.con2106.Location = new System.Drawing.Point(1463, 742);
  4928. this.con2106.Margin = new System.Windows.Forms.Padding(0);
  4929. this.con2106.Name = "con2106";
  4930. this.myTableLayoutPanel1.SetRowSpan(this.con2106, 2);
  4931. this.con2106.Size = new System.Drawing.Size(57, 28);
  4932. this.con2106.TabIndex = 711;
  4933. //
  4934. // con2105
  4935. //
  4936. this.con2105.BackColor = System.Drawing.Color.Transparent;
  4937. this.myTableLayoutPanel1.SetColumnSpan(this.con2105, 3);
  4938. this.con2105.Dock = System.Windows.Forms.DockStyle.Fill;
  4939. this.con2105.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4940. this.con2105.Location = new System.Drawing.Point(1406, 742);
  4941. this.con2105.Margin = new System.Windows.Forms.Padding(0);
  4942. this.con2105.Name = "con2105";
  4943. this.myTableLayoutPanel1.SetRowSpan(this.con2105, 2);
  4944. this.con2105.Size = new System.Drawing.Size(57, 28);
  4945. this.con2105.TabIndex = 709;
  4946. //
  4947. // con2060
  4948. //
  4949. this.con2060.BackColor = System.Drawing.Color.Transparent;
  4950. this.myTableLayoutPanel1.SetColumnSpan(this.con2060, 4);
  4951. this.con2060.Dock = System.Windows.Forms.DockStyle.Fill;
  4952. this.con2060.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4953. this.con2060.Location = new System.Drawing.Point(1045, 770);
  4954. this.con2060.Margin = new System.Windows.Forms.Padding(0);
  4955. this.con2060.Name = "con2060";
  4956. this.myTableLayoutPanel1.SetRowSpan(this.con2060, 2);
  4957. this.con2060.Size = new System.Drawing.Size(76, 28);
  4958. this.con2060.TabIndex = 708;
  4959. //
  4960. // con2079
  4961. //
  4962. this.con2079.BackColor = System.Drawing.Color.Transparent;
  4963. this.myTableLayoutPanel1.SetColumnSpan(this.con2079, 4);
  4964. this.con2079.Dock = System.Windows.Forms.DockStyle.Fill;
  4965. this.con2079.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4966. this.con2079.Location = new System.Drawing.Point(361, 770);
  4967. this.con2079.Margin = new System.Windows.Forms.Padding(0);
  4968. this.con2079.Name = "con2079";
  4969. this.myTableLayoutPanel1.SetRowSpan(this.con2079, 2);
  4970. this.con2079.Size = new System.Drawing.Size(76, 28);
  4971. this.con2079.TabIndex = 705;
  4972. //
  4973. // con2075
  4974. //
  4975. this.con2075.BackColor = System.Drawing.Color.Transparent;
  4976. this.myTableLayoutPanel1.SetColumnSpan(this.con2075, 4);
  4977. this.con2075.Dock = System.Windows.Forms.DockStyle.Fill;
  4978. this.con2075.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4979. this.con2075.Location = new System.Drawing.Point(665, 770);
  4980. this.con2075.Margin = new System.Windows.Forms.Padding(0);
  4981. this.con2075.Name = "con2075";
  4982. this.myTableLayoutPanel1.SetRowSpan(this.con2075, 2);
  4983. this.con2075.Size = new System.Drawing.Size(76, 28);
  4984. this.con2075.TabIndex = 706;
  4985. //
  4986. // con2080
  4987. //
  4988. this.con2080.BackColor = System.Drawing.Color.Transparent;
  4989. this.myTableLayoutPanel1.SetColumnSpan(this.con2080, 4);
  4990. this.con2080.Dock = System.Windows.Forms.DockStyle.Fill;
  4991. this.con2080.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4992. this.con2080.Location = new System.Drawing.Point(209, 770);
  4993. this.con2080.Margin = new System.Windows.Forms.Padding(0);
  4994. this.con2080.Name = "con2080";
  4995. this.myTableLayoutPanel1.SetRowSpan(this.con2080, 2);
  4996. this.con2080.Size = new System.Drawing.Size(76, 28);
  4997. this.con2080.TabIndex = 707;
  4998. //
  4999. // con2074
  5000. //
  5001. this.con2074.BackColor = System.Drawing.Color.Transparent;
  5002. this.myTableLayoutPanel1.SetColumnSpan(this.con2074, 4);
  5003. this.con2074.Dock = System.Windows.Forms.DockStyle.Fill;
  5004. this.con2074.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5005. this.con2074.Location = new System.Drawing.Point(741, 770);
  5006. this.con2074.Margin = new System.Windows.Forms.Padding(0);
  5007. this.con2074.Name = "con2074";
  5008. this.myTableLayoutPanel1.SetRowSpan(this.con2074, 2);
  5009. this.con2074.Size = new System.Drawing.Size(76, 28);
  5010. this.con2074.TabIndex = 702;
  5011. //
  5012. // con2078
  5013. //
  5014. this.con2078.BackColor = System.Drawing.Color.Transparent;
  5015. this.myTableLayoutPanel1.SetColumnSpan(this.con2078, 4);
  5016. this.con2078.Dock = System.Windows.Forms.DockStyle.Fill;
  5017. this.con2078.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5018. this.con2078.Location = new System.Drawing.Point(437, 770);
  5019. this.con2078.Margin = new System.Windows.Forms.Padding(0);
  5020. this.con2078.Name = "con2078";
  5021. this.myTableLayoutPanel1.SetRowSpan(this.con2078, 2);
  5022. this.con2078.Size = new System.Drawing.Size(76, 28);
  5023. this.con2078.TabIndex = 703;
  5024. //
  5025. // con2077
  5026. //
  5027. this.con2077.BackColor = System.Drawing.Color.Transparent;
  5028. this.myTableLayoutPanel1.SetColumnSpan(this.con2077, 4);
  5029. this.con2077.Dock = System.Windows.Forms.DockStyle.Fill;
  5030. this.con2077.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5031. this.con2077.Location = new System.Drawing.Point(513, 770);
  5032. this.con2077.Margin = new System.Windows.Forms.Padding(0);
  5033. this.con2077.Name = "con2077";
  5034. this.myTableLayoutPanel1.SetRowSpan(this.con2077, 2);
  5035. this.con2077.Size = new System.Drawing.Size(76, 28);
  5036. this.con2077.TabIndex = 704;
  5037. //
  5038. // con2325
  5039. //
  5040. this.con2325.BackColor = System.Drawing.Color.Transparent;
  5041. this.myTableLayoutPanel1.SetColumnSpan(this.con2325, 4);
  5042. this.con2325.Dock = System.Windows.Forms.DockStyle.Fill;
  5043. this.con2325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5044. this.con2325.Location = new System.Drawing.Point(133, 770);
  5045. this.con2325.Margin = new System.Windows.Forms.Padding(0);
  5046. this.con2325.Name = "con2325";
  5047. this.myTableLayoutPanel1.SetRowSpan(this.con2325, 2);
  5048. this.con2325.Size = new System.Drawing.Size(76, 28);
  5049. this.con2325.TabIndex = 699;
  5050. //
  5051. // con2073
  5052. //
  5053. this.con2073.BackColor = System.Drawing.Color.Transparent;
  5054. this.myTableLayoutPanel1.SetColumnSpan(this.con2073, 4);
  5055. this.con2073.Dock = System.Windows.Forms.DockStyle.Fill;
  5056. this.con2073.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5057. this.con2073.Location = new System.Drawing.Point(817, 770);
  5058. this.con2073.Margin = new System.Windows.Forms.Padding(0);
  5059. this.con2073.Name = "con2073";
  5060. this.myTableLayoutPanel1.SetRowSpan(this.con2073, 2);
  5061. this.con2073.Size = new System.Drawing.Size(76, 28);
  5062. this.con2073.TabIndex = 700;
  5063. //
  5064. // con2071
  5065. //
  5066. this.con2071.BackColor = System.Drawing.Color.Transparent;
  5067. this.myTableLayoutPanel1.SetColumnSpan(this.con2071, 4);
  5068. this.con2071.Dock = System.Windows.Forms.DockStyle.Fill;
  5069. this.con2071.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5070. this.con2071.Location = new System.Drawing.Point(969, 770);
  5071. this.con2071.Margin = new System.Windows.Forms.Padding(0);
  5072. this.con2071.Name = "con2071";
  5073. this.myTableLayoutPanel1.SetRowSpan(this.con2071, 2);
  5074. this.con2071.Size = new System.Drawing.Size(76, 28);
  5075. this.con2071.TabIndex = 701;
  5076. //
  5077. // con2072
  5078. //
  5079. this.con2072.BackColor = System.Drawing.Color.Transparent;
  5080. this.myTableLayoutPanel1.SetColumnSpan(this.con2072, 4);
  5081. this.con2072.Dock = System.Windows.Forms.DockStyle.Fill;
  5082. this.con2072.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5083. this.con2072.Location = new System.Drawing.Point(893, 770);
  5084. this.con2072.Margin = new System.Windows.Forms.Padding(0);
  5085. this.con2072.Name = "con2072";
  5086. this.myTableLayoutPanel1.SetRowSpan(this.con2072, 2);
  5087. this.con2072.Size = new System.Drawing.Size(76, 28);
  5088. this.con2072.TabIndex = 696;
  5089. //
  5090. // con2076
  5091. //
  5092. this.con2076.BackColor = System.Drawing.Color.Transparent;
  5093. this.myTableLayoutPanel1.SetColumnSpan(this.con2076, 4);
  5094. this.con2076.Dock = System.Windows.Forms.DockStyle.Fill;
  5095. this.con2076.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5096. this.con2076.Location = new System.Drawing.Point(589, 770);
  5097. this.con2076.Margin = new System.Windows.Forms.Padding(0);
  5098. this.con2076.Name = "con2076";
  5099. this.myTableLayoutPanel1.SetRowSpan(this.con2076, 2);
  5100. this.con2076.Size = new System.Drawing.Size(76, 28);
  5101. this.con2076.TabIndex = 697;
  5102. //
  5103. // con2355
  5104. //
  5105. this.con2355.BackColor = System.Drawing.Color.Transparent;
  5106. this.myTableLayoutPanel1.SetColumnSpan(this.con2355, 4);
  5107. this.con2355.Dock = System.Windows.Forms.DockStyle.Fill;
  5108. this.con2355.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5109. this.con2355.Location = new System.Drawing.Point(285, 770);
  5110. this.con2355.Margin = new System.Windows.Forms.Padding(0);
  5111. this.con2355.Name = "con2355";
  5112. this.myTableLayoutPanel1.SetRowSpan(this.con2355, 2);
  5113. this.con2355.Size = new System.Drawing.Size(76, 28);
  5114. this.con2355.TabIndex = 698;
  5115. //
  5116. // con2037
  5117. //
  5118. this.con2037.BackColor = System.Drawing.Color.Transparent;
  5119. this.myTableLayoutPanel1.SetColumnSpan(this.con2037, 3);
  5120. this.con2037.Dock = System.Windows.Forms.DockStyle.Fill;
  5121. this.con2037.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5122. this.con2037.Location = new System.Drawing.Point(703, 714);
  5123. this.con2037.Margin = new System.Windows.Forms.Padding(0);
  5124. this.con2037.Name = "con2037";
  5125. this.myTableLayoutPanel1.SetRowSpan(this.con2037, 2);
  5126. this.con2037.Size = new System.Drawing.Size(57, 28);
  5127. this.con2037.TabIndex = 693;
  5128. //
  5129. // con2044
  5130. //
  5131. this.con2044.BackColor = System.Drawing.Color.Transparent;
  5132. this.myTableLayoutPanel1.SetColumnSpan(this.con2044, 3);
  5133. this.con2044.Dock = System.Windows.Forms.DockStyle.Fill;
  5134. this.con2044.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5135. this.con2044.Location = new System.Drawing.Point(817, 714);
  5136. this.con2044.Margin = new System.Windows.Forms.Padding(0);
  5137. this.con2044.Name = "con2044";
  5138. this.myTableLayoutPanel1.SetRowSpan(this.con2044, 2);
  5139. this.con2044.Size = new System.Drawing.Size(57, 28);
  5140. this.con2044.TabIndex = 694;
  5141. //
  5142. // con2046
  5143. //
  5144. this.con2046.BackColor = System.Drawing.Color.Transparent;
  5145. this.myTableLayoutPanel1.SetColumnSpan(this.con2046, 3);
  5146. this.con2046.Dock = System.Windows.Forms.DockStyle.Fill;
  5147. this.con2046.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5148. this.con2046.Location = new System.Drawing.Point(874, 714);
  5149. this.con2046.Margin = new System.Windows.Forms.Padding(0);
  5150. this.con2046.Name = "con2046";
  5151. this.myTableLayoutPanel1.SetRowSpan(this.con2046, 2);
  5152. this.con2046.Size = new System.Drawing.Size(57, 28);
  5153. this.con2046.TabIndex = 695;
  5154. //
  5155. // con2031
  5156. //
  5157. this.con2031.BackColor = System.Drawing.Color.Transparent;
  5158. this.myTableLayoutPanel1.SetColumnSpan(this.con2031, 3);
  5159. this.con2031.Dock = System.Windows.Forms.DockStyle.Fill;
  5160. this.con2031.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5161. this.con2031.Location = new System.Drawing.Point(589, 714);
  5162. this.con2031.Margin = new System.Windows.Forms.Padding(0);
  5163. this.con2031.Name = "con2031";
  5164. this.myTableLayoutPanel1.SetRowSpan(this.con2031, 2);
  5165. this.con2031.Size = new System.Drawing.Size(57, 28);
  5166. this.con2031.TabIndex = 690;
  5167. //
  5168. // con2029
  5169. //
  5170. this.con2029.BackColor = System.Drawing.Color.Transparent;
  5171. this.myTableLayoutPanel1.SetColumnSpan(this.con2029, 3);
  5172. this.con2029.Dock = System.Windows.Forms.DockStyle.Fill;
  5173. this.con2029.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5174. this.con2029.Location = new System.Drawing.Point(532, 714);
  5175. this.con2029.Margin = new System.Windows.Forms.Padding(0);
  5176. this.con2029.Name = "con2029";
  5177. this.myTableLayoutPanel1.SetRowSpan(this.con2029, 2);
  5178. this.con2029.Size = new System.Drawing.Size(57, 28);
  5179. this.con2029.TabIndex = 691;
  5180. //
  5181. // con2036
  5182. //
  5183. this.con2036.BackColor = System.Drawing.Color.Transparent;
  5184. this.myTableLayoutPanel1.SetColumnSpan(this.con2036, 3);
  5185. this.con2036.Dock = System.Windows.Forms.DockStyle.Fill;
  5186. this.con2036.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5187. this.con2036.Location = new System.Drawing.Point(646, 714);
  5188. this.con2036.Margin = new System.Windows.Forms.Padding(0);
  5189. this.con2036.Name = "con2036";
  5190. this.myTableLayoutPanel1.SetRowSpan(this.con2036, 2);
  5191. this.con2036.Size = new System.Drawing.Size(57, 28);
  5192. this.con2036.TabIndex = 692;
  5193. //
  5194. // con2017
  5195. //
  5196. this.con2017.BackColor = System.Drawing.Color.Transparent;
  5197. this.myTableLayoutPanel1.SetColumnSpan(this.con2017, 3);
  5198. this.con2017.Dock = System.Windows.Forms.DockStyle.Fill;
  5199. this.con2017.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5200. this.con2017.Location = new System.Drawing.Point(304, 714);
  5201. this.con2017.Margin = new System.Windows.Forms.Padding(0);
  5202. this.con2017.Name = "con2017";
  5203. this.myTableLayoutPanel1.SetRowSpan(this.con2017, 2);
  5204. this.con2017.Size = new System.Drawing.Size(57, 28);
  5205. this.con2017.TabIndex = 687;
  5206. //
  5207. // con2019
  5208. //
  5209. this.con2019.BackColor = System.Drawing.Color.Transparent;
  5210. this.myTableLayoutPanel1.SetColumnSpan(this.con2019, 3);
  5211. this.con2019.Dock = System.Windows.Forms.DockStyle.Fill;
  5212. this.con2019.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5213. this.con2019.Location = new System.Drawing.Point(418, 714);
  5214. this.con2019.Margin = new System.Windows.Forms.Padding(0);
  5215. this.con2019.Name = "con2019";
  5216. this.myTableLayoutPanel1.SetRowSpan(this.con2019, 2);
  5217. this.con2019.Size = new System.Drawing.Size(57, 28);
  5218. this.con2019.TabIndex = 688;
  5219. //
  5220. // con2024
  5221. //
  5222. this.con2024.BackColor = System.Drawing.Color.Transparent;
  5223. this.myTableLayoutPanel1.SetColumnSpan(this.con2024, 3);
  5224. this.con2024.Dock = System.Windows.Forms.DockStyle.Fill;
  5225. this.con2024.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5226. this.con2024.Location = new System.Drawing.Point(475, 714);
  5227. this.con2024.Margin = new System.Windows.Forms.Padding(0);
  5228. this.con2024.Name = "con2024";
  5229. this.myTableLayoutPanel1.SetRowSpan(this.con2024, 2);
  5230. this.con2024.Size = new System.Drawing.Size(57, 28);
  5231. this.con2024.TabIndex = 689;
  5232. //
  5233. // con2324
  5234. //
  5235. this.con2324.BackColor = System.Drawing.Color.Transparent;
  5236. this.myTableLayoutPanel1.SetColumnSpan(this.con2324, 3);
  5237. this.con2324.Dock = System.Windows.Forms.DockStyle.Fill;
  5238. this.con2324.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5239. this.con2324.Location = new System.Drawing.Point(133, 714);
  5240. this.con2324.Margin = new System.Windows.Forms.Padding(0);
  5241. this.con2324.Name = "con2324";
  5242. this.myTableLayoutPanel1.SetRowSpan(this.con2324, 2);
  5243. this.con2324.Size = new System.Drawing.Size(57, 28);
  5244. this.con2324.TabIndex = 684;
  5245. //
  5246. // con2353
  5247. //
  5248. this.con2353.BackColor = System.Drawing.Color.Transparent;
  5249. this.myTableLayoutPanel1.SetColumnSpan(this.con2353, 3);
  5250. this.con2353.Dock = System.Windows.Forms.DockStyle.Fill;
  5251. this.con2353.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5252. this.con2353.Location = new System.Drawing.Point(247, 714);
  5253. this.con2353.Margin = new System.Windows.Forms.Padding(0);
  5254. this.con2353.Name = "con2353";
  5255. this.myTableLayoutPanel1.SetRowSpan(this.con2353, 2);
  5256. this.con2353.Size = new System.Drawing.Size(57, 28);
  5257. this.con2353.TabIndex = 685;
  5258. //
  5259. // con2016
  5260. //
  5261. this.con2016.BackColor = System.Drawing.Color.Transparent;
  5262. this.myTableLayoutPanel1.SetColumnSpan(this.con2016, 3);
  5263. this.con2016.Dock = System.Windows.Forms.DockStyle.Fill;
  5264. this.con2016.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5265. this.con2016.Location = new System.Drawing.Point(190, 714);
  5266. this.con2016.Margin = new System.Windows.Forms.Padding(0);
  5267. this.con2016.Name = "con2016";
  5268. this.myTableLayoutPanel1.SetRowSpan(this.con2016, 2);
  5269. this.con2016.Size = new System.Drawing.Size(57, 28);
  5270. this.con2016.TabIndex = 686;
  5271. //
  5272. // locationPos37
  5273. //
  5274. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos37, 3);
  5275. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  5276. this.locationPos37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5277. this.locationPos37.Location = new System.Drawing.Point(380, 350);
  5278. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  5279. this.locationPos37.Name = "locationPos37";
  5280. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  5281. this.locationPos37.Size = new System.Drawing.Size(57, 280);
  5282. this.locationPos37.TabIndex = 678;
  5283. //
  5284. // con2084
  5285. //
  5286. this.myTableLayoutPanel1.SetColumnSpan(this.con2084, 3);
  5287. this.con2084.Dock = System.Windows.Forms.DockStyle.Fill;
  5288. this.con2084.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5289. this.con2084.Location = new System.Drawing.Point(57, 714);
  5290. this.con2084.Margin = new System.Windows.Forms.Padding(0);
  5291. this.con2084.Name = "con2084";
  5292. this.myTableLayoutPanel1.SetRowSpan(this.con2084, 2);
  5293. this.con2084.Size = new System.Drawing.Size(57, 28);
  5294. this.con2084.TabIndex = 664;
  5295. //
  5296. // con2086
  5297. //
  5298. this.myTableLayoutPanel1.SetColumnSpan(this.con2086, 3);
  5299. this.con2086.Dock = System.Windows.Forms.DockStyle.Fill;
  5300. this.con2086.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5301. this.con2086.Location = new System.Drawing.Point(57, 742);
  5302. this.con2086.Margin = new System.Windows.Forms.Padding(0);
  5303. this.con2086.Name = "con2086";
  5304. this.myTableLayoutPanel1.SetRowSpan(this.con2086, 2);
  5305. this.con2086.Size = new System.Drawing.Size(57, 28);
  5306. this.con2086.TabIndex = 665;
  5307. //
  5308. // con2081
  5309. //
  5310. this.con2081.BackColor = System.Drawing.Color.Transparent;
  5311. this.myTableLayoutPanel1.SetColumnSpan(this.con2081, 3);
  5312. this.con2081.Dock = System.Windows.Forms.DockStyle.Fill;
  5313. this.con2081.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5314. this.con2081.Location = new System.Drawing.Point(57, 630);
  5315. this.con2081.Margin = new System.Windows.Forms.Padding(0);
  5316. this.con2081.Name = "con2081";
  5317. this.myTableLayoutPanel1.SetRowSpan(this.con2081, 2);
  5318. this.con2081.Size = new System.Drawing.Size(57, 28);
  5319. this.con2081.TabIndex = 663;
  5320. //
  5321. // con2088
  5322. //
  5323. this.con2088.BackColor = System.Drawing.Color.Transparent;
  5324. this.myTableLayoutPanel1.SetColumnSpan(this.con2088, 3);
  5325. this.con2088.Dock = System.Windows.Forms.DockStyle.Fill;
  5326. this.con2088.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5327. this.con2088.Location = new System.Drawing.Point(0, 686);
  5328. this.con2088.Margin = new System.Windows.Forms.Padding(0);
  5329. this.con2088.Name = "con2088";
  5330. this.myTableLayoutPanel1.SetRowSpan(this.con2088, 2);
  5331. this.con2088.Size = new System.Drawing.Size(57, 28);
  5332. this.con2088.TabIndex = 662;
  5333. //
  5334. // label6
  5335. //
  5336. this.label6.AutoSize = true;
  5337. this.label6.BackColor = System.Drawing.Color.Lime;
  5338. this.myTableLayoutPanel1.SetColumnSpan(this.label6, 3);
  5339. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  5340. this.label6.Location = new System.Drawing.Point(61, 658);
  5341. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5342. this.label6.Name = "label6";
  5343. this.myTableLayoutPanel1.SetRowSpan(this.label6, 2);
  5344. this.label6.Size = new System.Drawing.Size(49, 28);
  5345. this.label6.TabIndex = 660;
  5346. this.label6.Text = "上";
  5347. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5348. //
  5349. // con2015
  5350. //
  5351. this.con2015.BackColor = System.Drawing.Color.Transparent;
  5352. this.myTableLayoutPanel1.SetColumnSpan(this.con2015, 3);
  5353. this.con2015.Dock = System.Windows.Forms.DockStyle.Fill;
  5354. this.con2015.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5355. this.con2015.Location = new System.Drawing.Point(57, 434);
  5356. this.con2015.Margin = new System.Windows.Forms.Padding(0);
  5357. this.con2015.Name = "con2015";
  5358. this.myTableLayoutPanel1.SetRowSpan(this.con2015, 2);
  5359. this.con2015.Size = new System.Drawing.Size(57, 28);
  5360. this.con2015.TabIndex = 658;
  5361. //
  5362. // con2012
  5363. //
  5364. this.con2012.BackColor = System.Drawing.Color.Transparent;
  5365. this.myTableLayoutPanel1.SetColumnSpan(this.con2012, 3);
  5366. this.con2012.Dock = System.Windows.Forms.DockStyle.Fill;
  5367. this.con2012.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5368. this.con2012.Location = new System.Drawing.Point(0, 490);
  5369. this.con2012.Margin = new System.Windows.Forms.Padding(0);
  5370. this.con2012.Name = "con2012";
  5371. this.myTableLayoutPanel1.SetRowSpan(this.con2012, 2);
  5372. this.con2012.Size = new System.Drawing.Size(57, 28);
  5373. this.con2012.TabIndex = 657;
  5374. //
  5375. // label12
  5376. //
  5377. this.label12.AutoSize = true;
  5378. this.label12.BackColor = System.Drawing.Color.Lime;
  5379. this.myTableLayoutPanel1.SetColumnSpan(this.label12, 3);
  5380. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  5381. this.label12.Location = new System.Drawing.Point(61, 462);
  5382. this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5383. this.label12.Name = "label12";
  5384. this.myTableLayoutPanel1.SetRowSpan(this.label12, 2);
  5385. this.label12.Size = new System.Drawing.Size(49, 28);
  5386. this.label12.TabIndex = 655;
  5387. this.label12.Text = "上";
  5388. this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5389. //
  5390. // con2008
  5391. //
  5392. this.con2008.BackColor = System.Drawing.Color.Transparent;
  5393. this.myTableLayoutPanel1.SetColumnSpan(this.con2008, 3);
  5394. this.con2008.Dock = System.Windows.Forms.DockStyle.Fill;
  5395. this.con2008.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5396. this.con2008.Location = new System.Drawing.Point(0, 364);
  5397. this.con2008.Margin = new System.Windows.Forms.Padding(0);
  5398. this.con2008.Name = "con2008";
  5399. this.myTableLayoutPanel1.SetRowSpan(this.con2008, 2);
  5400. this.con2008.Size = new System.Drawing.Size(57, 28);
  5401. this.con2008.TabIndex = 653;
  5402. //
  5403. // con2011
  5404. //
  5405. this.con2011.BackColor = System.Drawing.Color.Transparent;
  5406. this.myTableLayoutPanel1.SetColumnSpan(this.con2011, 3);
  5407. this.con2011.Dock = System.Windows.Forms.DockStyle.Fill;
  5408. this.con2011.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5409. this.con2011.Location = new System.Drawing.Point(57, 308);
  5410. this.con2011.Margin = new System.Windows.Forms.Padding(0);
  5411. this.con2011.Name = "con2011";
  5412. this.myTableLayoutPanel1.SetRowSpan(this.con2011, 2);
  5413. this.con2011.Size = new System.Drawing.Size(57, 28);
  5414. this.con2011.TabIndex = 652;
  5415. //
  5416. // label28
  5417. //
  5418. this.label28.AutoSize = true;
  5419. this.label28.BackColor = System.Drawing.Color.Lime;
  5420. this.myTableLayoutPanel1.SetColumnSpan(this.label28, 3);
  5421. this.label28.Dock = System.Windows.Forms.DockStyle.Fill;
  5422. this.label28.Location = new System.Drawing.Point(61, 336);
  5423. this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5424. this.label28.Name = "label28";
  5425. this.myTableLayoutPanel1.SetRowSpan(this.label28, 2);
  5426. this.label28.Size = new System.Drawing.Size(49, 28);
  5427. this.label28.TabIndex = 650;
  5428. this.label28.Text = "上";
  5429. this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5430. //
  5431. // con2005
  5432. //
  5433. this.con2005.BackColor = System.Drawing.Color.Transparent;
  5434. this.myTableLayoutPanel1.SetColumnSpan(this.con2005, 3);
  5435. this.con2005.Dock = System.Windows.Forms.DockStyle.Fill;
  5436. this.con2005.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5437. this.con2005.Location = new System.Drawing.Point(285, 0);
  5438. this.con2005.Margin = new System.Windows.Forms.Padding(0);
  5439. this.con2005.Name = "con2005";
  5440. this.myTableLayoutPanel1.SetRowSpan(this.con2005, 2);
  5441. this.con2005.Size = new System.Drawing.Size(57, 28);
  5442. this.con2005.TabIndex = 634;
  5443. //
  5444. // con2302
  5445. //
  5446. this.con2302.BackColor = System.Drawing.Color.Transparent;
  5447. this.myTableLayoutPanel1.SetColumnSpan(this.con2302, 3);
  5448. this.con2302.Dock = System.Windows.Forms.DockStyle.Fill;
  5449. this.con2302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5450. this.con2302.Location = new System.Drawing.Point(342, 0);
  5451. this.con2302.Margin = new System.Windows.Forms.Padding(0);
  5452. this.con2302.Name = "con2302";
  5453. this.myTableLayoutPanel1.SetRowSpan(this.con2302, 2);
  5454. this.con2302.Size = new System.Drawing.Size(57, 28);
  5455. this.con2302.TabIndex = 635;
  5456. //
  5457. // con2004
  5458. //
  5459. this.con2004.BackColor = System.Drawing.Color.Transparent;
  5460. this.myTableLayoutPanel1.SetColumnSpan(this.con2004, 3);
  5461. this.con2004.Dock = System.Windows.Forms.DockStyle.Fill;
  5462. this.con2004.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5463. this.con2004.Location = new System.Drawing.Point(228, 0);
  5464. this.con2004.Margin = new System.Windows.Forms.Padding(0);
  5465. this.con2004.Name = "con2004";
  5466. this.myTableLayoutPanel1.SetRowSpan(this.con2004, 2);
  5467. this.con2004.Size = new System.Drawing.Size(57, 28);
  5468. this.con2004.TabIndex = 636;
  5469. //
  5470. // label33
  5471. //
  5472. this.label33.AutoSize = true;
  5473. this.label33.BackColor = System.Drawing.Color.Lime;
  5474. this.myTableLayoutPanel1.SetColumnSpan(this.label33, 3);
  5475. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  5476. this.label33.Location = new System.Drawing.Point(232, 28);
  5477. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5478. this.label33.Name = "label33";
  5479. this.myTableLayoutPanel1.SetRowSpan(this.label33, 2);
  5480. this.label33.Size = new System.Drawing.Size(49, 28);
  5481. this.label33.TabIndex = 633;
  5482. this.label33.Text = "上";
  5483. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5484. //
  5485. // tableCellLabel31
  5486. //
  5487. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  5488. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  5489. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5490. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  5491. this.tableCellLabel31.Location = new System.Drawing.Point(361, 350);
  5492. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  5493. this.tableCellLabel31.Name = "tableCellLabel31";
  5494. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 22);
  5495. this.tableCellLabel31.Size = new System.Drawing.Size(19, 308);
  5496. this.tableCellLabel31.TabIndex = 436;
  5497. //
  5498. // locationPos38
  5499. //
  5500. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos38, 3);
  5501. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  5502. this.locationPos38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5503. this.locationPos38.Location = new System.Drawing.Point(456, 350);
  5504. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  5505. this.locationPos38.Name = "locationPos38";
  5506. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  5507. this.locationPos38.Size = new System.Drawing.Size(57, 280);
  5508. this.locationPos38.TabIndex = 18;
  5509. //
  5510. // locationPos49
  5511. //
  5512. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos49, 3);
  5513. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  5514. this.locationPos49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5515. this.locationPos49.Location = new System.Drawing.Point(304, 350);
  5516. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  5517. this.locationPos49.Name = "locationPos49";
  5518. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  5519. this.locationPos49.Size = new System.Drawing.Size(57, 280);
  5520. this.locationPos49.TabIndex = 474;
  5521. //
  5522. // locationPos53
  5523. //
  5524. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos53, 3);
  5525. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  5526. this.locationPos53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5527. this.locationPos53.Location = new System.Drawing.Point(228, 350);
  5528. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  5529. this.locationPos53.Name = "locationPos53";
  5530. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  5531. this.locationPos53.Size = new System.Drawing.Size(57, 280);
  5532. this.locationPos53.TabIndex = 476;
  5533. //
  5534. // srm15
  5535. //
  5536. this.srm15.BackColor = System.Drawing.Color.Transparent;
  5537. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  5538. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5539. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  5540. this.srm15.Location = new System.Drawing.Point(209, 350);
  5541. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  5542. this.srm15.Name = "srm15";
  5543. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 22);
  5544. this.srm15.Size = new System.Drawing.Size(19, 308);
  5545. this.srm15.TabIndex = 478;
  5546. //
  5547. // locationPos55
  5548. //
  5549. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos55, 3);
  5550. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  5551. this.locationPos55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5552. this.locationPos55.Location = new System.Drawing.Point(152, 350);
  5553. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  5554. this.locationPos55.Name = "locationPos55";
  5555. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  5556. this.locationPos55.Size = new System.Drawing.Size(57, 280);
  5557. this.locationPos55.TabIndex = 479;
  5558. //
  5559. // tableCellLabel33
  5560. //
  5561. this.tableCellLabel33.BackColor = System.Drawing.Color.Transparent;
  5562. this.tableCellLabel33.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel33.BackgroundImage")));
  5563. this.tableCellLabel33.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5564. this.tableCellLabel33.Dock = System.Windows.Forms.DockStyle.Fill;
  5565. this.tableCellLabel33.Location = new System.Drawing.Point(114, 280);
  5566. this.tableCellLabel33.Margin = new System.Windows.Forms.Padding(0);
  5567. this.tableCellLabel33.Name = "tableCellLabel33";
  5568. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel33, 20);
  5569. this.tableCellLabel33.Size = new System.Drawing.Size(19, 280);
  5570. this.tableCellLabel33.TabIndex = 593;
  5571. //
  5572. // tableCellLabel34
  5573. //
  5574. this.tableCellLabel34.BackColor = System.Drawing.Color.Transparent;
  5575. this.tableCellLabel34.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel34.BackgroundImage")));
  5576. this.tableCellLabel34.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5577. this.tableCellLabel34.Dock = System.Windows.Forms.DockStyle.Fill;
  5578. this.tableCellLabel34.Location = new System.Drawing.Point(114, 588);
  5579. this.tableCellLabel34.Margin = new System.Windows.Forms.Padding(0);
  5580. this.tableCellLabel34.Name = "tableCellLabel34";
  5581. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel34, 15);
  5582. this.tableCellLabel34.Size = new System.Drawing.Size(19, 210);
  5583. this.tableCellLabel34.TabIndex = 594;
  5584. //
  5585. // conrgv5
  5586. //
  5587. this.conrgv5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  5588. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv5, 3);
  5589. this.conrgv5.Dock = System.Windows.Forms.DockStyle.Fill;
  5590. this.conrgv5.Location = new System.Drawing.Point(95, 560);
  5591. this.conrgv5.Margin = new System.Windows.Forms.Padding(0);
  5592. this.conrgv5.Name = "conrgv5";
  5593. this.myTableLayoutPanel1.SetRowSpan(this.conrgv5, 2);
  5594. this.conrgv5.Size = new System.Drawing.Size(57, 28);
  5595. this.conrgv5.TabIndex = 595;
  5596. //
  5597. // con2323
  5598. //
  5599. this.con2323.BackColor = System.Drawing.Color.Transparent;
  5600. this.myTableLayoutPanel1.SetColumnSpan(this.con2323, 5);
  5601. this.con2323.Dock = System.Windows.Forms.DockStyle.Fill;
  5602. this.con2323.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5603. this.con2323.Location = new System.Drawing.Point(133, 280);
  5604. this.con2323.Margin = new System.Windows.Forms.Padding(0);
  5605. this.con2323.Name = "con2323";
  5606. this.myTableLayoutPanel1.SetRowSpan(this.con2323, 2);
  5607. this.con2323.Size = new System.Drawing.Size(95, 28);
  5608. this.con2323.TabIndex = 647;
  5609. //
  5610. // con2322
  5611. //
  5612. this.con2322.BackColor = System.Drawing.Color.Transparent;
  5613. this.myTableLayoutPanel1.SetColumnSpan(this.con2322, 5);
  5614. this.con2322.Dock = System.Windows.Forms.DockStyle.Fill;
  5615. this.con2322.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5616. this.con2322.Location = new System.Drawing.Point(228, 280);
  5617. this.con2322.Margin = new System.Windows.Forms.Padding(0);
  5618. this.con2322.Name = "con2322";
  5619. this.myTableLayoutPanel1.SetRowSpan(this.con2322, 2);
  5620. this.con2322.Size = new System.Drawing.Size(95, 28);
  5621. this.con2322.TabIndex = 648;
  5622. //
  5623. // con2308
  5624. //
  5625. this.con2308.BackColor = System.Drawing.Color.Transparent;
  5626. this.myTableLayoutPanel1.SetColumnSpan(this.con2308, 3);
  5627. this.con2308.Dock = System.Windows.Forms.DockStyle.Fill;
  5628. this.con2308.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5629. this.con2308.Location = new System.Drawing.Point(171, 56);
  5630. this.con2308.Margin = new System.Windows.Forms.Padding(0);
  5631. this.con2308.Name = "con2308";
  5632. this.myTableLayoutPanel1.SetRowSpan(this.con2308, 2);
  5633. this.con2308.Size = new System.Drawing.Size(57, 28);
  5634. this.con2308.TabIndex = 630;
  5635. //
  5636. // con2304
  5637. //
  5638. this.con2304.BackColor = System.Drawing.Color.Transparent;
  5639. this.myTableLayoutPanel1.SetColumnSpan(this.con2304, 3);
  5640. this.con2304.Dock = System.Windows.Forms.DockStyle.Fill;
  5641. this.con2304.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5642. this.con2304.Location = new System.Drawing.Point(0, 56);
  5643. this.con2304.Margin = new System.Windows.Forms.Padding(0);
  5644. this.con2304.Name = "con2304";
  5645. this.myTableLayoutPanel1.SetRowSpan(this.con2304, 2);
  5646. this.con2304.Size = new System.Drawing.Size(57, 28);
  5647. this.con2304.TabIndex = 628;
  5648. //
  5649. // con2305
  5650. //
  5651. this.con2305.BackColor = System.Drawing.Color.Transparent;
  5652. this.myTableLayoutPanel1.SetColumnSpan(this.con2305, 3);
  5653. this.con2305.Dock = System.Windows.Forms.DockStyle.Fill;
  5654. this.con2305.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5655. this.con2305.Location = new System.Drawing.Point(57, 56);
  5656. this.con2305.Margin = new System.Windows.Forms.Padding(0);
  5657. this.con2305.Name = "con2305";
  5658. this.myTableLayoutPanel1.SetRowSpan(this.con2305, 2);
  5659. this.con2305.Size = new System.Drawing.Size(57, 28);
  5660. this.con2305.TabIndex = 632;
  5661. //
  5662. // con2309
  5663. //
  5664. this.myTableLayoutPanel1.SetColumnSpan(this.con2309, 3);
  5665. this.con2309.Dock = System.Windows.Forms.DockStyle.Fill;
  5666. this.con2309.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5667. this.con2309.Location = new System.Drawing.Point(0, 84);
  5668. this.con2309.Margin = new System.Windows.Forms.Padding(0);
  5669. this.con2309.Name = "con2309";
  5670. this.myTableLayoutPanel1.SetRowSpan(this.con2309, 2);
  5671. this.con2309.Size = new System.Drawing.Size(57, 25);
  5672. this.con2309.TabIndex = 825;
  5673. //
  5674. // con2310
  5675. //
  5676. this.myTableLayoutPanel1.SetColumnSpan(this.con2310, 3);
  5677. this.con2310.Dock = System.Windows.Forms.DockStyle.Fill;
  5678. this.con2310.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5679. this.con2310.Location = new System.Drawing.Point(0, 109);
  5680. this.con2310.Margin = new System.Windows.Forms.Padding(0);
  5681. this.con2310.Name = "con2310";
  5682. this.myTableLayoutPanel1.SetRowSpan(this.con2310, 2);
  5683. this.con2310.Size = new System.Drawing.Size(57, 31);
  5684. this.con2310.TabIndex = 826;
  5685. //
  5686. // con2026
  5687. //
  5688. this.con2026.BackColor = System.Drawing.Color.Transparent;
  5689. this.myTableLayoutPanel1.SetColumnSpan(this.con2026, 5);
  5690. this.con2026.Dock = System.Windows.Forms.DockStyle.Fill;
  5691. this.con2026.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5692. this.con2026.Location = new System.Drawing.Point(247, 658);
  5693. this.con2026.Margin = new System.Windows.Forms.Padding(0);
  5694. this.con2026.Name = "con2026";
  5695. this.myTableLayoutPanel1.SetRowSpan(this.con2026, 2);
  5696. this.con2026.Size = new System.Drawing.Size(95, 28);
  5697. this.con2026.TabIndex = 830;
  5698. //
  5699. // tableCellLabel10
  5700. //
  5701. this.tableCellLabel10.BackColor = System.Drawing.Color.Transparent;
  5702. this.tableCellLabel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel10.BackgroundImage")));
  5703. this.tableCellLabel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5704. this.tableCellLabel10.Dock = System.Windows.Forms.DockStyle.Fill;
  5705. this.tableCellLabel10.Location = new System.Drawing.Point(285, 686);
  5706. this.tableCellLabel10.Margin = new System.Windows.Forms.Padding(0);
  5707. this.tableCellLabel10.Name = "tableCellLabel10";
  5708. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel10, 2);
  5709. this.tableCellLabel10.Size = new System.Drawing.Size(19, 28);
  5710. this.tableCellLabel10.TabIndex = 831;
  5711. //
  5712. // tableCellLabel11
  5713. //
  5714. this.tableCellLabel11.BackColor = System.Drawing.Color.Transparent;
  5715. this.tableCellLabel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel11.BackgroundImage")));
  5716. this.tableCellLabel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5717. this.tableCellLabel11.Dock = System.Windows.Forms.DockStyle.Fill;
  5718. this.tableCellLabel11.Location = new System.Drawing.Point(285, 630);
  5719. this.tableCellLabel11.Margin = new System.Windows.Forms.Padding(0);
  5720. this.tableCellLabel11.Name = "tableCellLabel11";
  5721. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel11, 2);
  5722. this.tableCellLabel11.Size = new System.Drawing.Size(19, 28);
  5723. this.tableCellLabel11.TabIndex = 832;
  5724. //
  5725. // con2280
  5726. //
  5727. this.con2280.BackColor = System.Drawing.Color.Transparent;
  5728. this.myTableLayoutPanel1.SetColumnSpan(this.con2280, 3);
  5729. this.con2280.Dock = System.Windows.Forms.DockStyle.Fill;
  5730. this.con2280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5731. this.con2280.Location = new System.Drawing.Point(228, 322);
  5732. this.con2280.Margin = new System.Windows.Forms.Padding(0);
  5733. this.con2280.Name = "con2280";
  5734. this.myTableLayoutPanel1.SetRowSpan(this.con2280, 2);
  5735. this.con2280.Size = new System.Drawing.Size(57, 28);
  5736. this.con2280.TabIndex = 857;
  5737. //
  5738. // tableCellLabel12
  5739. //
  5740. this.tableCellLabel12.BackColor = System.Drawing.Color.Transparent;
  5741. this.tableCellLabel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel12.BackgroundImage")));
  5742. this.tableCellLabel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5743. this.tableCellLabel12.Dock = System.Windows.Forms.DockStyle.Fill;
  5744. this.tableCellLabel12.Location = new System.Drawing.Point(437, 686);
  5745. this.tableCellLabel12.Margin = new System.Windows.Forms.Padding(0);
  5746. this.tableCellLabel12.Name = "tableCellLabel12";
  5747. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel12, 2);
  5748. this.tableCellLabel12.Size = new System.Drawing.Size(19, 28);
  5749. this.tableCellLabel12.TabIndex = 836;
  5750. //
  5751. // con2033
  5752. //
  5753. this.con2033.BackColor = System.Drawing.Color.Transparent;
  5754. this.myTableLayoutPanel1.SetColumnSpan(this.con2033, 5);
  5755. this.con2033.Dock = System.Windows.Forms.DockStyle.Fill;
  5756. this.con2033.Location = new System.Drawing.Point(399, 658);
  5757. this.con2033.Margin = new System.Windows.Forms.Padding(0);
  5758. this.con2033.Name = "con2033";
  5759. this.myTableLayoutPanel1.SetRowSpan(this.con2033, 2);
  5760. this.con2033.Size = new System.Drawing.Size(95, 28);
  5761. this.con2033.TabIndex = 835;
  5762. //
  5763. // tableCellLabel13
  5764. //
  5765. this.tableCellLabel13.BackColor = System.Drawing.Color.Transparent;
  5766. this.tableCellLabel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel13.BackgroundImage")));
  5767. this.tableCellLabel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5768. this.tableCellLabel13.Dock = System.Windows.Forms.DockStyle.Fill;
  5769. this.tableCellLabel13.Location = new System.Drawing.Point(437, 630);
  5770. this.tableCellLabel13.Margin = new System.Windows.Forms.Padding(0);
  5771. this.tableCellLabel13.Name = "tableCellLabel13";
  5772. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel13, 2);
  5773. this.tableCellLabel13.Size = new System.Drawing.Size(19, 28);
  5774. this.tableCellLabel13.TabIndex = 837;
  5775. //
  5776. // con2035
  5777. //
  5778. this.con2035.BackColor = System.Drawing.Color.Transparent;
  5779. this.myTableLayoutPanel1.SetColumnSpan(this.con2035, 3);
  5780. this.con2035.Dock = System.Windows.Forms.DockStyle.Fill;
  5781. this.con2035.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5782. this.con2035.Location = new System.Drawing.Point(456, 630);
  5783. this.con2035.Margin = new System.Windows.Forms.Padding(0);
  5784. this.con2035.Name = "con2035";
  5785. this.myTableLayoutPanel1.SetRowSpan(this.con2035, 2);
  5786. this.con2035.Size = new System.Drawing.Size(57, 28);
  5787. this.con2035.TabIndex = 838;
  5788. this.con2035.Load += new System.EventHandler(this.con2035_Load);
  5789. //
  5790. // con2278
  5791. //
  5792. this.con2278.BackColor = System.Drawing.Color.Transparent;
  5793. this.myTableLayoutPanel1.SetColumnSpan(this.con2278, 3);
  5794. this.con2278.Dock = System.Windows.Forms.DockStyle.Fill;
  5795. this.con2278.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5796. this.con2278.Location = new System.Drawing.Point(456, 322);
  5797. this.con2278.Margin = new System.Windows.Forms.Padding(0);
  5798. this.con2278.Name = "con2278";
  5799. this.myTableLayoutPanel1.SetRowSpan(this.con2278, 2);
  5800. this.con2278.Size = new System.Drawing.Size(57, 28);
  5801. this.con2278.TabIndex = 859;
  5802. //
  5803. // srm14
  5804. //
  5805. this.srm14.BackColor = System.Drawing.Color.Transparent;
  5806. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  5807. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5808. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  5809. this.srm14.Location = new System.Drawing.Point(513, 350);
  5810. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  5811. this.srm14.Name = "srm14";
  5812. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 22);
  5813. this.srm14.Size = new System.Drawing.Size(19, 308);
  5814. this.srm14.TabIndex = 475;
  5815. //
  5816. // locationPos48
  5817. //
  5818. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos48, 3);
  5819. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  5820. this.locationPos48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5821. this.locationPos48.Location = new System.Drawing.Point(532, 350);
  5822. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  5823. this.locationPos48.Name = "locationPos48";
  5824. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  5825. this.locationPos48.Size = new System.Drawing.Size(57, 280);
  5826. this.locationPos48.TabIndex = 473;
  5827. //
  5828. // locationPos36
  5829. //
  5830. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos36, 3);
  5831. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  5832. this.locationPos36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5833. this.locationPos36.Location = new System.Drawing.Point(589, 350);
  5834. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  5835. this.locationPos36.Name = "locationPos36";
  5836. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  5837. this.locationPos36.Size = new System.Drawing.Size(57, 280);
  5838. this.locationPos36.TabIndex = 679;
  5839. //
  5840. // con2042
  5841. //
  5842. this.con2042.BackColor = System.Drawing.Color.Transparent;
  5843. this.myTableLayoutPanel1.SetColumnSpan(this.con2042, 3);
  5844. this.con2042.Dock = System.Windows.Forms.DockStyle.Fill;
  5845. this.con2042.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5846. this.con2042.Location = new System.Drawing.Point(532, 630);
  5847. this.con2042.Margin = new System.Windows.Forms.Padding(0);
  5848. this.con2042.Name = "con2042";
  5849. this.myTableLayoutPanel1.SetRowSpan(this.con2042, 2);
  5850. this.con2042.Size = new System.Drawing.Size(57, 28);
  5851. this.con2042.TabIndex = 839;
  5852. //
  5853. // con2041
  5854. //
  5855. this.con2041.BackColor = System.Drawing.Color.Transparent;
  5856. this.myTableLayoutPanel1.SetColumnSpan(this.con2041, 3);
  5857. this.con2041.Dock = System.Windows.Forms.DockStyle.Fill;
  5858. this.con2041.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5859. this.con2041.Location = new System.Drawing.Point(589, 630);
  5860. this.con2041.Margin = new System.Windows.Forms.Padding(0);
  5861. this.con2041.Name = "con2041";
  5862. this.myTableLayoutPanel1.SetRowSpan(this.con2041, 2);
  5863. this.con2041.Size = new System.Drawing.Size(57, 28);
  5864. this.con2041.TabIndex = 841;
  5865. //
  5866. // tableCellLabel30
  5867. //
  5868. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  5869. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  5870. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5871. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  5872. this.tableCellLabel30.Location = new System.Drawing.Point(646, 350);
  5873. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  5874. this.tableCellLabel30.Name = "tableCellLabel30";
  5875. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 22);
  5876. this.tableCellLabel30.Size = new System.Drawing.Size(19, 308);
  5877. this.tableCellLabel30.TabIndex = 680;
  5878. //
  5879. // locationPos47
  5880. //
  5881. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos47, 3);
  5882. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  5883. this.locationPos47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5884. this.locationPos47.Location = new System.Drawing.Point(665, 350);
  5885. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  5886. this.locationPos47.Name = "locationPos47";
  5887. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  5888. this.locationPos47.Size = new System.Drawing.Size(57, 280);
  5889. this.locationPos47.TabIndex = 471;
  5890. //
  5891. // con2277
  5892. //
  5893. this.con2277.BackColor = System.Drawing.Color.Transparent;
  5894. this.myTableLayoutPanel1.SetColumnSpan(this.con2277, 3);
  5895. this.con2277.Dock = System.Windows.Forms.DockStyle.Fill;
  5896. this.con2277.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5897. this.con2277.Location = new System.Drawing.Point(665, 322);
  5898. this.con2277.Margin = new System.Windows.Forms.Padding(0);
  5899. this.con2277.Name = "con2277";
  5900. this.myTableLayoutPanel1.SetRowSpan(this.con2277, 2);
  5901. this.con2277.Size = new System.Drawing.Size(57, 28);
  5902. this.con2277.TabIndex = 860;
  5903. //
  5904. // con2049
  5905. //
  5906. this.con2049.BackColor = System.Drawing.Color.Transparent;
  5907. this.myTableLayoutPanel1.SetColumnSpan(this.con2049, 3);
  5908. this.con2049.Dock = System.Windows.Forms.DockStyle.Fill;
  5909. this.con2049.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5910. this.con2049.Location = new System.Drawing.Point(665, 630);
  5911. this.con2049.Margin = new System.Windows.Forms.Padding(0);
  5912. this.con2049.Name = "con2049";
  5913. this.myTableLayoutPanel1.SetRowSpan(this.con2049, 2);
  5914. this.con2049.Size = new System.Drawing.Size(57, 28);
  5915. this.con2049.TabIndex = 842;
  5916. //
  5917. // tableCellLabel16
  5918. //
  5919. this.tableCellLabel16.BackColor = System.Drawing.Color.Transparent;
  5920. this.tableCellLabel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel16.BackgroundImage")));
  5921. this.tableCellLabel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5922. this.tableCellLabel16.Dock = System.Windows.Forms.DockStyle.Fill;
  5923. this.tableCellLabel16.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5924. this.tableCellLabel16.Location = new System.Drawing.Point(722, 630);
  5925. this.tableCellLabel16.Margin = new System.Windows.Forms.Padding(0);
  5926. this.tableCellLabel16.Name = "tableCellLabel16";
  5927. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel16, 2);
  5928. this.tableCellLabel16.Size = new System.Drawing.Size(19, 28);
  5929. this.tableCellLabel16.TabIndex = 845;
  5930. //
  5931. // con2048
  5932. //
  5933. this.con2048.BackColor = System.Drawing.Color.Transparent;
  5934. this.myTableLayoutPanel1.SetColumnSpan(this.con2048, 5);
  5935. this.con2048.Dock = System.Windows.Forms.DockStyle.Fill;
  5936. this.con2048.Location = new System.Drawing.Point(684, 658);
  5937. this.con2048.Margin = new System.Windows.Forms.Padding(0);
  5938. this.con2048.Name = "con2048";
  5939. this.myTableLayoutPanel1.SetRowSpan(this.con2048, 2);
  5940. this.con2048.Size = new System.Drawing.Size(95, 28);
  5941. this.con2048.TabIndex = 843;
  5942. //
  5943. // tableCellLabel14
  5944. //
  5945. this.tableCellLabel14.BackColor = System.Drawing.Color.Transparent;
  5946. this.tableCellLabel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel14.BackgroundImage")));
  5947. this.tableCellLabel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5948. this.tableCellLabel14.Dock = System.Windows.Forms.DockStyle.Fill;
  5949. this.tableCellLabel14.Location = new System.Drawing.Point(722, 686);
  5950. this.tableCellLabel14.Margin = new System.Windows.Forms.Padding(0);
  5951. this.tableCellLabel14.Name = "tableCellLabel14";
  5952. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel14, 2);
  5953. this.tableCellLabel14.Size = new System.Drawing.Size(19, 28);
  5954. this.tableCellLabel14.TabIndex = 844;
  5955. //
  5956. // con2050
  5957. //
  5958. this.con2050.BackColor = System.Drawing.Color.Transparent;
  5959. this.myTableLayoutPanel1.SetColumnSpan(this.con2050, 3);
  5960. this.con2050.Dock = System.Windows.Forms.DockStyle.Fill;
  5961. this.con2050.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5962. this.con2050.Location = new System.Drawing.Point(741, 630);
  5963. this.con2050.Margin = new System.Windows.Forms.Padding(0);
  5964. this.con2050.Name = "con2050";
  5965. this.myTableLayoutPanel1.SetRowSpan(this.con2050, 2);
  5966. this.con2050.Size = new System.Drawing.Size(57, 28);
  5967. this.con2050.TabIndex = 846;
  5968. //
  5969. // locationPos45
  5970. //
  5971. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos45, 3);
  5972. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  5973. this.locationPos45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5974. this.locationPos45.Location = new System.Drawing.Point(741, 350);
  5975. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  5976. this.locationPos45.Name = "locationPos45";
  5977. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  5978. this.locationPos45.Size = new System.Drawing.Size(57, 280);
  5979. this.locationPos45.TabIndex = 468;
  5980. //
  5981. // con2281
  5982. //
  5983. this.con2281.BackColor = System.Drawing.Color.Transparent;
  5984. this.myTableLayoutPanel1.SetColumnSpan(this.con2281, 3);
  5985. this.con2281.Dock = System.Windows.Forms.DockStyle.Fill;
  5986. this.con2281.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5987. this.con2281.Location = new System.Drawing.Point(741, 322);
  5988. this.con2281.Margin = new System.Windows.Forms.Padding(0);
  5989. this.con2281.Name = "con2281";
  5990. this.myTableLayoutPanel1.SetRowSpan(this.con2281, 2);
  5991. this.con2281.Size = new System.Drawing.Size(57, 28);
  5992. this.con2281.TabIndex = 870;
  5993. //
  5994. // srm13
  5995. //
  5996. this.srm13.BackColor = System.Drawing.Color.Transparent;
  5997. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  5998. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  5999. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  6000. this.srm13.Location = new System.Drawing.Point(798, 350);
  6001. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  6002. this.srm13.Name = "srm13";
  6003. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 22);
  6004. this.srm13.Size = new System.Drawing.Size(19, 308);
  6005. this.srm13.TabIndex = 472;
  6006. //
  6007. // locationPos46
  6008. //
  6009. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos46, 3);
  6010. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  6011. this.locationPos46.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6012. this.locationPos46.Location = new System.Drawing.Point(817, 350);
  6013. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  6014. this.locationPos46.Name = "locationPos46";
  6015. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  6016. this.locationPos46.Size = new System.Drawing.Size(57, 280);
  6017. this.locationPos46.TabIndex = 470;
  6018. //
  6019. // con2276
  6020. //
  6021. this.con2276.BackColor = System.Drawing.Color.Transparent;
  6022. this.myTableLayoutPanel1.SetColumnSpan(this.con2276, 3);
  6023. this.con2276.Dock = System.Windows.Forms.DockStyle.Fill;
  6024. this.con2276.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6025. this.con2276.Location = new System.Drawing.Point(817, 322);
  6026. this.con2276.Margin = new System.Windows.Forms.Padding(0);
  6027. this.con2276.Name = "con2276";
  6028. this.myTableLayoutPanel1.SetRowSpan(this.con2276, 2);
  6029. this.con2276.Size = new System.Drawing.Size(57, 28);
  6030. this.con2276.TabIndex = 861;
  6031. //
  6032. // con2056
  6033. //
  6034. this.con2056.BackColor = System.Drawing.Color.Transparent;
  6035. this.myTableLayoutPanel1.SetColumnSpan(this.con2056, 3);
  6036. this.con2056.Dock = System.Windows.Forms.DockStyle.Fill;
  6037. this.con2056.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6038. this.con2056.Location = new System.Drawing.Point(817, 630);
  6039. this.con2056.Margin = new System.Windows.Forms.Padding(0);
  6040. this.con2056.Name = "con2056";
  6041. this.myTableLayoutPanel1.SetRowSpan(this.con2056, 2);
  6042. this.con2056.Size = new System.Drawing.Size(57, 28);
  6043. this.con2056.TabIndex = 848;
  6044. //
  6045. // tableCellLabel17
  6046. //
  6047. this.tableCellLabel17.BackColor = System.Drawing.Color.Transparent;
  6048. this.tableCellLabel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel17.BackgroundImage")));
  6049. this.tableCellLabel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6050. this.tableCellLabel17.Dock = System.Windows.Forms.DockStyle.Fill;
  6051. this.tableCellLabel17.Location = new System.Drawing.Point(874, 630);
  6052. this.tableCellLabel17.Margin = new System.Windows.Forms.Padding(0);
  6053. this.tableCellLabel17.Name = "tableCellLabel17";
  6054. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel17, 2);
  6055. this.tableCellLabel17.Size = new System.Drawing.Size(19, 28);
  6056. this.tableCellLabel17.TabIndex = 850;
  6057. //
  6058. // con2055
  6059. //
  6060. this.con2055.BackColor = System.Drawing.Color.Transparent;
  6061. this.myTableLayoutPanel1.SetColumnSpan(this.con2055, 5);
  6062. this.con2055.Dock = System.Windows.Forms.DockStyle.Fill;
  6063. this.con2055.Location = new System.Drawing.Point(836, 658);
  6064. this.con2055.Margin = new System.Windows.Forms.Padding(0);
  6065. this.con2055.Name = "con2055";
  6066. this.myTableLayoutPanel1.SetRowSpan(this.con2055, 2);
  6067. this.con2055.Size = new System.Drawing.Size(95, 28);
  6068. this.con2055.TabIndex = 849;
  6069. //
  6070. // tableCellLabel18
  6071. //
  6072. this.tableCellLabel18.BackColor = System.Drawing.Color.Transparent;
  6073. this.tableCellLabel18.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel18.BackgroundImage")));
  6074. this.tableCellLabel18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6075. this.tableCellLabel18.Dock = System.Windows.Forms.DockStyle.Fill;
  6076. this.tableCellLabel18.Location = new System.Drawing.Point(874, 686);
  6077. this.tableCellLabel18.Margin = new System.Windows.Forms.Padding(0);
  6078. this.tableCellLabel18.Name = "tableCellLabel18";
  6079. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel18, 2);
  6080. this.tableCellLabel18.Size = new System.Drawing.Size(19, 28);
  6081. this.tableCellLabel18.TabIndex = 851;
  6082. //
  6083. // locationPos42
  6084. //
  6085. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos42, 3);
  6086. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  6087. this.locationPos42.Location = new System.Drawing.Point(893, 350);
  6088. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  6089. this.locationPos42.Name = "locationPos42";
  6090. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  6091. this.locationPos42.Size = new System.Drawing.Size(57, 280);
  6092. this.locationPos42.TabIndex = 464;
  6093. //
  6094. // con2057
  6095. //
  6096. this.con2057.BackColor = System.Drawing.Color.Transparent;
  6097. this.myTableLayoutPanel1.SetColumnSpan(this.con2057, 3);
  6098. this.con2057.Dock = System.Windows.Forms.DockStyle.Fill;
  6099. this.con2057.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6100. this.con2057.Location = new System.Drawing.Point(893, 630);
  6101. this.con2057.Margin = new System.Windows.Forms.Padding(0);
  6102. this.con2057.Name = "con2057";
  6103. this.myTableLayoutPanel1.SetRowSpan(this.con2057, 2);
  6104. this.con2057.Size = new System.Drawing.Size(57, 28);
  6105. this.con2057.TabIndex = 852;
  6106. //
  6107. // con2275
  6108. //
  6109. this.con2275.BackColor = System.Drawing.Color.Transparent;
  6110. this.myTableLayoutPanel1.SetColumnSpan(this.con2275, 3);
  6111. this.con2275.Dock = System.Windows.Forms.DockStyle.Fill;
  6112. this.con2275.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6113. this.con2275.Location = new System.Drawing.Point(893, 322);
  6114. this.con2275.Margin = new System.Windows.Forms.Padding(0);
  6115. this.con2275.Name = "con2275";
  6116. this.myTableLayoutPanel1.SetRowSpan(this.con2275, 2);
  6117. this.con2275.Size = new System.Drawing.Size(57, 28);
  6118. this.con2275.TabIndex = 862;
  6119. //
  6120. // tableCellLabel29
  6121. //
  6122. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  6123. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  6124. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6125. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  6126. this.tableCellLabel29.Location = new System.Drawing.Point(950, 350);
  6127. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  6128. this.tableCellLabel29.Name = "tableCellLabel29";
  6129. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 22);
  6130. this.tableCellLabel29.Size = new System.Drawing.Size(19, 308);
  6131. this.tableCellLabel29.TabIndex = 681;
  6132. //
  6133. // locationPos54
  6134. //
  6135. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos54, 3);
  6136. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  6137. this.locationPos54.Location = new System.Drawing.Point(969, 350);
  6138. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  6139. this.locationPos54.Name = "locationPos54";
  6140. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  6141. this.locationPos54.Size = new System.Drawing.Size(57, 280);
  6142. this.locationPos54.TabIndex = 477;
  6143. //
  6144. // con2062
  6145. //
  6146. this.con2062.BackColor = System.Drawing.Color.Transparent;
  6147. this.myTableLayoutPanel1.SetColumnSpan(this.con2062, 3);
  6148. this.con2062.Dock = System.Windows.Forms.DockStyle.Fill;
  6149. this.con2062.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6150. this.con2062.Location = new System.Drawing.Point(969, 630);
  6151. this.con2062.Margin = new System.Windows.Forms.Padding(0);
  6152. this.con2062.Name = "con2062";
  6153. this.myTableLayoutPanel1.SetRowSpan(this.con2062, 2);
  6154. this.con2062.Size = new System.Drawing.Size(57, 28);
  6155. this.con2062.TabIndex = 855;
  6156. //
  6157. // tableCellLabel24
  6158. //
  6159. this.tableCellLabel24.BackColor = System.Drawing.Color.Transparent;
  6160. this.tableCellLabel24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel24.BackgroundImage")));
  6161. this.tableCellLabel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6162. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel24, 11);
  6163. this.tableCellLabel24.Dock = System.Windows.Forms.DockStyle.Fill;
  6164. this.tableCellLabel24.Location = new System.Drawing.Point(1045, 294);
  6165. this.tableCellLabel24.Margin = new System.Windows.Forms.Padding(0);
  6166. this.tableCellLabel24.Name = "tableCellLabel24";
  6167. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel24, 2);
  6168. this.tableCellLabel24.Size = new System.Drawing.Size(209, 28);
  6169. this.tableCellLabel24.TabIndex = 814;
  6170. //
  6171. // con2260
  6172. //
  6173. this.myTableLayoutPanel1.SetColumnSpan(this.con2260, 3);
  6174. this.con2260.Dock = System.Windows.Forms.DockStyle.Fill;
  6175. this.con2260.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6176. this.con2260.Location = new System.Drawing.Point(1121, 238);
  6177. this.con2260.Margin = new System.Windows.Forms.Padding(0);
  6178. this.con2260.Name = "con2260";
  6179. this.myTableLayoutPanel1.SetRowSpan(this.con2260, 2);
  6180. this.con2260.Size = new System.Drawing.Size(57, 28);
  6181. this.con2260.TabIndex = 822;
  6182. //
  6183. // con2259
  6184. //
  6185. this.myTableLayoutPanel1.SetColumnSpan(this.con2259, 3);
  6186. this.con2259.Dock = System.Windows.Forms.DockStyle.Fill;
  6187. this.con2259.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6188. this.con2259.Location = new System.Drawing.Point(1121, 266);
  6189. this.con2259.Margin = new System.Windows.Forms.Padding(0);
  6190. this.con2259.Name = "con2259";
  6191. this.myTableLayoutPanel1.SetRowSpan(this.con2259, 2);
  6192. this.con2259.Size = new System.Drawing.Size(57, 28);
  6193. this.con2259.TabIndex = 821;
  6194. //
  6195. // tableCellLabel23
  6196. //
  6197. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  6198. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  6199. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6200. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 11);
  6201. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  6202. this.tableCellLabel23.Location = new System.Drawing.Point(1311, 294);
  6203. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(0);
  6204. this.tableCellLabel23.Name = "tableCellLabel23";
  6205. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel23, 2);
  6206. this.tableCellLabel23.Size = new System.Drawing.Size(209, 28);
  6207. this.tableCellLabel23.TabIndex = 815;
  6208. this.tableCellLabel23.Load += new System.EventHandler(this.tableCellLabel23_Load);
  6209. //
  6210. // con2262
  6211. //
  6212. this.myTableLayoutPanel1.SetColumnSpan(this.con2262, 3);
  6213. this.con2262.Dock = System.Windows.Forms.DockStyle.Fill;
  6214. this.con2262.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6215. this.con2262.Location = new System.Drawing.Point(1216, 238);
  6216. this.con2262.Margin = new System.Windows.Forms.Padding(0);
  6217. this.con2262.Name = "con2262";
  6218. this.myTableLayoutPanel1.SetRowSpan(this.con2262, 2);
  6219. this.con2262.Size = new System.Drawing.Size(57, 28);
  6220. this.con2262.TabIndex = 823;
  6221. //
  6222. // con2261
  6223. //
  6224. this.myTableLayoutPanel1.SetColumnSpan(this.con2261, 3);
  6225. this.con2261.Dock = System.Windows.Forms.DockStyle.Fill;
  6226. this.con2261.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6227. this.con2261.Location = new System.Drawing.Point(1216, 266);
  6228. this.con2261.Margin = new System.Windows.Forms.Padding(0);
  6229. this.con2261.Name = "con2261";
  6230. this.myTableLayoutPanel1.SetRowSpan(this.con2261, 2);
  6231. this.con2261.Size = new System.Drawing.Size(57, 28);
  6232. this.con2261.TabIndex = 824;
  6233. //
  6234. // con2264
  6235. //
  6236. this.myTableLayoutPanel1.SetColumnSpan(this.con2264, 3);
  6237. this.con2264.Dock = System.Windows.Forms.DockStyle.Fill;
  6238. this.con2264.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6239. this.con2264.Location = new System.Drawing.Point(1387, 238);
  6240. this.con2264.Margin = new System.Windows.Forms.Padding(0);
  6241. this.con2264.Name = "con2264";
  6242. this.myTableLayoutPanel1.SetRowSpan(this.con2264, 2);
  6243. this.con2264.Size = new System.Drawing.Size(57, 28);
  6244. this.con2264.TabIndex = 818;
  6245. //
  6246. // con2263
  6247. //
  6248. this.myTableLayoutPanel1.SetColumnSpan(this.con2263, 3);
  6249. this.con2263.Dock = System.Windows.Forms.DockStyle.Fill;
  6250. this.con2263.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6251. this.con2263.Location = new System.Drawing.Point(1387, 266);
  6252. this.con2263.Margin = new System.Windows.Forms.Padding(0);
  6253. this.con2263.Name = "con2263";
  6254. this.myTableLayoutPanel1.SetRowSpan(this.con2263, 2);
  6255. this.con2263.Size = new System.Drawing.Size(57, 28);
  6256. this.con2263.TabIndex = 819;
  6257. //
  6258. // conveyor3_A17
  6259. //
  6260. this.myTableLayoutPanel1.SetColumnSpan(this.conveyor3_A17, 3);
  6261. this.conveyor3_A17.Dock = System.Windows.Forms.DockStyle.Fill;
  6262. this.conveyor3_A17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6263. this.conveyor3_A17.Location = new System.Drawing.Point(1463, 266);
  6264. this.conveyor3_A17.Margin = new System.Windows.Forms.Padding(0);
  6265. this.conveyor3_A17.Name = "conveyor3_A17";
  6266. this.myTableLayoutPanel1.SetRowSpan(this.conveyor3_A17, 2);
  6267. this.conveyor3_A17.Size = new System.Drawing.Size(57, 28);
  6268. this.conveyor3_A17.TabIndex = 820;
  6269. //
  6270. // conrgv1
  6271. //
  6272. this.conrgv1.BackColor = System.Drawing.Color.Transparent;
  6273. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv1, 3);
  6274. this.conrgv1.Dock = System.Windows.Forms.DockStyle.Fill;
  6275. this.conrgv1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6276. this.conrgv1.Location = new System.Drawing.Point(1254, 294);
  6277. this.conrgv1.Margin = new System.Windows.Forms.Padding(0);
  6278. this.conrgv1.Name = "conrgv1";
  6279. this.myTableLayoutPanel1.SetRowSpan(this.conrgv1, 2);
  6280. this.conrgv1.Size = new System.Drawing.Size(57, 28);
  6281. this.conrgv1.TabIndex = 816;
  6282. //
  6283. // locationPos44
  6284. //
  6285. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos44, 3);
  6286. this.locationPos44.Dock = System.Windows.Forms.DockStyle.Fill;
  6287. this.locationPos44.Location = new System.Drawing.Point(1045, 350);
  6288. this.locationPos44.Margin = new System.Windows.Forms.Padding(0);
  6289. this.locationPos44.Name = "locationPos44";
  6290. this.myTableLayoutPanel1.SetRowSpan(this.locationPos44, 16);
  6291. this.locationPos44.Size = new System.Drawing.Size(57, 224);
  6292. this.locationPos44.TabIndex = 467;
  6293. //
  6294. // locationPos43
  6295. //
  6296. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos43, 3);
  6297. this.locationPos43.Dock = System.Windows.Forms.DockStyle.Fill;
  6298. this.locationPos43.Location = new System.Drawing.Point(1121, 350);
  6299. this.locationPos43.Margin = new System.Windows.Forms.Padding(0);
  6300. this.locationPos43.Name = "locationPos43";
  6301. this.myTableLayoutPanel1.SetRowSpan(this.locationPos43, 16);
  6302. this.locationPos43.Size = new System.Drawing.Size(57, 224);
  6303. this.locationPos43.TabIndex = 465;
  6304. //
  6305. // srm12
  6306. //
  6307. this.srm12.BackColor = System.Drawing.Color.Transparent;
  6308. this.srm12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm12.BackgroundImage")));
  6309. this.srm12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  6310. this.srm12.Dock = System.Windows.Forms.DockStyle.Fill;
  6311. this.srm12.Location = new System.Drawing.Point(1102, 350);
  6312. this.srm12.Margin = new System.Windows.Forms.Padding(0);
  6313. this.srm12.Name = "srm12";
  6314. this.myTableLayoutPanel1.SetRowSpan(this.srm12, 18);
  6315. this.srm12.Size = new System.Drawing.Size(19, 252);
  6316. this.srm12.TabIndex = 466;
  6317. //
  6318. // con2153
  6319. //
  6320. this.myTableLayoutPanel1.SetColumnSpan(this.con2153, 3);
  6321. this.con2153.Dock = System.Windows.Forms.DockStyle.Fill;
  6322. this.con2153.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6323. this.con2153.Location = new System.Drawing.Point(1463, 98);
  6324. this.con2153.Margin = new System.Windows.Forms.Padding(0);
  6325. this.con2153.Name = "con2153";
  6326. this.myTableLayoutPanel1.SetRowSpan(this.con2153, 2);
  6327. this.con2153.Size = new System.Drawing.Size(57, 28);
  6328. this.con2153.TabIndex = 796;
  6329. //
  6330. // con2181
  6331. //
  6332. this.myTableLayoutPanel1.SetColumnSpan(this.con2181, 3);
  6333. this.con2181.Dock = System.Windows.Forms.DockStyle.Fill;
  6334. this.con2181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6335. this.con2181.Location = new System.Drawing.Point(1045, 126);
  6336. this.con2181.Margin = new System.Windows.Forms.Padding(0);
  6337. this.con2181.Name = "con2181";
  6338. this.myTableLayoutPanel1.SetRowSpan(this.con2181, 2);
  6339. this.con2181.Size = new System.Drawing.Size(57, 28);
  6340. this.con2181.TabIndex = 787;
  6341. //
  6342. // con2180
  6343. //
  6344. this.myTableLayoutPanel1.SetColumnSpan(this.con2180, 3);
  6345. this.con2180.Dock = System.Windows.Forms.DockStyle.Fill;
  6346. this.con2180.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6347. this.con2180.Location = new System.Drawing.Point(1102, 126);
  6348. this.con2180.Margin = new System.Windows.Forms.Padding(0);
  6349. this.con2180.Name = "con2180";
  6350. this.myTableLayoutPanel1.SetRowSpan(this.con2180, 2);
  6351. this.con2180.Size = new System.Drawing.Size(57, 28);
  6352. this.con2180.TabIndex = 786;
  6353. //
  6354. // con2207
  6355. //
  6356. this.myTableLayoutPanel1.SetColumnSpan(this.con2207, 3);
  6357. this.con2207.Dock = System.Windows.Forms.DockStyle.Fill;
  6358. this.con2207.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6359. this.con2207.Location = new System.Drawing.Point(1178, 126);
  6360. this.con2207.Margin = new System.Windows.Forms.Padding(0);
  6361. this.con2207.Name = "con2207";
  6362. this.myTableLayoutPanel1.SetRowSpan(this.con2207, 2);
  6363. this.con2207.Size = new System.Drawing.Size(57, 28);
  6364. this.con2207.TabIndex = 795;
  6365. //
  6366. // con2208
  6367. //
  6368. this.myTableLayoutPanel1.SetColumnSpan(this.con2208, 3);
  6369. this.con2208.Dock = System.Windows.Forms.DockStyle.Fill;
  6370. this.con2208.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6371. this.con2208.Location = new System.Drawing.Point(1235, 126);
  6372. this.con2208.Margin = new System.Windows.Forms.Padding(0);
  6373. this.con2208.Name = "con2208";
  6374. this.myTableLayoutPanel1.SetRowSpan(this.con2208, 2);
  6375. this.con2208.Size = new System.Drawing.Size(57, 28);
  6376. this.con2208.TabIndex = 794;
  6377. //
  6378. // con2209
  6379. //
  6380. this.myTableLayoutPanel1.SetColumnSpan(this.con2209, 3);
  6381. this.con2209.Dock = System.Windows.Forms.DockStyle.Fill;
  6382. this.con2209.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6383. this.con2209.Location = new System.Drawing.Point(1292, 126);
  6384. this.con2209.Margin = new System.Windows.Forms.Padding(0);
  6385. this.con2209.Name = "con2209";
  6386. this.myTableLayoutPanel1.SetRowSpan(this.con2209, 2);
  6387. this.con2209.Size = new System.Drawing.Size(57, 28);
  6388. this.con2209.TabIndex = 793;
  6389. //
  6390. // con2210
  6391. //
  6392. this.myTableLayoutPanel1.SetColumnSpan(this.con2210, 3);
  6393. this.con2210.Dock = System.Windows.Forms.DockStyle.Fill;
  6394. this.con2210.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6395. this.con2210.Location = new System.Drawing.Point(1349, 126);
  6396. this.con2210.Margin = new System.Windows.Forms.Padding(0);
  6397. this.con2210.Name = "con2210";
  6398. this.myTableLayoutPanel1.SetRowSpan(this.con2210, 2);
  6399. this.con2210.Size = new System.Drawing.Size(57, 28);
  6400. this.con2210.TabIndex = 782;
  6401. //
  6402. // con2211
  6403. //
  6404. this.myTableLayoutPanel1.SetColumnSpan(this.con2211, 3);
  6405. this.con2211.Dock = System.Windows.Forms.DockStyle.Fill;
  6406. this.con2211.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6407. this.con2211.Location = new System.Drawing.Point(1406, 126);
  6408. this.con2211.Margin = new System.Windows.Forms.Padding(0);
  6409. this.con2211.Name = "con2211";
  6410. this.myTableLayoutPanel1.SetRowSpan(this.con2211, 2);
  6411. this.con2211.Size = new System.Drawing.Size(57, 28);
  6412. this.con2211.TabIndex = 784;
  6413. //
  6414. // con2192
  6415. //
  6416. this.myTableLayoutPanel1.SetColumnSpan(this.con2192, 3);
  6417. this.con2192.Dock = System.Windows.Forms.DockStyle.Fill;
  6418. this.con2192.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6419. this.con2192.Location = new System.Drawing.Point(931, 98);
  6420. this.con2192.Margin = new System.Windows.Forms.Padding(0);
  6421. this.con2192.Name = "con2192";
  6422. this.myTableLayoutPanel1.SetRowSpan(this.con2192, 2);
  6423. this.con2192.Size = new System.Drawing.Size(57, 28);
  6424. this.con2192.TabIndex = 803;
  6425. //
  6426. // con2195
  6427. //
  6428. this.myTableLayoutPanel1.SetColumnSpan(this.con2195, 3);
  6429. this.con2195.Dock = System.Windows.Forms.DockStyle.Fill;
  6430. this.con2195.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6431. this.con2195.Location = new System.Drawing.Point(874, 98);
  6432. this.con2195.Margin = new System.Windows.Forms.Padding(0);
  6433. this.con2195.Name = "con2195";
  6434. this.myTableLayoutPanel1.SetRowSpan(this.con2195, 2);
  6435. this.con2195.Size = new System.Drawing.Size(57, 28);
  6436. this.con2195.TabIndex = 802;
  6437. //
  6438. // con2198
  6439. //
  6440. this.myTableLayoutPanel1.SetColumnSpan(this.con2198, 3);
  6441. this.con2198.Dock = System.Windows.Forms.DockStyle.Fill;
  6442. this.con2198.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6443. this.con2198.Location = new System.Drawing.Point(817, 98);
  6444. this.con2198.Margin = new System.Windows.Forms.Padding(0);
  6445. this.con2198.Name = "con2198";
  6446. this.myTableLayoutPanel1.SetRowSpan(this.con2198, 2);
  6447. this.con2198.Size = new System.Drawing.Size(57, 28);
  6448. this.con2198.TabIndex = 804;
  6449. //
  6450. // con2201
  6451. //
  6452. this.myTableLayoutPanel1.SetColumnSpan(this.con2201, 3);
  6453. this.con2201.Dock = System.Windows.Forms.DockStyle.Fill;
  6454. this.con2201.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6455. this.con2201.Location = new System.Drawing.Point(760, 98);
  6456. this.con2201.Margin = new System.Windows.Forms.Padding(0);
  6457. this.con2201.Name = "con2201";
  6458. this.myTableLayoutPanel1.SetRowSpan(this.con2201, 2);
  6459. this.con2201.Size = new System.Drawing.Size(57, 28);
  6460. this.con2201.TabIndex = 801;
  6461. //
  6462. // con2265
  6463. //
  6464. this.myTableLayoutPanel1.SetColumnSpan(this.con2265, 3);
  6465. this.con2265.Dock = System.Windows.Forms.DockStyle.Fill;
  6466. this.con2265.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6467. this.con2265.Location = new System.Drawing.Point(1463, 238);
  6468. this.con2265.Margin = new System.Windows.Forms.Padding(0);
  6469. this.con2265.Name = "con2265";
  6470. this.myTableLayoutPanel1.SetRowSpan(this.con2265, 2);
  6471. this.con2265.Size = new System.Drawing.Size(57, 28);
  6472. this.con2265.TabIndex = 817;
  6473. //
  6474. // con2382
  6475. //
  6476. this.myTableLayoutPanel1.SetColumnSpan(this.con2382, 3);
  6477. this.con2382.Dock = System.Windows.Forms.DockStyle.Fill;
  6478. this.con2382.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6479. this.con2382.Location = new System.Drawing.Point(1710, 42);
  6480. this.con2382.Margin = new System.Windows.Forms.Padding(0);
  6481. this.con2382.Name = "con2382";
  6482. this.myTableLayoutPanel1.SetRowSpan(this.con2382, 2);
  6483. this.con2382.Size = new System.Drawing.Size(57, 28);
  6484. this.con2382.TabIndex = 732;
  6485. //
  6486. // con2381
  6487. //
  6488. this.myTableLayoutPanel1.SetColumnSpan(this.con2381, 3);
  6489. this.con2381.Dock = System.Windows.Forms.DockStyle.Fill;
  6490. this.con2381.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6491. this.con2381.Location = new System.Drawing.Point(1710, 70);
  6492. this.con2381.Margin = new System.Windows.Forms.Padding(0);
  6493. this.con2381.Name = "con2381";
  6494. this.myTableLayoutPanel1.SetRowSpan(this.con2381, 2);
  6495. this.con2381.Size = new System.Drawing.Size(57, 28);
  6496. this.con2381.TabIndex = 760;
  6497. //
  6498. // con2380
  6499. //
  6500. this.myTableLayoutPanel1.SetColumnSpan(this.con2380, 3);
  6501. this.con2380.Dock = System.Windows.Forms.DockStyle.Fill;
  6502. this.con2380.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6503. this.con2380.Location = new System.Drawing.Point(1710, 98);
  6504. this.con2380.Margin = new System.Windows.Forms.Padding(0);
  6505. this.con2380.Name = "con2380";
  6506. this.myTableLayoutPanel1.SetRowSpan(this.con2380, 2);
  6507. this.con2380.Size = new System.Drawing.Size(57, 28);
  6508. this.con2380.TabIndex = 761;
  6509. //
  6510. // con2379
  6511. //
  6512. this.myTableLayoutPanel1.SetColumnSpan(this.con2379, 3);
  6513. this.con2379.Dock = System.Windows.Forms.DockStyle.Fill;
  6514. this.con2379.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6515. this.con2379.Location = new System.Drawing.Point(1710, 126);
  6516. this.con2379.Margin = new System.Windows.Forms.Padding(0);
  6517. this.con2379.Name = "con2379";
  6518. this.myTableLayoutPanel1.SetRowSpan(this.con2379, 2);
  6519. this.con2379.Size = new System.Drawing.Size(57, 28);
  6520. this.con2379.TabIndex = 759;
  6521. //
  6522. // con2378
  6523. //
  6524. this.myTableLayoutPanel1.SetColumnSpan(this.con2378, 3);
  6525. this.con2378.Dock = System.Windows.Forms.DockStyle.Fill;
  6526. this.con2378.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6527. this.con2378.Location = new System.Drawing.Point(1710, 154);
  6528. this.con2378.Margin = new System.Windows.Forms.Padding(0);
  6529. this.con2378.Name = "con2378";
  6530. this.myTableLayoutPanel1.SetRowSpan(this.con2378, 2);
  6531. this.con2378.Size = new System.Drawing.Size(57, 28);
  6532. this.con2378.TabIndex = 762;
  6533. //
  6534. // con2377
  6535. //
  6536. this.myTableLayoutPanel1.SetColumnSpan(this.con2377, 3);
  6537. this.con2377.Dock = System.Windows.Forms.DockStyle.Fill;
  6538. this.con2377.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6539. this.con2377.Location = new System.Drawing.Point(1710, 182);
  6540. this.con2377.Margin = new System.Windows.Forms.Padding(0);
  6541. this.con2377.Name = "con2377";
  6542. this.myTableLayoutPanel1.SetRowSpan(this.con2377, 2);
  6543. this.con2377.Size = new System.Drawing.Size(57, 28);
  6544. this.con2377.TabIndex = 738;
  6545. //
  6546. // con2376
  6547. //
  6548. this.myTableLayoutPanel1.SetColumnSpan(this.con2376, 3);
  6549. this.con2376.Dock = System.Windows.Forms.DockStyle.Fill;
  6550. this.con2376.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6551. this.con2376.Location = new System.Drawing.Point(1710, 210);
  6552. this.con2376.Margin = new System.Windows.Forms.Padding(0);
  6553. this.con2376.Name = "con2376";
  6554. this.myTableLayoutPanel1.SetRowSpan(this.con2376, 2);
  6555. this.con2376.Size = new System.Drawing.Size(57, 28);
  6556. this.con2376.TabIndex = 735;
  6557. //
  6558. // con2375
  6559. //
  6560. this.myTableLayoutPanel1.SetColumnSpan(this.con2375, 3);
  6561. this.con2375.Dock = System.Windows.Forms.DockStyle.Fill;
  6562. this.con2375.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6563. this.con2375.Location = new System.Drawing.Point(1710, 238);
  6564. this.con2375.Margin = new System.Windows.Forms.Padding(0);
  6565. this.con2375.Name = "con2375";
  6566. this.myTableLayoutPanel1.SetRowSpan(this.con2375, 2);
  6567. this.con2375.Size = new System.Drawing.Size(57, 28);
  6568. this.con2375.TabIndex = 734;
  6569. //
  6570. // con2374
  6571. //
  6572. this.myTableLayoutPanel1.SetColumnSpan(this.con2374, 3);
  6573. this.con2374.Dock = System.Windows.Forms.DockStyle.Fill;
  6574. this.con2374.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6575. this.con2374.Location = new System.Drawing.Point(1710, 266);
  6576. this.con2374.Margin = new System.Windows.Forms.Padding(0);
  6577. this.con2374.Name = "con2374";
  6578. this.myTableLayoutPanel1.SetRowSpan(this.con2374, 2);
  6579. this.con2374.Size = new System.Drawing.Size(57, 28);
  6580. this.con2374.TabIndex = 739;
  6581. //
  6582. // con2385
  6583. //
  6584. this.myTableLayoutPanel1.SetColumnSpan(this.con2385, 3);
  6585. this.con2385.Dock = System.Windows.Forms.DockStyle.Fill;
  6586. this.con2385.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6587. this.con2385.Location = new System.Drawing.Point(1710, 294);
  6588. this.con2385.Margin = new System.Windows.Forms.Padding(0);
  6589. this.con2385.Name = "con2385";
  6590. this.myTableLayoutPanel1.SetRowSpan(this.con2385, 2);
  6591. this.con2385.Size = new System.Drawing.Size(57, 28);
  6592. this.con2385.TabIndex = 736;
  6593. //
  6594. // con2386
  6595. //
  6596. this.myTableLayoutPanel1.SetColumnSpan(this.con2386, 3);
  6597. this.con2386.Dock = System.Windows.Forms.DockStyle.Fill;
  6598. this.con2386.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6599. this.con2386.Location = new System.Drawing.Point(1710, 322);
  6600. this.con2386.Margin = new System.Windows.Forms.Padding(0);
  6601. this.con2386.Name = "con2386";
  6602. this.myTableLayoutPanel1.SetRowSpan(this.con2386, 2);
  6603. this.con2386.Size = new System.Drawing.Size(57, 28);
  6604. this.con2386.TabIndex = 737;
  6605. //
  6606. // con2387
  6607. //
  6608. this.myTableLayoutPanel1.SetColumnSpan(this.con2387, 3);
  6609. this.con2387.Dock = System.Windows.Forms.DockStyle.Fill;
  6610. this.con2387.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6611. this.con2387.Location = new System.Drawing.Point(1710, 350);
  6612. this.con2387.Margin = new System.Windows.Forms.Padding(0);
  6613. this.con2387.Name = "con2387";
  6614. this.myTableLayoutPanel1.SetRowSpan(this.con2387, 2);
  6615. this.con2387.Size = new System.Drawing.Size(57, 27);
  6616. this.con2387.TabIndex = 733;
  6617. //
  6618. // con2388
  6619. //
  6620. this.myTableLayoutPanel1.SetColumnSpan(this.con2388, 3);
  6621. this.con2388.Dock = System.Windows.Forms.DockStyle.Fill;
  6622. this.con2388.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6623. this.con2388.Location = new System.Drawing.Point(1710, 377);
  6624. this.con2388.Margin = new System.Windows.Forms.Padding(0);
  6625. this.con2388.Name = "con2388";
  6626. this.myTableLayoutPanel1.SetRowSpan(this.con2388, 2);
  6627. this.con2388.Size = new System.Drawing.Size(57, 29);
  6628. this.con2388.TabIndex = 729;
  6629. //
  6630. // con2372
  6631. //
  6632. this.myTableLayoutPanel1.SetColumnSpan(this.con2372, 3);
  6633. this.con2372.Dock = System.Windows.Forms.DockStyle.Fill;
  6634. this.con2372.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6635. this.con2372.Location = new System.Drawing.Point(1710, 406);
  6636. this.con2372.Margin = new System.Windows.Forms.Padding(0);
  6637. this.con2372.Name = "con2372";
  6638. this.myTableLayoutPanel1.SetRowSpan(this.con2372, 2);
  6639. this.con2372.Size = new System.Drawing.Size(57, 28);
  6640. this.con2372.TabIndex = 730;
  6641. //
  6642. // con2371
  6643. //
  6644. this.myTableLayoutPanel1.SetColumnSpan(this.con2371, 3);
  6645. this.con2371.Dock = System.Windows.Forms.DockStyle.Fill;
  6646. this.con2371.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6647. this.con2371.Location = new System.Drawing.Point(1710, 434);
  6648. this.con2371.Margin = new System.Windows.Forms.Padding(0);
  6649. this.con2371.Name = "con2371";
  6650. this.myTableLayoutPanel1.SetRowSpan(this.con2371, 2);
  6651. this.con2371.Size = new System.Drawing.Size(57, 28);
  6652. this.con2371.TabIndex = 728;
  6653. //
  6654. // con2370
  6655. //
  6656. this.myTableLayoutPanel1.SetColumnSpan(this.con2370, 3);
  6657. this.con2370.Dock = System.Windows.Forms.DockStyle.Fill;
  6658. this.con2370.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6659. this.con2370.Location = new System.Drawing.Point(1710, 462);
  6660. this.con2370.Margin = new System.Windows.Forms.Padding(0);
  6661. this.con2370.Name = "con2370";
  6662. this.myTableLayoutPanel1.SetRowSpan(this.con2370, 2);
  6663. this.con2370.Size = new System.Drawing.Size(57, 28);
  6664. this.con2370.TabIndex = 731;
  6665. //
  6666. // con2369
  6667. //
  6668. this.myTableLayoutPanel1.SetColumnSpan(this.con2369, 3);
  6669. this.con2369.Dock = System.Windows.Forms.DockStyle.Fill;
  6670. this.con2369.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6671. this.con2369.Location = new System.Drawing.Point(1710, 490);
  6672. this.con2369.Margin = new System.Windows.Forms.Padding(0);
  6673. this.con2369.Name = "con2369";
  6674. this.myTableLayoutPanel1.SetRowSpan(this.con2369, 2);
  6675. this.con2369.Size = new System.Drawing.Size(57, 28);
  6676. this.con2369.TabIndex = 727;
  6677. //
  6678. // con2368
  6679. //
  6680. this.myTableLayoutPanel1.SetColumnSpan(this.con2368, 3);
  6681. this.con2368.Dock = System.Windows.Forms.DockStyle.Fill;
  6682. this.con2368.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6683. this.con2368.Location = new System.Drawing.Point(1710, 518);
  6684. this.con2368.Margin = new System.Windows.Forms.Padding(0);
  6685. this.con2368.Name = "con2368";
  6686. this.myTableLayoutPanel1.SetRowSpan(this.con2368, 2);
  6687. this.con2368.Size = new System.Drawing.Size(57, 28);
  6688. this.con2368.TabIndex = 726;
  6689. //
  6690. // con2366
  6691. //
  6692. this.myTableLayoutPanel1.SetColumnSpan(this.con2366, 3);
  6693. this.con2366.Dock = System.Windows.Forms.DockStyle.Fill;
  6694. this.con2366.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6695. this.con2366.Location = new System.Drawing.Point(1710, 546);
  6696. this.con2366.Margin = new System.Windows.Forms.Padding(0);
  6697. this.con2366.Name = "con2366";
  6698. this.myTableLayoutPanel1.SetRowSpan(this.con2366, 2);
  6699. this.con2366.Size = new System.Drawing.Size(57, 28);
  6700. this.con2366.TabIndex = 725;
  6701. //
  6702. // con2365
  6703. //
  6704. this.myTableLayoutPanel1.SetColumnSpan(this.con2365, 3);
  6705. this.con2365.Dock = System.Windows.Forms.DockStyle.Fill;
  6706. this.con2365.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6707. this.con2365.Location = new System.Drawing.Point(1710, 574);
  6708. this.con2365.Margin = new System.Windows.Forms.Padding(0);
  6709. this.con2365.Name = "con2365";
  6710. this.myTableLayoutPanel1.SetRowSpan(this.con2365, 2);
  6711. this.con2365.Size = new System.Drawing.Size(57, 28);
  6712. this.con2365.TabIndex = 724;
  6713. //
  6714. // con2364
  6715. //
  6716. this.con2364.BackColor = System.Drawing.Color.Transparent;
  6717. this.myTableLayoutPanel1.SetColumnSpan(this.con2364, 3);
  6718. this.con2364.Dock = System.Windows.Forms.DockStyle.Fill;
  6719. this.con2364.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6720. this.con2364.Location = new System.Drawing.Point(1653, 574);
  6721. this.con2364.Margin = new System.Windows.Forms.Padding(0);
  6722. this.con2364.Name = "con2364";
  6723. this.myTableLayoutPanel1.SetRowSpan(this.con2364, 2);
  6724. this.con2364.Size = new System.Drawing.Size(57, 28);
  6725. this.con2364.TabIndex = 723;
  6726. //
  6727. // con2362
  6728. //
  6729. this.con2362.BackColor = System.Drawing.Color.Transparent;
  6730. this.myTableLayoutPanel1.SetColumnSpan(this.con2362, 3);
  6731. this.con2362.Dock = System.Windows.Forms.DockStyle.Fill;
  6732. this.con2362.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6733. this.con2362.Location = new System.Drawing.Point(1596, 574);
  6734. this.con2362.Margin = new System.Windows.Forms.Padding(0);
  6735. this.con2362.Name = "con2362";
  6736. this.myTableLayoutPanel1.SetRowSpan(this.con2362, 2);
  6737. this.con2362.Size = new System.Drawing.Size(57, 28);
  6738. this.con2362.TabIndex = 722;
  6739. //
  6740. // con2360
  6741. //
  6742. this.myTableLayoutPanel1.SetColumnSpan(this.con2360, 3);
  6743. this.con2360.Dock = System.Windows.Forms.DockStyle.Fill;
  6744. this.con2360.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6745. this.con2360.Location = new System.Drawing.Point(1596, 602);
  6746. this.con2360.Margin = new System.Windows.Forms.Padding(0);
  6747. this.con2360.Name = "con2360";
  6748. this.myTableLayoutPanel1.SetRowSpan(this.con2360, 2);
  6749. this.con2360.Size = new System.Drawing.Size(57, 28);
  6750. this.con2360.TabIndex = 520;
  6751. //
  6752. // con2359
  6753. //
  6754. this.myTableLayoutPanel1.SetColumnSpan(this.con2359, 3);
  6755. this.con2359.Dock = System.Windows.Forms.DockStyle.Fill;
  6756. this.con2359.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6757. this.con2359.Location = new System.Drawing.Point(1596, 630);
  6758. this.con2359.Margin = new System.Windows.Forms.Padding(0);
  6759. this.con2359.Name = "con2359";
  6760. this.myTableLayoutPanel1.SetRowSpan(this.con2359, 2);
  6761. this.con2359.Size = new System.Drawing.Size(57, 28);
  6762. this.con2359.TabIndex = 512;
  6763. //
  6764. // con2135
  6765. //
  6766. this.myTableLayoutPanel1.SetColumnSpan(this.con2135, 3);
  6767. this.con2135.Dock = System.Windows.Forms.DockStyle.Fill;
  6768. this.con2135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6769. this.con2135.Location = new System.Drawing.Point(1767, 238);
  6770. this.con2135.Margin = new System.Windows.Forms.Padding(0);
  6771. this.con2135.Name = "con2135";
  6772. this.myTableLayoutPanel1.SetRowSpan(this.con2135, 2);
  6773. this.con2135.Size = new System.Drawing.Size(57, 28);
  6774. this.con2135.TabIndex = 751;
  6775. //
  6776. // label1
  6777. //
  6778. this.label1.AutoSize = true;
  6779. this.label1.BackColor = System.Drawing.Color.Lime;
  6780. this.myTableLayoutPanel1.SetColumnSpan(this.label1, 3);
  6781. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  6782. this.label1.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6783. this.label1.Location = new System.Drawing.Point(1771, 266);
  6784. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6785. this.label1.Name = "label1";
  6786. this.myTableLayoutPanel1.SetRowSpan(this.label1, 2);
  6787. this.label1.Size = new System.Drawing.Size(49, 28);
  6788. this.label1.TabIndex = 753;
  6789. this.label1.Text = "上";
  6790. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6791. //
  6792. // con2137
  6793. //
  6794. this.con2137.BackColor = System.Drawing.Color.Transparent;
  6795. this.myTableLayoutPanel1.SetColumnSpan(this.con2137, 3);
  6796. this.con2137.Dock = System.Windows.Forms.DockStyle.Fill;
  6797. this.con2137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6798. this.con2137.Location = new System.Drawing.Point(1767, 294);
  6799. this.con2137.Margin = new System.Windows.Forms.Padding(0);
  6800. this.con2137.Name = "con2137";
  6801. this.myTableLayoutPanel1.SetRowSpan(this.con2137, 2);
  6802. this.con2137.Size = new System.Drawing.Size(57, 28);
  6803. this.con2137.TabIndex = 865;
  6804. //
  6805. // con2138
  6806. //
  6807. this.con2138.BackColor = System.Drawing.Color.Transparent;
  6808. this.myTableLayoutPanel1.SetColumnSpan(this.con2138, 3);
  6809. this.con2138.Dock = System.Windows.Forms.DockStyle.Fill;
  6810. this.con2138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6811. this.con2138.Location = new System.Drawing.Point(1824, 294);
  6812. this.con2138.Margin = new System.Windows.Forms.Padding(0);
  6813. this.con2138.Name = "con2138";
  6814. this.myTableLayoutPanel1.SetRowSpan(this.con2138, 2);
  6815. this.con2138.Size = new System.Drawing.Size(57, 28);
  6816. this.con2138.TabIndex = 749;
  6817. //
  6818. // con2326
  6819. //
  6820. this.con2326.BackColor = System.Drawing.Color.Transparent;
  6821. this.myTableLayoutPanel1.SetColumnSpan(this.con2326, 3);
  6822. this.con2326.Dock = System.Windows.Forms.DockStyle.Fill;
  6823. this.con2326.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6824. this.con2326.Location = new System.Drawing.Point(1881, 294);
  6825. this.con2326.Margin = new System.Windows.Forms.Padding(0);
  6826. this.con2326.Name = "con2326";
  6827. this.myTableLayoutPanel1.SetRowSpan(this.con2326, 2);
  6828. this.con2326.Size = new System.Drawing.Size(57, 28);
  6829. this.con2326.TabIndex = 750;
  6830. //
  6831. // con2141
  6832. //
  6833. this.con2141.BackColor = System.Drawing.Color.Transparent;
  6834. this.myTableLayoutPanel1.SetColumnSpan(this.con2141, 3);
  6835. this.con2141.Dock = System.Windows.Forms.DockStyle.Fill;
  6836. this.con2141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6837. this.con2141.Location = new System.Drawing.Point(1995, 294);
  6838. this.con2141.Margin = new System.Windows.Forms.Padding(0);
  6839. this.con2141.Name = "con2141";
  6840. this.myTableLayoutPanel1.SetRowSpan(this.con2141, 2);
  6841. this.con2141.Size = new System.Drawing.Size(57, 28);
  6842. this.con2141.TabIndex = 757;
  6843. //
  6844. // panel1
  6845. //
  6846. this.myTableLayoutPanel1.SetColumnSpan(this.panel1, 3);
  6847. this.panel1.Controls.Add(this.con2140);
  6848. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  6849. this.panel1.Location = new System.Drawing.Point(1941, 297);
  6850. this.panel1.Name = "panel1";
  6851. this.myTableLayoutPanel1.SetRowSpan(this.panel1, 3);
  6852. this.panel1.Size = new System.Drawing.Size(51, 36);
  6853. this.panel1.TabIndex = 871;
  6854. //
  6855. // con2140
  6856. //
  6857. this.con2140.Dock = System.Windows.Forms.DockStyle.Fill;
  6858. this.con2140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6859. this.con2140.Location = new System.Drawing.Point(0, 0);
  6860. this.con2140.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  6861. this.con2140.Name = "con2140";
  6862. this.con2140.Size = new System.Drawing.Size(51, 36);
  6863. this.con2140.TabIndex = 756;
  6864. //
  6865. // panel12
  6866. //
  6867. this.myTableLayoutPanel1.SetColumnSpan(this.panel12, 3);
  6868. this.panel12.Controls.Add(this.con2143);
  6869. this.panel12.Dock = System.Windows.Forms.DockStyle.Fill;
  6870. this.panel12.Location = new System.Drawing.Point(1941, 339);
  6871. this.panel12.Name = "panel12";
  6872. this.myTableLayoutPanel1.SetRowSpan(this.panel12, 3);
  6873. this.panel12.Size = new System.Drawing.Size(51, 35);
  6874. this.panel12.TabIndex = 881;
  6875. //
  6876. // con2143
  6877. //
  6878. this.con2143.Dock = System.Windows.Forms.DockStyle.Fill;
  6879. this.con2143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6880. this.con2143.Location = new System.Drawing.Point(0, 0);
  6881. this.con2143.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  6882. this.con2143.Name = "con2143";
  6883. this.con2143.Size = new System.Drawing.Size(51, 35);
  6884. this.con2143.TabIndex = 755;
  6885. //
  6886. // con2274
  6887. //
  6888. this.con2274.BackColor = System.Drawing.Color.Transparent;
  6889. this.myTableLayoutPanel1.SetColumnSpan(this.con2274, 3);
  6890. this.con2274.Dock = System.Windows.Forms.DockStyle.Fill;
  6891. this.con2274.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6892. this.con2274.Location = new System.Drawing.Point(2052, 294);
  6893. this.con2274.Margin = new System.Windows.Forms.Padding(0);
  6894. this.con2274.Name = "con2274";
  6895. this.myTableLayoutPanel1.SetRowSpan(this.con2274, 2);
  6896. this.con2274.Size = new System.Drawing.Size(57, 28);
  6897. this.con2274.TabIndex = 758;
  6898. //
  6899. // con2123
  6900. //
  6901. this.myTableLayoutPanel1.SetColumnSpan(this.con2123, 3);
  6902. this.con2123.Dock = System.Windows.Forms.DockStyle.Fill;
  6903. this.con2123.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6904. this.con2123.Location = new System.Drawing.Point(1767, 490);
  6905. this.con2123.Margin = new System.Windows.Forms.Padding(0);
  6906. this.con2123.Name = "con2123";
  6907. this.myTableLayoutPanel1.SetRowSpan(this.con2123, 2);
  6908. this.con2123.Size = new System.Drawing.Size(57, 28);
  6909. this.con2123.TabIndex = 742;
  6910. //
  6911. // label4
  6912. //
  6913. this.label4.AutoSize = true;
  6914. this.label4.BackColor = System.Drawing.Color.Lime;
  6915. this.myTableLayoutPanel1.SetColumnSpan(this.label4, 3);
  6916. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  6917. this.label4.Font = new System.Drawing.Font("宋体", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6918. this.label4.Location = new System.Drawing.Point(1771, 518);
  6919. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6920. this.label4.Name = "label4";
  6921. this.myTableLayoutPanel1.SetRowSpan(this.label4, 2);
  6922. this.label4.Size = new System.Drawing.Size(49, 28);
  6923. this.label4.TabIndex = 744;
  6924. this.label4.Text = "上";
  6925. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  6926. //
  6927. // con2125
  6928. //
  6929. this.con2125.BackColor = System.Drawing.Color.Transparent;
  6930. this.myTableLayoutPanel1.SetColumnSpan(this.con2125, 3);
  6931. this.con2125.Dock = System.Windows.Forms.DockStyle.Fill;
  6932. this.con2125.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6933. this.con2125.Location = new System.Drawing.Point(1767, 546);
  6934. this.con2125.Margin = new System.Windows.Forms.Padding(0);
  6935. this.con2125.Name = "con2125";
  6936. this.myTableLayoutPanel1.SetRowSpan(this.con2125, 2);
  6937. this.con2125.Size = new System.Drawing.Size(57, 28);
  6938. this.con2125.TabIndex = 864;
  6939. //
  6940. // con2126
  6941. //
  6942. this.con2126.BackColor = System.Drawing.Color.Transparent;
  6943. this.myTableLayoutPanel1.SetColumnSpan(this.con2126, 3);
  6944. this.con2126.Dock = System.Windows.Forms.DockStyle.Fill;
  6945. this.con2126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6946. this.con2126.Location = new System.Drawing.Point(1824, 546);
  6947. this.con2126.Margin = new System.Windows.Forms.Padding(0);
  6948. this.con2126.Name = "con2126";
  6949. this.myTableLayoutPanel1.SetRowSpan(this.con2126, 2);
  6950. this.con2126.Size = new System.Drawing.Size(57, 28);
  6951. this.con2126.TabIndex = 740;
  6952. //
  6953. // con2327
  6954. //
  6955. this.con2327.BackColor = System.Drawing.Color.Transparent;
  6956. this.myTableLayoutPanel1.SetColumnSpan(this.con2327, 3);
  6957. this.con2327.Dock = System.Windows.Forms.DockStyle.Fill;
  6958. this.con2327.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6959. this.con2327.Location = new System.Drawing.Point(1881, 546);
  6960. this.con2327.Margin = new System.Windows.Forms.Padding(0);
  6961. this.con2327.Name = "con2327";
  6962. this.myTableLayoutPanel1.SetRowSpan(this.con2327, 2);
  6963. this.con2327.Size = new System.Drawing.Size(57, 28);
  6964. this.con2327.TabIndex = 741;
  6965. //
  6966. // con2129
  6967. //
  6968. this.myTableLayoutPanel1.SetColumnSpan(this.con2129, 4);
  6969. this.con2129.Dock = System.Windows.Forms.DockStyle.Fill;
  6970. this.con2129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6971. this.con2129.Location = new System.Drawing.Point(1938, 518);
  6972. this.con2129.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  6973. this.con2129.Name = "con2129";
  6974. this.myTableLayoutPanel1.SetRowSpan(this.con2129, 2);
  6975. this.con2129.Size = new System.Drawing.Size(55, 28);
  6976. this.con2129.TabIndex = 747;
  6977. //
  6978. // con2128
  6979. //
  6980. this.myTableLayoutPanel1.SetColumnSpan(this.con2128, 4);
  6981. this.con2128.Dock = System.Windows.Forms.DockStyle.Fill;
  6982. this.con2128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6983. this.con2128.Location = new System.Drawing.Point(1938, 546);
  6984. this.con2128.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  6985. this.con2128.Name = "con2128";
  6986. this.myTableLayoutPanel1.SetRowSpan(this.con2128, 2);
  6987. this.con2128.Size = new System.Drawing.Size(55, 28);
  6988. this.con2128.TabIndex = 746;
  6989. //
  6990. // con2131
  6991. //
  6992. this.myTableLayoutPanel1.SetColumnSpan(this.con2131, 4);
  6993. this.con2131.Dock = System.Windows.Forms.DockStyle.Fill;
  6994. this.con2131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6995. this.con2131.Location = new System.Drawing.Point(1938, 574);
  6996. this.con2131.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  6997. this.con2131.Name = "con2131";
  6998. this.myTableLayoutPanel1.SetRowSpan(this.con2131, 2);
  6999. this.con2131.Size = new System.Drawing.Size(55, 28);
  7000. this.con2131.TabIndex = 745;
  7001. //
  7002. // con2273
  7003. //
  7004. this.myTableLayoutPanel1.SetColumnSpan(this.con2273, 4);
  7005. this.con2273.Dock = System.Windows.Forms.DockStyle.Fill;
  7006. this.con2273.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7007. this.con2273.Location = new System.Drawing.Point(1938, 490);
  7008. this.con2273.Margin = new System.Windows.Forms.Padding(0, 0, 21, 0);
  7009. this.con2273.Name = "con2273";
  7010. this.myTableLayoutPanel1.SetRowSpan(this.con2273, 2);
  7011. this.con2273.Size = new System.Drawing.Size(55, 28);
  7012. this.con2273.TabIndex = 748;
  7013. //
  7014. // tableCellLabel32
  7015. //
  7016. this.tableCellLabel32.BackColor = System.Drawing.Color.Transparent;
  7017. this.tableCellLabel32.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel32.BackgroundImage")));
  7018. this.tableCellLabel32.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7019. this.tableCellLabel32.Dock = System.Windows.Forms.DockStyle.Fill;
  7020. this.tableCellLabel32.Location = new System.Drawing.Point(1729, 602);
  7021. this.tableCellLabel32.Margin = new System.Windows.Forms.Padding(0);
  7022. this.tableCellLabel32.Name = "tableCellLabel32";
  7023. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel32, 5);
  7024. this.tableCellLabel32.Size = new System.Drawing.Size(19, 70);
  7025. this.tableCellLabel32.TabIndex = 521;
  7026. //
  7027. // conrgv4
  7028. //
  7029. this.conrgv4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  7030. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv4, 5);
  7031. this.conrgv4.Dock = System.Windows.Forms.DockStyle.Fill;
  7032. this.conrgv4.Location = new System.Drawing.Point(1691, 672);
  7033. this.conrgv4.Margin = new System.Windows.Forms.Padding(0);
  7034. this.conrgv4.Name = "conrgv4";
  7035. this.myTableLayoutPanel1.SetRowSpan(this.conrgv4, 2);
  7036. this.conrgv4.Size = new System.Drawing.Size(95, 28);
  7037. this.conrgv4.TabIndex = 510;
  7038. //
  7039. // tableCellLabel9
  7040. //
  7041. this.tableCellLabel9.BackColor = System.Drawing.Color.Transparent;
  7042. this.tableCellLabel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel9.BackgroundImage")));
  7043. this.tableCellLabel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7044. this.tableCellLabel9.Dock = System.Windows.Forms.DockStyle.Fill;
  7045. this.tableCellLabel9.Location = new System.Drawing.Point(1729, 700);
  7046. this.tableCellLabel9.Margin = new System.Windows.Forms.Padding(0);
  7047. this.tableCellLabel9.Name = "tableCellLabel9";
  7048. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel9, 7);
  7049. this.tableCellLabel9.Size = new System.Drawing.Size(19, 98);
  7050. this.tableCellLabel9.TabIndex = 717;
  7051. //
  7052. // con2114
  7053. //
  7054. this.myTableLayoutPanel1.SetColumnSpan(this.con2114, 3);
  7055. this.con2114.Dock = System.Windows.Forms.DockStyle.Fill;
  7056. this.con2114.Location = new System.Drawing.Point(1748, 700);
  7057. this.con2114.Margin = new System.Windows.Forms.Padding(0);
  7058. this.con2114.Name = "con2114";
  7059. this.myTableLayoutPanel1.SetRowSpan(this.con2114, 2);
  7060. this.con2114.Size = new System.Drawing.Size(57, 28);
  7061. this.con2114.TabIndex = 504;
  7062. this.con2114.Load += new System.EventHandler(this.con2114_Load);
  7063. //
  7064. // label34
  7065. //
  7066. this.label34.AutoSize = true;
  7067. this.label34.BackColor = System.Drawing.Color.Lime;
  7068. this.myTableLayoutPanel1.SetColumnSpan(this.label34, 3);
  7069. this.label34.Dock = System.Windows.Forms.DockStyle.Fill;
  7070. this.label34.Location = new System.Drawing.Point(1752, 728);
  7071. this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7072. this.label34.Name = "label34";
  7073. this.myTableLayoutPanel1.SetRowSpan(this.label34, 2);
  7074. this.label34.Size = new System.Drawing.Size(49, 28);
  7075. this.label34.TabIndex = 509;
  7076. this.label34.Text = "上";
  7077. this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7078. //
  7079. // con2116
  7080. //
  7081. this.con2116.BackColor = System.Drawing.Color.Transparent;
  7082. this.myTableLayoutPanel1.SetColumnSpan(this.con2116, 3);
  7083. this.con2116.Dock = System.Windows.Forms.DockStyle.Fill;
  7084. this.con2116.Location = new System.Drawing.Point(1748, 756);
  7085. this.con2116.Margin = new System.Windows.Forms.Padding(0);
  7086. this.con2116.Name = "con2116";
  7087. this.myTableLayoutPanel1.SetRowSpan(this.con2116, 2);
  7088. this.con2116.Size = new System.Drawing.Size(57, 28);
  7089. this.con2116.TabIndex = 863;
  7090. //
  7091. // con2117
  7092. //
  7093. this.con2117.BackColor = System.Drawing.Color.Transparent;
  7094. this.myTableLayoutPanel1.SetColumnSpan(this.con2117, 3);
  7095. this.con2117.Dock = System.Windows.Forms.DockStyle.Fill;
  7096. this.con2117.Location = new System.Drawing.Point(1805, 756);
  7097. this.con2117.Margin = new System.Windows.Forms.Padding(0);
  7098. this.con2117.Name = "con2117";
  7099. this.myTableLayoutPanel1.SetRowSpan(this.con2117, 2);
  7100. this.con2117.Size = new System.Drawing.Size(57, 28);
  7101. this.con2117.TabIndex = 462;
  7102. //
  7103. // con2328
  7104. //
  7105. this.con2328.BackColor = System.Drawing.Color.Transparent;
  7106. this.myTableLayoutPanel1.SetColumnSpan(this.con2328, 3);
  7107. this.con2328.Dock = System.Windows.Forms.DockStyle.Fill;
  7108. this.con2328.Location = new System.Drawing.Point(1862, 756);
  7109. this.con2328.Margin = new System.Windows.Forms.Padding(0);
  7110. this.con2328.Name = "con2328";
  7111. this.myTableLayoutPanel1.SetRowSpan(this.con2328, 2);
  7112. this.con2328.Size = new System.Drawing.Size(57, 28);
  7113. this.con2328.TabIndex = 461;
  7114. //
  7115. // con2120
  7116. //
  7117. this.myTableLayoutPanel1.SetColumnSpan(this.con2120, 4);
  7118. this.con2120.Dock = System.Windows.Forms.DockStyle.Fill;
  7119. this.con2120.Location = new System.Drawing.Point(1919, 714);
  7120. this.con2120.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7121. this.con2120.Name = "con2120";
  7122. this.myTableLayoutPanel1.SetRowSpan(this.con2120, 2);
  7123. this.con2120.Size = new System.Drawing.Size(61, 28);
  7124. this.con2120.TabIndex = 721;
  7125. //
  7126. // con2119
  7127. //
  7128. this.myTableLayoutPanel1.SetColumnSpan(this.con2119, 4);
  7129. this.con2119.Dock = System.Windows.Forms.DockStyle.Fill;
  7130. this.con2119.Location = new System.Drawing.Point(1919, 742);
  7131. this.con2119.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7132. this.con2119.Name = "con2119";
  7133. this.myTableLayoutPanel1.SetRowSpan(this.con2119, 2);
  7134. this.con2119.Size = new System.Drawing.Size(61, 28);
  7135. this.con2119.TabIndex = 720;
  7136. //
  7137. // con2122
  7138. //
  7139. this.myTableLayoutPanel1.SetColumnSpan(this.con2122, 4);
  7140. this.con2122.Dock = System.Windows.Forms.DockStyle.Fill;
  7141. this.con2122.Location = new System.Drawing.Point(1919, 770);
  7142. this.con2122.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7143. this.con2122.Name = "con2122";
  7144. this.myTableLayoutPanel1.SetRowSpan(this.con2122, 2);
  7145. this.con2122.Size = new System.Drawing.Size(61, 28);
  7146. this.con2122.TabIndex = 719;
  7147. //
  7148. // con2272
  7149. //
  7150. this.myTableLayoutPanel1.SetColumnSpan(this.con2272, 4);
  7151. this.con2272.Dock = System.Windows.Forms.DockStyle.Fill;
  7152. this.con2272.Location = new System.Drawing.Point(1919, 686);
  7153. this.con2272.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7154. this.con2272.Name = "con2272";
  7155. this.myTableLayoutPanel1.SetRowSpan(this.con2272, 2);
  7156. this.con2272.Size = new System.Drawing.Size(61, 28);
  7157. this.con2272.TabIndex = 718;
  7158. //
  7159. // conrgv3
  7160. //
  7161. this.conrgv3.BackColor = System.Drawing.Color.Transparent;
  7162. this.myTableLayoutPanel1.SetColumnSpan(this.conrgv3, 3);
  7163. this.conrgv3.Dock = System.Windows.Forms.DockStyle.Fill;
  7164. this.conrgv3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7165. this.conrgv3.Location = new System.Drawing.Point(1007, 70);
  7166. this.conrgv3.Margin = new System.Windows.Forms.Padding(0);
  7167. this.conrgv3.Name = "conrgv3";
  7168. this.myTableLayoutPanel1.SetRowSpan(this.conrgv3, 2);
  7169. this.conrgv3.Size = new System.Drawing.Size(57, 28);
  7170. this.conrgv3.TabIndex = 792;
  7171. //
  7172. // tableCellLabel2
  7173. //
  7174. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  7175. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  7176. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7177. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 13);
  7178. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  7179. this.tableCellLabel2.Location = new System.Drawing.Point(760, 70);
  7180. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  7181. this.tableCellLabel2.Name = "tableCellLabel2";
  7182. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel2, 2);
  7183. this.tableCellLabel2.Size = new System.Drawing.Size(247, 28);
  7184. this.tableCellLabel2.TabIndex = 790;
  7185. //
  7186. // con2202
  7187. //
  7188. this.myTableLayoutPanel1.SetColumnSpan(this.con2202, 3);
  7189. this.con2202.Dock = System.Windows.Forms.DockStyle.Fill;
  7190. this.con2202.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7191. this.con2202.Location = new System.Drawing.Point(931, 42);
  7192. this.con2202.Margin = new System.Windows.Forms.Padding(0);
  7193. this.con2202.Name = "con2202";
  7194. this.myTableLayoutPanel1.SetRowSpan(this.con2202, 2);
  7195. this.con2202.Size = new System.Drawing.Size(57, 28);
  7196. this.con2202.TabIndex = 856;
  7197. //
  7198. // con2256
  7199. //
  7200. this.myTableLayoutPanel1.SetColumnSpan(this.con2256, 3);
  7201. this.con2256.Dock = System.Windows.Forms.DockStyle.Fill;
  7202. this.con2256.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7203. this.con2256.Location = new System.Drawing.Point(1463, 322);
  7204. this.con2256.Margin = new System.Windows.Forms.Padding(0);
  7205. this.con2256.Name = "con2256";
  7206. this.myTableLayoutPanel1.SetRowSpan(this.con2256, 2);
  7207. this.con2256.Size = new System.Drawing.Size(57, 28);
  7208. this.con2256.TabIndex = 813;
  7209. //
  7210. // con2255
  7211. //
  7212. this.myTableLayoutPanel1.SetColumnSpan(this.con2255, 3);
  7213. this.con2255.Dock = System.Windows.Forms.DockStyle.Fill;
  7214. this.con2255.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7215. this.con2255.Location = new System.Drawing.Point(1387, 322);
  7216. this.con2255.Margin = new System.Windows.Forms.Padding(0);
  7217. this.con2255.Name = "con2255";
  7218. this.myTableLayoutPanel1.SetRowSpan(this.con2255, 2);
  7219. this.con2255.Size = new System.Drawing.Size(57, 28);
  7220. this.con2255.TabIndex = 808;
  7221. //
  7222. // con2254
  7223. //
  7224. this.myTableLayoutPanel1.SetColumnSpan(this.con2254, 3);
  7225. this.con2254.Dock = System.Windows.Forms.DockStyle.Fill;
  7226. this.con2254.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7227. this.con2254.Location = new System.Drawing.Point(1292, 322);
  7228. this.con2254.Margin = new System.Windows.Forms.Padding(0);
  7229. this.con2254.Name = "con2254";
  7230. this.myTableLayoutPanel1.SetRowSpan(this.con2254, 2);
  7231. this.con2254.Size = new System.Drawing.Size(57, 28);
  7232. this.con2254.TabIndex = 810;
  7233. //
  7234. // con2253
  7235. //
  7236. this.myTableLayoutPanel1.SetColumnSpan(this.con2253, 3);
  7237. this.con2253.Dock = System.Windows.Forms.DockStyle.Fill;
  7238. this.con2253.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7239. this.con2253.Location = new System.Drawing.Point(1216, 322);
  7240. this.con2253.Margin = new System.Windows.Forms.Padding(0);
  7241. this.con2253.Name = "con2253";
  7242. this.myTableLayoutPanel1.SetRowSpan(this.con2253, 2);
  7243. this.con2253.Size = new System.Drawing.Size(57, 28);
  7244. this.con2253.TabIndex = 811;
  7245. //
  7246. // con2252
  7247. //
  7248. this.myTableLayoutPanel1.SetColumnSpan(this.con2252, 3);
  7249. this.con2252.Dock = System.Windows.Forms.DockStyle.Fill;
  7250. this.con2252.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7251. this.con2252.Location = new System.Drawing.Point(1121, 322);
  7252. this.con2252.Margin = new System.Windows.Forms.Padding(0);
  7253. this.con2252.Name = "con2252";
  7254. this.myTableLayoutPanel1.SetRowSpan(this.con2252, 2);
  7255. this.con2252.Size = new System.Drawing.Size(57, 28);
  7256. this.con2252.TabIndex = 812;
  7257. //
  7258. // con2251
  7259. //
  7260. this.myTableLayoutPanel1.SetColumnSpan(this.con2251, 3);
  7261. this.con2251.Dock = System.Windows.Forms.DockStyle.Fill;
  7262. this.con2251.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7263. this.con2251.Location = new System.Drawing.Point(1045, 322);
  7264. this.con2251.Margin = new System.Windows.Forms.Padding(0);
  7265. this.con2251.Name = "con2251";
  7266. this.myTableLayoutPanel1.SetRowSpan(this.con2251, 2);
  7267. this.con2251.Size = new System.Drawing.Size(57, 28);
  7268. this.con2251.TabIndex = 809;
  7269. //
  7270. // locationPos41
  7271. //
  7272. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos41, 3);
  7273. this.locationPos41.Dock = System.Windows.Forms.DockStyle.Fill;
  7274. this.locationPos41.Location = new System.Drawing.Point(1463, 350);
  7275. this.locationPos41.Margin = new System.Windows.Forms.Padding(0);
  7276. this.locationPos41.Name = "locationPos41";
  7277. this.myTableLayoutPanel1.SetRowSpan(this.locationPos41, 16);
  7278. this.locationPos41.Size = new System.Drawing.Size(57, 224);
  7279. this.locationPos41.TabIndex = 21;
  7280. //
  7281. // locationPos35
  7282. //
  7283. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos35, 3);
  7284. this.locationPos35.Dock = System.Windows.Forms.DockStyle.Fill;
  7285. this.locationPos35.Location = new System.Drawing.Point(1387, 350);
  7286. this.locationPos35.Margin = new System.Windows.Forms.Padding(0);
  7287. this.locationPos35.Name = "locationPos35";
  7288. this.myTableLayoutPanel1.SetRowSpan(this.locationPos35, 16);
  7289. this.locationPos35.Size = new System.Drawing.Size(57, 224);
  7290. this.locationPos35.TabIndex = 683;
  7291. //
  7292. // srm11
  7293. //
  7294. this.srm11.BackColor = System.Drawing.Color.Transparent;
  7295. this.srm11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm11.BackgroundImage")));
  7296. this.srm11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7297. this.srm11.Dock = System.Windows.Forms.DockStyle.Fill;
  7298. this.srm11.Location = new System.Drawing.Point(1444, 350);
  7299. this.srm11.Margin = new System.Windows.Forms.Padding(0);
  7300. this.srm11.Name = "srm11";
  7301. this.myTableLayoutPanel1.SetRowSpan(this.srm11, 18);
  7302. this.srm11.Size = new System.Drawing.Size(19, 252);
  7303. this.srm11.TabIndex = 437;
  7304. //
  7305. // locationPos40
  7306. //
  7307. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos40, 3);
  7308. this.locationPos40.Dock = System.Windows.Forms.DockStyle.Fill;
  7309. this.locationPos40.Location = new System.Drawing.Point(1292, 350);
  7310. this.locationPos40.Margin = new System.Windows.Forms.Padding(0);
  7311. this.locationPos40.Name = "locationPos40";
  7312. this.myTableLayoutPanel1.SetRowSpan(this.locationPos40, 16);
  7313. this.locationPos40.Size = new System.Drawing.Size(57, 224);
  7314. this.locationPos40.TabIndex = 20;
  7315. //
  7316. // tableCellLabel15
  7317. //
  7318. this.tableCellLabel15.BackColor = System.Drawing.Color.Transparent;
  7319. this.tableCellLabel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel15.BackgroundImage")));
  7320. this.tableCellLabel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7321. this.tableCellLabel15.Dock = System.Windows.Forms.DockStyle.Fill;
  7322. this.tableCellLabel15.Location = new System.Drawing.Point(1273, 350);
  7323. this.tableCellLabel15.Margin = new System.Windows.Forms.Padding(0);
  7324. this.tableCellLabel15.Name = "tableCellLabel15";
  7325. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel15, 18);
  7326. this.tableCellLabel15.Size = new System.Drawing.Size(19, 252);
  7327. this.tableCellLabel15.TabIndex = 682;
  7328. //
  7329. // locationPos39
  7330. //
  7331. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos39, 3);
  7332. this.locationPos39.Dock = System.Windows.Forms.DockStyle.Fill;
  7333. this.locationPos39.Location = new System.Drawing.Point(1216, 350);
  7334. this.locationPos39.Margin = new System.Windows.Forms.Padding(0);
  7335. this.locationPos39.Name = "locationPos39";
  7336. this.myTableLayoutPanel1.SetRowSpan(this.locationPos39, 16);
  7337. this.locationPos39.Size = new System.Drawing.Size(57, 224);
  7338. this.locationPos39.TabIndex = 19;
  7339. //
  7340. // tableCellLabel8
  7341. //
  7342. this.tableCellLabel8.BackColor = System.Drawing.Color.Transparent;
  7343. this.tableCellLabel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel8.BackgroundImage")));
  7344. this.tableCellLabel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7345. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel8, 8);
  7346. this.tableCellLabel8.Dock = System.Windows.Forms.DockStyle.Fill;
  7347. this.tableCellLabel8.Location = new System.Drawing.Point(1121, 588);
  7348. this.tableCellLabel8.Margin = new System.Windows.Forms.Padding(0);
  7349. this.tableCellLabel8.Name = "tableCellLabel8";
  7350. this.tableCellLabel8.Size = new System.Drawing.Size(152, 14);
  7351. this.tableCellLabel8.TabIndex = 777;
  7352. //
  7353. // tableCellLabel6
  7354. //
  7355. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  7356. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  7357. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  7358. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel6, 8);
  7359. this.tableCellLabel6.Dock = System.Windows.Forms.DockStyle.Fill;
  7360. this.tableCellLabel6.Location = new System.Drawing.Point(1292, 588);
  7361. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  7362. this.tableCellLabel6.Name = "tableCellLabel6";
  7363. this.tableCellLabel6.Size = new System.Drawing.Size(152, 14);
  7364. this.tableCellLabel6.TabIndex = 778;
  7365. //
  7366. // con2307
  7367. //
  7368. this.con2307.BackColor = System.Drawing.Color.Transparent;
  7369. this.myTableLayoutPanel1.SetColumnSpan(this.con2307, 3);
  7370. this.con2307.Dock = System.Windows.Forms.DockStyle.Fill;
  7371. this.con2307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7372. this.con2307.Location = new System.Drawing.Point(114, 56);
  7373. this.con2307.Margin = new System.Windows.Forms.Padding(0);
  7374. this.con2307.Name = "con2307";
  7375. this.myTableLayoutPanel1.SetRowSpan(this.con2307, 2);
  7376. this.con2307.Size = new System.Drawing.Size(57, 28);
  7377. this.con2307.TabIndex = 631;
  7378. //
  7379. // con2003
  7380. //
  7381. this.con2003.BackColor = System.Drawing.Color.Transparent;
  7382. this.myTableLayoutPanel1.SetColumnSpan(this.con2003, 3);
  7383. this.con2003.Dock = System.Windows.Forms.DockStyle.Fill;
  7384. this.con2003.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7385. this.con2003.Location = new System.Drawing.Point(228, 56);
  7386. this.con2003.Margin = new System.Windows.Forms.Padding(0);
  7387. this.con2003.Name = "con2003";
  7388. this.myTableLayoutPanel1.SetRowSpan(this.con2003, 2);
  7389. this.con2003.Size = new System.Drawing.Size(57, 28);
  7390. this.con2003.TabIndex = 629;
  7391. //
  7392. // con2311
  7393. //
  7394. this.myTableLayoutPanel1.SetColumnSpan(this.con2311, 4);
  7395. this.con2311.Dock = System.Windows.Forms.DockStyle.Fill;
  7396. this.con2311.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7397. this.con2311.Location = new System.Drawing.Point(323, 28);
  7398. this.con2311.Margin = new System.Windows.Forms.Padding(0, 0, 12, 0);
  7399. this.con2311.Name = "con2311";
  7400. this.myTableLayoutPanel1.SetRowSpan(this.con2311, 2);
  7401. this.con2311.Size = new System.Drawing.Size(64, 28);
  7402. this.con2311.TabIndex = 646;
  7403. //
  7404. // con2312
  7405. //
  7406. this.myTableLayoutPanel1.SetColumnSpan(this.con2312, 4);
  7407. this.con2312.Dock = System.Windows.Forms.DockStyle.Fill;
  7408. this.con2312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7409. this.con2312.Location = new System.Drawing.Point(323, 56);
  7410. this.con2312.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7411. this.con2312.Name = "con2312";
  7412. this.myTableLayoutPanel1.SetRowSpan(this.con2312, 2);
  7413. this.con2312.Size = new System.Drawing.Size(61, 28);
  7414. this.con2312.TabIndex = 642;
  7415. //
  7416. // con2313
  7417. //
  7418. this.myTableLayoutPanel1.SetColumnSpan(this.con2313, 4);
  7419. this.con2313.Dock = System.Windows.Forms.DockStyle.Fill;
  7420. this.con2313.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7421. this.con2313.Location = new System.Drawing.Point(323, 84);
  7422. this.con2313.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7423. this.con2313.Name = "con2313";
  7424. this.myTableLayoutPanel1.SetRowSpan(this.con2313, 2);
  7425. this.con2313.Size = new System.Drawing.Size(61, 25);
  7426. this.con2313.TabIndex = 641;
  7427. //
  7428. // con2314
  7429. //
  7430. this.myTableLayoutPanel1.SetColumnSpan(this.con2314, 4);
  7431. this.con2314.Dock = System.Windows.Forms.DockStyle.Fill;
  7432. this.con2314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7433. this.con2314.Location = new System.Drawing.Point(323, 109);
  7434. this.con2314.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7435. this.con2314.Name = "con2314";
  7436. this.myTableLayoutPanel1.SetRowSpan(this.con2314, 2);
  7437. this.con2314.Size = new System.Drawing.Size(61, 31);
  7438. this.con2314.TabIndex = 643;
  7439. //
  7440. // con2315
  7441. //
  7442. this.myTableLayoutPanel1.SetColumnSpan(this.con2315, 4);
  7443. this.con2315.Dock = System.Windows.Forms.DockStyle.Fill;
  7444. this.con2315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7445. this.con2315.Location = new System.Drawing.Point(323, 140);
  7446. this.con2315.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7447. this.con2315.Name = "con2315";
  7448. this.myTableLayoutPanel1.SetRowSpan(this.con2315, 2);
  7449. this.con2315.Size = new System.Drawing.Size(61, 28);
  7450. this.con2315.TabIndex = 644;
  7451. //
  7452. // con2316
  7453. //
  7454. this.myTableLayoutPanel1.SetColumnSpan(this.con2316, 4);
  7455. this.con2316.Dock = System.Windows.Forms.DockStyle.Fill;
  7456. this.con2316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7457. this.con2316.Location = new System.Drawing.Point(323, 168);
  7458. this.con2316.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7459. this.con2316.Name = "con2316";
  7460. this.myTableLayoutPanel1.SetRowSpan(this.con2316, 2);
  7461. this.con2316.Size = new System.Drawing.Size(61, 28);
  7462. this.con2316.TabIndex = 640;
  7463. //
  7464. // con2317
  7465. //
  7466. this.myTableLayoutPanel1.SetColumnSpan(this.con2317, 4);
  7467. this.con2317.Dock = System.Windows.Forms.DockStyle.Fill;
  7468. this.con2317.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7469. this.con2317.Location = new System.Drawing.Point(323, 196);
  7470. this.con2317.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7471. this.con2317.Name = "con2317";
  7472. this.myTableLayoutPanel1.SetRowSpan(this.con2317, 2);
  7473. this.con2317.Size = new System.Drawing.Size(61, 28);
  7474. this.con2317.TabIndex = 645;
  7475. //
  7476. // con2318
  7477. //
  7478. this.myTableLayoutPanel1.SetColumnSpan(this.con2318, 4);
  7479. this.con2318.Dock = System.Windows.Forms.DockStyle.Fill;
  7480. this.con2318.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7481. this.con2318.Location = new System.Drawing.Point(323, 224);
  7482. this.con2318.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7483. this.con2318.Name = "con2318";
  7484. this.myTableLayoutPanel1.SetRowSpan(this.con2318, 2);
  7485. this.con2318.Size = new System.Drawing.Size(61, 28);
  7486. this.con2318.TabIndex = 637;
  7487. //
  7488. // con2319
  7489. //
  7490. this.myTableLayoutPanel1.SetColumnSpan(this.con2319, 4);
  7491. this.con2319.Dock = System.Windows.Forms.DockStyle.Fill;
  7492. this.con2319.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7493. this.con2319.Location = new System.Drawing.Point(323, 252);
  7494. this.con2319.Margin = new System.Windows.Forms.Padding(0, 0, 15, 0);
  7495. this.con2319.Name = "con2319";
  7496. this.myTableLayoutPanel1.SetRowSpan(this.con2319, 2);
  7497. this.con2319.Size = new System.Drawing.Size(61, 28);
  7498. this.con2319.TabIndex = 639;
  7499. //
  7500. // con2320
  7501. //
  7502. this.myTableLayoutPanel1.SetColumnSpan(this.con2320, 4);
  7503. this.con2320.Dock = System.Windows.Forms.DockStyle.Fill;
  7504. this.con2320.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7505. this.con2320.Location = new System.Drawing.Point(323, 280);
  7506. this.con2320.Margin = new System.Windows.Forms.Padding(0, 0, 12, 0);
  7507. this.con2320.Name = "con2320";
  7508. this.myTableLayoutPanel1.SetRowSpan(this.con2320, 2);
  7509. this.con2320.Size = new System.Drawing.Size(64, 28);
  7510. this.con2320.TabIndex = 638;
  7511. //
  7512. // Frm_YongGuanMontior
  7513. //
  7514. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  7515. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  7516. this.ClientSize = new System.Drawing.Size(2164, 1266);
  7517. this.Controls.Add(this.tableLayoutPanel1);
  7518. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7519. this.Name = "Frm_YongGuanMontior";
  7520. this.Text = "Frm_YongGuanMontior";
  7521. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  7522. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  7523. this.tabControl1.ResumeLayout(false);
  7524. this.tabPage1.ResumeLayout(false);
  7525. this.pnlDDJ1.ResumeLayout(false);
  7526. this.pnlDDJ1.PerformLayout();
  7527. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  7528. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  7529. this.pnlDDJ2.ResumeLayout(false);
  7530. this.pnlDDJ2.PerformLayout();
  7531. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  7532. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  7533. this.pnlDDJ3.ResumeLayout(false);
  7534. this.pnlDDJ3.PerformLayout();
  7535. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  7536. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  7537. this.pnlDDJ4.ResumeLayout(false);
  7538. this.pnlDDJ4.PerformLayout();
  7539. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  7540. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  7541. this.myPanel1.ResumeLayout(false);
  7542. this.myPanel1.PerformLayout();
  7543. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  7544. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  7545. this.pnlRGV1089.ResumeLayout(false);
  7546. this.pnlRGV1089.PerformLayout();
  7547. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  7548. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  7549. this.pnlRGV1091.ResumeLayout(false);
  7550. this.pnlRGV1091.PerformLayout();
  7551. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  7552. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  7553. this.myPanel5.ResumeLayout(false);
  7554. this.myPanel5.PerformLayout();
  7555. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  7556. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  7557. this.myPanel11.ResumeLayout(false);
  7558. this.myPanel11.PerformLayout();
  7559. ((System.ComponentModel.ISupportInitialize)(this.GV5)).EndInit();
  7560. ((System.ComponentModel.ISupportInitialize)(this.pictureBox29)).EndInit();
  7561. this.myPanel2.ResumeLayout(false);
  7562. this.myPanel2.PerformLayout();
  7563. this.myPanel4.ResumeLayout(false);
  7564. this.myPanel4.PerformLayout();
  7565. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  7566. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  7567. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  7568. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  7569. this.pnlBottom.ResumeLayout(false);
  7570. this.tableLayoutPanel1.ResumeLayout(false);
  7571. this.myTableLayoutPanel1.ResumeLayout(false);
  7572. this.myTableLayoutPanel1.PerformLayout();
  7573. this.panel1.ResumeLayout(false);
  7574. this.panel12.ResumeLayout(false);
  7575. this.ResumeLayout(false);
  7576. }
  7577. #endregion
  7578. private System.Windows.Forms.TabControl tabControl1;
  7579. private System.Windows.Forms.TabPage tabPage1;
  7580. private MyConrols.MyPanel pnlDDJ1;
  7581. private System.Windows.Forms.Label lblInStatus1;
  7582. private System.Windows.Forms.Label lblOutStatus1;
  7583. private System.Windows.Forms.Label lblDDJWarning1;
  7584. public System.Windows.Forms.Label ddjPosTo1;
  7585. public System.Windows.Forms.Label ddjPosFrom1;
  7586. private System.Windows.Forms.Label label84;
  7587. private System.Windows.Forms.Label label85;
  7588. public System.Windows.Forms.Label ddjMode1;
  7589. public System.Windows.Forms.Label ddjOrdId1;
  7590. private System.Windows.Forms.Label label137;
  7591. public System.Windows.Forms.Label ddjOptType1;
  7592. private System.Windows.Forms.Label label139;
  7593. public System.Windows.Forms.Label ddjTotal_KM1;
  7594. private System.Windows.Forms.Label label13;
  7595. public System.Windows.Forms.Label ddjWorkTime1;
  7596. private System.Windows.Forms.Label label10;
  7597. public System.Windows.Forms.Label ddjStatus1;
  7598. public System.Windows.Forms.Label ddjPosCurr1;
  7599. private System.Windows.Forms.Label label5;
  7600. private System.Windows.Forms.Label label3;
  7601. private System.Windows.Forms.Label label2;
  7602. private System.Windows.Forms.Label lblsrm01;
  7603. public System.Windows.Forms.PictureBox G1;
  7604. public System.Windows.Forms.PictureBox R1;
  7605. private MyConrols.MyPanel pnlDDJ2;
  7606. private System.Windows.Forms.Label lblInStatus2;
  7607. private System.Windows.Forms.Label lblOutStatus2;
  7608. private System.Windows.Forms.Label lblDDJWarning2;
  7609. public System.Windows.Forms.Label ddjPosTo2;
  7610. public System.Windows.Forms.Label ddjPosFrom2;
  7611. private System.Windows.Forms.Label label15;
  7612. private System.Windows.Forms.Label label16;
  7613. public System.Windows.Forms.Label ddjMode2;
  7614. public System.Windows.Forms.Label ddjOrdId2;
  7615. private System.Windows.Forms.Label label22;
  7616. public System.Windows.Forms.Label ddjOptType2;
  7617. private System.Windows.Forms.Label label26;
  7618. public System.Windows.Forms.Label ddjTotal_KM2;
  7619. private System.Windows.Forms.Label label29;
  7620. public System.Windows.Forms.Label ddjWorkTime2;
  7621. private System.Windows.Forms.Label label32;
  7622. public System.Windows.Forms.Label ddjStatus2;
  7623. public System.Windows.Forms.Label ddjPosCurr2;
  7624. private System.Windows.Forms.Label label83;
  7625. private System.Windows.Forms.Label label86;
  7626. private System.Windows.Forms.Label label87;
  7627. private System.Windows.Forms.Label lblsrm02;
  7628. public System.Windows.Forms.PictureBox G2;
  7629. public System.Windows.Forms.PictureBox pictureBox6;
  7630. private MyConrols.MyPanel pnlDDJ3;
  7631. private System.Windows.Forms.Label lblInStatus3;
  7632. private System.Windows.Forms.Label lblOutStatus3;
  7633. private System.Windows.Forms.Label lblDDJWarning3;
  7634. public System.Windows.Forms.Label ddjPosTo3;
  7635. public System.Windows.Forms.Label ddjPosFrom3;
  7636. private System.Windows.Forms.Label label43;
  7637. private System.Windows.Forms.Label label51;
  7638. public System.Windows.Forms.Label ddjMode3;
  7639. public System.Windows.Forms.Label ddjOrdId3;
  7640. private System.Windows.Forms.Label label55;
  7641. public System.Windows.Forms.Label ddjOptType3;
  7642. private System.Windows.Forms.Label label57;
  7643. public System.Windows.Forms.Label ddjTotal_KM3;
  7644. private System.Windows.Forms.Label label59;
  7645. public System.Windows.Forms.Label ddjWorkTime3;
  7646. private System.Windows.Forms.Label label61;
  7647. public System.Windows.Forms.Label ddjStatus3;
  7648. public System.Windows.Forms.Label ddjPosCurr3;
  7649. private System.Windows.Forms.Label label64;
  7650. private System.Windows.Forms.Label label65;
  7651. private System.Windows.Forms.Label label66;
  7652. private System.Windows.Forms.Label lblsrm03;
  7653. public System.Windows.Forms.PictureBox G3;
  7654. public System.Windows.Forms.PictureBox pictureBox10;
  7655. private MyConrols.MyPanel pnlDDJ4;
  7656. private System.Windows.Forms.Label lblInStatus4;
  7657. private System.Windows.Forms.Label lblOutStatus4;
  7658. private System.Windows.Forms.Label lblDDJWarning4;
  7659. public System.Windows.Forms.Label ddjPosTo4;
  7660. public System.Windows.Forms.Label ddjPosFrom4;
  7661. private System.Windows.Forms.Label label71;
  7662. private System.Windows.Forms.Label label72;
  7663. public System.Windows.Forms.Label ddjMode4;
  7664. public System.Windows.Forms.Label ddjOrdId4;
  7665. private System.Windows.Forms.Label label75;
  7666. public System.Windows.Forms.Label ddjOptType4;
  7667. private System.Windows.Forms.Label label77;
  7668. public System.Windows.Forms.Label ddjTotal_KM4;
  7669. private System.Windows.Forms.Label label79;
  7670. public System.Windows.Forms.Label ddjWorkTime4;
  7671. private System.Windows.Forms.Label label81;
  7672. public System.Windows.Forms.Label ddjStatus4;
  7673. public System.Windows.Forms.Label ddjPosCurr4;
  7674. private System.Windows.Forms.Label label89;
  7675. private System.Windows.Forms.Label label90;
  7676. private System.Windows.Forms.Label label91;
  7677. private System.Windows.Forms.Label lblsrm04;
  7678. public System.Windows.Forms.PictureBox G4;
  7679. public System.Windows.Forms.PictureBox pictureBox14;
  7680. private MyConrols.MyPanel myPanel1;
  7681. private System.Windows.Forms.Label lblInStatus5;
  7682. private System.Windows.Forms.Label lblOutStatus5;
  7683. private System.Windows.Forms.Label label11;
  7684. public System.Windows.Forms.Label ddjPosTo5;
  7685. public System.Windows.Forms.Label ddjPosFrom5;
  7686. private System.Windows.Forms.Label label17;
  7687. private System.Windows.Forms.Label label18;
  7688. public System.Windows.Forms.Label ddjMode5;
  7689. public System.Windows.Forms.Label ddjOrdId5;
  7690. private System.Windows.Forms.Label label21;
  7691. public System.Windows.Forms.Label ddjOptType5;
  7692. private System.Windows.Forms.Label label24;
  7693. public System.Windows.Forms.Label ddjTotal_KM5;
  7694. private System.Windows.Forms.Label label27;
  7695. public System.Windows.Forms.Label ddjWorkTime5;
  7696. private System.Windows.Forms.Label label30;
  7697. public System.Windows.Forms.Label ddjStatus5;
  7698. public System.Windows.Forms.Label ddjPosCurr5;
  7699. private System.Windows.Forms.Label label36;
  7700. private System.Windows.Forms.Label label37;
  7701. private System.Windows.Forms.Label label38;
  7702. private System.Windows.Forms.Label lblsrm05;
  7703. public System.Windows.Forms.PictureBox G5;
  7704. public System.Windows.Forms.PictureBox pictureBox3;
  7705. private MyConrols.MyPanel pnlRGV1089;
  7706. private System.Windows.Forms.Label label7;
  7707. private System.Windows.Forms.Label label8;
  7708. private System.Windows.Forms.Label label9;
  7709. public System.Windows.Forms.Label rgvOptType2;
  7710. private System.Windows.Forms.Label label31;
  7711. private System.Windows.Forms.Label lblRGVWarning1089;
  7712. public System.Windows.Forms.Label rgvPosCurr2;
  7713. public System.Windows.Forms.Label rgvMode2;
  7714. public System.Windows.Forms.Label rgvOrdId2;
  7715. private System.Windows.Forms.Label label50;
  7716. public System.Windows.Forms.Label rgvPosTo2;
  7717. private System.Windows.Forms.Label label53;
  7718. public System.Windows.Forms.Label rgvPosFrom2;
  7719. public System.Windows.Forms.Label rgvStatus2;
  7720. private System.Windows.Forms.Label label63;
  7721. private System.Windows.Forms.Label lblrgv1089;
  7722. public System.Windows.Forms.PictureBox GV2;
  7723. public System.Windows.Forms.PictureBox pictureBox4;
  7724. private MyConrols.MyPanel pnlRGV1091;
  7725. private System.Windows.Forms.Label label14;
  7726. private System.Windows.Forms.Label label19;
  7727. private System.Windows.Forms.Label label20;
  7728. public System.Windows.Forms.Label rgvOptType3;
  7729. private System.Windows.Forms.Label label74;
  7730. private System.Windows.Forms.Label lblRGVWarning1091;
  7731. public System.Windows.Forms.Label rgvPosCurr3;
  7732. public System.Windows.Forms.Label rgvMode3;
  7733. public System.Windows.Forms.Label rgvOrdId3;
  7734. private System.Windows.Forms.Label label94;
  7735. public System.Windows.Forms.Label rgvPosTo3;
  7736. private System.Windows.Forms.Label label96;
  7737. public System.Windows.Forms.Label rgvPosFrom3;
  7738. public System.Windows.Forms.Label rgvStatus3;
  7739. private System.Windows.Forms.Label label102;
  7740. private System.Windows.Forms.Label lblrgv1091;
  7741. public System.Windows.Forms.PictureBox GV3;
  7742. public System.Windows.Forms.PictureBox pictureBox7;
  7743. private MyConrols.MyPanel myPanel5;
  7744. private System.Windows.Forms.Label label25;
  7745. private System.Windows.Forms.Label label35;
  7746. private System.Windows.Forms.Label label39;
  7747. public System.Windows.Forms.Label rgvOptType4;
  7748. private System.Windows.Forms.Label label173;
  7749. private System.Windows.Forms.Label lblRGVWarning1007;
  7750. public System.Windows.Forms.Label rgvPosCurr4;
  7751. public System.Windows.Forms.Label rgvMode4;
  7752. public System.Windows.Forms.Label rgvOrdId4;
  7753. private System.Windows.Forms.Label label181;
  7754. public System.Windows.Forms.Label rgvPosTo4;
  7755. private System.Windows.Forms.Label label183;
  7756. public System.Windows.Forms.Label rgvPosFrom4;
  7757. public System.Windows.Forms.Label rgvStatus4;
  7758. private System.Windows.Forms.Label label189;
  7759. private System.Windows.Forms.Label lblrgv1007;
  7760. public System.Windows.Forms.PictureBox GV4;
  7761. public System.Windows.Forms.PictureBox pictureBox17;
  7762. private MyConrols.MyPanel myPanel11;
  7763. private System.Windows.Forms.Label label40;
  7764. private System.Windows.Forms.Label label41;
  7765. private System.Windows.Forms.Label label42;
  7766. public System.Windows.Forms.Label rgvOptType5;
  7767. private System.Windows.Forms.Label label305;
  7768. private System.Windows.Forms.Label lblRGVWarning1175;
  7769. public System.Windows.Forms.Label rgvPosCurr5;
  7770. public System.Windows.Forms.Label rgvMode5;
  7771. public System.Windows.Forms.Label rgvOrdId5;
  7772. private System.Windows.Forms.Label label313;
  7773. public System.Windows.Forms.Label rgvPosTo5;
  7774. private System.Windows.Forms.Label label315;
  7775. public System.Windows.Forms.Label rgvPosFrom5;
  7776. public System.Windows.Forms.Label rgvStatus5;
  7777. private System.Windows.Forms.Label label321;
  7778. private System.Windows.Forms.Label lblrgv1175;
  7779. public System.Windows.Forms.PictureBox GV5;
  7780. public System.Windows.Forms.PictureBox pictureBox29;
  7781. private MyConrols.MyPanel myPanel2;
  7782. private MyConrols.MyPanel myPanel4;
  7783. private System.Windows.Forms.Label label124;
  7784. private System.Windows.Forms.Label label125;
  7785. public System.Windows.Forms.Label label126;
  7786. private System.Windows.Forms.Label label127;
  7787. private System.Windows.Forms.Label label128;
  7788. public System.Windows.Forms.Label label129;
  7789. public System.Windows.Forms.Label label130;
  7790. private System.Windows.Forms.Label label131;
  7791. private System.Windows.Forms.Label label132;
  7792. public System.Windows.Forms.Label label133;
  7793. public System.Windows.Forms.Label label134;
  7794. private System.Windows.Forms.Label label135;
  7795. public System.Windows.Forms.Label label136;
  7796. private System.Windows.Forms.Label label138;
  7797. public System.Windows.Forms.Label label140;
  7798. private System.Windows.Forms.Label label141;
  7799. public System.Windows.Forms.Label label142;
  7800. public System.Windows.Forms.Label label143;
  7801. private System.Windows.Forms.Label label144;
  7802. private System.Windows.Forms.Label label145;
  7803. private System.Windows.Forms.Label label146;
  7804. private System.Windows.Forms.Label label147;
  7805. public System.Windows.Forms.PictureBox pictureBox11;
  7806. public System.Windows.Forms.PictureBox pictureBox12;
  7807. public System.Windows.Forms.Label rgvOptType1;
  7808. private System.Windows.Forms.Label label23;
  7809. private System.Windows.Forms.Label lblRGVWarning1444;
  7810. public System.Windows.Forms.Label rgvPosCurr1;
  7811. private System.Windows.Forms.Label label45;
  7812. public System.Windows.Forms.Label rgvMode1;
  7813. public System.Windows.Forms.Label rgvOrdId1;
  7814. private System.Windows.Forms.Label label58;
  7815. public System.Windows.Forms.Label rgvPosTo1;
  7816. private System.Windows.Forms.Label label69;
  7817. public System.Windows.Forms.Label rgvPosFrom1;
  7818. private System.Windows.Forms.Label label73;
  7819. public System.Windows.Forms.Label rgvStatus1;
  7820. private System.Windows.Forms.Label label80;
  7821. private System.Windows.Forms.Label label92;
  7822. private System.Windows.Forms.Label lblrgv1444;
  7823. public System.Windows.Forms.PictureBox GV1;
  7824. public System.Windows.Forms.PictureBox pictureBox5;
  7825. private MyConrols.MyPanel pnlBottom;
  7826. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  7827. private From.MyTableLayoutPanel myTableLayoutPanel1;
  7828. private From.From_Montior.Conveyor_R con2281;
  7829. private From.From_Montior.Conveyor_R con2282;
  7830. private From.From_Montior.Conveyor_R con2010;
  7831. private From.From_Montior.Conveyor_R con2014;
  7832. private From.From_Montior.Conveyor_R con2083;
  7833. private From.From_Montior.Conveyor_L con2137;
  7834. private From.From_Montior.Conveyor_L con2125;
  7835. private From.From_Montior.Conveyor_L con2116;
  7836. private From.From_Montior.Conveyor_R con2275;
  7837. private From.From_Montior.Conveyor_R con2276;
  7838. private From.From_Montior.Conveyor_R con2277;
  7839. private From.From_Montior.Conveyor_R con2278;
  7840. private From.From_Montior.Conveyor_R con2279;
  7841. private From.From_Montior.Conveyor_R con2280;
  7842. private From.From_Montior.Conveyor3_A con2202;
  7843. private From.From_Montior.Conveyor_R con2062;
  7844. private From.From_Montior.Conveyor_R con2058;
  7845. private From.From_Montior.Conveyor_R con2053;
  7846. private From.From_Montior.Conveyor_R con2057;
  7847. private From.From_Montior.Conveyor4_L_R con2055;
  7848. private From.TableCellLabel tableCellLabel17;
  7849. private From.TableCellLabel tableCellLabel18;
  7850. private From.From_Montior.Conveyor_R con2056;
  7851. private From.From_Montior.Conveyor_R con2051;
  7852. private From.From_Montior.Conveyor_R con2050;
  7853. private From.From_Montior.Conveyor4_L_R con2048;
  7854. private From.TableCellLabel tableCellLabel14;
  7855. private From.TableCellLabel tableCellLabel16;
  7856. private From.From_Montior.Conveyor_R con2049;
  7857. private From.From_Montior.Conveyor_R con2041;
  7858. private From.From_Montior.Conveyor_R con2039;
  7859. private From.From_Montior.Conveyor_R con2042;
  7860. private From.From_Montior.Conveyor_R con2035;
  7861. private From.From_Montior.Conveyor4_L_R con2033;
  7862. private From.TableCellLabel tableCellLabel12;
  7863. private From.TableCellLabel tableCellLabel13;
  7864. private From.From_Montior.Conveyor_R con2034;
  7865. private From.From_Montior.Conveyor_R con2028;
  7866. private From.From_Montior.Conveyor4_L_R con2026;
  7867. private From.TableCellLabel tableCellLabel10;
  7868. private From.TableCellLabel tableCellLabel11;
  7869. private From.From_Montior.Conveyor_R con2027;
  7870. private From.From_Montior.Conveyor_R con2022;
  7871. private From.From_Montior.Conveyor_R con2021;
  7872. private From.From_Montior.Conveyor3_A con2309;
  7873. private From.From_Montior.Conveyor3_A con2310;
  7874. private From.From_Montior.Conveyor3_A con2261;
  7875. private From.From_Montior.Conveyor3_A con2262;
  7876. private From.From_Montior.Conveyor3_A con2260;
  7877. private From.From_Montior.Conveyor3_A con2259;
  7878. private From.From_Montior.Conveyor3_A conveyor3_A17;
  7879. private From.From_Montior.Conveyor3_A con2263;
  7880. private From.From_Montior.Conveyor3_A con2264;
  7881. private From.From_Montior.Conveyor3_A con2265;
  7882. private From.TableCellLabel tableCellLabel23;
  7883. private From.TableCellLabel tableCellLabel24;
  7884. private From.From_Montior.Conveyor6 conrgv1;
  7885. private From.From_Montior.Conveyor3_B con2256;
  7886. private From.From_Montior.Conveyor3_A con2252;
  7887. private From.From_Montior.Conveyor3_B con2253;
  7888. private From.From_Montior.Conveyor3_A con2254;
  7889. private From.From_Montior.Conveyor3_B con2251;
  7890. private From.From_Montior.Conveyor3_A con2255;
  7891. private From.From_Montior.Conveyor3_A con2198;
  7892. private From.From_Montior.Conveyor3_A con2192;
  7893. private From.From_Montior.Conveyor3_A con2195;
  7894. private From.From_Montior.Conveyor3_A con2201;
  7895. private From.From_Montior.Conveyor3_A con2203;
  7896. private From.From_Montior.Conveyor3_A con2206;
  7897. private From.From_Montior.Conveyor3_A con2204;
  7898. private From.From_Montior.Conveyor3_A con2205;
  7899. private From.From_Montior.Conveyor3_A con2153;
  7900. private From.From_Montior.Conveyor3_A con2207;
  7901. private From.From_Montior.Conveyor3_A con2208;
  7902. private From.From_Montior.Conveyor3_A con2209;
  7903. private From.From_Montior.Conveyor6 conrgv3;
  7904. private From.TableCellLabel tableCellLabel1;
  7905. private From.TableCellLabel tableCellLabel2;
  7906. private From.From_Montior.Conveyor3_A con2187;
  7907. private From.From_Montior.Conveyor3_A con2182;
  7908. private From.From_Montior.Conveyor3_A con2181;
  7909. private From.From_Montior.Conveyor3_A con2180;
  7910. private From.From_Montior.Conveyor3_A con2271;
  7911. private From.From_Montior.Conveyor3_A con2211;
  7912. private From.From_Montior.Conveyor3_A con2152;
  7913. private From.From_Montior.Conveyor3_A con2210;
  7914. private From.TableCellLabel tableCellLabel3;
  7915. private From.TableCellLabel tableCellLabel4;
  7916. private From.From_Montior.Conveyor6 conrgv2;
  7917. private From.TableCellLabel tableCellLabel6;
  7918. private From.TableCellLabel tableCellLabel8;
  7919. private From.From_Montior.Conveyor3_B con2172;
  7920. private From.From_Montior.Conveyor3_A con2173;
  7921. private From.From_Montior.Conveyor3_B con2174;
  7922. private From.From_Montior.Conveyor3_A con2175;
  7923. private From.From_Montior.Conveyor3_B con2176;
  7924. private From.From_Montior.Conveyor3_A con2177;
  7925. private From.From_Montior.Conveyor_R con2147;
  7926. private From.From_Montior.Conveyor_R con2146;
  7927. private From.From_Montior.Conveyor_R con2148;
  7928. private From.From_Montior.Conveyor_R con2144;
  7929. private From.From_Montior.Conveyor_R con2145;
  7930. private From.From_Montior.Conveyor_R con2150;
  7931. private From.From_Montior.Conveyor_R con2161;
  7932. private From.From_Montior.Conveyor3_A con2378;
  7933. private From.From_Montior.Conveyor3_A con2384;
  7934. private From.From_Montior.Conveyor3_A con2381;
  7935. private From.From_Montior.Conveyor3_A con2380;
  7936. private From.From_Montior.Conveyor3_A con2379;
  7937. private From.From_Montior.Conveyor_L con2141;
  7938. private From.From_Montior.Conveyor_L con2274;
  7939. private From.From_Montior.Conveyor3_B con2140;
  7940. private From.From_Montior.Conveyor3_B con2143;
  7941. private System.Windows.Forms.Label label1;
  7942. private From.From_Montior.Conveyor_L con2138;
  7943. private From.From_Montior.Conveyor_L con2326;
  7944. private From.From_Montior.Conveyor con2135;
  7945. private From.From_Montior.Conveyor3_B con2273;
  7946. private From.From_Montior.Conveyor3_B con2129;
  7947. private From.From_Montior.Conveyor3_B con2128;
  7948. private From.From_Montior.Conveyor3_B con2131;
  7949. private System.Windows.Forms.Label label4;
  7950. private From.From_Montior.Conveyor_L con2126;
  7951. private From.From_Montior.Conveyor_L con2327;
  7952. private From.From_Montior.Conveyor con2123;
  7953. private From.From_Montior.Conveyor3_A con2377;
  7954. private From.From_Montior.Conveyor3_A con2374;
  7955. private From.From_Montior.Conveyor3_A con2385;
  7956. private From.From_Montior.Conveyor3_A con2386;
  7957. private From.From_Montior.Conveyor3_A con2375;
  7958. private From.From_Montior.Conveyor3_A con2376;
  7959. private From.From_Montior.Conveyor3_A con2382;
  7960. private From.From_Montior.Conveyor3_A con2387;
  7961. private From.From_Montior.Conveyor3_A con2372;
  7962. private From.From_Montior.Conveyor3_A con2370;
  7963. private From.From_Montior.Conveyor3_A con2371;
  7964. private From.From_Montior.Conveyor3_A con2388;
  7965. private From.From_Montior.Conveyor3_A con2368;
  7966. private From.From_Montior.Conveyor3_A con2369;
  7967. private From.From_Montior.Conveyor3_A con2365;
  7968. private From.From_Montior.Conveyor3_A con2366;
  7969. private From.From_Montior.Conveyor_R con2364;
  7970. private From.From_Montior.Conveyor_R con2362;
  7971. private From.From_Montior.Conveyor3_B con2120;
  7972. private From.From_Montior.Conveyor3_B con2119;
  7973. private From.From_Montior.Conveyor3_B con2122;
  7974. private From.From_Montior.Conveyor3_B con2272;
  7975. private From.TableCellLabel tableCellLabel9;
  7976. private From.From_Montior.Conveyor_R con2104;
  7977. private From.From_Montior.Conveyor_R con2102;
  7978. private From.From_Montior.Conveyor_R con2101;
  7979. private From.From_Montior.Conveyor_R con2103;
  7980. private From.From_Montior.Conveyor_R con2108;
  7981. private From.From_Montior.Conveyor_R con2107;
  7982. private From.From_Montior.Conveyor_R con2106;
  7983. private From.From_Montior.Conveyor_R con2105;
  7984. private From.From_Montior.Conveyor_R con2060;
  7985. private From.From_Montior.Conveyor_R con2079;
  7986. private From.From_Montior.Conveyor_R con2075;
  7987. private From.From_Montior.Conveyor_R con2080;
  7988. private From.From_Montior.Conveyor_R con2074;
  7989. private From.From_Montior.Conveyor_R con2078;
  7990. private From.From_Montior.Conveyor_R con2077;
  7991. private From.From_Montior.Conveyor_R con2325;
  7992. private From.From_Montior.Conveyor_R con2073;
  7993. private From.From_Montior.Conveyor_R con2071;
  7994. private From.From_Montior.Conveyor_R con2072;
  7995. private From.From_Montior.Conveyor_R con2076;
  7996. private From.From_Montior.Conveyor_R con2355;
  7997. private From.From_Montior.Conveyor_R con2037;
  7998. private From.From_Montior.Conveyor_R con2044;
  7999. private From.From_Montior.Conveyor_R con2046;
  8000. private From.From_Montior.Conveyor_R con2031;
  8001. private From.From_Montior.Conveyor_R con2029;
  8002. private From.From_Montior.Conveyor_R con2036;
  8003. private From.From_Montior.Conveyor_R con2017;
  8004. private From.From_Montior.Conveyor_R con2019;
  8005. private From.From_Montior.Conveyor_R con2024;
  8006. private From.From_Montior.Conveyor_R con2324;
  8007. private From.From_Montior.Conveyor_R con2353;
  8008. private From.From_Montior.Conveyor_R con2016;
  8009. private From.From_Montior.LocationPos locationPos35;
  8010. private From.TableCellLabel tableCellLabel15;
  8011. private From.TableCellLabel tableCellLabel29;
  8012. private From.TableCellLabel tableCellLabel30;
  8013. private From.From_Montior.LocationPos locationPos36;
  8014. private From.From_Montior.LocationPos locationPos37;
  8015. private From.From_Montior.Conveyor3_A con2084;
  8016. private From.From_Montior.Conveyor3_A con2086;
  8017. private From.From_Montior.Conveyor_R con2081;
  8018. private From.From_Montior.Conveyor_R con2088;
  8019. private System.Windows.Forms.Label label6;
  8020. private From.From_Montior.Conveyor_R con2015;
  8021. private From.From_Montior.Conveyor_R con2012;
  8022. private System.Windows.Forms.Label label12;
  8023. private From.From_Montior.Conveyor_R con2008;
  8024. private From.From_Montior.Conveyor_R con2011;
  8025. private System.Windows.Forms.Label label28;
  8026. private From.From_Montior.Conveyor_L con2323;
  8027. private From.From_Montior.Conveyor_L con2322;
  8028. private From.From_Montior.Conveyor3_B con2311;
  8029. private From.From_Montior.Conveyor3_B con2317;
  8030. private From.From_Montior.Conveyor3_B con2315;
  8031. private From.From_Montior.Conveyor3_B con2314;
  8032. private From.From_Montior.Conveyor3_B con2312;
  8033. private From.From_Montior.Conveyor3_B con2313;
  8034. private From.From_Montior.Conveyor3_B con2316;
  8035. private From.From_Montior.Conveyor3_B con2319;
  8036. private From.From_Montior.Conveyor3_B con2320;
  8037. private From.From_Montior.Conveyor3_B con2318;
  8038. private From.From_Montior.Conveyor_L con2005;
  8039. private From.From_Montior.Conveyor_L con2302;
  8040. private From.From_Montior.Conveyor_L con2004;
  8041. private System.Windows.Forms.Label label33;
  8042. private From.From_Montior.Conveyor_R con2304;
  8043. private From.From_Montior.Conveyor_R con2003;
  8044. private From.From_Montior.Conveyor_R con2308;
  8045. private From.From_Montior.Conveyor_R con2307;
  8046. private From.From_Montior.Conveyor_R con2305;
  8047. private System.Windows.Forms.Label label34;
  8048. private From.TableCellLabel tableCellLabel31;
  8049. private From.From_Montior.LocationPos locationPos38;
  8050. private From.From_Montior.LocationPos locationPos39;
  8051. private From.From_Montior.LocationPos locationPos40;
  8052. private From.From_Montior.LocationPos locationPos41;
  8053. private From.From_Montior.srm srm11;
  8054. private From.From_Montior.Conveyor_L con2328;
  8055. private From.From_Montior.Conveyor_L con2117;
  8056. private From.From_Montior.LocationPos locationPos42;
  8057. private From.From_Montior.LocationPos locationPos43;
  8058. private From.From_Montior.srm srm12;
  8059. private From.From_Montior.LocationPos locationPos44;
  8060. private From.From_Montior.LocationPos locationPos45;
  8061. private From.From_Montior.LocationPos locationPos46;
  8062. private From.From_Montior.LocationPos locationPos47;
  8063. private From.From_Montior.srm srm13;
  8064. private From.From_Montior.LocationPos locationPos48;
  8065. private From.From_Montior.LocationPos locationPos49;
  8066. private From.From_Montior.srm srm14;
  8067. private From.From_Montior.LocationPos locationPos53;
  8068. private From.From_Montior.LocationPos locationPos54;
  8069. private From.From_Montior.srm srm15;
  8070. private From.From_Montior.LocationPos locationPos55;
  8071. private From.From_Montior.Conveyor con2114;
  8072. private From.From_Montior.Conveyor5 conrgv4;
  8073. private From.From_Montior.Conveyor con2359;
  8074. private From.From_Montior.Conveyor3_A con2360;
  8075. private From.TableCellLabel tableCellLabel32;
  8076. private From.TableCellLabel tableCellLabel33;
  8077. private From.TableCellLabel tableCellLabel34;
  8078. private From.From_Montior.Conveyor5 conrgv5;
  8079. private System.Windows.Forms.Panel panel1;
  8080. private System.Windows.Forms.Panel panel12;
  8081. }
  8082. }