Frm_YongGuanMontior.Designer.cs 654 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227
  1. namespace WCS_Client.Frm
  2. {
  3. partial class Frm_YongGuanMontior
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_YongGuanMontior));
  29. this.tabControl1 = new System.Windows.Forms.TabControl();
  30. this.tabPage1 = new System.Windows.Forms.TabPage();
  31. this.myTableLayoutPanel1 = new WCS_Client.From.MyTableLayoutPanel();
  32. this.con1067 = new WCS_Client.From.From_Montior.Conveyor_R();
  33. this.con1455 = new WCS_Client.From.From_Montior.Conveyor_R();
  34. this.con1482 = new WCS_Client.From.From_Montior.Conveyor_R();
  35. this.con1484 = new WCS_Client.From.From_Montior.Conveyor_R();
  36. this.con1486 = new WCS_Client.From.From_Montior.Conveyor_R();
  37. this.con1580 = new WCS_Client.From.From_Montior.Conveyor_R();
  38. this.con1524 = new WCS_Client.From.From_Montior.Conveyor_R();
  39. this.con1527 = new WCS_Client.From.From_Montior.Conveyor_R();
  40. this.con1545 = new WCS_Client.From.From_Montior.Conveyor_R();
  41. this.con1540 = new WCS_Client.From.From_Montior.Conveyor_R();
  42. this.con1544 = new WCS_Client.From.From_Montior.Conveyor_R();
  43. this.tableCellLabel1 = new WCS_Client.From.TableCellLabel();
  44. this.tableCellLabel3 = new WCS_Client.From.TableCellLabel();
  45. this.con1025 = new WCS_Client.From.From_Montior.Conveyor_R();
  46. this.con1023 = new WCS_Client.From.From_Montior.Conveyor_R();
  47. this.con1028 = new WCS_Client.From.From_Montior.Conveyor_R();
  48. this.con1018 = new WCS_Client.From.From_Montior.Conveyor_R();
  49. this.con1020 = new WCS_Client.From.From_Montior.Conveyor_R();
  50. this.con1053 = new WCS_Client.From.From_Montior.Conveyor_R();
  51. this.con1477 = new WCS_Client.From.From_Montior.Conveyor_R();
  52. this.con1473 = new WCS_Client.From.From_Montior.Conveyor_R();
  53. this.con1474 = new WCS_Client.From.From_Montior.Conveyor_R();
  54. this.con1471 = new WCS_Client.From.From_Montior.Conveyor_R();
  55. this.con1556 = new WCS_Client.From.From_Montior.Conveyor_R();
  56. this.con1587 = new WCS_Client.From.From_Montior.Conveyor_R();
  57. this.con1589 = new WCS_Client.From.From_Montior.Conveyor_R();
  58. this.con1480 = new WCS_Client.From.From_Montior.Conveyor_R();
  59. this.con1505 = new WCS_Client.From.From_Montior.Conveyor_R();
  60. this.con1568 = new WCS_Client.From.From_Montior.Conveyor_R();
  61. this.con1534 = new WCS_Client.From.From_Montior.Conveyor_R();
  62. this.con1573 = new WCS_Client.From.From_Montior.Conveyor_R();
  63. this.con1529 = new WCS_Client.From.From_Montior.Conveyor_R();
  64. this.con1538 = new WCS_Client.From.From_Montior.Conveyor_R();
  65. this.con1537 = new WCS_Client.From.From_Montior.Conveyor_R();
  66. this.con1574 = new WCS_Client.From.From_Montior.Conveyor_R();
  67. this.con1508 = new WCS_Client.From.From_Montior.Conveyor_R();
  68. this.con1553 = new WCS_Client.From.From_Montior.Conveyor_R();
  69. this.con1509 = new WCS_Client.From.From_Montior.Conveyor_R();
  70. this.con1532 = new WCS_Client.From.From_Montior.Conveyor_R();
  71. this.con1579 = new WCS_Client.From.From_Montior.Conveyor_R();
  72. this.con1500 = new WCS_Client.From.From_Montior.Conveyor_R();
  73. this.con1582 = new WCS_Client.From.From_Montior.Conveyor_R();
  74. this.con1584 = new WCS_Client.From.From_Montior.Conveyor_R();
  75. this.con1511 = new WCS_Client.From.From_Montior.Conveyor_R();
  76. this.con1513 = new WCS_Client.From.From_Montior.Conveyor_R();
  77. this.con1503 = new WCS_Client.From.From_Montior.Conveyor_R();
  78. this.con1551 = new WCS_Client.From.From_Montior.Conveyor_R();
  79. this.con1548 = new WCS_Client.From.From_Montior.Conveyor_R();
  80. this.con1515 = new WCS_Client.From.From_Montior.Conveyor_R();
  81. this.con1570 = new WCS_Client.From.From_Montior.Conveyor_R();
  82. this.con1565 = new WCS_Client.From.From_Montior.Conveyor_R();
  83. this.con1576 = new WCS_Client.From.From_Montior.Conveyor_R();
  84. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  85. this.con1065 = new WCS_Client.From.From_Montior.Conveyor_R();
  86. this.con1010 = new WCS_Client.From.From_Montior.Conveyor_L();
  87. this.con1013 = new WCS_Client.From.From_Montior.Conveyor_L();
  88. this.con1008 = new WCS_Client.From.From_Montior.Conveyor_L();
  89. this.label33 = new System.Windows.Forms.Label();
  90. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  91. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  92. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  93. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  94. this.srm15 = new WCS_Client.From.From_Montior.srm();
  95. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  96. this.con1062 = new WCS_Client.From.From_Montior.Conveyor_R();
  97. this.con1563 = new WCS_Client.From.From_Montior.Conveyor_R();
  98. this.con1520 = new WCS_Client.From.From_Montior.Conveyor_R();
  99. this.srm14 = new WCS_Client.From.From_Montior.srm();
  100. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  101. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  102. this.con1522 = new WCS_Client.From.From_Montior.Conveyor_R();
  103. this.con1518 = new WCS_Client.From.From_Montior.Conveyor_R();
  104. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  105. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  106. this.con1558 = new WCS_Client.From.From_Montior.Conveyor_R();
  107. this.con1498 = new WCS_Client.From.From_Montior.Conveyor_R();
  108. this.con1491 = new WCS_Client.From.From_Montior.Conveyor_R();
  109. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  110. this.con1597 = new WCS_Client.From.From_Montior.Conveyor_R();
  111. this.srm13 = new WCS_Client.From.From_Montior.srm();
  112. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  113. this.con1598 = new WCS_Client.From.From_Montior.Conveyor_R();
  114. this.con1489 = new WCS_Client.From.From_Montior.Conveyor_R();
  115. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  116. this.con1493 = new WCS_Client.From.From_Montior.Conveyor_R();
  117. this.con1040 = new WCS_Client.From.From_Montior.Conveyor_R();
  118. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  119. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  120. this.con1495 = new WCS_Client.From.From_Montior.Conveyor_R();
  121. this.con1051 = new WCS_Client.From.From_Montior.Conveyor_R();
  122. this.con1049 = new WCS_Client.From.From_Montior.Conveyor_R();
  123. this.con1047 = new WCS_Client.From.From_Montior.Conveyor_L();
  124. this.con1058 = new WCS_Client.From.From_Montior.Conveyor_L();
  125. this.con1060 = new WCS_Client.From.From_Montior.Conveyor_L();
  126. this.con1056 = new WCS_Client.From.From_Montior.Conveyor_L();
  127. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  128. this.con1015 = new WCS_Client.From.From_Montior.Conveyor_R();
  129. this.RGV8 = new WCS_Client.From.From_Montior.Conveyor_R();
  130. this.locationPos1 = new WCS_Client.From.From_Montior.LocationPos();
  131. this.locationPos2 = new WCS_Client.From.From_Montior.LocationPos();
  132. this.locationPos3 = new WCS_Client.From.From_Montior.LocationPos();
  133. this.locationPos4 = new WCS_Client.From.From_Montior.LocationPos();
  134. this.tableCellLabel5 = new WCS_Client.From.TableCellLabel();
  135. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  136. this.con1422 = new WCS_Client.From.From_Montior.Conveyor_L();
  137. this.con1424 = new WCS_Client.From.From_Montior.Conveyor_R();
  138. this.con1308 = new WCS_Client.From.From_Montior.Conveyor_R();
  139. this.con1431 = new WCS_Client.From.From_Montior.Conveyor_L();
  140. this.con1386 = new WCS_Client.From.From_Montior.Conveyor3_B();
  141. this.con1389 = new WCS_Client.From.From_Montior.Conveyor3_B();
  142. this.con1391 = new WCS_Client.From.From_Montior.Conveyor3_B();
  143. this.con1394 = new WCS_Client.From.From_Montior.Conveyor3_B();
  144. this.con1397 = new WCS_Client.From.From_Montior.Conveyor3_B();
  145. this.con1399 = new WCS_Client.From.From_Montior.Conveyor3_B();
  146. this.label1 = new System.Windows.Forms.Label();
  147. this.con1335 = new WCS_Client.From.From_Montior.Conveyor3_B();
  148. this.con1337 = new WCS_Client.From.From_Montior.Conveyor3_B();
  149. this.con1340 = new WCS_Client.From.From_Montior.Conveyor3_B();
  150. this.label4 = new System.Windows.Forms.Label();
  151. this.con1387 = new WCS_Client.From.From_Montior.Conveyor3_B();
  152. this.con1390 = new WCS_Client.From.From_Montior.Conveyor3_B();
  153. this.con1392 = new WCS_Client.From.From_Montior.Conveyor3_B();
  154. this.con1395 = new WCS_Client.From.From_Montior.Conveyor3_B();
  155. this.con1398 = new WCS_Client.From.From_Montior.Conveyor3_B();
  156. this.con1400 = new WCS_Client.From.From_Montior.Conveyor3_B();
  157. this.con1334 = new WCS_Client.From.From_Montior.Conveyor3_B();
  158. this.con1338 = new WCS_Client.From.From_Montior.Conveyor3_B();
  159. this.con1341 = new WCS_Client.From.From_Montior.Conveyor3_B();
  160. this.con1343 = new WCS_Client.From.From_Montior.Conveyor3_B();
  161. this.con1344 = new WCS_Client.From.From_Montior.Conveyor3_B();
  162. this.con1281 = new WCS_Client.From.From_Montior.Conveyor_R();
  163. this.con1283 = new WCS_Client.From.From_Montior.Conveyor_R();
  164. this.con1044 = new WCS_Client.From.From_Montior.Conveyor_R();
  165. this.con1035 = new WCS_Client.From.From_Montior.Conveyor_R();
  166. this.con1030 = new WCS_Client.From.From_Montior.Conveyor_R();
  167. this.con1285 = new WCS_Client.From.From_Montior.Conveyor_R();
  168. this.con1406 = new WCS_Client.From.From_Montior.Conveyor_R();
  169. this.con1404 = new WCS_Client.From.From_Montior.Conveyor_R();
  170. this.con1408 = new WCS_Client.From.From_Montior.Conveyor_R();
  171. this.con1401 = new WCS_Client.From.From_Montior.Conveyor_R();
  172. this.con1290 = new WCS_Client.From.From_Montior.Conveyor_R();
  173. this.con1288 = new WCS_Client.From.From_Montior.Conveyor_R();
  174. this.con1292 = new WCS_Client.From.From_Montior.Conveyor_R();
  175. this.con1294 = new WCS_Client.From.From_Montior.Conveyor_R();
  176. this.con1415 = new WCS_Client.From.From_Montior.Conveyor_R();
  177. this.con1413 = new WCS_Client.From.From_Montior.Conveyor_R();
  178. this.con1410 = new WCS_Client.From.From_Montior.Conveyor_R();
  179. this.con1299 = new WCS_Client.From.From_Montior.Conveyor_R();
  180. this.con1297 = new WCS_Client.From.From_Montior.Conveyor_R();
  181. this.con1301 = new WCS_Client.From.From_Montior.Conveyor_R();
  182. this.con1417 = new WCS_Client.From.From_Montior.Conveyor_R();
  183. this.con1303 = new WCS_Client.From.From_Montior.Conveyor_R();
  184. this.con1306 = new WCS_Client.From.From_Montior.Conveyor_R();
  185. this.con1310 = new WCS_Client.From.From_Montior.Conveyor_R();
  186. this.con1312 = new WCS_Client.From.From_Montior.Conveyor_R();
  187. this.con1426 = new WCS_Client.From.From_Montior.Conveyor_R();
  188. this.con1420 = new WCS_Client.From.From_Montior.Conveyor_R();
  189. this.con1429 = new WCS_Client.From.From_Montior.Conveyor_R();
  190. this.con1038 = new WCS_Client.From.From_Montior.Conveyor_R();
  191. this.con1042 = new WCS_Client.From.From_Montior.Conveyor_R();
  192. this.RGV9 = new WCS_Client.From.From_Montior.Conveyor_R();
  193. this.RGV10 = new WCS_Client.From.From_Montior.Conveyor_R();
  194. this.RGV11 = new WCS_Client.From.From_Montior.Conveyor_R();
  195. this.RGV12 = new WCS_Client.From.From_Montior.Conveyor_R();
  196. this.RGV13 = new WCS_Client.From.From_Montior.Conveyor_R();
  197. this.RGV14 = new WCS_Client.From.From_Montior.Conveyor_R();
  198. this.tableCellLabel21 = new WCS_Client.From.From_Montior.TableCellLabel2();
  199. this.tableCellLabel22 = new WCS_Client.From.From_Montior.TableCellLabel2();
  200. this.tableCellLabel23 = new WCS_Client.From.From_Montior.TableCellLabel2();
  201. this.tableCellLabel25 = new WCS_Client.From.From_Montior.TableCellLabel2();
  202. this.tableCellLabel26 = new WCS_Client.From.From_Montior.TableCellLabel2();
  203. this.tableCellLabel27 = new WCS_Client.From.From_Montior.TableCellLabel2();
  204. this.tableCellLabel210 = new WCS_Client.From.From_Montior.TableCellLabel2();
  205. this.tableCellLabel211 = new WCS_Client.From.From_Montior.TableCellLabel2();
  206. this.tableCellLabel213 = new WCS_Client.From.From_Montior.TableCellLabel2();
  207. this.tableCellLabel214 = new WCS_Client.From.From_Montior.TableCellLabel2();
  208. this.tableCellLabel215 = new WCS_Client.From.From_Montior.TableCellLabel2();
  209. this.con1458 = new WCS_Client.From.From_Montior.Conveyor_R();
  210. this.con1460 = new WCS_Client.From.From_Montior.Conveyor_R();
  211. this.con1462 = new WCS_Client.From.From_Montior.Conveyor_R();
  212. this.con1464 = new WCS_Client.From.From_Montior.Conveyor_R();
  213. this.con1466 = new WCS_Client.From.From_Montior.Conveyor_R();
  214. this.con1468 = new WCS_Client.From.From_Montior.Conveyor_R();
  215. this.con1496 = new WCS_Client.From.From_Montior.Conveyor_R();
  216. this.label6 = new System.Windows.Forms.Label();
  217. this.label12 = new System.Windows.Forms.Label();
  218. this.RGV1 = new WCS_Client.From.From_Montior.Conveyor_R();
  219. this.RGV2 = new WCS_Client.From.From_Montior.Conveyor_R();
  220. this.RGV3 = new WCS_Client.From.From_Montior.Conveyor_R();
  221. this.RGV4 = new WCS_Client.From.From_Montior.Conveyor_R();
  222. this.RGV5 = new WCS_Client.From.From_Montior.Conveyor_R();
  223. this.RGV6 = new WCS_Client.From.From_Montior.Conveyor_R();
  224. this.RGV7 = new WCS_Client.From.From_Montior.Conveyor_R();
  225. this.tableCellLabel24 = new WCS_Client.From.From_Montior.TableCellLabel2();
  226. this.tableCellLabel28 = new WCS_Client.From.From_Montior.TableCellLabel2();
  227. this.tableCellLabel212 = new WCS_Client.From.From_Montior.TableCellLabel2();
  228. this.tableCellLabel216 = new WCS_Client.From.From_Montior.TableCellLabel2();
  229. this.tableCellLabel217 = new WCS_Client.From.From_Montior.TableCellLabel2();
  230. this.tableCellLabel218 = new WCS_Client.From.From_Montior.TableCellLabel2();
  231. this.tableCellLabel219 = new WCS_Client.From.From_Montior.TableCellLabel2();
  232. this.tableCellLabel220 = new WCS_Client.From.From_Montior.TableCellLabel2();
  233. this.tableCellLabel221 = new WCS_Client.From.From_Montior.TableCellLabel2();
  234. this.tableCellLabel4 = new WCS_Client.From.TableCellLabel();
  235. this.tableCellLabel7 = new WCS_Client.From.TableCellLabel();
  236. this.con1435 = new WCS_Client.From.From_Montior.Conveyor3_B();
  237. this.con1436 = new WCS_Client.From.From_Montior.Conveyor3_B();
  238. this.pnlDDJ1 = new MyConrols.MyPanel();
  239. this.lblInStatus1 = new System.Windows.Forms.Label();
  240. this.lblOutStatus1 = new System.Windows.Forms.Label();
  241. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  242. this.ddjPosTo1 = new System.Windows.Forms.Label();
  243. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  244. this.label84 = new System.Windows.Forms.Label();
  245. this.label85 = new System.Windows.Forms.Label();
  246. this.ddjMode1 = new System.Windows.Forms.Label();
  247. this.ddjOrdId1 = new System.Windows.Forms.Label();
  248. this.label137 = new System.Windows.Forms.Label();
  249. this.ddjOptType1 = new System.Windows.Forms.Label();
  250. this.label139 = new System.Windows.Forms.Label();
  251. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  252. this.label13 = new System.Windows.Forms.Label();
  253. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  254. this.label10 = new System.Windows.Forms.Label();
  255. this.ddjStatus1 = new System.Windows.Forms.Label();
  256. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  257. this.label5 = new System.Windows.Forms.Label();
  258. this.label3 = new System.Windows.Forms.Label();
  259. this.label2 = new System.Windows.Forms.Label();
  260. this.lblsrm01 = new System.Windows.Forms.Label();
  261. this.G1 = new System.Windows.Forms.PictureBox();
  262. this.R1 = new System.Windows.Forms.PictureBox();
  263. this.pnlDDJ2 = new MyConrols.MyPanel();
  264. this.lblInStatus2 = new System.Windows.Forms.Label();
  265. this.lblOutStatus2 = new System.Windows.Forms.Label();
  266. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  267. this.ddjPosTo2 = new System.Windows.Forms.Label();
  268. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  269. this.label15 = new System.Windows.Forms.Label();
  270. this.label16 = new System.Windows.Forms.Label();
  271. this.ddjMode2 = new System.Windows.Forms.Label();
  272. this.ddjOrdId2 = new System.Windows.Forms.Label();
  273. this.label22 = new System.Windows.Forms.Label();
  274. this.ddjOptType2 = new System.Windows.Forms.Label();
  275. this.label26 = new System.Windows.Forms.Label();
  276. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  277. this.label29 = new System.Windows.Forms.Label();
  278. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  279. this.label32 = new System.Windows.Forms.Label();
  280. this.ddjStatus2 = new System.Windows.Forms.Label();
  281. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  282. this.label83 = new System.Windows.Forms.Label();
  283. this.label86 = new System.Windows.Forms.Label();
  284. this.label87 = new System.Windows.Forms.Label();
  285. this.lblsrm02 = new System.Windows.Forms.Label();
  286. this.G2 = new System.Windows.Forms.PictureBox();
  287. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  288. this.pnlDDJ3 = new MyConrols.MyPanel();
  289. this.lblInStatus3 = new System.Windows.Forms.Label();
  290. this.lblOutStatus3 = new System.Windows.Forms.Label();
  291. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  292. this.ddjPosTo3 = new System.Windows.Forms.Label();
  293. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  294. this.label43 = new System.Windows.Forms.Label();
  295. this.label51 = new System.Windows.Forms.Label();
  296. this.ddjMode3 = new System.Windows.Forms.Label();
  297. this.ddjOrdId3 = new System.Windows.Forms.Label();
  298. this.label55 = new System.Windows.Forms.Label();
  299. this.ddjOptType3 = new System.Windows.Forms.Label();
  300. this.label57 = new System.Windows.Forms.Label();
  301. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  302. this.label59 = new System.Windows.Forms.Label();
  303. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  304. this.label61 = new System.Windows.Forms.Label();
  305. this.ddjStatus3 = new System.Windows.Forms.Label();
  306. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  307. this.label64 = new System.Windows.Forms.Label();
  308. this.label65 = new System.Windows.Forms.Label();
  309. this.label66 = new System.Windows.Forms.Label();
  310. this.lblsrm03 = new System.Windows.Forms.Label();
  311. this.G3 = new System.Windows.Forms.PictureBox();
  312. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  313. this.pnlDDJ4 = new MyConrols.MyPanel();
  314. this.lblInStatus4 = new System.Windows.Forms.Label();
  315. this.lblOutStatus4 = new System.Windows.Forms.Label();
  316. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  317. this.ddjPosTo4 = new System.Windows.Forms.Label();
  318. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  319. this.label71 = new System.Windows.Forms.Label();
  320. this.label72 = new System.Windows.Forms.Label();
  321. this.ddjMode4 = new System.Windows.Forms.Label();
  322. this.ddjOrdId4 = new System.Windows.Forms.Label();
  323. this.label75 = new System.Windows.Forms.Label();
  324. this.ddjOptType4 = new System.Windows.Forms.Label();
  325. this.label77 = new System.Windows.Forms.Label();
  326. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  327. this.label79 = new System.Windows.Forms.Label();
  328. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  329. this.label81 = new System.Windows.Forms.Label();
  330. this.ddjStatus4 = new System.Windows.Forms.Label();
  331. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  332. this.label89 = new System.Windows.Forms.Label();
  333. this.label90 = new System.Windows.Forms.Label();
  334. this.label91 = new System.Windows.Forms.Label();
  335. this.lblsrm04 = new System.Windows.Forms.Label();
  336. this.G4 = new System.Windows.Forms.PictureBox();
  337. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  338. this.myPanel1 = new MyConrols.MyPanel();
  339. this.lblInStatus5 = new System.Windows.Forms.Label();
  340. this.lblOutStatus5 = new System.Windows.Forms.Label();
  341. this.label11 = new System.Windows.Forms.Label();
  342. this.ddjPosTo5 = new System.Windows.Forms.Label();
  343. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  344. this.label17 = new System.Windows.Forms.Label();
  345. this.label18 = new System.Windows.Forms.Label();
  346. this.ddjMode5 = new System.Windows.Forms.Label();
  347. this.ddjOrdId5 = new System.Windows.Forms.Label();
  348. this.label21 = new System.Windows.Forms.Label();
  349. this.ddjOptType5 = new System.Windows.Forms.Label();
  350. this.label24 = new System.Windows.Forms.Label();
  351. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  352. this.label27 = new System.Windows.Forms.Label();
  353. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  354. this.label30 = new System.Windows.Forms.Label();
  355. this.ddjStatus5 = new System.Windows.Forms.Label();
  356. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  357. this.label36 = new System.Windows.Forms.Label();
  358. this.label37 = new System.Windows.Forms.Label();
  359. this.label38 = new System.Windows.Forms.Label();
  360. this.lblsrm05 = new System.Windows.Forms.Label();
  361. this.G5 = new System.Windows.Forms.PictureBox();
  362. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  363. this.RGV4000 = new MyConrols.MyPanel();
  364. this.label14 = new System.Windows.Forms.Label();
  365. this.label19 = new System.Windows.Forms.Label();
  366. this.label20 = new System.Windows.Forms.Label();
  367. this.rgvOptType4 = new System.Windows.Forms.Label();
  368. this.label74 = new System.Windows.Forms.Label();
  369. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  370. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  371. this.rgvMode4 = new System.Windows.Forms.Label();
  372. this.rgvOrdId4 = new System.Windows.Forms.Label();
  373. this.label94 = new System.Windows.Forms.Label();
  374. this.rgvPosTo4 = new System.Windows.Forms.Label();
  375. this.label96 = new System.Windows.Forms.Label();
  376. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  377. this.rgvStatus4 = new System.Windows.Forms.Label();
  378. this.label102 = new System.Windows.Forms.Label();
  379. this.lblrgv4 = new System.Windows.Forms.Label();
  380. this.GV4 = new System.Windows.Forms.PictureBox();
  381. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  382. this.myPanel5 = new MyConrols.MyPanel();
  383. this.label25 = new System.Windows.Forms.Label();
  384. this.label35 = new System.Windows.Forms.Label();
  385. this.label39 = new System.Windows.Forms.Label();
  386. this.rgvOptType1 = new System.Windows.Forms.Label();
  387. this.label173 = new System.Windows.Forms.Label();
  388. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  389. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  390. this.rgvMode1 = new System.Windows.Forms.Label();
  391. this.rgvOrdId1 = new System.Windows.Forms.Label();
  392. this.label181 = new System.Windows.Forms.Label();
  393. this.rgvPosTo1 = new System.Windows.Forms.Label();
  394. this.label183 = new System.Windows.Forms.Label();
  395. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  396. this.rgvStatus1 = new System.Windows.Forms.Label();
  397. this.label189 = new System.Windows.Forms.Label();
  398. this.lblrgv1 = new System.Windows.Forms.Label();
  399. this.GV1 = new System.Windows.Forms.PictureBox();
  400. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  401. this.pnlBottom = new MyConrols.MyPanel();
  402. this.myPanel17 = new MyConrols.MyPanel();
  403. this.label314 = new System.Windows.Forms.Label();
  404. this.label315 = new System.Windows.Forms.Label();
  405. this.label316 = new System.Windows.Forms.Label();
  406. this.rgvOptType13 = new System.Windows.Forms.Label();
  407. this.label318 = new System.Windows.Forms.Label();
  408. this.label319 = new System.Windows.Forms.Label();
  409. this.rgvPosCurr13 = new System.Windows.Forms.Label();
  410. this.rgvMode13 = new System.Windows.Forms.Label();
  411. this.rgvOrdId13 = new System.Windows.Forms.Label();
  412. this.label323 = new System.Windows.Forms.Label();
  413. this.rgvPosTo13 = new System.Windows.Forms.Label();
  414. this.label325 = new System.Windows.Forms.Label();
  415. this.rgvPosFrom13 = new System.Windows.Forms.Label();
  416. this.rgvStatus13 = new System.Windows.Forms.Label();
  417. this.label328 = new System.Windows.Forms.Label();
  418. this.lblrgv13 = new System.Windows.Forms.Label();
  419. this.GV13 = new System.Windows.Forms.PictureBox();
  420. this.pictureBox36 = new System.Windows.Forms.PictureBox();
  421. this.myPanel11 = new MyConrols.MyPanel();
  422. this.label40 = new System.Windows.Forms.Label();
  423. this.label41 = new System.Windows.Forms.Label();
  424. this.label42 = new System.Windows.Forms.Label();
  425. this.rgvOptType12 = new System.Windows.Forms.Label();
  426. this.label302 = new System.Windows.Forms.Label();
  427. this.label303 = new System.Windows.Forms.Label();
  428. this.rgvPosCurr12 = new System.Windows.Forms.Label();
  429. this.rgvMode12 = new System.Windows.Forms.Label();
  430. this.rgvOrdId12 = new System.Windows.Forms.Label();
  431. this.label307 = new System.Windows.Forms.Label();
  432. this.rgvPosTo12 = new System.Windows.Forms.Label();
  433. this.label309 = new System.Windows.Forms.Label();
  434. this.rgvPosFrom12 = new System.Windows.Forms.Label();
  435. this.rgvStatus12 = new System.Windows.Forms.Label();
  436. this.label312 = new System.Windows.Forms.Label();
  437. this.lblrgv12 = new System.Windows.Forms.Label();
  438. this.GV12 = new System.Windows.Forms.PictureBox();
  439. this.pictureBox34 = new System.Windows.Forms.PictureBox();
  440. this.myPanel16 = new MyConrols.MyPanel();
  441. this.label285 = new System.Windows.Forms.Label();
  442. this.label286 = new System.Windows.Forms.Label();
  443. this.label287 = new System.Windows.Forms.Label();
  444. this.rgvOptType14 = new System.Windows.Forms.Label();
  445. this.label289 = new System.Windows.Forms.Label();
  446. this.label290 = new System.Windows.Forms.Label();
  447. this.rgvPosCurr14 = new System.Windows.Forms.Label();
  448. this.rgvMode14 = new System.Windows.Forms.Label();
  449. this.rgvOrdId14 = new System.Windows.Forms.Label();
  450. this.label294 = new System.Windows.Forms.Label();
  451. this.rgvPosTo14 = new System.Windows.Forms.Label();
  452. this.label296 = new System.Windows.Forms.Label();
  453. this.rgvPosFrom14 = new System.Windows.Forms.Label();
  454. this.rgvStatus14 = new System.Windows.Forms.Label();
  455. this.label299 = new System.Windows.Forms.Label();
  456. this.lblrgv14 = new System.Windows.Forms.Label();
  457. this.GV14 = new System.Windows.Forms.PictureBox();
  458. this.pictureBox33 = new System.Windows.Forms.PictureBox();
  459. this.myPanel15 = new MyConrols.MyPanel();
  460. this.label269 = new System.Windows.Forms.Label();
  461. this.label270 = new System.Windows.Forms.Label();
  462. this.label271 = new System.Windows.Forms.Label();
  463. this.rgvOptType11 = new System.Windows.Forms.Label();
  464. this.label273 = new System.Windows.Forms.Label();
  465. this.label274 = new System.Windows.Forms.Label();
  466. this.rgvPosCurr11 = new System.Windows.Forms.Label();
  467. this.rgvMode11 = new System.Windows.Forms.Label();
  468. this.rgvOrdId11 = new System.Windows.Forms.Label();
  469. this.label278 = new System.Windows.Forms.Label();
  470. this.rgvPosTo11 = new System.Windows.Forms.Label();
  471. this.label280 = new System.Windows.Forms.Label();
  472. this.rgvPosFrom11 = new System.Windows.Forms.Label();
  473. this.rgvStatus11 = new System.Windows.Forms.Label();
  474. this.label283 = new System.Windows.Forms.Label();
  475. this.lblrgv11 = new System.Windows.Forms.Label();
  476. this.GV11 = new System.Windows.Forms.PictureBox();
  477. this.pictureBox31 = new System.Windows.Forms.PictureBox();
  478. this.myPanel14 = new MyConrols.MyPanel();
  479. this.label253 = new System.Windows.Forms.Label();
  480. this.label254 = new System.Windows.Forms.Label();
  481. this.label255 = new System.Windows.Forms.Label();
  482. this.rgvOptType10 = new System.Windows.Forms.Label();
  483. this.label257 = new System.Windows.Forms.Label();
  484. this.label258 = new System.Windows.Forms.Label();
  485. this.rgvPosCurr10 = new System.Windows.Forms.Label();
  486. this.rgvMode10 = new System.Windows.Forms.Label();
  487. this.rgvOrdId10 = new System.Windows.Forms.Label();
  488. this.label262 = new System.Windows.Forms.Label();
  489. this.rgvPosTo10 = new System.Windows.Forms.Label();
  490. this.label264 = new System.Windows.Forms.Label();
  491. this.rgvPosFrom10 = new System.Windows.Forms.Label();
  492. this.rgvStatus10 = new System.Windows.Forms.Label();
  493. this.label267 = new System.Windows.Forms.Label();
  494. this.lblrgv10 = new System.Windows.Forms.Label();
  495. this.GV10 = new System.Windows.Forms.PictureBox();
  496. this.pictureBox28 = new System.Windows.Forms.PictureBox();
  497. this.myPanel13 = new MyConrols.MyPanel();
  498. this.label237 = new System.Windows.Forms.Label();
  499. this.label238 = new System.Windows.Forms.Label();
  500. this.label239 = new System.Windows.Forms.Label();
  501. this.rgvOptType9 = new System.Windows.Forms.Label();
  502. this.label241 = new System.Windows.Forms.Label();
  503. this.label242 = new System.Windows.Forms.Label();
  504. this.rgvPosCurr9 = new System.Windows.Forms.Label();
  505. this.rgvMode9 = new System.Windows.Forms.Label();
  506. this.rgvOrdId9 = new System.Windows.Forms.Label();
  507. this.label246 = new System.Windows.Forms.Label();
  508. this.rgvPosTo9 = new System.Windows.Forms.Label();
  509. this.label248 = new System.Windows.Forms.Label();
  510. this.rgvPosFrom9 = new System.Windows.Forms.Label();
  511. this.rgvStatus9 = new System.Windows.Forms.Label();
  512. this.label251 = new System.Windows.Forms.Label();
  513. this.lblrgv9 = new System.Windows.Forms.Label();
  514. this.GV9 = new System.Windows.Forms.PictureBox();
  515. this.pictureBox26 = new System.Windows.Forms.PictureBox();
  516. this.myPanel12 = new MyConrols.MyPanel();
  517. this.label221 = new System.Windows.Forms.Label();
  518. this.label222 = new System.Windows.Forms.Label();
  519. this.label223 = new System.Windows.Forms.Label();
  520. this.rgvOptType7 = new System.Windows.Forms.Label();
  521. this.label225 = new System.Windows.Forms.Label();
  522. this.label226 = new System.Windows.Forms.Label();
  523. this.rgvPosCurr7 = new System.Windows.Forms.Label();
  524. this.rgvMode7 = new System.Windows.Forms.Label();
  525. this.rgvOrdId7 = new System.Windows.Forms.Label();
  526. this.label230 = new System.Windows.Forms.Label();
  527. this.rgvPosTo7 = new System.Windows.Forms.Label();
  528. this.label232 = new System.Windows.Forms.Label();
  529. this.rgvPosFrom7 = new System.Windows.Forms.Label();
  530. this.rgvStatus7 = new System.Windows.Forms.Label();
  531. this.label235 = new System.Windows.Forms.Label();
  532. this.lblrgv7 = new System.Windows.Forms.Label();
  533. this.GV7 = new System.Windows.Forms.PictureBox();
  534. this.pictureBox24 = new System.Windows.Forms.PictureBox();
  535. this.myPanel10 = new MyConrols.MyPanel();
  536. this.label205 = new System.Windows.Forms.Label();
  537. this.label206 = new System.Windows.Forms.Label();
  538. this.label207 = new System.Windows.Forms.Label();
  539. this.rgvOptType8 = new System.Windows.Forms.Label();
  540. this.label209 = new System.Windows.Forms.Label();
  541. this.label210 = new System.Windows.Forms.Label();
  542. this.rgvPosCurr8 = new System.Windows.Forms.Label();
  543. this.rgvMode8 = new System.Windows.Forms.Label();
  544. this.rgvOrdId8 = new System.Windows.Forms.Label();
  545. this.label214 = new System.Windows.Forms.Label();
  546. this.rgvPosTo8 = new System.Windows.Forms.Label();
  547. this.label216 = new System.Windows.Forms.Label();
  548. this.rgvPosFrom8 = new System.Windows.Forms.Label();
  549. this.rgvStatus8 = new System.Windows.Forms.Label();
  550. this.label219 = new System.Windows.Forms.Label();
  551. this.lblrgv8 = new System.Windows.Forms.Label();
  552. this.GV8 = new System.Windows.Forms.PictureBox();
  553. this.pictureBox22 = new System.Windows.Forms.PictureBox();
  554. this.myPanel9 = new MyConrols.MyPanel();
  555. this.label188 = new System.Windows.Forms.Label();
  556. this.label190 = new System.Windows.Forms.Label();
  557. this.label191 = new System.Windows.Forms.Label();
  558. this.rgvOptType6 = new System.Windows.Forms.Label();
  559. this.label193 = new System.Windows.Forms.Label();
  560. this.label194 = new System.Windows.Forms.Label();
  561. this.rgvPosCurr6 = new System.Windows.Forms.Label();
  562. this.rgvMode6 = new System.Windows.Forms.Label();
  563. this.rgvOrdId6 = new System.Windows.Forms.Label();
  564. this.label198 = new System.Windows.Forms.Label();
  565. this.rgvPosTo6 = new System.Windows.Forms.Label();
  566. this.label200 = new System.Windows.Forms.Label();
  567. this.rgvPosFrom6 = new System.Windows.Forms.Label();
  568. this.rgvStatus6 = new System.Windows.Forms.Label();
  569. this.label203 = new System.Windows.Forms.Label();
  570. this.lblrgv6 = new System.Windows.Forms.Label();
  571. this.GV6 = new System.Windows.Forms.PictureBox();
  572. this.pictureBox20 = new System.Windows.Forms.PictureBox();
  573. this.myPanel8 = new MyConrols.MyPanel();
  574. this.label169 = new System.Windows.Forms.Label();
  575. this.label170 = new System.Windows.Forms.Label();
  576. this.label171 = new System.Windows.Forms.Label();
  577. this.rgvOptType5 = new System.Windows.Forms.Label();
  578. this.label174 = new System.Windows.Forms.Label();
  579. this.label175 = new System.Windows.Forms.Label();
  580. this.rgvPosCurr5 = new System.Windows.Forms.Label();
  581. this.rgvMode5 = new System.Windows.Forms.Label();
  582. this.rgvOrdId5 = new System.Windows.Forms.Label();
  583. this.label179 = new System.Windows.Forms.Label();
  584. this.rgvPosTo5 = new System.Windows.Forms.Label();
  585. this.label182 = new System.Windows.Forms.Label();
  586. this.rgvPosFrom5 = new System.Windows.Forms.Label();
  587. this.rgvStatus5 = new System.Windows.Forms.Label();
  588. this.label186 = new System.Windows.Forms.Label();
  589. this.lblrgv5 = new System.Windows.Forms.Label();
  590. this.GV5 = new System.Windows.Forms.PictureBox();
  591. this.pictureBox18 = new System.Windows.Forms.PictureBox();
  592. this.myPanel7 = new MyConrols.MyPanel();
  593. this.lblInStatus8 = new System.Windows.Forms.Label();
  594. this.lblOutStatus8 = new System.Windows.Forms.Label();
  595. this.label149 = new System.Windows.Forms.Label();
  596. this.ddjPosTo8 = new System.Windows.Forms.Label();
  597. this.ddjPosFrom8 = new System.Windows.Forms.Label();
  598. this.label152 = new System.Windows.Forms.Label();
  599. this.label153 = new System.Windows.Forms.Label();
  600. this.ddjMode8 = new System.Windows.Forms.Label();
  601. this.ddjOrdId8 = new System.Windows.Forms.Label();
  602. this.label156 = new System.Windows.Forms.Label();
  603. this.ddjOptType8 = new System.Windows.Forms.Label();
  604. this.label158 = new System.Windows.Forms.Label();
  605. this.ddjTotal_KM8 = new System.Windows.Forms.Label();
  606. this.label160 = new System.Windows.Forms.Label();
  607. this.ddjWorkTime8 = new System.Windows.Forms.Label();
  608. this.label162 = new System.Windows.Forms.Label();
  609. this.ddjStatus8 = new System.Windows.Forms.Label();
  610. this.ddjPosCurr8 = new System.Windows.Forms.Label();
  611. this.label165 = new System.Windows.Forms.Label();
  612. this.label166 = new System.Windows.Forms.Label();
  613. this.label167 = new System.Windows.Forms.Label();
  614. this.lblsrm08 = new System.Windows.Forms.Label();
  615. this.G8 = new System.Windows.Forms.PictureBox();
  616. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  617. this.myPanel6 = new MyConrols.MyPanel();
  618. this.lblInStatus7 = new System.Windows.Forms.Label();
  619. this.lblOutStatus7 = new System.Windows.Forms.Label();
  620. this.label103 = new System.Windows.Forms.Label();
  621. this.ddjPosTo7 = new System.Windows.Forms.Label();
  622. this.ddjPosFrom7 = new System.Windows.Forms.Label();
  623. this.label106 = new System.Windows.Forms.Label();
  624. this.label107 = new System.Windows.Forms.Label();
  625. this.ddjMode7 = new System.Windows.Forms.Label();
  626. this.ddjOrdId7 = new System.Windows.Forms.Label();
  627. this.label110 = new System.Windows.Forms.Label();
  628. this.ddjOptType7 = new System.Windows.Forms.Label();
  629. this.label112 = new System.Windows.Forms.Label();
  630. this.ddjTotal_KM7 = new System.Windows.Forms.Label();
  631. this.label114 = new System.Windows.Forms.Label();
  632. this.ddjWorkTime7 = new System.Windows.Forms.Label();
  633. this.label116 = new System.Windows.Forms.Label();
  634. this.ddjStatus7 = new System.Windows.Forms.Label();
  635. this.ddjPosCurr7 = new System.Windows.Forms.Label();
  636. this.label119 = new System.Windows.Forms.Label();
  637. this.label120 = new System.Windows.Forms.Label();
  638. this.label121 = new System.Windows.Forms.Label();
  639. this.lblsrm07 = new System.Windows.Forms.Label();
  640. this.G7 = new System.Windows.Forms.PictureBox();
  641. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  642. this.myPanel3 = new MyConrols.MyPanel();
  643. this.lblInStatus6 = new System.Windows.Forms.Label();
  644. this.lblOutStatus6 = new System.Windows.Forms.Label();
  645. this.label47 = new System.Windows.Forms.Label();
  646. this.ddjPosTo6 = new System.Windows.Forms.Label();
  647. this.ddjPosFrom6 = new System.Windows.Forms.Label();
  648. this.label52 = new System.Windows.Forms.Label();
  649. this.label54 = new System.Windows.Forms.Label();
  650. this.ddjMode6 = new System.Windows.Forms.Label();
  651. this.ddjOrdId6 = new System.Windows.Forms.Label();
  652. this.label62 = new System.Windows.Forms.Label();
  653. this.ddjOptType6 = new System.Windows.Forms.Label();
  654. this.label68 = new System.Windows.Forms.Label();
  655. this.ddjTotal_KM6 = new System.Windows.Forms.Label();
  656. this.label76 = new System.Windows.Forms.Label();
  657. this.ddjWorkTime6 = new System.Windows.Forms.Label();
  658. this.label82 = new System.Windows.Forms.Label();
  659. this.ddjStatus6 = new System.Windows.Forms.Label();
  660. this.ddjPosCurr6 = new System.Windows.Forms.Label();
  661. this.label95 = new System.Windows.Forms.Label();
  662. this.label97 = new System.Windows.Forms.Label();
  663. this.label98 = new System.Windows.Forms.Label();
  664. this.lblsrm06 = new System.Windows.Forms.Label();
  665. this.G6 = new System.Windows.Forms.PictureBox();
  666. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  667. this.pnlRGV1089 = new MyConrols.MyPanel();
  668. this.label7 = new System.Windows.Forms.Label();
  669. this.label8 = new System.Windows.Forms.Label();
  670. this.label9 = new System.Windows.Forms.Label();
  671. this.rgvOptType3 = new System.Windows.Forms.Label();
  672. this.label31 = new System.Windows.Forms.Label();
  673. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  674. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  675. this.rgvMode3 = new System.Windows.Forms.Label();
  676. this.rgvOrdId3 = new System.Windows.Forms.Label();
  677. this.label50 = new System.Windows.Forms.Label();
  678. this.rgvPosTo3 = new System.Windows.Forms.Label();
  679. this.label53 = new System.Windows.Forms.Label();
  680. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  681. this.rgvStatus3 = new System.Windows.Forms.Label();
  682. this.label63 = new System.Windows.Forms.Label();
  683. this.lblrgv3 = new System.Windows.Forms.Label();
  684. this.GV3 = new System.Windows.Forms.PictureBox();
  685. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  686. this.myPanel2 = new MyConrols.MyPanel();
  687. this.myPanel4 = new MyConrols.MyPanel();
  688. this.label124 = new System.Windows.Forms.Label();
  689. this.label125 = new System.Windows.Forms.Label();
  690. this.label126 = new System.Windows.Forms.Label();
  691. this.label127 = new System.Windows.Forms.Label();
  692. this.label128 = new System.Windows.Forms.Label();
  693. this.label129 = new System.Windows.Forms.Label();
  694. this.label130 = new System.Windows.Forms.Label();
  695. this.label131 = new System.Windows.Forms.Label();
  696. this.label132 = new System.Windows.Forms.Label();
  697. this.label133 = new System.Windows.Forms.Label();
  698. this.label134 = new System.Windows.Forms.Label();
  699. this.label135 = new System.Windows.Forms.Label();
  700. this.label136 = new System.Windows.Forms.Label();
  701. this.label138 = new System.Windows.Forms.Label();
  702. this.label140 = new System.Windows.Forms.Label();
  703. this.label141 = new System.Windows.Forms.Label();
  704. this.label142 = new System.Windows.Forms.Label();
  705. this.label143 = new System.Windows.Forms.Label();
  706. this.label144 = new System.Windows.Forms.Label();
  707. this.label145 = new System.Windows.Forms.Label();
  708. this.label146 = new System.Windows.Forms.Label();
  709. this.label147 = new System.Windows.Forms.Label();
  710. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  711. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  712. this.rgvOptType2 = new System.Windows.Forms.Label();
  713. this.label23 = new System.Windows.Forms.Label();
  714. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  715. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  716. this.label45 = new System.Windows.Forms.Label();
  717. this.rgvMode2 = new System.Windows.Forms.Label();
  718. this.rgvOrdId2 = new System.Windows.Forms.Label();
  719. this.label58 = new System.Windows.Forms.Label();
  720. this.rgvPosTo2 = new System.Windows.Forms.Label();
  721. this.label69 = new System.Windows.Forms.Label();
  722. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  723. this.label73 = new System.Windows.Forms.Label();
  724. this.rgvStatus2 = new System.Windows.Forms.Label();
  725. this.label80 = new System.Windows.Forms.Label();
  726. this.label92 = new System.Windows.Forms.Label();
  727. this.lblrgv2 = new System.Windows.Forms.Label();
  728. this.GV2 = new System.Windows.Forms.PictureBox();
  729. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  730. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  731. this.tabControl1.SuspendLayout();
  732. this.tabPage1.SuspendLayout();
  733. this.myTableLayoutPanel1.SuspendLayout();
  734. this.pnlDDJ1.SuspendLayout();
  735. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  736. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  737. this.pnlDDJ2.SuspendLayout();
  738. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  739. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  740. this.pnlDDJ3.SuspendLayout();
  741. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  742. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  743. this.pnlDDJ4.SuspendLayout();
  744. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  745. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  746. this.myPanel1.SuspendLayout();
  747. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  748. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  749. this.RGV4000.SuspendLayout();
  750. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  751. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  752. this.myPanel5.SuspendLayout();
  753. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  754. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  755. this.pnlBottom.SuspendLayout();
  756. this.myPanel17.SuspendLayout();
  757. ((System.ComponentModel.ISupportInitialize)(this.GV13)).BeginInit();
  758. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).BeginInit();
  759. this.myPanel11.SuspendLayout();
  760. ((System.ComponentModel.ISupportInitialize)(this.GV12)).BeginInit();
  761. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).BeginInit();
  762. this.myPanel16.SuspendLayout();
  763. ((System.ComponentModel.ISupportInitialize)(this.GV14)).BeginInit();
  764. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).BeginInit();
  765. this.myPanel15.SuspendLayout();
  766. ((System.ComponentModel.ISupportInitialize)(this.GV11)).BeginInit();
  767. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).BeginInit();
  768. this.myPanel14.SuspendLayout();
  769. ((System.ComponentModel.ISupportInitialize)(this.GV10)).BeginInit();
  770. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).BeginInit();
  771. this.myPanel13.SuspendLayout();
  772. ((System.ComponentModel.ISupportInitialize)(this.GV9)).BeginInit();
  773. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).BeginInit();
  774. this.myPanel12.SuspendLayout();
  775. ((System.ComponentModel.ISupportInitialize)(this.GV7)).BeginInit();
  776. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).BeginInit();
  777. this.myPanel10.SuspendLayout();
  778. ((System.ComponentModel.ISupportInitialize)(this.GV8)).BeginInit();
  779. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).BeginInit();
  780. this.myPanel9.SuspendLayout();
  781. ((System.ComponentModel.ISupportInitialize)(this.GV6)).BeginInit();
  782. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).BeginInit();
  783. this.myPanel8.SuspendLayout();
  784. ((System.ComponentModel.ISupportInitialize)(this.GV5)).BeginInit();
  785. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit();
  786. this.myPanel7.SuspendLayout();
  787. ((System.ComponentModel.ISupportInitialize)(this.G8)).BeginInit();
  788. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  789. this.myPanel6.SuspendLayout();
  790. ((System.ComponentModel.ISupportInitialize)(this.G7)).BeginInit();
  791. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  792. this.myPanel3.SuspendLayout();
  793. ((System.ComponentModel.ISupportInitialize)(this.G6)).BeginInit();
  794. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  795. this.pnlRGV1089.SuspendLayout();
  796. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  797. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  798. this.myPanel2.SuspendLayout();
  799. this.myPanel4.SuspendLayout();
  800. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  801. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  802. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  803. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  804. this.tableLayoutPanel1.SuspendLayout();
  805. this.SuspendLayout();
  806. //
  807. // tabControl1
  808. //
  809. this.tabControl1.Controls.Add(this.tabPage1);
  810. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  811. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  812. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  813. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  814. this.tabControl1.Name = "tabControl1";
  815. this.tabControl1.SelectedIndex = 0;
  816. this.tabControl1.Size = new System.Drawing.Size(1710, 615);
  817. this.tabControl1.TabIndex = 125;
  818. //
  819. // tabPage1
  820. //
  821. this.tabPage1.AutoScroll = true;
  822. this.tabPage1.BackColor = System.Drawing.Color.White;
  823. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  824. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  825. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  826. this.tabPage1.Name = "tabPage1";
  827. this.tabPage1.Size = new System.Drawing.Size(1702, 586);
  828. this.tabPage1.TabIndex = 0;
  829. this.tabPage1.Text = "OPP立体库";
  830. //
  831. // myTableLayoutPanel1
  832. //
  833. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  834. this.myTableLayoutPanel1.ColumnCount = 127;
  835. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  836. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  837. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  838. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  839. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  840. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  841. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  842. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  843. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  844. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  845. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  846. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  847. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  848. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  849. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  850. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  851. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  852. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  853. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  854. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  855. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  856. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  857. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  858. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  859. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  860. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  861. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  862. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  863. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  864. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  865. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  866. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  867. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  868. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  869. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  870. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  871. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  872. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  873. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  874. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  875. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  876. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  877. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  878. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  879. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  880. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  881. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  882. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  883. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  884. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8289658F));
  885. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.725345F));
  886. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  887. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  888. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  889. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  890. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  891. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  892. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  893. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  894. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  895. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  896. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  897. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  898. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  899. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  900. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  901. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  902. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  903. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  904. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  905. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  906. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  907. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  908. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  909. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  910. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  911. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  912. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  913. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  914. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  915. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  916. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  917. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  918. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  919. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  920. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  921. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  922. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  923. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  924. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  925. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  926. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  927. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  928. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  929. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  930. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  931. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  932. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  933. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  934. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  935. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  936. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  937. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  938. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  939. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  940. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  941. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7873316F));
  942. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  943. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  944. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  945. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  946. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  947. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  948. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  949. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  950. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  951. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  952. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  953. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  954. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  955. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  956. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  957. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7869827F));
  958. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7869827F));
  959. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7869827F));
  960. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7869827F));
  961. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7892456F));
  962. this.myTableLayoutPanel1.Controls.Add(this.con1067, 11, 18);
  963. this.myTableLayoutPanel1.Controls.Add(this.con1455, 6, 40);
  964. this.myTableLayoutPanel1.Controls.Add(this.con1482, 52, 44);
  965. this.myTableLayoutPanel1.Controls.Add(this.con1484, 48, 44);
  966. this.myTableLayoutPanel1.Controls.Add(this.con1486, 44, 44);
  967. this.myTableLayoutPanel1.Controls.Add(this.con1580, 44, 48);
  968. this.myTableLayoutPanel1.Controls.Add(this.con1524, 25, 42);
  969. this.myTableLayoutPanel1.Controls.Add(this.con1527, 25, 44);
  970. this.myTableLayoutPanel1.Controls.Add(this.con1545, 12, 40);
  971. this.myTableLayoutPanel1.Controls.Add(this.con1540, 21, 44);
  972. this.myTableLayoutPanel1.Controls.Add(this.con1544, 16, 40);
  973. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 3, 14);
  974. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 49, 14);
  975. this.myTableLayoutPanel1.Controls.Add(this.con1025, 57, 10);
  976. this.myTableLayoutPanel1.Controls.Add(this.con1023, 60, 10);
  977. this.myTableLayoutPanel1.Controls.Add(this.con1028, 52, 10);
  978. this.myTableLayoutPanel1.Controls.Add(this.con1018, 61, 6);
  979. this.myTableLayoutPanel1.Controls.Add(this.con1020, 61, 8);
  980. this.myTableLayoutPanel1.Controls.Add(this.con1053, 25, 16);
  981. this.myTableLayoutPanel1.Controls.Add(this.con1477, 56, 42);
  982. this.myTableLayoutPanel1.Controls.Add(this.con1473, 60, 40);
  983. this.myTableLayoutPanel1.Controls.Add(this.con1474, 51, 40);
  984. this.myTableLayoutPanel1.Controls.Add(this.con1471, 55, 40);
  985. this.myTableLayoutPanel1.Controls.Add(this.con1556, 16, 48);
  986. this.myTableLayoutPanel1.Controls.Add(this.con1587, 56, 48);
  987. this.myTableLayoutPanel1.Controls.Add(this.con1589, 56, 46);
  988. this.myTableLayoutPanel1.Controls.Add(this.con1480, 56, 44);
  989. this.myTableLayoutPanel1.Controls.Add(this.con1505, 39, 50);
  990. this.myTableLayoutPanel1.Controls.Add(this.con1568, 31, 48);
  991. this.myTableLayoutPanel1.Controls.Add(this.con1534, 25, 50);
  992. this.myTableLayoutPanel1.Controls.Add(this.con1573, 31, 52);
  993. this.myTableLayoutPanel1.Controls.Add(this.con1529, 25, 46);
  994. this.myTableLayoutPanel1.Controls.Add(this.con1538, 25, 54);
  995. this.myTableLayoutPanel1.Controls.Add(this.con1537, 25, 52);
  996. this.myTableLayoutPanel1.Controls.Add(this.con1574, 31, 54);
  997. this.myTableLayoutPanel1.Controls.Add(this.con1508, 39, 52);
  998. this.myTableLayoutPanel1.Controls.Add(this.con1553, 16, 46);
  999. this.myTableLayoutPanel1.Controls.Add(this.con1509, 39, 54);
  1000. this.myTableLayoutPanel1.Controls.Add(this.con1532, 24, 48);
  1001. this.myTableLayoutPanel1.Controls.Add(this.con1579, 37, 48);
  1002. this.myTableLayoutPanel1.Controls.Add(this.con1500, 39, 46);
  1003. this.myTableLayoutPanel1.Controls.Add(this.con1582, 48, 48);
  1004. this.myTableLayoutPanel1.Controls.Add(this.con1584, 52, 48);
  1005. this.myTableLayoutPanel1.Controls.Add(this.con1511, 36, 44);
  1006. this.myTableLayoutPanel1.Controls.Add(this.con1513, 33, 44);
  1007. this.myTableLayoutPanel1.Controls.Add(this.con1503, 40, 48);
  1008. this.myTableLayoutPanel1.Controls.Add(this.con1551, 16, 44);
  1009. this.myTableLayoutPanel1.Controls.Add(this.con1548, 16, 42);
  1010. this.myTableLayoutPanel1.Controls.Add(this.con1515, 30, 44);
  1011. this.myTableLayoutPanel1.Controls.Add(this.con1570, 31, 50);
  1012. this.myTableLayoutPanel1.Controls.Add(this.con1565, 28, 48);
  1013. this.myTableLayoutPanel1.Controls.Add(this.con1576, 35, 48);
  1014. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 15, 20);
  1015. this.myTableLayoutPanel1.Controls.Add(this.con1065, 15, 18);
  1016. this.myTableLayoutPanel1.Controls.Add(this.con1010, 45, 8);
  1017. this.myTableLayoutPanel1.Controls.Add(this.con1013, 44, 10);
  1018. this.myTableLayoutPanel1.Controls.Add(this.con1008, 45, 6);
  1019. this.myTableLayoutPanel1.Controls.Add(this.label33, 100, 29);
  1020. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 14, 20);
  1021. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 19, 20);
  1022. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 11, 20);
  1023. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 7, 20);
  1024. this.myTableLayoutPanel1.Controls.Add(this.srm15, 6, 20);
  1025. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 3, 20);
  1026. this.myTableLayoutPanel1.Controls.Add(this.con1062, 15, 16);
  1027. this.myTableLayoutPanel1.Controls.Add(this.con1563, 20, 48);
  1028. this.myTableLayoutPanel1.Controls.Add(this.con1520, 21, 40);
  1029. this.myTableLayoutPanel1.Controls.Add(this.srm14, 22, 20);
  1030. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 23, 20);
  1031. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 27, 20);
  1032. this.myTableLayoutPanel1.Controls.Add(this.con1522, 29, 40);
  1033. this.myTableLayoutPanel1.Controls.Add(this.con1518, 25, 40);
  1034. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 30, 20);
  1035. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 31, 20);
  1036. this.myTableLayoutPanel1.Controls.Add(this.con1558, 16, 50);
  1037. this.myTableLayoutPanel1.Controls.Add(this.con1498, 39, 44);
  1038. this.myTableLayoutPanel1.Controls.Add(this.con1491, 35, 40);
  1039. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 34, 20);
  1040. this.myTableLayoutPanel1.Controls.Add(this.con1597, 16, 52);
  1041. this.myTableLayoutPanel1.Controls.Add(this.srm13, 37, 20);
  1042. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 38, 20);
  1043. this.myTableLayoutPanel1.Controls.Add(this.con1598, 16, 54);
  1044. this.myTableLayoutPanel1.Controls.Add(this.con1489, 38, 40);
  1045. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 42, 20);
  1046. this.myTableLayoutPanel1.Controls.Add(this.con1493, 44, 40);
  1047. this.myTableLayoutPanel1.Controls.Add(this.con1040, 51, 18);
  1048. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 45, 20);
  1049. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 46, 20);
  1050. this.myTableLayoutPanel1.Controls.Add(this.con1495, 39, 42);
  1051. this.myTableLayoutPanel1.Controls.Add(this.con1051, 44, 18);
  1052. this.myTableLayoutPanel1.Controls.Add(this.con1049, 35, 18);
  1053. this.myTableLayoutPanel1.Controls.Add(this.con1047, 39, 18);
  1054. this.myTableLayoutPanel1.Controls.Add(this.con1058, 21, 18);
  1055. this.myTableLayoutPanel1.Controls.Add(this.con1060, 29, 18);
  1056. this.myTableLayoutPanel1.Controls.Add(this.con1056, 24, 18);
  1057. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 33, 14);
  1058. this.myTableLayoutPanel1.Controls.Add(this.con1015, 49, 10);
  1059. this.myTableLayoutPanel1.Controls.Add(this.RGV8, 45, 14);
  1060. this.myTableLayoutPanel1.Controls.Add(this.locationPos1, 50, 20);
  1061. this.myTableLayoutPanel1.Controls.Add(this.locationPos2, 54, 20);
  1062. this.myTableLayoutPanel1.Controls.Add(this.locationPos3, 58, 20);
  1063. this.myTableLayoutPanel1.Controls.Add(this.locationPos4, 62, 20);
  1064. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel5, 53, 20);
  1065. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 61, 20);
  1066. this.myTableLayoutPanel1.Controls.Add(this.con1422, 103, 40);
  1067. this.myTableLayoutPanel1.Controls.Add(this.con1424, 108, 40);
  1068. this.myTableLayoutPanel1.Controls.Add(this.con1308, 111, 40);
  1069. this.myTableLayoutPanel1.Controls.Add(this.con1431, 119, 40);
  1070. this.myTableLayoutPanel1.Controls.Add(this.con1386, 103, 29);
  1071. this.myTableLayoutPanel1.Controls.Add(this.con1389, 103, 31);
  1072. this.myTableLayoutPanel1.Controls.Add(this.con1391, 103, 33);
  1073. this.myTableLayoutPanel1.Controls.Add(this.con1394, 114, 29);
  1074. this.myTableLayoutPanel1.Controls.Add(this.con1397, 114, 31);
  1075. this.myTableLayoutPanel1.Controls.Add(this.con1399, 114, 33);
  1076. this.myTableLayoutPanel1.Controls.Add(this.label1, 111, 29);
  1077. this.myTableLayoutPanel1.Controls.Add(this.con1335, 114, 49);
  1078. this.myTableLayoutPanel1.Controls.Add(this.con1337, 114, 51);
  1079. this.myTableLayoutPanel1.Controls.Add(this.con1340, 114, 53);
  1080. this.myTableLayoutPanel1.Controls.Add(this.label4, 111, 49);
  1081. this.myTableLayoutPanel1.Controls.Add(this.con1387, 107, 29);
  1082. this.myTableLayoutPanel1.Controls.Add(this.con1390, 107, 31);
  1083. this.myTableLayoutPanel1.Controls.Add(this.con1392, 107, 33);
  1084. this.myTableLayoutPanel1.Controls.Add(this.con1395, 118, 29);
  1085. this.myTableLayoutPanel1.Controls.Add(this.con1398, 118, 31);
  1086. this.myTableLayoutPanel1.Controls.Add(this.con1400, 118, 33);
  1087. this.myTableLayoutPanel1.Controls.Add(this.con1334, 118, 49);
  1088. this.myTableLayoutPanel1.Controls.Add(this.con1338, 118, 51);
  1089. this.myTableLayoutPanel1.Controls.Add(this.con1341, 118, 53);
  1090. this.myTableLayoutPanel1.Controls.Add(this.con1343, 114, 55);
  1091. this.myTableLayoutPanel1.Controls.Add(this.con1344, 118, 55);
  1092. this.myTableLayoutPanel1.Controls.Add(this.con1281, 67, 40);
  1093. this.myTableLayoutPanel1.Controls.Add(this.con1283, 70, 40);
  1094. this.myTableLayoutPanel1.Controls.Add(this.con1044, 40, 16);
  1095. this.myTableLayoutPanel1.Controls.Add(this.con1035, 56, 16);
  1096. this.myTableLayoutPanel1.Controls.Add(this.con1030, 53, 12);
  1097. this.myTableLayoutPanel1.Controls.Add(this.con1285, 67, 42);
  1098. this.myTableLayoutPanel1.Controls.Add(this.con1406, 73, 40);
  1099. this.myTableLayoutPanel1.Controls.Add(this.con1404, 75, 40);
  1100. this.myTableLayoutPanel1.Controls.Add(this.con1408, 78, 40);
  1101. this.myTableLayoutPanel1.Controls.Add(this.con1401, 75, 42);
  1102. this.myTableLayoutPanel1.Controls.Add(this.con1290, 81, 40);
  1103. this.myTableLayoutPanel1.Controls.Add(this.con1288, 83, 40);
  1104. this.myTableLayoutPanel1.Controls.Add(this.con1292, 86, 40);
  1105. this.myTableLayoutPanel1.Controls.Add(this.con1294, 83, 42);
  1106. this.myTableLayoutPanel1.Controls.Add(this.con1415, 89, 40);
  1107. this.myTableLayoutPanel1.Controls.Add(this.con1413, 91, 40);
  1108. this.myTableLayoutPanel1.Controls.Add(this.con1410, 91, 42);
  1109. this.myTableLayoutPanel1.Controls.Add(this.con1299, 95, 40);
  1110. this.myTableLayoutPanel1.Controls.Add(this.con1297, 97, 40);
  1111. this.myTableLayoutPanel1.Controls.Add(this.con1301, 100, 40);
  1112. this.myTableLayoutPanel1.Controls.Add(this.con1417, 105, 42);
  1113. this.myTableLayoutPanel1.Controls.Add(this.con1303, 97, 42);
  1114. this.myTableLayoutPanel1.Controls.Add(this.con1306, 113, 40);
  1115. this.myTableLayoutPanel1.Controls.Add(this.con1310, 116, 40);
  1116. this.myTableLayoutPanel1.Controls.Add(this.con1312, 113, 42);
  1117. this.myTableLayoutPanel1.Controls.Add(this.con1426, 121, 42);
  1118. this.myTableLayoutPanel1.Controls.Add(this.con1420, 105, 40);
  1119. this.myTableLayoutPanel1.Controls.Add(this.con1429, 121, 40);
  1120. this.myTableLayoutPanel1.Controls.Add(this.con1038, 55, 18);
  1121. this.myTableLayoutPanel1.Controls.Add(this.con1042, 60, 18);
  1122. this.myTableLayoutPanel1.Controls.Add(this.RGV9, 74, 45);
  1123. this.myTableLayoutPanel1.Controls.Add(this.RGV10, 75, 49);
  1124. this.myTableLayoutPanel1.Controls.Add(this.RGV11, 85, 45);
  1125. this.myTableLayoutPanel1.Controls.Add(this.RGV12, 86, 49);
  1126. this.myTableLayoutPanel1.Controls.Add(this.RGV13, 95, 45);
  1127. this.myTableLayoutPanel1.Controls.Add(this.RGV14, 96, 49);
  1128. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel21, 67, 45);
  1129. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel22, 78, 45);
  1130. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel23, 89, 45);
  1131. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel25, 98, 45);
  1132. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel26, 67, 49);
  1133. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel27, 72, 49);
  1134. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel210, 79, 49);
  1135. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel211, 90, 49);
  1136. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel213, 100, 49);
  1137. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel214, 67, 47);
  1138. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel215, 103, 47);
  1139. this.myTableLayoutPanel1.Controls.Add(this.con1458, 7, 42);
  1140. this.myTableLayoutPanel1.Controls.Add(this.con1460, 7, 44);
  1141. this.myTableLayoutPanel1.Controls.Add(this.con1462, 7, 46);
  1142. this.myTableLayoutPanel1.Controls.Add(this.con1464, 7, 48);
  1143. this.myTableLayoutPanel1.Controls.Add(this.con1466, 7, 50);
  1144. this.myTableLayoutPanel1.Controls.Add(this.con1468, 7, 52);
  1145. this.myTableLayoutPanel1.Controls.Add(this.con1496, 7, 54);
  1146. this.myTableLayoutPanel1.Controls.Add(this.label6, 67, 52);
  1147. this.myTableLayoutPanel1.Controls.Add(this.label12, 3, 52);
  1148. this.myTableLayoutPanel1.Controls.Add(this.RGV1, 75, 14);
  1149. this.myTableLayoutPanel1.Controls.Add(this.RGV2, 85, 14);
  1150. this.myTableLayoutPanel1.Controls.Add(this.RGV3, 95, 14);
  1151. this.myTableLayoutPanel1.Controls.Add(this.RGV4, 78, 22);
  1152. this.myTableLayoutPanel1.Controls.Add(this.RGV5, 86, 22);
  1153. this.myTableLayoutPanel1.Controls.Add(this.RGV6, 94, 22);
  1154. this.myTableLayoutPanel1.Controls.Add(this.RGV7, 101, 22);
  1155. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel24, 72, 14);
  1156. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel28, 79, 14);
  1157. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel212, 89, 14);
  1158. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel216, 99, 14);
  1159. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel217, 72, 22);
  1160. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel218, 82, 22);
  1161. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel219, 90, 22);
  1162. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel220, 98, 22);
  1163. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel221, 105, 22);
  1164. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel4, 72, 16);
  1165. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel7, 105, 16);
  1166. this.myTableLayoutPanel1.Controls.Add(this.con1435, 114, 27);
  1167. this.myTableLayoutPanel1.Controls.Add(this.con1436, 118, 27);
  1168. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1169. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  1170. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1171. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  1172. this.myTableLayoutPanel1.RowCount = 59;
  1173. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.624843F));
  1174. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1175. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1176. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1177. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1178. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1179. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712856F));
  1180. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712856F));
  1181. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.851198F));
  1182. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1183. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712856F));
  1184. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712856F));
  1185. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.71629F));
  1186. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1187. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1188. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1189. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1190. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1191. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1192. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1193. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.705773F));
  1194. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.707185F));
  1195. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.707185F));
  1196. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1197. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1198. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1199. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1200. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1201. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1202. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1203. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1204. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1205. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1206. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.712079F));
  1207. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1208. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1209. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.62484F));
  1210. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1211. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1212. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1213. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1214. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1215. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1216. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1217. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1218. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1219. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1220. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1221. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.718073F));
  1222. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.718073F));
  1223. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1224. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1225. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1226. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1227. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.731079F));
  1228. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.73386F));
  1229. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.73386F));
  1230. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.665268F));
  1231. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.659888F));
  1232. this.myTableLayoutPanel1.Size = new System.Drawing.Size(1702, 586);
  1233. this.myTableLayoutPanel1.TabIndex = 2;
  1234. this.myTableLayoutPanel1.Tag = "";
  1235. //
  1236. // con1067
  1237. //
  1238. this.con1067.BackColor = System.Drawing.Color.Transparent;
  1239. this.myTableLayoutPanel1.SetColumnSpan(this.con1067, 4);
  1240. this.con1067.Dock = System.Windows.Forms.DockStyle.Fill;
  1241. this.con1067.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1242. this.con1067.Location = new System.Drawing.Point(143, 168);
  1243. this.con1067.Margin = new System.Windows.Forms.Padding(0);
  1244. this.con1067.Name = "con1067";
  1245. this.myTableLayoutPanel1.SetRowSpan(this.con1067, 2);
  1246. this.con1067.Size = new System.Drawing.Size(52, 18);
  1247. this.con1067.TabIndex = 869;
  1248. //
  1249. // con1455
  1250. //
  1251. this.con1455.BackColor = System.Drawing.Color.Transparent;
  1252. this.myTableLayoutPanel1.SetColumnSpan(this.con1455, 5);
  1253. this.con1455.Dock = System.Windows.Forms.DockStyle.Fill;
  1254. this.con1455.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1255. this.con1455.Location = new System.Drawing.Point(78, 375);
  1256. this.con1455.Margin = new System.Windows.Forms.Padding(0);
  1257. this.con1455.Name = "con1455";
  1258. this.myTableLayoutPanel1.SetRowSpan(this.con1455, 2);
  1259. this.con1455.Size = new System.Drawing.Size(65, 20);
  1260. this.con1455.TabIndex = 858;
  1261. //
  1262. // con1482
  1263. //
  1264. this.con1482.BackColor = System.Drawing.Color.Transparent;
  1265. this.myTableLayoutPanel1.SetColumnSpan(this.con1482, 4);
  1266. this.con1482.Dock = System.Windows.Forms.DockStyle.Fill;
  1267. this.con1482.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1268. this.con1482.Location = new System.Drawing.Point(676, 415);
  1269. this.con1482.Margin = new System.Windows.Forms.Padding(0);
  1270. this.con1482.Name = "con1482";
  1271. this.myTableLayoutPanel1.SetRowSpan(this.con1482, 2);
  1272. this.con1482.Size = new System.Drawing.Size(52, 20);
  1273. this.con1482.TabIndex = 854;
  1274. //
  1275. // con1484
  1276. //
  1277. this.con1484.BackColor = System.Drawing.Color.Transparent;
  1278. this.myTableLayoutPanel1.SetColumnSpan(this.con1484, 4);
  1279. this.con1484.Dock = System.Windows.Forms.DockStyle.Fill;
  1280. this.con1484.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1281. this.con1484.Location = new System.Drawing.Point(624, 415);
  1282. this.con1484.Margin = new System.Windows.Forms.Padding(0);
  1283. this.con1484.Name = "con1484";
  1284. this.myTableLayoutPanel1.SetRowSpan(this.con1484, 2);
  1285. this.con1484.Size = new System.Drawing.Size(52, 20);
  1286. this.con1484.TabIndex = 853;
  1287. //
  1288. // con1486
  1289. //
  1290. this.con1486.BackColor = System.Drawing.Color.Transparent;
  1291. this.myTableLayoutPanel1.SetColumnSpan(this.con1486, 4);
  1292. this.con1486.Dock = System.Windows.Forms.DockStyle.Fill;
  1293. this.con1486.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1294. this.con1486.Location = new System.Drawing.Point(572, 415);
  1295. this.con1486.Margin = new System.Windows.Forms.Padding(0);
  1296. this.con1486.Name = "con1486";
  1297. this.myTableLayoutPanel1.SetRowSpan(this.con1486, 2);
  1298. this.con1486.Size = new System.Drawing.Size(52, 20);
  1299. this.con1486.TabIndex = 847;
  1300. //
  1301. // con1580
  1302. //
  1303. this.con1580.BackColor = System.Drawing.Color.Transparent;
  1304. this.myTableLayoutPanel1.SetColumnSpan(this.con1580, 4);
  1305. this.con1580.Dock = System.Windows.Forms.DockStyle.Fill;
  1306. this.con1580.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1307. this.con1580.Location = new System.Drawing.Point(585, 455);
  1308. this.con1580.Margin = new System.Windows.Forms.Padding(0);
  1309. this.con1580.Name = "con1580";
  1310. this.myTableLayoutPanel1.SetRowSpan(this.con1580, 2);
  1311. this.con1580.Size = new System.Drawing.Size(52, 20);
  1312. this.con1580.TabIndex = 840;
  1313. //
  1314. // con1524
  1315. //
  1316. this.con1524.BackColor = System.Drawing.Color.Transparent;
  1317. this.myTableLayoutPanel1.SetColumnSpan(this.con1524, 4);
  1318. this.con1524.Dock = System.Windows.Forms.DockStyle.Fill;
  1319. this.con1524.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1320. this.con1524.Location = new System.Drawing.Point(325, 395);
  1321. this.con1524.Margin = new System.Windows.Forms.Padding(0);
  1322. this.con1524.Name = "con1524";
  1323. this.myTableLayoutPanel1.SetRowSpan(this.con1524, 2);
  1324. this.con1524.Size = new System.Drawing.Size(52, 20);
  1325. this.con1524.TabIndex = 834;
  1326. //
  1327. // con1527
  1328. //
  1329. this.con1527.BackColor = System.Drawing.Color.Transparent;
  1330. this.myTableLayoutPanel1.SetColumnSpan(this.con1527, 5);
  1331. this.con1527.Dock = System.Windows.Forms.DockStyle.Fill;
  1332. this.con1527.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1333. this.con1527.Location = new System.Drawing.Point(325, 415);
  1334. this.con1527.Margin = new System.Windows.Forms.Padding(0);
  1335. this.con1527.Name = "con1527";
  1336. this.myTableLayoutPanel1.SetRowSpan(this.con1527, 2);
  1337. this.con1527.Size = new System.Drawing.Size(65, 20);
  1338. this.con1527.TabIndex = 833;
  1339. //
  1340. // con1545
  1341. //
  1342. this.con1545.BackColor = System.Drawing.Color.Transparent;
  1343. this.myTableLayoutPanel1.SetColumnSpan(this.con1545, 4);
  1344. this.con1545.Dock = System.Windows.Forms.DockStyle.Fill;
  1345. this.con1545.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1346. this.con1545.Location = new System.Drawing.Point(156, 375);
  1347. this.con1545.Margin = new System.Windows.Forms.Padding(0);
  1348. this.con1545.Name = "con1545";
  1349. this.myTableLayoutPanel1.SetRowSpan(this.con1545, 2);
  1350. this.con1545.Size = new System.Drawing.Size(52, 20);
  1351. this.con1545.TabIndex = 829;
  1352. //
  1353. // con1540
  1354. //
  1355. this.con1540.BackColor = System.Drawing.Color.Transparent;
  1356. this.myTableLayoutPanel1.SetColumnSpan(this.con1540, 4);
  1357. this.con1540.Dock = System.Windows.Forms.DockStyle.Fill;
  1358. this.con1540.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1359. this.con1540.Location = new System.Drawing.Point(273, 415);
  1360. this.con1540.Margin = new System.Windows.Forms.Padding(0);
  1361. this.con1540.Name = "con1540";
  1362. this.myTableLayoutPanel1.SetRowSpan(this.con1540, 2);
  1363. this.con1540.Size = new System.Drawing.Size(52, 20);
  1364. this.con1540.TabIndex = 828;
  1365. //
  1366. // con1544
  1367. //
  1368. this.con1544.BackColor = System.Drawing.Color.Transparent;
  1369. this.myTableLayoutPanel1.SetColumnSpan(this.con1544, 4);
  1370. this.con1544.Dock = System.Windows.Forms.DockStyle.Fill;
  1371. this.con1544.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1372. this.con1544.Location = new System.Drawing.Point(208, 375);
  1373. this.con1544.Margin = new System.Windows.Forms.Padding(0);
  1374. this.con1544.Name = "con1544";
  1375. this.myTableLayoutPanel1.SetRowSpan(this.con1544, 2);
  1376. this.con1544.Size = new System.Drawing.Size(52, 20);
  1377. this.con1544.TabIndex = 827;
  1378. //
  1379. // tableCellLabel1
  1380. //
  1381. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  1382. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  1383. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1384. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 30);
  1385. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1386. this.tableCellLabel1.Location = new System.Drawing.Point(39, 132);
  1387. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  1388. this.tableCellLabel1.Name = "tableCellLabel1";
  1389. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 2);
  1390. this.tableCellLabel1.Size = new System.Drawing.Size(390, 18);
  1391. this.tableCellLabel1.TabIndex = 791;
  1392. //
  1393. // tableCellLabel3
  1394. //
  1395. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  1396. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  1397. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1398. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 16);
  1399. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1400. this.tableCellLabel3.Location = new System.Drawing.Point(637, 132);
  1401. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  1402. this.tableCellLabel3.Name = "tableCellLabel3";
  1403. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel3, 2);
  1404. this.tableCellLabel3.Size = new System.Drawing.Size(208, 18);
  1405. this.tableCellLabel3.TabIndex = 780;
  1406. //
  1407. // con1025
  1408. //
  1409. this.con1025.BackColor = System.Drawing.Color.Transparent;
  1410. this.myTableLayoutPanel1.SetColumnSpan(this.con1025, 3);
  1411. this.con1025.Dock = System.Windows.Forms.DockStyle.Fill;
  1412. this.con1025.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1413. this.con1025.Location = new System.Drawing.Point(741, 93);
  1414. this.con1025.Margin = new System.Windows.Forms.Padding(0);
  1415. this.con1025.Name = "con1025";
  1416. this.myTableLayoutPanel1.SetRowSpan(this.con1025, 2);
  1417. this.con1025.Size = new System.Drawing.Size(39, 20);
  1418. this.con1025.TabIndex = 768;
  1419. //
  1420. // con1023
  1421. //
  1422. this.con1023.BackColor = System.Drawing.Color.Transparent;
  1423. this.myTableLayoutPanel1.SetColumnSpan(this.con1023, 5);
  1424. this.con1023.Dock = System.Windows.Forms.DockStyle.Fill;
  1425. this.con1023.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1426. this.con1023.Location = new System.Drawing.Point(780, 93);
  1427. this.con1023.Margin = new System.Windows.Forms.Padding(0);
  1428. this.con1023.Name = "con1023";
  1429. this.myTableLayoutPanel1.SetRowSpan(this.con1023, 2);
  1430. this.con1023.Size = new System.Drawing.Size(65, 20);
  1431. this.con1023.TabIndex = 769;
  1432. //
  1433. // con1028
  1434. //
  1435. this.con1028.BackColor = System.Drawing.Color.Transparent;
  1436. this.myTableLayoutPanel1.SetColumnSpan(this.con1028, 5);
  1437. this.con1028.Dock = System.Windows.Forms.DockStyle.Fill;
  1438. this.con1028.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1439. this.con1028.Location = new System.Drawing.Point(676, 93);
  1440. this.con1028.Margin = new System.Windows.Forms.Padding(0);
  1441. this.con1028.Name = "con1028";
  1442. this.myTableLayoutPanel1.SetRowSpan(this.con1028, 2);
  1443. this.con1028.Size = new System.Drawing.Size(65, 20);
  1444. this.con1028.TabIndex = 770;
  1445. //
  1446. // con1018
  1447. //
  1448. this.con1018.BackColor = System.Drawing.Color.Transparent;
  1449. this.myTableLayoutPanel1.SetColumnSpan(this.con1018, 3);
  1450. this.con1018.Dock = System.Windows.Forms.DockStyle.Fill;
  1451. this.con1018.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1452. this.con1018.Location = new System.Drawing.Point(793, 54);
  1453. this.con1018.Margin = new System.Windows.Forms.Padding(0);
  1454. this.con1018.Name = "con1018";
  1455. this.myTableLayoutPanel1.SetRowSpan(this.con1018, 2);
  1456. this.con1018.Size = new System.Drawing.Size(39, 20);
  1457. this.con1018.TabIndex = 765;
  1458. //
  1459. // con1020
  1460. //
  1461. this.con1020.BackColor = System.Drawing.Color.Transparent;
  1462. this.myTableLayoutPanel1.SetColumnSpan(this.con1020, 3);
  1463. this.con1020.Dock = System.Windows.Forms.DockStyle.Fill;
  1464. this.con1020.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1465. this.con1020.Location = new System.Drawing.Point(793, 74);
  1466. this.con1020.Margin = new System.Windows.Forms.Padding(0);
  1467. this.con1020.Name = "con1020";
  1468. this.myTableLayoutPanel1.SetRowSpan(this.con1020, 2);
  1469. this.con1020.Size = new System.Drawing.Size(39, 19);
  1470. this.con1020.TabIndex = 766;
  1471. //
  1472. // con1053
  1473. //
  1474. this.con1053.BackColor = System.Drawing.Color.Transparent;
  1475. this.myTableLayoutPanel1.SetColumnSpan(this.con1053, 3);
  1476. this.con1053.Dock = System.Windows.Forms.DockStyle.Fill;
  1477. this.con1053.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1478. this.con1053.Location = new System.Drawing.Point(325, 150);
  1479. this.con1053.Margin = new System.Windows.Forms.Padding(0);
  1480. this.con1053.Name = "con1053";
  1481. this.myTableLayoutPanel1.SetRowSpan(this.con1053, 2);
  1482. this.con1053.Size = new System.Drawing.Size(39, 18);
  1483. this.con1053.TabIndex = 764;
  1484. //
  1485. // con1477
  1486. //
  1487. this.con1477.BackColor = System.Drawing.Color.Transparent;
  1488. this.myTableLayoutPanel1.SetColumnSpan(this.con1477, 4);
  1489. this.con1477.Dock = System.Windows.Forms.DockStyle.Fill;
  1490. this.con1477.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1491. this.con1477.Location = new System.Drawing.Point(728, 395);
  1492. this.con1477.Margin = new System.Windows.Forms.Padding(0);
  1493. this.con1477.Name = "con1477";
  1494. this.myTableLayoutPanel1.SetRowSpan(this.con1477, 2);
  1495. this.con1477.Size = new System.Drawing.Size(52, 20);
  1496. this.con1477.TabIndex = 716;
  1497. //
  1498. // con1473
  1499. //
  1500. this.con1473.BackColor = System.Drawing.Color.Transparent;
  1501. this.myTableLayoutPanel1.SetColumnSpan(this.con1473, 4);
  1502. this.con1473.Dock = System.Windows.Forms.DockStyle.Fill;
  1503. this.con1473.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1504. this.con1473.Location = new System.Drawing.Point(780, 375);
  1505. this.con1473.Margin = new System.Windows.Forms.Padding(0);
  1506. this.con1473.Name = "con1473";
  1507. this.myTableLayoutPanel1.SetRowSpan(this.con1473, 2);
  1508. this.con1473.Size = new System.Drawing.Size(52, 20);
  1509. this.con1473.TabIndex = 715;
  1510. //
  1511. // con1474
  1512. //
  1513. this.con1474.BackColor = System.Drawing.Color.Transparent;
  1514. this.myTableLayoutPanel1.SetColumnSpan(this.con1474, 4);
  1515. this.con1474.Dock = System.Windows.Forms.DockStyle.Fill;
  1516. this.con1474.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1517. this.con1474.Location = new System.Drawing.Point(663, 375);
  1518. this.con1474.Margin = new System.Windows.Forms.Padding(0);
  1519. this.con1474.Name = "con1474";
  1520. this.myTableLayoutPanel1.SetRowSpan(this.con1474, 2);
  1521. this.con1474.Size = new System.Drawing.Size(52, 20);
  1522. this.con1474.TabIndex = 714;
  1523. //
  1524. // con1471
  1525. //
  1526. this.con1471.BackColor = System.Drawing.Color.Transparent;
  1527. this.myTableLayoutPanel1.SetColumnSpan(this.con1471, 5);
  1528. this.con1471.Dock = System.Windows.Forms.DockStyle.Fill;
  1529. this.con1471.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1530. this.con1471.Location = new System.Drawing.Point(715, 375);
  1531. this.con1471.Margin = new System.Windows.Forms.Padding(0);
  1532. this.con1471.Name = "con1471";
  1533. this.myTableLayoutPanel1.SetRowSpan(this.con1471, 2);
  1534. this.con1471.Size = new System.Drawing.Size(65, 20);
  1535. this.con1471.TabIndex = 712;
  1536. //
  1537. // con1556
  1538. //
  1539. this.con1556.BackColor = System.Drawing.Color.Transparent;
  1540. this.myTableLayoutPanel1.SetColumnSpan(this.con1556, 4);
  1541. this.con1556.Dock = System.Windows.Forms.DockStyle.Fill;
  1542. this.con1556.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1543. this.con1556.Location = new System.Drawing.Point(208, 455);
  1544. this.con1556.Margin = new System.Windows.Forms.Padding(0);
  1545. this.con1556.Name = "con1556";
  1546. this.myTableLayoutPanel1.SetRowSpan(this.con1556, 2);
  1547. this.con1556.Size = new System.Drawing.Size(52, 20);
  1548. this.con1556.TabIndex = 713;
  1549. //
  1550. // con1587
  1551. //
  1552. this.con1587.BackColor = System.Drawing.Color.Transparent;
  1553. this.myTableLayoutPanel1.SetColumnSpan(this.con1587, 5);
  1554. this.con1587.Dock = System.Windows.Forms.DockStyle.Fill;
  1555. this.con1587.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1556. this.con1587.Location = new System.Drawing.Point(741, 455);
  1557. this.con1587.Margin = new System.Windows.Forms.Padding(0);
  1558. this.con1587.Name = "con1587";
  1559. this.myTableLayoutPanel1.SetRowSpan(this.con1587, 2);
  1560. this.con1587.Size = new System.Drawing.Size(65, 20);
  1561. this.con1587.TabIndex = 710;
  1562. //
  1563. // con1589
  1564. //
  1565. this.con1589.BackColor = System.Drawing.Color.Transparent;
  1566. this.myTableLayoutPanel1.SetColumnSpan(this.con1589, 4);
  1567. this.con1589.Dock = System.Windows.Forms.DockStyle.Fill;
  1568. this.con1589.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1569. this.con1589.Location = new System.Drawing.Point(728, 435);
  1570. this.con1589.Margin = new System.Windows.Forms.Padding(0);
  1571. this.con1589.Name = "con1589";
  1572. this.myTableLayoutPanel1.SetRowSpan(this.con1589, 2);
  1573. this.con1589.Size = new System.Drawing.Size(52, 20);
  1574. this.con1589.TabIndex = 711;
  1575. //
  1576. // con1480
  1577. //
  1578. this.con1480.BackColor = System.Drawing.Color.Transparent;
  1579. this.myTableLayoutPanel1.SetColumnSpan(this.con1480, 5);
  1580. this.con1480.Dock = System.Windows.Forms.DockStyle.Fill;
  1581. this.con1480.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1582. this.con1480.Location = new System.Drawing.Point(728, 415);
  1583. this.con1480.Margin = new System.Windows.Forms.Padding(0);
  1584. this.con1480.Name = "con1480";
  1585. this.myTableLayoutPanel1.SetRowSpan(this.con1480, 2);
  1586. this.con1480.Size = new System.Drawing.Size(65, 20);
  1587. this.con1480.TabIndex = 709;
  1588. //
  1589. // con1505
  1590. //
  1591. this.con1505.BackColor = System.Drawing.Color.Transparent;
  1592. this.myTableLayoutPanel1.SetColumnSpan(this.con1505, 4);
  1593. this.con1505.Dock = System.Windows.Forms.DockStyle.Fill;
  1594. this.con1505.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1595. this.con1505.Location = new System.Drawing.Point(507, 475);
  1596. this.con1505.Margin = new System.Windows.Forms.Padding(0);
  1597. this.con1505.Name = "con1505";
  1598. this.myTableLayoutPanel1.SetRowSpan(this.con1505, 2);
  1599. this.con1505.Size = new System.Drawing.Size(52, 20);
  1600. this.con1505.TabIndex = 708;
  1601. //
  1602. // con1568
  1603. //
  1604. this.con1568.BackColor = System.Drawing.Color.Transparent;
  1605. this.myTableLayoutPanel1.SetColumnSpan(this.con1568, 4);
  1606. this.con1568.Dock = System.Windows.Forms.DockStyle.Fill;
  1607. this.con1568.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1608. this.con1568.Location = new System.Drawing.Point(403, 455);
  1609. this.con1568.Margin = new System.Windows.Forms.Padding(0);
  1610. this.con1568.Name = "con1568";
  1611. this.myTableLayoutPanel1.SetRowSpan(this.con1568, 2);
  1612. this.con1568.Size = new System.Drawing.Size(52, 20);
  1613. this.con1568.TabIndex = 705;
  1614. //
  1615. // con1534
  1616. //
  1617. this.con1534.BackColor = System.Drawing.Color.Transparent;
  1618. this.myTableLayoutPanel1.SetColumnSpan(this.con1534, 4);
  1619. this.con1534.Dock = System.Windows.Forms.DockStyle.Fill;
  1620. this.con1534.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1621. this.con1534.Location = new System.Drawing.Point(325, 475);
  1622. this.con1534.Margin = new System.Windows.Forms.Padding(0);
  1623. this.con1534.Name = "con1534";
  1624. this.myTableLayoutPanel1.SetRowSpan(this.con1534, 2);
  1625. this.con1534.Size = new System.Drawing.Size(52, 20);
  1626. this.con1534.TabIndex = 706;
  1627. //
  1628. // con1573
  1629. //
  1630. this.con1573.BackColor = System.Drawing.Color.Transparent;
  1631. this.myTableLayoutPanel1.SetColumnSpan(this.con1573, 4);
  1632. this.con1573.Dock = System.Windows.Forms.DockStyle.Fill;
  1633. this.con1573.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1634. this.con1573.Location = new System.Drawing.Point(403, 495);
  1635. this.con1573.Margin = new System.Windows.Forms.Padding(0);
  1636. this.con1573.Name = "con1573";
  1637. this.myTableLayoutPanel1.SetRowSpan(this.con1573, 2);
  1638. this.con1573.Size = new System.Drawing.Size(52, 20);
  1639. this.con1573.TabIndex = 707;
  1640. //
  1641. // con1529
  1642. //
  1643. this.con1529.BackColor = System.Drawing.Color.Transparent;
  1644. this.myTableLayoutPanel1.SetColumnSpan(this.con1529, 4);
  1645. this.con1529.Dock = System.Windows.Forms.DockStyle.Fill;
  1646. this.con1529.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1647. this.con1529.Location = new System.Drawing.Point(325, 435);
  1648. this.con1529.Margin = new System.Windows.Forms.Padding(0);
  1649. this.con1529.Name = "con1529";
  1650. this.myTableLayoutPanel1.SetRowSpan(this.con1529, 2);
  1651. this.con1529.Size = new System.Drawing.Size(52, 20);
  1652. this.con1529.TabIndex = 702;
  1653. //
  1654. // con1538
  1655. //
  1656. this.con1538.BackColor = System.Drawing.Color.Transparent;
  1657. this.myTableLayoutPanel1.SetColumnSpan(this.con1538, 4);
  1658. this.con1538.Dock = System.Windows.Forms.DockStyle.Fill;
  1659. this.con1538.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1660. this.con1538.Location = new System.Drawing.Point(325, 515);
  1661. this.con1538.Margin = new System.Windows.Forms.Padding(0);
  1662. this.con1538.Name = "con1538";
  1663. this.myTableLayoutPanel1.SetRowSpan(this.con1538, 2);
  1664. this.con1538.Size = new System.Drawing.Size(52, 20);
  1665. this.con1538.TabIndex = 703;
  1666. //
  1667. // con1537
  1668. //
  1669. this.con1537.BackColor = System.Drawing.Color.Transparent;
  1670. this.myTableLayoutPanel1.SetColumnSpan(this.con1537, 4);
  1671. this.con1537.Dock = System.Windows.Forms.DockStyle.Fill;
  1672. this.con1537.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1673. this.con1537.Location = new System.Drawing.Point(325, 495);
  1674. this.con1537.Margin = new System.Windows.Forms.Padding(0);
  1675. this.con1537.Name = "con1537";
  1676. this.myTableLayoutPanel1.SetRowSpan(this.con1537, 2);
  1677. this.con1537.Size = new System.Drawing.Size(52, 20);
  1678. this.con1537.TabIndex = 704;
  1679. //
  1680. // con1574
  1681. //
  1682. this.con1574.BackColor = System.Drawing.Color.Transparent;
  1683. this.myTableLayoutPanel1.SetColumnSpan(this.con1574, 4);
  1684. this.con1574.Dock = System.Windows.Forms.DockStyle.Fill;
  1685. this.con1574.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1686. this.con1574.Location = new System.Drawing.Point(403, 515);
  1687. this.con1574.Margin = new System.Windows.Forms.Padding(0);
  1688. this.con1574.Name = "con1574";
  1689. this.myTableLayoutPanel1.SetRowSpan(this.con1574, 2);
  1690. this.con1574.Size = new System.Drawing.Size(52, 20);
  1691. this.con1574.TabIndex = 699;
  1692. //
  1693. // con1508
  1694. //
  1695. this.con1508.BackColor = System.Drawing.Color.Transparent;
  1696. this.myTableLayoutPanel1.SetColumnSpan(this.con1508, 4);
  1697. this.con1508.Dock = System.Windows.Forms.DockStyle.Fill;
  1698. this.con1508.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1699. this.con1508.Location = new System.Drawing.Point(507, 495);
  1700. this.con1508.Margin = new System.Windows.Forms.Padding(0);
  1701. this.con1508.Name = "con1508";
  1702. this.myTableLayoutPanel1.SetRowSpan(this.con1508, 2);
  1703. this.con1508.Size = new System.Drawing.Size(52, 20);
  1704. this.con1508.TabIndex = 700;
  1705. //
  1706. // con1553
  1707. //
  1708. this.con1553.BackColor = System.Drawing.Color.Transparent;
  1709. this.myTableLayoutPanel1.SetColumnSpan(this.con1553, 4);
  1710. this.con1553.Dock = System.Windows.Forms.DockStyle.Fill;
  1711. this.con1553.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1712. this.con1553.Location = new System.Drawing.Point(208, 435);
  1713. this.con1553.Margin = new System.Windows.Forms.Padding(0);
  1714. this.con1553.Name = "con1553";
  1715. this.myTableLayoutPanel1.SetRowSpan(this.con1553, 2);
  1716. this.con1553.Size = new System.Drawing.Size(52, 20);
  1717. this.con1553.TabIndex = 701;
  1718. //
  1719. // con1509
  1720. //
  1721. this.con1509.BackColor = System.Drawing.Color.Transparent;
  1722. this.myTableLayoutPanel1.SetColumnSpan(this.con1509, 4);
  1723. this.con1509.Dock = System.Windows.Forms.DockStyle.Fill;
  1724. this.con1509.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1725. this.con1509.Location = new System.Drawing.Point(507, 515);
  1726. this.con1509.Margin = new System.Windows.Forms.Padding(0);
  1727. this.con1509.Name = "con1509";
  1728. this.myTableLayoutPanel1.SetRowSpan(this.con1509, 2);
  1729. this.con1509.Size = new System.Drawing.Size(52, 20);
  1730. this.con1509.TabIndex = 696;
  1731. //
  1732. // con1532
  1733. //
  1734. this.con1532.BackColor = System.Drawing.Color.Transparent;
  1735. this.myTableLayoutPanel1.SetColumnSpan(this.con1532, 4);
  1736. this.con1532.Dock = System.Windows.Forms.DockStyle.Fill;
  1737. this.con1532.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1738. this.con1532.Location = new System.Drawing.Point(312, 455);
  1739. this.con1532.Margin = new System.Windows.Forms.Padding(0);
  1740. this.con1532.Name = "con1532";
  1741. this.myTableLayoutPanel1.SetRowSpan(this.con1532, 2);
  1742. this.con1532.Size = new System.Drawing.Size(52, 20);
  1743. this.con1532.TabIndex = 697;
  1744. //
  1745. // con1579
  1746. //
  1747. this.con1579.BackColor = System.Drawing.Color.Transparent;
  1748. this.myTableLayoutPanel1.SetColumnSpan(this.con1579, 3);
  1749. this.con1579.Dock = System.Windows.Forms.DockStyle.Fill;
  1750. this.con1579.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1751. this.con1579.Location = new System.Drawing.Point(481, 455);
  1752. this.con1579.Margin = new System.Windows.Forms.Padding(0);
  1753. this.con1579.Name = "con1579";
  1754. this.myTableLayoutPanel1.SetRowSpan(this.con1579, 2);
  1755. this.con1579.Size = new System.Drawing.Size(39, 20);
  1756. this.con1579.TabIndex = 698;
  1757. //
  1758. // con1500
  1759. //
  1760. this.con1500.BackColor = System.Drawing.Color.Transparent;
  1761. this.myTableLayoutPanel1.SetColumnSpan(this.con1500, 4);
  1762. this.con1500.Dock = System.Windows.Forms.DockStyle.Fill;
  1763. this.con1500.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1764. this.con1500.Location = new System.Drawing.Point(507, 435);
  1765. this.con1500.Margin = new System.Windows.Forms.Padding(0);
  1766. this.con1500.Name = "con1500";
  1767. this.myTableLayoutPanel1.SetRowSpan(this.con1500, 2);
  1768. this.con1500.Size = new System.Drawing.Size(52, 20);
  1769. this.con1500.TabIndex = 693;
  1770. //
  1771. // con1582
  1772. //
  1773. this.con1582.BackColor = System.Drawing.Color.Transparent;
  1774. this.myTableLayoutPanel1.SetColumnSpan(this.con1582, 4);
  1775. this.con1582.Dock = System.Windows.Forms.DockStyle.Fill;
  1776. this.con1582.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1777. this.con1582.Location = new System.Drawing.Point(637, 455);
  1778. this.con1582.Margin = new System.Windows.Forms.Padding(0);
  1779. this.con1582.Name = "con1582";
  1780. this.myTableLayoutPanel1.SetRowSpan(this.con1582, 2);
  1781. this.con1582.Size = new System.Drawing.Size(52, 20);
  1782. this.con1582.TabIndex = 694;
  1783. //
  1784. // con1584
  1785. //
  1786. this.con1584.BackColor = System.Drawing.Color.Transparent;
  1787. this.myTableLayoutPanel1.SetColumnSpan(this.con1584, 4);
  1788. this.con1584.Dock = System.Windows.Forms.DockStyle.Fill;
  1789. this.con1584.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1790. this.con1584.Location = new System.Drawing.Point(689, 455);
  1791. this.con1584.Margin = new System.Windows.Forms.Padding(0);
  1792. this.con1584.Name = "con1584";
  1793. this.myTableLayoutPanel1.SetRowSpan(this.con1584, 2);
  1794. this.con1584.Size = new System.Drawing.Size(52, 20);
  1795. this.con1584.TabIndex = 695;
  1796. //
  1797. // con1511
  1798. //
  1799. this.con1511.BackColor = System.Drawing.Color.Transparent;
  1800. this.myTableLayoutPanel1.SetColumnSpan(this.con1511, 3);
  1801. this.con1511.Dock = System.Windows.Forms.DockStyle.Fill;
  1802. this.con1511.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1803. this.con1511.Location = new System.Drawing.Point(468, 415);
  1804. this.con1511.Margin = new System.Windows.Forms.Padding(0);
  1805. this.con1511.Name = "con1511";
  1806. this.myTableLayoutPanel1.SetRowSpan(this.con1511, 2);
  1807. this.con1511.Size = new System.Drawing.Size(39, 20);
  1808. this.con1511.TabIndex = 690;
  1809. //
  1810. // con1513
  1811. //
  1812. this.con1513.BackColor = System.Drawing.Color.Transparent;
  1813. this.myTableLayoutPanel1.SetColumnSpan(this.con1513, 3);
  1814. this.con1513.Dock = System.Windows.Forms.DockStyle.Fill;
  1815. this.con1513.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1816. this.con1513.Location = new System.Drawing.Point(429, 415);
  1817. this.con1513.Margin = new System.Windows.Forms.Padding(0);
  1818. this.con1513.Name = "con1513";
  1819. this.myTableLayoutPanel1.SetRowSpan(this.con1513, 2);
  1820. this.con1513.Size = new System.Drawing.Size(39, 20);
  1821. this.con1513.TabIndex = 691;
  1822. //
  1823. // con1503
  1824. //
  1825. this.con1503.BackColor = System.Drawing.Color.Transparent;
  1826. this.myTableLayoutPanel1.SetColumnSpan(this.con1503, 5);
  1827. this.con1503.Dock = System.Windows.Forms.DockStyle.Fill;
  1828. this.con1503.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1829. this.con1503.Location = new System.Drawing.Point(520, 455);
  1830. this.con1503.Margin = new System.Windows.Forms.Padding(0);
  1831. this.con1503.Name = "con1503";
  1832. this.myTableLayoutPanel1.SetRowSpan(this.con1503, 2);
  1833. this.con1503.Size = new System.Drawing.Size(65, 20);
  1834. this.con1503.TabIndex = 692;
  1835. //
  1836. // con1551
  1837. //
  1838. this.con1551.BackColor = System.Drawing.Color.Transparent;
  1839. this.myTableLayoutPanel1.SetColumnSpan(this.con1551, 5);
  1840. this.con1551.Dock = System.Windows.Forms.DockStyle.Fill;
  1841. this.con1551.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1842. this.con1551.Location = new System.Drawing.Point(208, 415);
  1843. this.con1551.Margin = new System.Windows.Forms.Padding(0);
  1844. this.con1551.Name = "con1551";
  1845. this.myTableLayoutPanel1.SetRowSpan(this.con1551, 2);
  1846. this.con1551.Size = new System.Drawing.Size(65, 20);
  1847. this.con1551.TabIndex = 687;
  1848. //
  1849. // con1548
  1850. //
  1851. this.con1548.BackColor = System.Drawing.Color.Transparent;
  1852. this.myTableLayoutPanel1.SetColumnSpan(this.con1548, 4);
  1853. this.con1548.Dock = System.Windows.Forms.DockStyle.Fill;
  1854. this.con1548.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1855. this.con1548.Location = new System.Drawing.Point(208, 395);
  1856. this.con1548.Margin = new System.Windows.Forms.Padding(0);
  1857. this.con1548.Name = "con1548";
  1858. this.myTableLayoutPanel1.SetRowSpan(this.con1548, 2);
  1859. this.con1548.Size = new System.Drawing.Size(52, 20);
  1860. this.con1548.TabIndex = 688;
  1861. //
  1862. // con1515
  1863. //
  1864. this.con1515.BackColor = System.Drawing.Color.Transparent;
  1865. this.myTableLayoutPanel1.SetColumnSpan(this.con1515, 3);
  1866. this.con1515.Dock = System.Windows.Forms.DockStyle.Fill;
  1867. this.con1515.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1868. this.con1515.Location = new System.Drawing.Point(390, 415);
  1869. this.con1515.Margin = new System.Windows.Forms.Padding(0);
  1870. this.con1515.Name = "con1515";
  1871. this.myTableLayoutPanel1.SetRowSpan(this.con1515, 2);
  1872. this.con1515.Size = new System.Drawing.Size(39, 20);
  1873. this.con1515.TabIndex = 689;
  1874. //
  1875. // con1570
  1876. //
  1877. this.con1570.BackColor = System.Drawing.Color.Transparent;
  1878. this.myTableLayoutPanel1.SetColumnSpan(this.con1570, 4);
  1879. this.con1570.Dock = System.Windows.Forms.DockStyle.Fill;
  1880. this.con1570.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1881. this.con1570.Location = new System.Drawing.Point(403, 475);
  1882. this.con1570.Margin = new System.Windows.Forms.Padding(0);
  1883. this.con1570.Name = "con1570";
  1884. this.myTableLayoutPanel1.SetRowSpan(this.con1570, 2);
  1885. this.con1570.Size = new System.Drawing.Size(52, 20);
  1886. this.con1570.TabIndex = 684;
  1887. //
  1888. // con1565
  1889. //
  1890. this.con1565.BackColor = System.Drawing.Color.Transparent;
  1891. this.myTableLayoutPanel1.SetColumnSpan(this.con1565, 3);
  1892. this.con1565.Dock = System.Windows.Forms.DockStyle.Fill;
  1893. this.con1565.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1894. this.con1565.Location = new System.Drawing.Point(364, 455);
  1895. this.con1565.Margin = new System.Windows.Forms.Padding(0);
  1896. this.con1565.Name = "con1565";
  1897. this.myTableLayoutPanel1.SetRowSpan(this.con1565, 2);
  1898. this.con1565.Size = new System.Drawing.Size(39, 20);
  1899. this.con1565.TabIndex = 685;
  1900. //
  1901. // con1576
  1902. //
  1903. this.con1576.BackColor = System.Drawing.Color.Transparent;
  1904. this.myTableLayoutPanel1.SetColumnSpan(this.con1576, 2);
  1905. this.con1576.Dock = System.Windows.Forms.DockStyle.Fill;
  1906. this.con1576.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1907. this.con1576.Location = new System.Drawing.Point(455, 455);
  1908. this.con1576.Margin = new System.Windows.Forms.Padding(0);
  1909. this.con1576.Name = "con1576";
  1910. this.myTableLayoutPanel1.SetRowSpan(this.con1576, 2);
  1911. this.con1576.Size = new System.Drawing.Size(26, 20);
  1912. this.con1576.TabIndex = 686;
  1913. //
  1914. // locationPos37
  1915. //
  1916. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos37, 3);
  1917. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  1918. this.locationPos37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1919. this.locationPos37.Location = new System.Drawing.Point(195, 186);
  1920. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  1921. this.locationPos37.Name = "locationPos37";
  1922. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  1923. this.locationPos37.Size = new System.Drawing.Size(39, 189);
  1924. this.locationPos37.TabIndex = 678;
  1925. //
  1926. // con1065
  1927. //
  1928. this.con1065.BackColor = System.Drawing.Color.Transparent;
  1929. this.myTableLayoutPanel1.SetColumnSpan(this.con1065, 5);
  1930. this.con1065.Dock = System.Windows.Forms.DockStyle.Fill;
  1931. this.con1065.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1932. this.con1065.Location = new System.Drawing.Point(195, 168);
  1933. this.con1065.Margin = new System.Windows.Forms.Padding(0);
  1934. this.con1065.Name = "con1065";
  1935. this.myTableLayoutPanel1.SetRowSpan(this.con1065, 2);
  1936. this.con1065.Size = new System.Drawing.Size(65, 18);
  1937. this.con1065.TabIndex = 652;
  1938. //
  1939. // con1010
  1940. //
  1941. this.con1010.BackColor = System.Drawing.Color.Transparent;
  1942. this.myTableLayoutPanel1.SetColumnSpan(this.con1010, 3);
  1943. this.con1010.Dock = System.Windows.Forms.DockStyle.Fill;
  1944. this.con1010.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1945. this.con1010.Location = new System.Drawing.Point(585, 74);
  1946. this.con1010.Margin = new System.Windows.Forms.Padding(0);
  1947. this.con1010.Name = "con1010";
  1948. this.myTableLayoutPanel1.SetRowSpan(this.con1010, 2);
  1949. this.con1010.Size = new System.Drawing.Size(39, 19);
  1950. this.con1010.TabIndex = 634;
  1951. //
  1952. // con1013
  1953. //
  1954. this.con1013.BackColor = System.Drawing.Color.Transparent;
  1955. this.myTableLayoutPanel1.SetColumnSpan(this.con1013, 5);
  1956. this.con1013.Dock = System.Windows.Forms.DockStyle.Fill;
  1957. this.con1013.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1958. this.con1013.Location = new System.Drawing.Point(572, 93);
  1959. this.con1013.Margin = new System.Windows.Forms.Padding(0);
  1960. this.con1013.Name = "con1013";
  1961. this.myTableLayoutPanel1.SetRowSpan(this.con1013, 2);
  1962. this.con1013.Size = new System.Drawing.Size(65, 20);
  1963. this.con1013.TabIndex = 635;
  1964. //
  1965. // con1008
  1966. //
  1967. this.con1008.BackColor = System.Drawing.Color.Transparent;
  1968. this.myTableLayoutPanel1.SetColumnSpan(this.con1008, 3);
  1969. this.con1008.Dock = System.Windows.Forms.DockStyle.Fill;
  1970. this.con1008.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1971. this.con1008.Location = new System.Drawing.Point(585, 54);
  1972. this.con1008.Margin = new System.Windows.Forms.Padding(0);
  1973. this.con1008.Name = "con1008";
  1974. this.myTableLayoutPanel1.SetRowSpan(this.con1008, 2);
  1975. this.con1008.Size = new System.Drawing.Size(39, 20);
  1976. this.con1008.TabIndex = 636;
  1977. //
  1978. // label33
  1979. //
  1980. this.label33.AutoSize = true;
  1981. this.label33.BackColor = System.Drawing.Color.Lime;
  1982. this.myTableLayoutPanel1.SetColumnSpan(this.label33, 3);
  1983. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  1984. this.label33.Location = new System.Drawing.Point(1304, 270);
  1985. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1986. this.label33.Name = "label33";
  1987. this.myTableLayoutPanel1.SetRowSpan(this.label33, 2);
  1988. this.label33.Size = new System.Drawing.Size(31, 20);
  1989. this.label33.TabIndex = 633;
  1990. this.label33.Text = "入";
  1991. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1992. //
  1993. // tableCellLabel31
  1994. //
  1995. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  1996. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  1997. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1998. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  1999. this.tableCellLabel31.Location = new System.Drawing.Point(182, 186);
  2000. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  2001. this.tableCellLabel31.Name = "tableCellLabel31";
  2002. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 20);
  2003. this.tableCellLabel31.Size = new System.Drawing.Size(13, 189);
  2004. this.tableCellLabel31.TabIndex = 436;
  2005. //
  2006. // locationPos38
  2007. //
  2008. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos38, 3);
  2009. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  2010. this.locationPos38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2011. this.locationPos38.Location = new System.Drawing.Point(247, 186);
  2012. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  2013. this.locationPos38.Name = "locationPos38";
  2014. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  2015. this.locationPos38.Size = new System.Drawing.Size(39, 189);
  2016. this.locationPos38.TabIndex = 18;
  2017. //
  2018. // locationPos49
  2019. //
  2020. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos49, 3);
  2021. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  2022. this.locationPos49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2023. this.locationPos49.Location = new System.Drawing.Point(143, 186);
  2024. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  2025. this.locationPos49.Name = "locationPos49";
  2026. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  2027. this.locationPos49.Size = new System.Drawing.Size(39, 189);
  2028. this.locationPos49.TabIndex = 474;
  2029. //
  2030. // locationPos53
  2031. //
  2032. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos53, 3);
  2033. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  2034. this.locationPos53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2035. this.locationPos53.Location = new System.Drawing.Point(91, 186);
  2036. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  2037. this.locationPos53.Name = "locationPos53";
  2038. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  2039. this.locationPos53.Size = new System.Drawing.Size(39, 189);
  2040. this.locationPos53.TabIndex = 476;
  2041. //
  2042. // srm15
  2043. //
  2044. this.srm15.BackColor = System.Drawing.Color.Transparent;
  2045. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  2046. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2047. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  2048. this.srm15.Location = new System.Drawing.Point(78, 186);
  2049. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  2050. this.srm15.Name = "srm15";
  2051. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 20);
  2052. this.srm15.Size = new System.Drawing.Size(13, 189);
  2053. this.srm15.TabIndex = 478;
  2054. //
  2055. // locationPos55
  2056. //
  2057. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos55, 3);
  2058. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  2059. this.locationPos55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2060. this.locationPos55.Location = new System.Drawing.Point(39, 186);
  2061. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  2062. this.locationPos55.Name = "locationPos55";
  2063. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  2064. this.locationPos55.Size = new System.Drawing.Size(39, 189);
  2065. this.locationPos55.TabIndex = 479;
  2066. //
  2067. // con1062
  2068. //
  2069. this.con1062.BackColor = System.Drawing.Color.Transparent;
  2070. this.myTableLayoutPanel1.SetColumnSpan(this.con1062, 5);
  2071. this.con1062.Dock = System.Windows.Forms.DockStyle.Fill;
  2072. this.con1062.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2073. this.con1062.Location = new System.Drawing.Point(195, 150);
  2074. this.con1062.Margin = new System.Windows.Forms.Padding(0);
  2075. this.con1062.Name = "con1062";
  2076. this.myTableLayoutPanel1.SetRowSpan(this.con1062, 2);
  2077. this.con1062.Size = new System.Drawing.Size(65, 18);
  2078. this.con1062.TabIndex = 630;
  2079. //
  2080. // con1563
  2081. //
  2082. this.con1563.BackColor = System.Drawing.Color.Transparent;
  2083. this.myTableLayoutPanel1.SetColumnSpan(this.con1563, 4);
  2084. this.con1563.Dock = System.Windows.Forms.DockStyle.Fill;
  2085. this.con1563.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2086. this.con1563.Location = new System.Drawing.Point(260, 455);
  2087. this.con1563.Margin = new System.Windows.Forms.Padding(0);
  2088. this.con1563.Name = "con1563";
  2089. this.myTableLayoutPanel1.SetRowSpan(this.con1563, 2);
  2090. this.con1563.Size = new System.Drawing.Size(52, 20);
  2091. this.con1563.TabIndex = 857;
  2092. //
  2093. // con1520
  2094. //
  2095. this.con1520.BackColor = System.Drawing.Color.Transparent;
  2096. this.myTableLayoutPanel1.SetColumnSpan(this.con1520, 4);
  2097. this.con1520.Dock = System.Windows.Forms.DockStyle.Fill;
  2098. this.con1520.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2099. this.con1520.Location = new System.Drawing.Point(273, 375);
  2100. this.con1520.Margin = new System.Windows.Forms.Padding(0);
  2101. this.con1520.Name = "con1520";
  2102. this.myTableLayoutPanel1.SetRowSpan(this.con1520, 2);
  2103. this.con1520.Size = new System.Drawing.Size(52, 20);
  2104. this.con1520.TabIndex = 838;
  2105. this.con1520.Load += new System.EventHandler(this.con2035_Load);
  2106. //
  2107. // srm14
  2108. //
  2109. this.srm14.BackColor = System.Drawing.Color.Transparent;
  2110. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  2111. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2112. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  2113. this.srm14.Location = new System.Drawing.Point(286, 186);
  2114. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  2115. this.srm14.Name = "srm14";
  2116. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 20);
  2117. this.srm14.Size = new System.Drawing.Size(13, 189);
  2118. this.srm14.TabIndex = 475;
  2119. //
  2120. // locationPos48
  2121. //
  2122. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos48, 3);
  2123. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  2124. this.locationPos48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2125. this.locationPos48.Location = new System.Drawing.Point(299, 186);
  2126. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  2127. this.locationPos48.Name = "locationPos48";
  2128. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  2129. this.locationPos48.Size = new System.Drawing.Size(39, 189);
  2130. this.locationPos48.TabIndex = 473;
  2131. //
  2132. // locationPos36
  2133. //
  2134. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos36, 3);
  2135. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  2136. this.locationPos36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2137. this.locationPos36.Location = new System.Drawing.Point(351, 186);
  2138. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  2139. this.locationPos36.Name = "locationPos36";
  2140. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  2141. this.locationPos36.Size = new System.Drawing.Size(39, 189);
  2142. this.locationPos36.TabIndex = 679;
  2143. //
  2144. // con1522
  2145. //
  2146. this.con1522.BackColor = System.Drawing.Color.Transparent;
  2147. this.myTableLayoutPanel1.SetColumnSpan(this.con1522, 4);
  2148. this.con1522.Dock = System.Windows.Forms.DockStyle.Fill;
  2149. this.con1522.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2150. this.con1522.Location = new System.Drawing.Point(377, 375);
  2151. this.con1522.Margin = new System.Windows.Forms.Padding(0);
  2152. this.con1522.Name = "con1522";
  2153. this.myTableLayoutPanel1.SetRowSpan(this.con1522, 2);
  2154. this.con1522.Size = new System.Drawing.Size(52, 20);
  2155. this.con1522.TabIndex = 839;
  2156. //
  2157. // con1518
  2158. //
  2159. this.con1518.BackColor = System.Drawing.Color.Transparent;
  2160. this.myTableLayoutPanel1.SetColumnSpan(this.con1518, 4);
  2161. this.con1518.Dock = System.Windows.Forms.DockStyle.Fill;
  2162. this.con1518.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2163. this.con1518.Location = new System.Drawing.Point(325, 375);
  2164. this.con1518.Margin = new System.Windows.Forms.Padding(0);
  2165. this.con1518.Name = "con1518";
  2166. this.myTableLayoutPanel1.SetRowSpan(this.con1518, 2);
  2167. this.con1518.Size = new System.Drawing.Size(52, 20);
  2168. this.con1518.TabIndex = 841;
  2169. //
  2170. // tableCellLabel30
  2171. //
  2172. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  2173. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  2174. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2175. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  2176. this.tableCellLabel30.Location = new System.Drawing.Point(390, 186);
  2177. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  2178. this.tableCellLabel30.Name = "tableCellLabel30";
  2179. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 20);
  2180. this.tableCellLabel30.Size = new System.Drawing.Size(13, 189);
  2181. this.tableCellLabel30.TabIndex = 680;
  2182. //
  2183. // locationPos47
  2184. //
  2185. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos47, 3);
  2186. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  2187. this.locationPos47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2188. this.locationPos47.Location = new System.Drawing.Point(403, 186);
  2189. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  2190. this.locationPos47.Name = "locationPos47";
  2191. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  2192. this.locationPos47.Size = new System.Drawing.Size(39, 189);
  2193. this.locationPos47.TabIndex = 471;
  2194. //
  2195. // con1558
  2196. //
  2197. this.con1558.BackColor = System.Drawing.Color.Transparent;
  2198. this.myTableLayoutPanel1.SetColumnSpan(this.con1558, 4);
  2199. this.con1558.Dock = System.Windows.Forms.DockStyle.Fill;
  2200. this.con1558.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2201. this.con1558.Location = new System.Drawing.Point(208, 475);
  2202. this.con1558.Margin = new System.Windows.Forms.Padding(0);
  2203. this.con1558.Name = "con1558";
  2204. this.myTableLayoutPanel1.SetRowSpan(this.con1558, 2);
  2205. this.con1558.Size = new System.Drawing.Size(52, 20);
  2206. this.con1558.TabIndex = 860;
  2207. //
  2208. // con1498
  2209. //
  2210. this.con1498.BackColor = System.Drawing.Color.Transparent;
  2211. this.myTableLayoutPanel1.SetColumnSpan(this.con1498, 5);
  2212. this.con1498.Dock = System.Windows.Forms.DockStyle.Fill;
  2213. this.con1498.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2214. this.con1498.Location = new System.Drawing.Point(507, 415);
  2215. this.con1498.Margin = new System.Windows.Forms.Padding(0);
  2216. this.con1498.Name = "con1498";
  2217. this.myTableLayoutPanel1.SetRowSpan(this.con1498, 2);
  2218. this.con1498.Size = new System.Drawing.Size(65, 20);
  2219. this.con1498.TabIndex = 842;
  2220. //
  2221. // con1491
  2222. //
  2223. this.con1491.BackColor = System.Drawing.Color.Transparent;
  2224. this.myTableLayoutPanel1.SetColumnSpan(this.con1491, 4);
  2225. this.con1491.Dock = System.Windows.Forms.DockStyle.Fill;
  2226. this.con1491.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2227. this.con1491.Location = new System.Drawing.Point(455, 375);
  2228. this.con1491.Margin = new System.Windows.Forms.Padding(0);
  2229. this.con1491.Name = "con1491";
  2230. this.myTableLayoutPanel1.SetRowSpan(this.con1491, 2);
  2231. this.con1491.Size = new System.Drawing.Size(52, 20);
  2232. this.con1491.TabIndex = 846;
  2233. //
  2234. // locationPos45
  2235. //
  2236. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos45, 3);
  2237. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  2238. this.locationPos45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2239. this.locationPos45.Location = new System.Drawing.Point(442, 186);
  2240. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  2241. this.locationPos45.Name = "locationPos45";
  2242. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  2243. this.locationPos45.Size = new System.Drawing.Size(39, 189);
  2244. this.locationPos45.TabIndex = 468;
  2245. //
  2246. // con1597
  2247. //
  2248. this.con1597.BackColor = System.Drawing.Color.Transparent;
  2249. this.myTableLayoutPanel1.SetColumnSpan(this.con1597, 4);
  2250. this.con1597.Dock = System.Windows.Forms.DockStyle.Fill;
  2251. this.con1597.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2252. this.con1597.Location = new System.Drawing.Point(208, 495);
  2253. this.con1597.Margin = new System.Windows.Forms.Padding(0);
  2254. this.con1597.Name = "con1597";
  2255. this.myTableLayoutPanel1.SetRowSpan(this.con1597, 2);
  2256. this.con1597.Size = new System.Drawing.Size(52, 20);
  2257. this.con1597.TabIndex = 870;
  2258. //
  2259. // srm13
  2260. //
  2261. this.srm13.BackColor = System.Drawing.Color.Transparent;
  2262. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  2263. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2264. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  2265. this.srm13.Location = new System.Drawing.Point(481, 186);
  2266. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  2267. this.srm13.Name = "srm13";
  2268. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 20);
  2269. this.srm13.Size = new System.Drawing.Size(13, 189);
  2270. this.srm13.TabIndex = 472;
  2271. //
  2272. // locationPos46
  2273. //
  2274. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos46, 3);
  2275. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  2276. this.locationPos46.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2277. this.locationPos46.Location = new System.Drawing.Point(494, 186);
  2278. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  2279. this.locationPos46.Name = "locationPos46";
  2280. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  2281. this.locationPos46.Size = new System.Drawing.Size(39, 189);
  2282. this.locationPos46.TabIndex = 470;
  2283. //
  2284. // con1598
  2285. //
  2286. this.con1598.BackColor = System.Drawing.Color.Transparent;
  2287. this.myTableLayoutPanel1.SetColumnSpan(this.con1598, 4);
  2288. this.con1598.Dock = System.Windows.Forms.DockStyle.Fill;
  2289. this.con1598.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2290. this.con1598.Location = new System.Drawing.Point(208, 515);
  2291. this.con1598.Margin = new System.Windows.Forms.Padding(0);
  2292. this.con1598.Name = "con1598";
  2293. this.myTableLayoutPanel1.SetRowSpan(this.con1598, 2);
  2294. this.con1598.Size = new System.Drawing.Size(52, 20);
  2295. this.con1598.TabIndex = 861;
  2296. //
  2297. // con1489
  2298. //
  2299. this.con1489.BackColor = System.Drawing.Color.Transparent;
  2300. this.myTableLayoutPanel1.SetColumnSpan(this.con1489, 5);
  2301. this.con1489.Dock = System.Windows.Forms.DockStyle.Fill;
  2302. this.con1489.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2303. this.con1489.Location = new System.Drawing.Point(507, 375);
  2304. this.con1489.Margin = new System.Windows.Forms.Padding(0);
  2305. this.con1489.Name = "con1489";
  2306. this.myTableLayoutPanel1.SetRowSpan(this.con1489, 2);
  2307. this.con1489.Size = new System.Drawing.Size(65, 20);
  2308. this.con1489.TabIndex = 848;
  2309. //
  2310. // locationPos42
  2311. //
  2312. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos42, 3);
  2313. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  2314. this.locationPos42.Location = new System.Drawing.Point(546, 186);
  2315. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  2316. this.locationPos42.Name = "locationPos42";
  2317. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  2318. this.locationPos42.Size = new System.Drawing.Size(39, 189);
  2319. this.locationPos42.TabIndex = 464;
  2320. //
  2321. // con1493
  2322. //
  2323. this.con1493.BackColor = System.Drawing.Color.Transparent;
  2324. this.myTableLayoutPanel1.SetColumnSpan(this.con1493, 4);
  2325. this.con1493.Dock = System.Windows.Forms.DockStyle.Fill;
  2326. this.con1493.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2327. this.con1493.Location = new System.Drawing.Point(572, 375);
  2328. this.con1493.Margin = new System.Windows.Forms.Padding(0);
  2329. this.con1493.Name = "con1493";
  2330. this.myTableLayoutPanel1.SetRowSpan(this.con1493, 2);
  2331. this.con1493.Size = new System.Drawing.Size(52, 20);
  2332. this.con1493.TabIndex = 852;
  2333. //
  2334. // con1040
  2335. //
  2336. this.con1040.BackColor = System.Drawing.Color.Transparent;
  2337. this.myTableLayoutPanel1.SetColumnSpan(this.con1040, 4);
  2338. this.con1040.Dock = System.Windows.Forms.DockStyle.Fill;
  2339. this.con1040.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2340. this.con1040.Location = new System.Drawing.Point(663, 168);
  2341. this.con1040.Margin = new System.Windows.Forms.Padding(0);
  2342. this.con1040.Name = "con1040";
  2343. this.myTableLayoutPanel1.SetRowSpan(this.con1040, 2);
  2344. this.con1040.Size = new System.Drawing.Size(52, 18);
  2345. this.con1040.TabIndex = 862;
  2346. //
  2347. // tableCellLabel29
  2348. //
  2349. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  2350. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  2351. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2352. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  2353. this.tableCellLabel29.Location = new System.Drawing.Point(585, 186);
  2354. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  2355. this.tableCellLabel29.Name = "tableCellLabel29";
  2356. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 20);
  2357. this.tableCellLabel29.Size = new System.Drawing.Size(13, 189);
  2358. this.tableCellLabel29.TabIndex = 681;
  2359. //
  2360. // locationPos54
  2361. //
  2362. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos54, 3);
  2363. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  2364. this.locationPos54.Location = new System.Drawing.Point(598, 186);
  2365. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  2366. this.locationPos54.Name = "locationPos54";
  2367. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  2368. this.locationPos54.Size = new System.Drawing.Size(39, 189);
  2369. this.locationPos54.TabIndex = 477;
  2370. //
  2371. // con1495
  2372. //
  2373. this.con1495.BackColor = System.Drawing.Color.Transparent;
  2374. this.myTableLayoutPanel1.SetColumnSpan(this.con1495, 4);
  2375. this.con1495.Dock = System.Windows.Forms.DockStyle.Fill;
  2376. this.con1495.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2377. this.con1495.Location = new System.Drawing.Point(507, 395);
  2378. this.con1495.Margin = new System.Windows.Forms.Padding(0);
  2379. this.con1495.Name = "con1495";
  2380. this.myTableLayoutPanel1.SetRowSpan(this.con1495, 2);
  2381. this.con1495.Size = new System.Drawing.Size(52, 20);
  2382. this.con1495.TabIndex = 855;
  2383. //
  2384. // con1051
  2385. //
  2386. this.con1051.BackColor = System.Drawing.Color.Transparent;
  2387. this.myTableLayoutPanel1.SetColumnSpan(this.con1051, 4);
  2388. this.con1051.Dock = System.Windows.Forms.DockStyle.Fill;
  2389. this.con1051.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2390. this.con1051.Location = new System.Drawing.Point(572, 168);
  2391. this.con1051.Margin = new System.Windows.Forms.Padding(0);
  2392. this.con1051.Name = "con1051";
  2393. this.myTableLayoutPanel1.SetRowSpan(this.con1051, 2);
  2394. this.con1051.Size = new System.Drawing.Size(52, 18);
  2395. this.con1051.TabIndex = 723;
  2396. //
  2397. // con1049
  2398. //
  2399. this.con1049.BackColor = System.Drawing.Color.Transparent;
  2400. this.myTableLayoutPanel1.SetColumnSpan(this.con1049, 4);
  2401. this.con1049.Dock = System.Windows.Forms.DockStyle.Fill;
  2402. this.con1049.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2403. this.con1049.Location = new System.Drawing.Point(455, 168);
  2404. this.con1049.Margin = new System.Windows.Forms.Padding(0);
  2405. this.con1049.Name = "con1049";
  2406. this.myTableLayoutPanel1.SetRowSpan(this.con1049, 2);
  2407. this.con1049.Size = new System.Drawing.Size(52, 18);
  2408. this.con1049.TabIndex = 722;
  2409. //
  2410. // con1047
  2411. //
  2412. this.con1047.BackColor = System.Drawing.Color.Transparent;
  2413. this.myTableLayoutPanel1.SetColumnSpan(this.con1047, 5);
  2414. this.con1047.Dock = System.Windows.Forms.DockStyle.Fill;
  2415. this.con1047.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2416. this.con1047.Location = new System.Drawing.Point(507, 168);
  2417. this.con1047.Margin = new System.Windows.Forms.Padding(0);
  2418. this.con1047.Name = "con1047";
  2419. this.myTableLayoutPanel1.SetRowSpan(this.con1047, 2);
  2420. this.con1047.Size = new System.Drawing.Size(65, 18);
  2421. this.con1047.TabIndex = 749;
  2422. //
  2423. // con1058
  2424. //
  2425. this.con1058.BackColor = System.Drawing.Color.Transparent;
  2426. this.myTableLayoutPanel1.SetColumnSpan(this.con1058, 3);
  2427. this.con1058.Dock = System.Windows.Forms.DockStyle.Fill;
  2428. this.con1058.Location = new System.Drawing.Point(273, 168);
  2429. this.con1058.Margin = new System.Windows.Forms.Padding(0);
  2430. this.con1058.Name = "con1058";
  2431. this.myTableLayoutPanel1.SetRowSpan(this.con1058, 2);
  2432. this.con1058.Size = new System.Drawing.Size(39, 18);
  2433. this.con1058.TabIndex = 863;
  2434. //
  2435. // con1060
  2436. //
  2437. this.con1060.BackColor = System.Drawing.Color.Transparent;
  2438. this.myTableLayoutPanel1.SetColumnSpan(this.con1060, 4);
  2439. this.con1060.Dock = System.Windows.Forms.DockStyle.Fill;
  2440. this.con1060.Location = new System.Drawing.Point(377, 168);
  2441. this.con1060.Margin = new System.Windows.Forms.Padding(0);
  2442. this.con1060.Name = "con1060";
  2443. this.myTableLayoutPanel1.SetRowSpan(this.con1060, 2);
  2444. this.con1060.Size = new System.Drawing.Size(52, 18);
  2445. this.con1060.TabIndex = 462;
  2446. //
  2447. // con1056
  2448. //
  2449. this.con1056.BackColor = System.Drawing.Color.Transparent;
  2450. this.myTableLayoutPanel1.SetColumnSpan(this.con1056, 5);
  2451. this.con1056.Dock = System.Windows.Forms.DockStyle.Fill;
  2452. this.con1056.Location = new System.Drawing.Point(312, 168);
  2453. this.con1056.Margin = new System.Windows.Forms.Padding(0);
  2454. this.con1056.Name = "con1056";
  2455. this.myTableLayoutPanel1.SetRowSpan(this.con1056, 2);
  2456. this.con1056.Size = new System.Drawing.Size(65, 18);
  2457. this.con1056.TabIndex = 461;
  2458. //
  2459. // tableCellLabel2
  2460. //
  2461. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  2462. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  2463. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2464. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 12);
  2465. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2466. this.tableCellLabel2.Location = new System.Drawing.Point(429, 132);
  2467. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  2468. this.tableCellLabel2.Name = "tableCellLabel2";
  2469. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel2, 2);
  2470. this.tableCellLabel2.Size = new System.Drawing.Size(156, 18);
  2471. this.tableCellLabel2.TabIndex = 790;
  2472. //
  2473. // con1015
  2474. //
  2475. this.con1015.BackColor = System.Drawing.Color.Transparent;
  2476. this.myTableLayoutPanel1.SetColumnSpan(this.con1015, 3);
  2477. this.con1015.Dock = System.Windows.Forms.DockStyle.Fill;
  2478. this.con1015.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2479. this.con1015.Location = new System.Drawing.Point(637, 93);
  2480. this.con1015.Margin = new System.Windows.Forms.Padding(0);
  2481. this.con1015.Name = "con1015";
  2482. this.myTableLayoutPanel1.SetRowSpan(this.con1015, 2);
  2483. this.con1015.Size = new System.Drawing.Size(39, 20);
  2484. this.con1015.TabIndex = 631;
  2485. //
  2486. // RGV8
  2487. //
  2488. this.RGV8.BackColor = System.Drawing.Color.Transparent;
  2489. this.myTableLayoutPanel1.SetColumnSpan(this.RGV8, 4);
  2490. this.RGV8.Dock = System.Windows.Forms.DockStyle.Fill;
  2491. this.RGV8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2492. this.RGV8.Location = new System.Drawing.Point(585, 132);
  2493. this.RGV8.Margin = new System.Windows.Forms.Padding(0);
  2494. this.RGV8.Name = "RGV8";
  2495. this.myTableLayoutPanel1.SetRowSpan(this.RGV8, 2);
  2496. this.RGV8.Size = new System.Drawing.Size(52, 18);
  2497. this.RGV8.TabIndex = 629;
  2498. //
  2499. // locationPos1
  2500. //
  2501. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos1, 3);
  2502. this.locationPos1.Dock = System.Windows.Forms.DockStyle.Fill;
  2503. this.locationPos1.Location = new System.Drawing.Point(651, 186);
  2504. this.locationPos1.Margin = new System.Windows.Forms.Padding(0);
  2505. this.locationPos1.Name = "locationPos1";
  2506. this.myTableLayoutPanel1.SetRowSpan(this.locationPos1, 20);
  2507. this.locationPos1.Size = new System.Drawing.Size(38, 189);
  2508. this.locationPos1.TabIndex = 882;
  2509. //
  2510. // locationPos2
  2511. //
  2512. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos2, 3);
  2513. this.locationPos2.Dock = System.Windows.Forms.DockStyle.Fill;
  2514. this.locationPos2.Location = new System.Drawing.Point(702, 186);
  2515. this.locationPos2.Margin = new System.Windows.Forms.Padding(0);
  2516. this.locationPos2.Name = "locationPos2";
  2517. this.myTableLayoutPanel1.SetRowSpan(this.locationPos2, 20);
  2518. this.locationPos2.Size = new System.Drawing.Size(39, 189);
  2519. this.locationPos2.TabIndex = 883;
  2520. //
  2521. // locationPos3
  2522. //
  2523. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos3, 3);
  2524. this.locationPos3.Dock = System.Windows.Forms.DockStyle.Fill;
  2525. this.locationPos3.Location = new System.Drawing.Point(754, 186);
  2526. this.locationPos3.Margin = new System.Windows.Forms.Padding(0);
  2527. this.locationPos3.Name = "locationPos3";
  2528. this.myTableLayoutPanel1.SetRowSpan(this.locationPos3, 20);
  2529. this.locationPos3.Size = new System.Drawing.Size(39, 189);
  2530. this.locationPos3.TabIndex = 884;
  2531. //
  2532. // locationPos4
  2533. //
  2534. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos4, 3);
  2535. this.locationPos4.Dock = System.Windows.Forms.DockStyle.Fill;
  2536. this.locationPos4.Location = new System.Drawing.Point(806, 186);
  2537. this.locationPos4.Margin = new System.Windows.Forms.Padding(0);
  2538. this.locationPos4.Name = "locationPos4";
  2539. this.myTableLayoutPanel1.SetRowSpan(this.locationPos4, 20);
  2540. this.locationPos4.Size = new System.Drawing.Size(39, 189);
  2541. this.locationPos4.TabIndex = 885;
  2542. //
  2543. // tableCellLabel5
  2544. //
  2545. this.tableCellLabel5.BackColor = System.Drawing.Color.Transparent;
  2546. this.tableCellLabel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel5.BackgroundImage")));
  2547. this.tableCellLabel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2548. this.tableCellLabel5.Dock = System.Windows.Forms.DockStyle.Fill;
  2549. this.tableCellLabel5.Location = new System.Drawing.Point(689, 186);
  2550. this.tableCellLabel5.Margin = new System.Windows.Forms.Padding(0);
  2551. this.tableCellLabel5.Name = "tableCellLabel5";
  2552. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel5, 20);
  2553. this.tableCellLabel5.Size = new System.Drawing.Size(13, 189);
  2554. this.tableCellLabel5.TabIndex = 886;
  2555. //
  2556. // tableCellLabel6
  2557. //
  2558. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  2559. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  2560. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2561. this.tableCellLabel6.Dock = System.Windows.Forms.DockStyle.Fill;
  2562. this.tableCellLabel6.Location = new System.Drawing.Point(793, 186);
  2563. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  2564. this.tableCellLabel6.Name = "tableCellLabel6";
  2565. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel6, 20);
  2566. this.tableCellLabel6.Size = new System.Drawing.Size(13, 189);
  2567. this.tableCellLabel6.TabIndex = 887;
  2568. //
  2569. // con1422
  2570. //
  2571. this.con1422.BackColor = System.Drawing.Color.Transparent;
  2572. this.myTableLayoutPanel1.SetColumnSpan(this.con1422, 2);
  2573. this.con1422.Dock = System.Windows.Forms.DockStyle.Fill;
  2574. this.con1422.Location = new System.Drawing.Point(1339, 375);
  2575. this.con1422.Margin = new System.Windows.Forms.Padding(0);
  2576. this.con1422.Name = "con1422";
  2577. this.myTableLayoutPanel1.SetRowSpan(this.con1422, 2);
  2578. this.con1422.Size = new System.Drawing.Size(26, 20);
  2579. this.con1422.TabIndex = 906;
  2580. //
  2581. // con1424
  2582. //
  2583. this.con1424.BackColor = System.Drawing.Color.Transparent;
  2584. this.myTableLayoutPanel1.SetColumnSpan(this.con1424, 2);
  2585. this.con1424.Dock = System.Windows.Forms.DockStyle.Fill;
  2586. this.con1424.Location = new System.Drawing.Point(1404, 375);
  2587. this.con1424.Margin = new System.Windows.Forms.Padding(0);
  2588. this.con1424.Name = "con1424";
  2589. this.myTableLayoutPanel1.SetRowSpan(this.con1424, 2);
  2590. this.con1424.Size = new System.Drawing.Size(26, 20);
  2591. this.con1424.TabIndex = 908;
  2592. //
  2593. // con1308
  2594. //
  2595. this.con1308.BackColor = System.Drawing.Color.Transparent;
  2596. this.myTableLayoutPanel1.SetColumnSpan(this.con1308, 2);
  2597. this.con1308.Dock = System.Windows.Forms.DockStyle.Fill;
  2598. this.con1308.Location = new System.Drawing.Point(1443, 375);
  2599. this.con1308.Margin = new System.Windows.Forms.Padding(0);
  2600. this.con1308.Name = "con1308";
  2601. this.myTableLayoutPanel1.SetRowSpan(this.con1308, 2);
  2602. this.con1308.Size = new System.Drawing.Size(26, 20);
  2603. this.con1308.TabIndex = 910;
  2604. //
  2605. // con1431
  2606. //
  2607. this.con1431.BackColor = System.Drawing.Color.Transparent;
  2608. this.myTableLayoutPanel1.SetColumnSpan(this.con1431, 2);
  2609. this.con1431.Dock = System.Windows.Forms.DockStyle.Fill;
  2610. this.con1431.Location = new System.Drawing.Point(1547, 375);
  2611. this.con1431.Margin = new System.Windows.Forms.Padding(0);
  2612. this.con1431.Name = "con1431";
  2613. this.myTableLayoutPanel1.SetRowSpan(this.con1431, 2);
  2614. this.con1431.Size = new System.Drawing.Size(26, 20);
  2615. this.con1431.TabIndex = 914;
  2616. //
  2617. // con1386
  2618. //
  2619. this.myTableLayoutPanel1.SetColumnSpan(this.con1386, 4);
  2620. this.con1386.Dock = System.Windows.Forms.DockStyle.Fill;
  2621. this.con1386.Location = new System.Drawing.Point(1339, 270);
  2622. this.con1386.Margin = new System.Windows.Forms.Padding(0);
  2623. this.con1386.Name = "con1386";
  2624. this.myTableLayoutPanel1.SetRowSpan(this.con1386, 2);
  2625. this.con1386.Size = new System.Drawing.Size(52, 20);
  2626. this.con1386.TabIndex = 917;
  2627. this.con1386.Tag = "";
  2628. //
  2629. // con1389
  2630. //
  2631. this.myTableLayoutPanel1.SetColumnSpan(this.con1389, 4);
  2632. this.con1389.Dock = System.Windows.Forms.DockStyle.Fill;
  2633. this.con1389.Location = new System.Drawing.Point(1339, 290);
  2634. this.con1389.Margin = new System.Windows.Forms.Padding(0);
  2635. this.con1389.Name = "con1389";
  2636. this.myTableLayoutPanel1.SetRowSpan(this.con1389, 2);
  2637. this.con1389.Size = new System.Drawing.Size(52, 20);
  2638. this.con1389.TabIndex = 918;
  2639. //
  2640. // con1391
  2641. //
  2642. this.myTableLayoutPanel1.SetColumnSpan(this.con1391, 4);
  2643. this.con1391.Dock = System.Windows.Forms.DockStyle.Fill;
  2644. this.con1391.Location = new System.Drawing.Point(1339, 310);
  2645. this.con1391.Margin = new System.Windows.Forms.Padding(0);
  2646. this.con1391.Name = "con1391";
  2647. this.myTableLayoutPanel1.SetRowSpan(this.con1391, 2);
  2648. this.con1391.Size = new System.Drawing.Size(52, 19);
  2649. this.con1391.TabIndex = 919;
  2650. //
  2651. // con1394
  2652. //
  2653. this.myTableLayoutPanel1.SetColumnSpan(this.con1394, 4);
  2654. this.con1394.Dock = System.Windows.Forms.DockStyle.Fill;
  2655. this.con1394.Location = new System.Drawing.Point(1482, 270);
  2656. this.con1394.Margin = new System.Windows.Forms.Padding(0);
  2657. this.con1394.Name = "con1394";
  2658. this.myTableLayoutPanel1.SetRowSpan(this.con1394, 2);
  2659. this.con1394.Size = new System.Drawing.Size(52, 20);
  2660. this.con1394.TabIndex = 920;
  2661. //
  2662. // con1397
  2663. //
  2664. this.myTableLayoutPanel1.SetColumnSpan(this.con1397, 4);
  2665. this.con1397.Dock = System.Windows.Forms.DockStyle.Fill;
  2666. this.con1397.Location = new System.Drawing.Point(1482, 290);
  2667. this.con1397.Margin = new System.Windows.Forms.Padding(0);
  2668. this.con1397.Name = "con1397";
  2669. this.myTableLayoutPanel1.SetRowSpan(this.con1397, 2);
  2670. this.con1397.Size = new System.Drawing.Size(52, 20);
  2671. this.con1397.TabIndex = 921;
  2672. //
  2673. // con1399
  2674. //
  2675. this.myTableLayoutPanel1.SetColumnSpan(this.con1399, 4);
  2676. this.con1399.Dock = System.Windows.Forms.DockStyle.Fill;
  2677. this.con1399.Location = new System.Drawing.Point(1482, 310);
  2678. this.con1399.Margin = new System.Windows.Forms.Padding(0);
  2679. this.con1399.Name = "con1399";
  2680. this.myTableLayoutPanel1.SetRowSpan(this.con1399, 2);
  2681. this.con1399.Size = new System.Drawing.Size(52, 19);
  2682. this.con1399.TabIndex = 922;
  2683. //
  2684. // label1
  2685. //
  2686. this.label1.AutoSize = true;
  2687. this.label1.BackColor = System.Drawing.Color.Lime;
  2688. this.myTableLayoutPanel1.SetColumnSpan(this.label1, 3);
  2689. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  2690. this.label1.Location = new System.Drawing.Point(1446, 270);
  2691. this.label1.Name = "label1";
  2692. this.myTableLayoutPanel1.SetRowSpan(this.label1, 2);
  2693. this.label1.Size = new System.Drawing.Size(33, 20);
  2694. this.label1.TabIndex = 923;
  2695. this.label1.Text = "入";
  2696. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2697. //
  2698. // con1335
  2699. //
  2700. this.myTableLayoutPanel1.SetColumnSpan(this.con1335, 4);
  2701. this.con1335.Dock = System.Windows.Forms.DockStyle.Fill;
  2702. this.con1335.Location = new System.Drawing.Point(1482, 465);
  2703. this.con1335.Margin = new System.Windows.Forms.Padding(0);
  2704. this.con1335.Name = "con1335";
  2705. this.myTableLayoutPanel1.SetRowSpan(this.con1335, 2);
  2706. this.con1335.Size = new System.Drawing.Size(52, 20);
  2707. this.con1335.TabIndex = 924;
  2708. //
  2709. // con1337
  2710. //
  2711. this.myTableLayoutPanel1.SetColumnSpan(this.con1337, 4);
  2712. this.con1337.Dock = System.Windows.Forms.DockStyle.Fill;
  2713. this.con1337.Location = new System.Drawing.Point(1482, 485);
  2714. this.con1337.Margin = new System.Windows.Forms.Padding(0);
  2715. this.con1337.Name = "con1337";
  2716. this.myTableLayoutPanel1.SetRowSpan(this.con1337, 2);
  2717. this.con1337.Size = new System.Drawing.Size(52, 20);
  2718. this.con1337.TabIndex = 925;
  2719. //
  2720. // con1340
  2721. //
  2722. this.myTableLayoutPanel1.SetColumnSpan(this.con1340, 4);
  2723. this.con1340.Dock = System.Windows.Forms.DockStyle.Fill;
  2724. this.con1340.Location = new System.Drawing.Point(1482, 505);
  2725. this.con1340.Margin = new System.Windows.Forms.Padding(0);
  2726. this.con1340.Name = "con1340";
  2727. this.myTableLayoutPanel1.SetRowSpan(this.con1340, 2);
  2728. this.con1340.Size = new System.Drawing.Size(52, 20);
  2729. this.con1340.TabIndex = 926;
  2730. //
  2731. // label4
  2732. //
  2733. this.label4.AutoSize = true;
  2734. this.label4.BackColor = System.Drawing.Color.Lime;
  2735. this.myTableLayoutPanel1.SetColumnSpan(this.label4, 3);
  2736. this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
  2737. this.label4.Location = new System.Drawing.Point(1446, 465);
  2738. this.label4.Name = "label4";
  2739. this.myTableLayoutPanel1.SetRowSpan(this.label4, 2);
  2740. this.label4.Size = new System.Drawing.Size(33, 20);
  2741. this.label4.TabIndex = 927;
  2742. this.label4.Text = "出";
  2743. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  2744. //
  2745. // con1387
  2746. //
  2747. this.myTableLayoutPanel1.SetColumnSpan(this.con1387, 4);
  2748. this.con1387.Dock = System.Windows.Forms.DockStyle.Fill;
  2749. this.con1387.Location = new System.Drawing.Point(1391, 270);
  2750. this.con1387.Margin = new System.Windows.Forms.Padding(0);
  2751. this.con1387.Name = "con1387";
  2752. this.myTableLayoutPanel1.SetRowSpan(this.con1387, 2);
  2753. this.con1387.Size = new System.Drawing.Size(52, 20);
  2754. this.con1387.TabIndex = 928;
  2755. //
  2756. // con1390
  2757. //
  2758. this.myTableLayoutPanel1.SetColumnSpan(this.con1390, 4);
  2759. this.con1390.Dock = System.Windows.Forms.DockStyle.Fill;
  2760. this.con1390.Location = new System.Drawing.Point(1391, 290);
  2761. this.con1390.Margin = new System.Windows.Forms.Padding(0);
  2762. this.con1390.Name = "con1390";
  2763. this.myTableLayoutPanel1.SetRowSpan(this.con1390, 2);
  2764. this.con1390.Size = new System.Drawing.Size(52, 20);
  2765. this.con1390.TabIndex = 929;
  2766. //
  2767. // con1392
  2768. //
  2769. this.myTableLayoutPanel1.SetColumnSpan(this.con1392, 4);
  2770. this.con1392.Dock = System.Windows.Forms.DockStyle.Fill;
  2771. this.con1392.Location = new System.Drawing.Point(1391, 310);
  2772. this.con1392.Margin = new System.Windows.Forms.Padding(0);
  2773. this.con1392.Name = "con1392";
  2774. this.myTableLayoutPanel1.SetRowSpan(this.con1392, 2);
  2775. this.con1392.Size = new System.Drawing.Size(52, 19);
  2776. this.con1392.TabIndex = 930;
  2777. //
  2778. // con1395
  2779. //
  2780. this.myTableLayoutPanel1.SetColumnSpan(this.con1395, 4);
  2781. this.con1395.Dock = System.Windows.Forms.DockStyle.Fill;
  2782. this.con1395.Location = new System.Drawing.Point(1534, 270);
  2783. this.con1395.Margin = new System.Windows.Forms.Padding(0);
  2784. this.con1395.Name = "con1395";
  2785. this.myTableLayoutPanel1.SetRowSpan(this.con1395, 2);
  2786. this.con1395.Size = new System.Drawing.Size(52, 20);
  2787. this.con1395.TabIndex = 931;
  2788. //
  2789. // con1398
  2790. //
  2791. this.myTableLayoutPanel1.SetColumnSpan(this.con1398, 4);
  2792. this.con1398.Dock = System.Windows.Forms.DockStyle.Fill;
  2793. this.con1398.Location = new System.Drawing.Point(1534, 290);
  2794. this.con1398.Margin = new System.Windows.Forms.Padding(0);
  2795. this.con1398.Name = "con1398";
  2796. this.myTableLayoutPanel1.SetRowSpan(this.con1398, 2);
  2797. this.con1398.Size = new System.Drawing.Size(52, 20);
  2798. this.con1398.TabIndex = 932;
  2799. //
  2800. // con1400
  2801. //
  2802. this.myTableLayoutPanel1.SetColumnSpan(this.con1400, 4);
  2803. this.con1400.Dock = System.Windows.Forms.DockStyle.Fill;
  2804. this.con1400.Location = new System.Drawing.Point(1534, 310);
  2805. this.con1400.Margin = new System.Windows.Forms.Padding(0);
  2806. this.con1400.Name = "con1400";
  2807. this.myTableLayoutPanel1.SetRowSpan(this.con1400, 2);
  2808. this.con1400.Size = new System.Drawing.Size(52, 19);
  2809. this.con1400.TabIndex = 933;
  2810. //
  2811. // con1334
  2812. //
  2813. this.myTableLayoutPanel1.SetColumnSpan(this.con1334, 4);
  2814. this.con1334.Dock = System.Windows.Forms.DockStyle.Fill;
  2815. this.con1334.Location = new System.Drawing.Point(1534, 465);
  2816. this.con1334.Margin = new System.Windows.Forms.Padding(0);
  2817. this.con1334.Name = "con1334";
  2818. this.myTableLayoutPanel1.SetRowSpan(this.con1334, 2);
  2819. this.con1334.Size = new System.Drawing.Size(52, 20);
  2820. this.con1334.TabIndex = 934;
  2821. //
  2822. // con1338
  2823. //
  2824. this.myTableLayoutPanel1.SetColumnSpan(this.con1338, 4);
  2825. this.con1338.Dock = System.Windows.Forms.DockStyle.Fill;
  2826. this.con1338.Location = new System.Drawing.Point(1534, 485);
  2827. this.con1338.Margin = new System.Windows.Forms.Padding(0);
  2828. this.con1338.Name = "con1338";
  2829. this.myTableLayoutPanel1.SetRowSpan(this.con1338, 2);
  2830. this.con1338.Size = new System.Drawing.Size(52, 20);
  2831. this.con1338.TabIndex = 935;
  2832. //
  2833. // con1341
  2834. //
  2835. this.myTableLayoutPanel1.SetColumnSpan(this.con1341, 4);
  2836. this.con1341.Dock = System.Windows.Forms.DockStyle.Fill;
  2837. this.con1341.Location = new System.Drawing.Point(1534, 505);
  2838. this.con1341.Margin = new System.Windows.Forms.Padding(0);
  2839. this.con1341.Name = "con1341";
  2840. this.myTableLayoutPanel1.SetRowSpan(this.con1341, 2);
  2841. this.con1341.Size = new System.Drawing.Size(52, 20);
  2842. this.con1341.TabIndex = 936;
  2843. //
  2844. // con1343
  2845. //
  2846. this.myTableLayoutPanel1.SetColumnSpan(this.con1343, 4);
  2847. this.con1343.Dock = System.Windows.Forms.DockStyle.Fill;
  2848. this.con1343.Location = new System.Drawing.Point(1482, 525);
  2849. this.con1343.Margin = new System.Windows.Forms.Padding(0);
  2850. this.con1343.Name = "con1343";
  2851. this.myTableLayoutPanel1.SetRowSpan(this.con1343, 2);
  2852. this.con1343.Size = new System.Drawing.Size(52, 20);
  2853. this.con1343.TabIndex = 937;
  2854. //
  2855. // con1344
  2856. //
  2857. this.myTableLayoutPanel1.SetColumnSpan(this.con1344, 4);
  2858. this.con1344.Dock = System.Windows.Forms.DockStyle.Fill;
  2859. this.con1344.Location = new System.Drawing.Point(1534, 525);
  2860. this.con1344.Margin = new System.Windows.Forms.Padding(0);
  2861. this.con1344.Name = "con1344";
  2862. this.myTableLayoutPanel1.SetRowSpan(this.con1344, 2);
  2863. this.con1344.Size = new System.Drawing.Size(52, 20);
  2864. this.con1344.TabIndex = 938;
  2865. //
  2866. // con1281
  2867. //
  2868. this.con1281.BackColor = System.Drawing.Color.Transparent;
  2869. this.myTableLayoutPanel1.SetColumnSpan(this.con1281, 3);
  2870. this.con1281.Dock = System.Windows.Forms.DockStyle.Fill;
  2871. this.con1281.Location = new System.Drawing.Point(871, 375);
  2872. this.con1281.Margin = new System.Windows.Forms.Padding(0);
  2873. this.con1281.Name = "con1281";
  2874. this.myTableLayoutPanel1.SetRowSpan(this.con1281, 2);
  2875. this.con1281.Size = new System.Drawing.Size(39, 20);
  2876. this.con1281.TabIndex = 940;
  2877. //
  2878. // con1283
  2879. //
  2880. this.con1283.BackColor = System.Drawing.Color.Transparent;
  2881. this.myTableLayoutPanel1.SetColumnSpan(this.con1283, 2);
  2882. this.con1283.Dock = System.Windows.Forms.DockStyle.Fill;
  2883. this.con1283.Location = new System.Drawing.Point(910, 375);
  2884. this.con1283.Margin = new System.Windows.Forms.Padding(0);
  2885. this.con1283.Name = "con1283";
  2886. this.myTableLayoutPanel1.SetRowSpan(this.con1283, 2);
  2887. this.con1283.Size = new System.Drawing.Size(26, 20);
  2888. this.con1283.TabIndex = 941;
  2889. //
  2890. // con1044
  2891. //
  2892. this.con1044.BackColor = System.Drawing.Color.Transparent;
  2893. this.myTableLayoutPanel1.SetColumnSpan(this.con1044, 3);
  2894. this.con1044.Dock = System.Windows.Forms.DockStyle.Fill;
  2895. this.con1044.Location = new System.Drawing.Point(520, 150);
  2896. this.con1044.Margin = new System.Windows.Forms.Padding(0);
  2897. this.con1044.Name = "con1044";
  2898. this.myTableLayoutPanel1.SetRowSpan(this.con1044, 2);
  2899. this.con1044.Size = new System.Drawing.Size(39, 18);
  2900. this.con1044.TabIndex = 942;
  2901. //
  2902. // con1035
  2903. //
  2904. this.con1035.BackColor = System.Drawing.Color.Transparent;
  2905. this.myTableLayoutPanel1.SetColumnSpan(this.con1035, 3);
  2906. this.con1035.Dock = System.Windows.Forms.DockStyle.Fill;
  2907. this.con1035.Location = new System.Drawing.Point(728, 150);
  2908. this.con1035.Margin = new System.Windows.Forms.Padding(0);
  2909. this.con1035.Name = "con1035";
  2910. this.myTableLayoutPanel1.SetRowSpan(this.con1035, 2);
  2911. this.con1035.Size = new System.Drawing.Size(39, 18);
  2912. this.con1035.TabIndex = 943;
  2913. //
  2914. // con1030
  2915. //
  2916. this.con1030.BackColor = System.Drawing.Color.Transparent;
  2917. this.myTableLayoutPanel1.SetColumnSpan(this.con1030, 3);
  2918. this.con1030.Dock = System.Windows.Forms.DockStyle.Fill;
  2919. this.con1030.Location = new System.Drawing.Point(689, 113);
  2920. this.con1030.Margin = new System.Windows.Forms.Padding(0);
  2921. this.con1030.Name = "con1030";
  2922. this.myTableLayoutPanel1.SetRowSpan(this.con1030, 2);
  2923. this.con1030.Size = new System.Drawing.Size(39, 19);
  2924. this.con1030.TabIndex = 944;
  2925. //
  2926. // con1285
  2927. //
  2928. this.con1285.BackColor = System.Drawing.Color.Transparent;
  2929. this.myTableLayoutPanel1.SetColumnSpan(this.con1285, 3);
  2930. this.con1285.Dock = System.Windows.Forms.DockStyle.Fill;
  2931. this.con1285.Location = new System.Drawing.Point(871, 395);
  2932. this.con1285.Margin = new System.Windows.Forms.Padding(0);
  2933. this.con1285.Name = "con1285";
  2934. this.myTableLayoutPanel1.SetRowSpan(this.con1285, 2);
  2935. this.con1285.Size = new System.Drawing.Size(39, 20);
  2936. this.con1285.TabIndex = 945;
  2937. //
  2938. // con1406
  2939. //
  2940. this.con1406.BackColor = System.Drawing.Color.Transparent;
  2941. this.myTableLayoutPanel1.SetColumnSpan(this.con1406, 2);
  2942. this.con1406.Dock = System.Windows.Forms.DockStyle.Fill;
  2943. this.con1406.Location = new System.Drawing.Point(949, 375);
  2944. this.con1406.Margin = new System.Windows.Forms.Padding(0);
  2945. this.con1406.Name = "con1406";
  2946. this.myTableLayoutPanel1.SetRowSpan(this.con1406, 2);
  2947. this.con1406.Size = new System.Drawing.Size(26, 20);
  2948. this.con1406.TabIndex = 946;
  2949. //
  2950. // con1404
  2951. //
  2952. this.con1404.BackColor = System.Drawing.Color.Transparent;
  2953. this.myTableLayoutPanel1.SetColumnSpan(this.con1404, 3);
  2954. this.con1404.Dock = System.Windows.Forms.DockStyle.Fill;
  2955. this.con1404.Location = new System.Drawing.Point(975, 375);
  2956. this.con1404.Margin = new System.Windows.Forms.Padding(0);
  2957. this.con1404.Name = "con1404";
  2958. this.myTableLayoutPanel1.SetRowSpan(this.con1404, 2);
  2959. this.con1404.Size = new System.Drawing.Size(39, 20);
  2960. this.con1404.TabIndex = 947;
  2961. //
  2962. // con1408
  2963. //
  2964. this.con1408.BackColor = System.Drawing.Color.Transparent;
  2965. this.myTableLayoutPanel1.SetColumnSpan(this.con1408, 2);
  2966. this.con1408.Dock = System.Windows.Forms.DockStyle.Fill;
  2967. this.con1408.Location = new System.Drawing.Point(1014, 375);
  2968. this.con1408.Margin = new System.Windows.Forms.Padding(0);
  2969. this.con1408.Name = "con1408";
  2970. this.myTableLayoutPanel1.SetRowSpan(this.con1408, 2);
  2971. this.con1408.Size = new System.Drawing.Size(26, 20);
  2972. this.con1408.TabIndex = 948;
  2973. //
  2974. // con1401
  2975. //
  2976. this.con1401.BackColor = System.Drawing.Color.Transparent;
  2977. this.myTableLayoutPanel1.SetColumnSpan(this.con1401, 3);
  2978. this.con1401.Dock = System.Windows.Forms.DockStyle.Fill;
  2979. this.con1401.Location = new System.Drawing.Point(975, 395);
  2980. this.con1401.Margin = new System.Windows.Forms.Padding(0);
  2981. this.con1401.Name = "con1401";
  2982. this.myTableLayoutPanel1.SetRowSpan(this.con1401, 2);
  2983. this.con1401.Size = new System.Drawing.Size(39, 20);
  2984. this.con1401.TabIndex = 949;
  2985. //
  2986. // con1290
  2987. //
  2988. this.con1290.BackColor = System.Drawing.Color.Transparent;
  2989. this.myTableLayoutPanel1.SetColumnSpan(this.con1290, 2);
  2990. this.con1290.Dock = System.Windows.Forms.DockStyle.Fill;
  2991. this.con1290.Location = new System.Drawing.Point(1053, 375);
  2992. this.con1290.Margin = new System.Windows.Forms.Padding(0);
  2993. this.con1290.Name = "con1290";
  2994. this.myTableLayoutPanel1.SetRowSpan(this.con1290, 2);
  2995. this.con1290.Size = new System.Drawing.Size(26, 20);
  2996. this.con1290.TabIndex = 950;
  2997. //
  2998. // con1288
  2999. //
  3000. this.con1288.BackColor = System.Drawing.Color.Transparent;
  3001. this.myTableLayoutPanel1.SetColumnSpan(this.con1288, 3);
  3002. this.con1288.Dock = System.Windows.Forms.DockStyle.Fill;
  3003. this.con1288.Location = new System.Drawing.Point(1079, 375);
  3004. this.con1288.Margin = new System.Windows.Forms.Padding(0);
  3005. this.con1288.Name = "con1288";
  3006. this.myTableLayoutPanel1.SetRowSpan(this.con1288, 2);
  3007. this.con1288.Size = new System.Drawing.Size(39, 20);
  3008. this.con1288.TabIndex = 951;
  3009. //
  3010. // con1292
  3011. //
  3012. this.con1292.BackColor = System.Drawing.Color.Transparent;
  3013. this.myTableLayoutPanel1.SetColumnSpan(this.con1292, 2);
  3014. this.con1292.Dock = System.Windows.Forms.DockStyle.Fill;
  3015. this.con1292.Location = new System.Drawing.Point(1118, 375);
  3016. this.con1292.Margin = new System.Windows.Forms.Padding(0);
  3017. this.con1292.Name = "con1292";
  3018. this.myTableLayoutPanel1.SetRowSpan(this.con1292, 2);
  3019. this.con1292.Size = new System.Drawing.Size(26, 20);
  3020. this.con1292.TabIndex = 952;
  3021. //
  3022. // con1294
  3023. //
  3024. this.con1294.BackColor = System.Drawing.Color.Transparent;
  3025. this.myTableLayoutPanel1.SetColumnSpan(this.con1294, 3);
  3026. this.con1294.Dock = System.Windows.Forms.DockStyle.Fill;
  3027. this.con1294.Location = new System.Drawing.Point(1079, 395);
  3028. this.con1294.Margin = new System.Windows.Forms.Padding(0);
  3029. this.con1294.Name = "con1294";
  3030. this.myTableLayoutPanel1.SetRowSpan(this.con1294, 2);
  3031. this.con1294.Size = new System.Drawing.Size(39, 20);
  3032. this.con1294.TabIndex = 953;
  3033. //
  3034. // con1415
  3035. //
  3036. this.con1415.BackColor = System.Drawing.Color.Transparent;
  3037. this.myTableLayoutPanel1.SetColumnSpan(this.con1415, 2);
  3038. this.con1415.Dock = System.Windows.Forms.DockStyle.Fill;
  3039. this.con1415.Location = new System.Drawing.Point(1157, 375);
  3040. this.con1415.Margin = new System.Windows.Forms.Padding(0);
  3041. this.con1415.Name = "con1415";
  3042. this.myTableLayoutPanel1.SetRowSpan(this.con1415, 2);
  3043. this.con1415.Size = new System.Drawing.Size(26, 20);
  3044. this.con1415.TabIndex = 954;
  3045. //
  3046. // con1413
  3047. //
  3048. this.con1413.BackColor = System.Drawing.Color.Transparent;
  3049. this.myTableLayoutPanel1.SetColumnSpan(this.con1413, 3);
  3050. this.con1413.Dock = System.Windows.Forms.DockStyle.Fill;
  3051. this.con1413.Location = new System.Drawing.Point(1183, 375);
  3052. this.con1413.Margin = new System.Windows.Forms.Padding(0);
  3053. this.con1413.Name = "con1413";
  3054. this.myTableLayoutPanel1.SetRowSpan(this.con1413, 2);
  3055. this.con1413.Size = new System.Drawing.Size(39, 20);
  3056. this.con1413.TabIndex = 955;
  3057. //
  3058. // con1410
  3059. //
  3060. this.con1410.BackColor = System.Drawing.Color.Transparent;
  3061. this.myTableLayoutPanel1.SetColumnSpan(this.con1410, 3);
  3062. this.con1410.Dock = System.Windows.Forms.DockStyle.Fill;
  3063. this.con1410.Location = new System.Drawing.Point(1183, 395);
  3064. this.con1410.Margin = new System.Windows.Forms.Padding(0);
  3065. this.con1410.Name = "con1410";
  3066. this.myTableLayoutPanel1.SetRowSpan(this.con1410, 2);
  3067. this.con1410.Size = new System.Drawing.Size(39, 20);
  3068. this.con1410.TabIndex = 956;
  3069. //
  3070. // con1299
  3071. //
  3072. this.con1299.BackColor = System.Drawing.Color.Transparent;
  3073. this.myTableLayoutPanel1.SetColumnSpan(this.con1299, 2);
  3074. this.con1299.Dock = System.Windows.Forms.DockStyle.Fill;
  3075. this.con1299.Location = new System.Drawing.Point(1235, 375);
  3076. this.con1299.Margin = new System.Windows.Forms.Padding(0);
  3077. this.con1299.Name = "con1299";
  3078. this.myTableLayoutPanel1.SetRowSpan(this.con1299, 2);
  3079. this.con1299.Size = new System.Drawing.Size(26, 20);
  3080. this.con1299.TabIndex = 957;
  3081. //
  3082. // con1297
  3083. //
  3084. this.con1297.BackColor = System.Drawing.Color.Transparent;
  3085. this.myTableLayoutPanel1.SetColumnSpan(this.con1297, 3);
  3086. this.con1297.Dock = System.Windows.Forms.DockStyle.Fill;
  3087. this.con1297.Location = new System.Drawing.Point(1261, 375);
  3088. this.con1297.Margin = new System.Windows.Forms.Padding(0);
  3089. this.con1297.Name = "con1297";
  3090. this.myTableLayoutPanel1.SetRowSpan(this.con1297, 2);
  3091. this.con1297.Size = new System.Drawing.Size(39, 20);
  3092. this.con1297.TabIndex = 958;
  3093. //
  3094. // con1301
  3095. //
  3096. this.con1301.BackColor = System.Drawing.Color.Transparent;
  3097. this.myTableLayoutPanel1.SetColumnSpan(this.con1301, 2);
  3098. this.con1301.Dock = System.Windows.Forms.DockStyle.Fill;
  3099. this.con1301.Location = new System.Drawing.Point(1300, 375);
  3100. this.con1301.Margin = new System.Windows.Forms.Padding(0);
  3101. this.con1301.Name = "con1301";
  3102. this.myTableLayoutPanel1.SetRowSpan(this.con1301, 2);
  3103. this.con1301.Size = new System.Drawing.Size(26, 20);
  3104. this.con1301.TabIndex = 959;
  3105. //
  3106. // con1417
  3107. //
  3108. this.con1417.BackColor = System.Drawing.Color.Transparent;
  3109. this.myTableLayoutPanel1.SetColumnSpan(this.con1417, 3);
  3110. this.con1417.Dock = System.Windows.Forms.DockStyle.Fill;
  3111. this.con1417.Location = new System.Drawing.Point(1365, 395);
  3112. this.con1417.Margin = new System.Windows.Forms.Padding(0);
  3113. this.con1417.Name = "con1417";
  3114. this.myTableLayoutPanel1.SetRowSpan(this.con1417, 2);
  3115. this.con1417.Size = new System.Drawing.Size(39, 20);
  3116. this.con1417.TabIndex = 960;
  3117. //
  3118. // con1303
  3119. //
  3120. this.con1303.BackColor = System.Drawing.Color.Transparent;
  3121. this.myTableLayoutPanel1.SetColumnSpan(this.con1303, 3);
  3122. this.con1303.Dock = System.Windows.Forms.DockStyle.Fill;
  3123. this.con1303.Location = new System.Drawing.Point(1261, 395);
  3124. this.con1303.Margin = new System.Windows.Forms.Padding(0);
  3125. this.con1303.Name = "con1303";
  3126. this.myTableLayoutPanel1.SetRowSpan(this.con1303, 2);
  3127. this.con1303.Size = new System.Drawing.Size(39, 20);
  3128. this.con1303.TabIndex = 961;
  3129. //
  3130. // con1306
  3131. //
  3132. this.con1306.BackColor = System.Drawing.Color.Transparent;
  3133. this.myTableLayoutPanel1.SetColumnSpan(this.con1306, 3);
  3134. this.con1306.Dock = System.Windows.Forms.DockStyle.Fill;
  3135. this.con1306.Location = new System.Drawing.Point(1469, 375);
  3136. this.con1306.Margin = new System.Windows.Forms.Padding(0);
  3137. this.con1306.Name = "con1306";
  3138. this.myTableLayoutPanel1.SetRowSpan(this.con1306, 2);
  3139. this.con1306.Size = new System.Drawing.Size(39, 20);
  3140. this.con1306.TabIndex = 962;
  3141. //
  3142. // con1310
  3143. //
  3144. this.con1310.BackColor = System.Drawing.Color.Transparent;
  3145. this.myTableLayoutPanel1.SetColumnSpan(this.con1310, 2);
  3146. this.con1310.Dock = System.Windows.Forms.DockStyle.Fill;
  3147. this.con1310.Location = new System.Drawing.Point(1508, 375);
  3148. this.con1310.Margin = new System.Windows.Forms.Padding(0);
  3149. this.con1310.Name = "con1310";
  3150. this.myTableLayoutPanel1.SetRowSpan(this.con1310, 2);
  3151. this.con1310.Size = new System.Drawing.Size(26, 20);
  3152. this.con1310.TabIndex = 963;
  3153. //
  3154. // con1312
  3155. //
  3156. this.con1312.BackColor = System.Drawing.Color.Transparent;
  3157. this.myTableLayoutPanel1.SetColumnSpan(this.con1312, 3);
  3158. this.con1312.Dock = System.Windows.Forms.DockStyle.Fill;
  3159. this.con1312.Location = new System.Drawing.Point(1469, 395);
  3160. this.con1312.Margin = new System.Windows.Forms.Padding(0);
  3161. this.con1312.Name = "con1312";
  3162. this.myTableLayoutPanel1.SetRowSpan(this.con1312, 2);
  3163. this.con1312.Size = new System.Drawing.Size(39, 20);
  3164. this.con1312.TabIndex = 964;
  3165. //
  3166. // con1426
  3167. //
  3168. this.con1426.BackColor = System.Drawing.Color.Transparent;
  3169. this.myTableLayoutPanel1.SetColumnSpan(this.con1426, 3);
  3170. this.con1426.Dock = System.Windows.Forms.DockStyle.Fill;
  3171. this.con1426.Location = new System.Drawing.Point(1573, 395);
  3172. this.con1426.Margin = new System.Windows.Forms.Padding(0);
  3173. this.con1426.Name = "con1426";
  3174. this.myTableLayoutPanel1.SetRowSpan(this.con1426, 2);
  3175. this.con1426.Size = new System.Drawing.Size(39, 20);
  3176. this.con1426.TabIndex = 965;
  3177. //
  3178. // con1420
  3179. //
  3180. this.con1420.BackColor = System.Drawing.Color.Transparent;
  3181. this.myTableLayoutPanel1.SetColumnSpan(this.con1420, 3);
  3182. this.con1420.Dock = System.Windows.Forms.DockStyle.Fill;
  3183. this.con1420.Location = new System.Drawing.Point(1365, 375);
  3184. this.con1420.Margin = new System.Windows.Forms.Padding(0);
  3185. this.con1420.Name = "con1420";
  3186. this.myTableLayoutPanel1.SetRowSpan(this.con1420, 2);
  3187. this.con1420.Size = new System.Drawing.Size(39, 20);
  3188. this.con1420.TabIndex = 966;
  3189. //
  3190. // con1429
  3191. //
  3192. this.con1429.BackColor = System.Drawing.Color.Transparent;
  3193. this.myTableLayoutPanel1.SetColumnSpan(this.con1429, 3);
  3194. this.con1429.Dock = System.Windows.Forms.DockStyle.Fill;
  3195. this.con1429.Location = new System.Drawing.Point(1573, 375);
  3196. this.con1429.Margin = new System.Windows.Forms.Padding(0);
  3197. this.con1429.Name = "con1429";
  3198. this.myTableLayoutPanel1.SetRowSpan(this.con1429, 2);
  3199. this.con1429.Size = new System.Drawing.Size(39, 20);
  3200. this.con1429.TabIndex = 967;
  3201. //
  3202. // con1038
  3203. //
  3204. this.con1038.BackColor = System.Drawing.Color.Transparent;
  3205. this.myTableLayoutPanel1.SetColumnSpan(this.con1038, 5);
  3206. this.con1038.Dock = System.Windows.Forms.DockStyle.Fill;
  3207. this.con1038.Location = new System.Drawing.Point(715, 168);
  3208. this.con1038.Margin = new System.Windows.Forms.Padding(0);
  3209. this.con1038.Name = "con1038";
  3210. this.myTableLayoutPanel1.SetRowSpan(this.con1038, 2);
  3211. this.con1038.Size = new System.Drawing.Size(65, 18);
  3212. this.con1038.TabIndex = 968;
  3213. //
  3214. // con1042
  3215. //
  3216. this.con1042.BackColor = System.Drawing.Color.Transparent;
  3217. this.myTableLayoutPanel1.SetColumnSpan(this.con1042, 4);
  3218. this.con1042.Dock = System.Windows.Forms.DockStyle.Fill;
  3219. this.con1042.Location = new System.Drawing.Point(780, 168);
  3220. this.con1042.Margin = new System.Windows.Forms.Padding(0);
  3221. this.con1042.Name = "con1042";
  3222. this.myTableLayoutPanel1.SetRowSpan(this.con1042, 2);
  3223. this.con1042.Size = new System.Drawing.Size(52, 18);
  3224. this.con1042.TabIndex = 969;
  3225. //
  3226. // RGV9
  3227. //
  3228. this.RGV9.BackColor = System.Drawing.Color.Transparent;
  3229. this.myTableLayoutPanel1.SetColumnSpan(this.RGV9, 4);
  3230. this.RGV9.Dock = System.Windows.Forms.DockStyle.Fill;
  3231. this.RGV9.Location = new System.Drawing.Point(962, 425);
  3232. this.RGV9.Margin = new System.Windows.Forms.Padding(0);
  3233. this.RGV9.Name = "RGV9";
  3234. this.myTableLayoutPanel1.SetRowSpan(this.RGV9, 2);
  3235. this.RGV9.Size = new System.Drawing.Size(52, 20);
  3236. this.RGV9.TabIndex = 970;
  3237. //
  3238. // RGV10
  3239. //
  3240. this.RGV10.BackColor = System.Drawing.Color.Transparent;
  3241. this.myTableLayoutPanel1.SetColumnSpan(this.RGV10, 4);
  3242. this.RGV10.Dock = System.Windows.Forms.DockStyle.Fill;
  3243. this.RGV10.Location = new System.Drawing.Point(975, 465);
  3244. this.RGV10.Margin = new System.Windows.Forms.Padding(0);
  3245. this.RGV10.Name = "RGV10";
  3246. this.myTableLayoutPanel1.SetRowSpan(this.RGV10, 2);
  3247. this.RGV10.Size = new System.Drawing.Size(52, 20);
  3248. this.RGV10.TabIndex = 971;
  3249. this.RGV10.Load += new System.EventHandler(this.RGV10_Load);
  3250. //
  3251. // RGV11
  3252. //
  3253. this.RGV11.BackColor = System.Drawing.Color.Transparent;
  3254. this.myTableLayoutPanel1.SetColumnSpan(this.RGV11, 4);
  3255. this.RGV11.Dock = System.Windows.Forms.DockStyle.Fill;
  3256. this.RGV11.Location = new System.Drawing.Point(1105, 425);
  3257. this.RGV11.Margin = new System.Windows.Forms.Padding(0);
  3258. this.RGV11.Name = "RGV11";
  3259. this.myTableLayoutPanel1.SetRowSpan(this.RGV11, 2);
  3260. this.RGV11.Size = new System.Drawing.Size(52, 20);
  3261. this.RGV11.TabIndex = 972;
  3262. //
  3263. // RGV12
  3264. //
  3265. this.RGV12.BackColor = System.Drawing.Color.Transparent;
  3266. this.myTableLayoutPanel1.SetColumnSpan(this.RGV12, 4);
  3267. this.RGV12.Dock = System.Windows.Forms.DockStyle.Fill;
  3268. this.RGV12.Location = new System.Drawing.Point(1118, 465);
  3269. this.RGV12.Margin = new System.Windows.Forms.Padding(0);
  3270. this.RGV12.Name = "RGV12";
  3271. this.myTableLayoutPanel1.SetRowSpan(this.RGV12, 2);
  3272. this.RGV12.Size = new System.Drawing.Size(52, 20);
  3273. this.RGV12.TabIndex = 973;
  3274. //
  3275. // RGV13
  3276. //
  3277. this.RGV13.BackColor = System.Drawing.Color.Transparent;
  3278. this.myTableLayoutPanel1.SetColumnSpan(this.RGV13, 4);
  3279. this.RGV13.Dock = System.Windows.Forms.DockStyle.Fill;
  3280. this.RGV13.Location = new System.Drawing.Point(1235, 425);
  3281. this.RGV13.Margin = new System.Windows.Forms.Padding(0);
  3282. this.RGV13.Name = "RGV13";
  3283. this.myTableLayoutPanel1.SetRowSpan(this.RGV13, 2);
  3284. this.RGV13.Size = new System.Drawing.Size(52, 20);
  3285. this.RGV13.TabIndex = 974;
  3286. //
  3287. // RGV14
  3288. //
  3289. this.RGV14.BackColor = System.Drawing.Color.Transparent;
  3290. this.myTableLayoutPanel1.SetColumnSpan(this.RGV14, 4);
  3291. this.RGV14.Dock = System.Windows.Forms.DockStyle.Fill;
  3292. this.RGV14.Location = new System.Drawing.Point(1248, 465);
  3293. this.RGV14.Margin = new System.Windows.Forms.Padding(0);
  3294. this.RGV14.Name = "RGV14";
  3295. this.myTableLayoutPanel1.SetRowSpan(this.RGV14, 2);
  3296. this.RGV14.Size = new System.Drawing.Size(52, 20);
  3297. this.RGV14.TabIndex = 975;
  3298. //
  3299. // tableCellLabel21
  3300. //
  3301. this.tableCellLabel21.BackColor = System.Drawing.Color.Transparent;
  3302. this.tableCellLabel21.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel21.BackgroundImage")));
  3303. this.tableCellLabel21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3304. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel21, 7);
  3305. this.tableCellLabel21.Dock = System.Windows.Forms.DockStyle.Fill;
  3306. this.tableCellLabel21.Location = new System.Drawing.Point(871, 425);
  3307. this.tableCellLabel21.Margin = new System.Windows.Forms.Padding(0);
  3308. this.tableCellLabel21.Name = "tableCellLabel21";
  3309. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel21, 2);
  3310. this.tableCellLabel21.Size = new System.Drawing.Size(91, 20);
  3311. this.tableCellLabel21.TabIndex = 976;
  3312. //
  3313. // tableCellLabel22
  3314. //
  3315. this.tableCellLabel22.BackColor = System.Drawing.Color.Transparent;
  3316. this.tableCellLabel22.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel22.BackgroundImage")));
  3317. this.tableCellLabel22.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3318. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel22, 7);
  3319. this.tableCellLabel22.Dock = System.Windows.Forms.DockStyle.Fill;
  3320. this.tableCellLabel22.Location = new System.Drawing.Point(1014, 425);
  3321. this.tableCellLabel22.Margin = new System.Windows.Forms.Padding(0);
  3322. this.tableCellLabel22.Name = "tableCellLabel22";
  3323. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel22, 2);
  3324. this.tableCellLabel22.Size = new System.Drawing.Size(91, 20);
  3325. this.tableCellLabel22.TabIndex = 977;
  3326. //
  3327. // tableCellLabel23
  3328. //
  3329. this.tableCellLabel23.BackColor = System.Drawing.Color.Transparent;
  3330. this.tableCellLabel23.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel23.BackgroundImage")));
  3331. this.tableCellLabel23.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3332. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel23, 6);
  3333. this.tableCellLabel23.Dock = System.Windows.Forms.DockStyle.Fill;
  3334. this.tableCellLabel23.Location = new System.Drawing.Point(1157, 425);
  3335. this.tableCellLabel23.Margin = new System.Windows.Forms.Padding(0);
  3336. this.tableCellLabel23.Name = "tableCellLabel23";
  3337. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel23, 2);
  3338. this.tableCellLabel23.Size = new System.Drawing.Size(78, 20);
  3339. this.tableCellLabel23.TabIndex = 978;
  3340. //
  3341. // tableCellLabel25
  3342. //
  3343. this.tableCellLabel25.BackColor = System.Drawing.Color.Transparent;
  3344. this.tableCellLabel25.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel25.BackgroundImage")));
  3345. this.tableCellLabel25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3346. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel25, 5);
  3347. this.tableCellLabel25.Dock = System.Windows.Forms.DockStyle.Fill;
  3348. this.tableCellLabel25.Location = new System.Drawing.Point(1287, 425);
  3349. this.tableCellLabel25.Margin = new System.Windows.Forms.Padding(0);
  3350. this.tableCellLabel25.Name = "tableCellLabel25";
  3351. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel25, 2);
  3352. this.tableCellLabel25.Size = new System.Drawing.Size(65, 20);
  3353. this.tableCellLabel25.TabIndex = 980;
  3354. //
  3355. // tableCellLabel26
  3356. //
  3357. this.tableCellLabel26.BackColor = System.Drawing.Color.Transparent;
  3358. this.tableCellLabel26.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel26.BackgroundImage")));
  3359. this.tableCellLabel26.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3360. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel26, 5);
  3361. this.tableCellLabel26.Dock = System.Windows.Forms.DockStyle.Fill;
  3362. this.tableCellLabel26.Location = new System.Drawing.Point(871, 465);
  3363. this.tableCellLabel26.Margin = new System.Windows.Forms.Padding(0);
  3364. this.tableCellLabel26.Name = "tableCellLabel26";
  3365. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel26, 2);
  3366. this.tableCellLabel26.Size = new System.Drawing.Size(65, 20);
  3367. this.tableCellLabel26.TabIndex = 981;
  3368. //
  3369. // tableCellLabel27
  3370. //
  3371. this.tableCellLabel27.BackColor = System.Drawing.Color.Transparent;
  3372. this.tableCellLabel27.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel27.BackgroundImage")));
  3373. this.tableCellLabel27.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3374. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel27, 3);
  3375. this.tableCellLabel27.Dock = System.Windows.Forms.DockStyle.Fill;
  3376. this.tableCellLabel27.Location = new System.Drawing.Point(936, 465);
  3377. this.tableCellLabel27.Margin = new System.Windows.Forms.Padding(0);
  3378. this.tableCellLabel27.Name = "tableCellLabel27";
  3379. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel27, 2);
  3380. this.tableCellLabel27.Size = new System.Drawing.Size(39, 20);
  3381. this.tableCellLabel27.TabIndex = 982;
  3382. //
  3383. // tableCellLabel210
  3384. //
  3385. this.tableCellLabel210.BackColor = System.Drawing.Color.Transparent;
  3386. this.tableCellLabel210.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel210.BackgroundImage")));
  3387. this.tableCellLabel210.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3388. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel210, 7);
  3389. this.tableCellLabel210.Dock = System.Windows.Forms.DockStyle.Fill;
  3390. this.tableCellLabel210.Location = new System.Drawing.Point(1027, 465);
  3391. this.tableCellLabel210.Margin = new System.Windows.Forms.Padding(0);
  3392. this.tableCellLabel210.Name = "tableCellLabel210";
  3393. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel210, 2);
  3394. this.tableCellLabel210.Size = new System.Drawing.Size(91, 20);
  3395. this.tableCellLabel210.TabIndex = 984;
  3396. //
  3397. // tableCellLabel211
  3398. //
  3399. this.tableCellLabel211.BackColor = System.Drawing.Color.Transparent;
  3400. this.tableCellLabel211.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel211.BackgroundImage")));
  3401. this.tableCellLabel211.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3402. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel211, 6);
  3403. this.tableCellLabel211.Dock = System.Windows.Forms.DockStyle.Fill;
  3404. this.tableCellLabel211.Location = new System.Drawing.Point(1170, 465);
  3405. this.tableCellLabel211.Margin = new System.Windows.Forms.Padding(0);
  3406. this.tableCellLabel211.Name = "tableCellLabel211";
  3407. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel211, 2);
  3408. this.tableCellLabel211.Size = new System.Drawing.Size(78, 20);
  3409. this.tableCellLabel211.TabIndex = 985;
  3410. //
  3411. // tableCellLabel213
  3412. //
  3413. this.tableCellLabel213.BackColor = System.Drawing.Color.Transparent;
  3414. this.tableCellLabel213.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel213.BackgroundImage")));
  3415. this.tableCellLabel213.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3416. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel213, 4);
  3417. this.tableCellLabel213.Dock = System.Windows.Forms.DockStyle.Fill;
  3418. this.tableCellLabel213.Location = new System.Drawing.Point(1300, 465);
  3419. this.tableCellLabel213.Margin = new System.Windows.Forms.Padding(0);
  3420. this.tableCellLabel213.Name = "tableCellLabel213";
  3421. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel213, 2);
  3422. this.tableCellLabel213.Size = new System.Drawing.Size(52, 20);
  3423. this.tableCellLabel213.TabIndex = 987;
  3424. //
  3425. // tableCellLabel214
  3426. //
  3427. this.tableCellLabel214.BackColor = System.Drawing.Color.Transparent;
  3428. this.tableCellLabel214.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel214.BackgroundImage")));
  3429. this.tableCellLabel214.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3430. this.tableCellLabel214.Dock = System.Windows.Forms.DockStyle.Fill;
  3431. this.tableCellLabel214.Location = new System.Drawing.Point(871, 445);
  3432. this.tableCellLabel214.Margin = new System.Windows.Forms.Padding(0);
  3433. this.tableCellLabel214.Name = "tableCellLabel214";
  3434. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel214, 2);
  3435. this.tableCellLabel214.Size = new System.Drawing.Size(13, 20);
  3436. this.tableCellLabel214.TabIndex = 988;
  3437. //
  3438. // tableCellLabel215
  3439. //
  3440. this.tableCellLabel215.BackColor = System.Drawing.Color.Transparent;
  3441. this.tableCellLabel215.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel215.BackgroundImage")));
  3442. this.tableCellLabel215.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3443. this.tableCellLabel215.Dock = System.Windows.Forms.DockStyle.Fill;
  3444. this.tableCellLabel215.Location = new System.Drawing.Point(1339, 445);
  3445. this.tableCellLabel215.Margin = new System.Windows.Forms.Padding(0);
  3446. this.tableCellLabel215.Name = "tableCellLabel215";
  3447. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel215, 2);
  3448. this.tableCellLabel215.Size = new System.Drawing.Size(13, 20);
  3449. this.tableCellLabel215.TabIndex = 989;
  3450. //
  3451. // con1458
  3452. //
  3453. this.con1458.BackColor = System.Drawing.Color.Transparent;
  3454. this.myTableLayoutPanel1.SetColumnSpan(this.con1458, 3);
  3455. this.con1458.Dock = System.Windows.Forms.DockStyle.Fill;
  3456. this.con1458.Location = new System.Drawing.Point(91, 395);
  3457. this.con1458.Margin = new System.Windows.Forms.Padding(0);
  3458. this.con1458.Name = "con1458";
  3459. this.myTableLayoutPanel1.SetRowSpan(this.con1458, 2);
  3460. this.con1458.Size = new System.Drawing.Size(39, 20);
  3461. this.con1458.TabIndex = 990;
  3462. //
  3463. // con1460
  3464. //
  3465. this.con1460.BackColor = System.Drawing.Color.Transparent;
  3466. this.myTableLayoutPanel1.SetColumnSpan(this.con1460, 3);
  3467. this.con1460.Dock = System.Windows.Forms.DockStyle.Fill;
  3468. this.con1460.Location = new System.Drawing.Point(91, 415);
  3469. this.con1460.Margin = new System.Windows.Forms.Padding(0);
  3470. this.con1460.Name = "con1460";
  3471. this.myTableLayoutPanel1.SetRowSpan(this.con1460, 2);
  3472. this.con1460.Size = new System.Drawing.Size(39, 20);
  3473. this.con1460.TabIndex = 991;
  3474. //
  3475. // con1462
  3476. //
  3477. this.con1462.BackColor = System.Drawing.Color.Transparent;
  3478. this.myTableLayoutPanel1.SetColumnSpan(this.con1462, 3);
  3479. this.con1462.Dock = System.Windows.Forms.DockStyle.Fill;
  3480. this.con1462.Location = new System.Drawing.Point(91, 435);
  3481. this.con1462.Margin = new System.Windows.Forms.Padding(0);
  3482. this.con1462.Name = "con1462";
  3483. this.myTableLayoutPanel1.SetRowSpan(this.con1462, 2);
  3484. this.con1462.Size = new System.Drawing.Size(39, 20);
  3485. this.con1462.TabIndex = 992;
  3486. //
  3487. // con1464
  3488. //
  3489. this.con1464.BackColor = System.Drawing.Color.Transparent;
  3490. this.myTableLayoutPanel1.SetColumnSpan(this.con1464, 3);
  3491. this.con1464.Dock = System.Windows.Forms.DockStyle.Fill;
  3492. this.con1464.Location = new System.Drawing.Point(91, 455);
  3493. this.con1464.Margin = new System.Windows.Forms.Padding(0);
  3494. this.con1464.Name = "con1464";
  3495. this.myTableLayoutPanel1.SetRowSpan(this.con1464, 2);
  3496. this.con1464.Size = new System.Drawing.Size(39, 20);
  3497. this.con1464.TabIndex = 993;
  3498. //
  3499. // con1466
  3500. //
  3501. this.con1466.BackColor = System.Drawing.Color.Transparent;
  3502. this.myTableLayoutPanel1.SetColumnSpan(this.con1466, 3);
  3503. this.con1466.Dock = System.Windows.Forms.DockStyle.Fill;
  3504. this.con1466.Location = new System.Drawing.Point(91, 475);
  3505. this.con1466.Margin = new System.Windows.Forms.Padding(0);
  3506. this.con1466.Name = "con1466";
  3507. this.myTableLayoutPanel1.SetRowSpan(this.con1466, 2);
  3508. this.con1466.Size = new System.Drawing.Size(39, 20);
  3509. this.con1466.TabIndex = 994;
  3510. //
  3511. // con1468
  3512. //
  3513. this.con1468.BackColor = System.Drawing.Color.Transparent;
  3514. this.myTableLayoutPanel1.SetColumnSpan(this.con1468, 3);
  3515. this.con1468.Dock = System.Windows.Forms.DockStyle.Fill;
  3516. this.con1468.Location = new System.Drawing.Point(91, 495);
  3517. this.con1468.Margin = new System.Windows.Forms.Padding(0);
  3518. this.con1468.Name = "con1468";
  3519. this.myTableLayoutPanel1.SetRowSpan(this.con1468, 2);
  3520. this.con1468.Size = new System.Drawing.Size(39, 20);
  3521. this.con1468.TabIndex = 995;
  3522. //
  3523. // con1496
  3524. //
  3525. this.con1496.BackColor = System.Drawing.Color.Transparent;
  3526. this.myTableLayoutPanel1.SetColumnSpan(this.con1496, 3);
  3527. this.con1496.Dock = System.Windows.Forms.DockStyle.Fill;
  3528. this.con1496.Location = new System.Drawing.Point(91, 515);
  3529. this.con1496.Margin = new System.Windows.Forms.Padding(0);
  3530. this.con1496.Name = "con1496";
  3531. this.myTableLayoutPanel1.SetRowSpan(this.con1496, 2);
  3532. this.con1496.Size = new System.Drawing.Size(39, 20);
  3533. this.con1496.TabIndex = 996;
  3534. //
  3535. // label6
  3536. //
  3537. this.label6.AutoSize = true;
  3538. this.label6.BackColor = System.Drawing.Color.Lime;
  3539. this.myTableLayoutPanel1.SetColumnSpan(this.label6, 4);
  3540. this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
  3541. this.label6.Location = new System.Drawing.Point(874, 495);
  3542. this.label6.Name = "label6";
  3543. this.myTableLayoutPanel1.SetRowSpan(this.label6, 2);
  3544. this.label6.Size = new System.Drawing.Size(46, 20);
  3545. this.label6.TabIndex = 997;
  3546. this.label6.Text = "二楼";
  3547. this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  3548. //
  3549. // label12
  3550. //
  3551. this.label12.AutoSize = true;
  3552. this.label12.BackColor = System.Drawing.Color.Lime;
  3553. this.myTableLayoutPanel1.SetColumnSpan(this.label12, 4);
  3554. this.label12.Dock = System.Windows.Forms.DockStyle.Fill;
  3555. this.label12.Location = new System.Drawing.Point(42, 495);
  3556. this.label12.Name = "label12";
  3557. this.myTableLayoutPanel1.SetRowSpan(this.label12, 2);
  3558. this.label12.Size = new System.Drawing.Size(46, 20);
  3559. this.label12.TabIndex = 998;
  3560. this.label12.Text = "一楼";
  3561. //
  3562. // RGV1
  3563. //
  3564. this.RGV1.BackColor = System.Drawing.Color.Transparent;
  3565. this.myTableLayoutPanel1.SetColumnSpan(this.RGV1, 4);
  3566. this.RGV1.Dock = System.Windows.Forms.DockStyle.Fill;
  3567. this.RGV1.Location = new System.Drawing.Point(975, 132);
  3568. this.RGV1.Margin = new System.Windows.Forms.Padding(0);
  3569. this.RGV1.Name = "RGV1";
  3570. this.myTableLayoutPanel1.SetRowSpan(this.RGV1, 2);
  3571. this.RGV1.Size = new System.Drawing.Size(52, 18);
  3572. this.RGV1.TabIndex = 999;
  3573. //
  3574. // RGV2
  3575. //
  3576. this.RGV2.BackColor = System.Drawing.Color.Transparent;
  3577. this.myTableLayoutPanel1.SetColumnSpan(this.RGV2, 4);
  3578. this.RGV2.Dock = System.Windows.Forms.DockStyle.Fill;
  3579. this.RGV2.Location = new System.Drawing.Point(1105, 132);
  3580. this.RGV2.Margin = new System.Windows.Forms.Padding(0);
  3581. this.RGV2.Name = "RGV2";
  3582. this.myTableLayoutPanel1.SetRowSpan(this.RGV2, 2);
  3583. this.RGV2.Size = new System.Drawing.Size(52, 18);
  3584. this.RGV2.TabIndex = 1000;
  3585. //
  3586. // RGV3
  3587. //
  3588. this.RGV3.BackColor = System.Drawing.Color.Transparent;
  3589. this.myTableLayoutPanel1.SetColumnSpan(this.RGV3, 4);
  3590. this.RGV3.Dock = System.Windows.Forms.DockStyle.Fill;
  3591. this.RGV3.Location = new System.Drawing.Point(1235, 132);
  3592. this.RGV3.Margin = new System.Windows.Forms.Padding(0);
  3593. this.RGV3.Name = "RGV3";
  3594. this.myTableLayoutPanel1.SetRowSpan(this.RGV3, 2);
  3595. this.RGV3.Size = new System.Drawing.Size(52, 18);
  3596. this.RGV3.TabIndex = 1001;
  3597. //
  3598. // RGV4
  3599. //
  3600. this.RGV4.BackColor = System.Drawing.Color.Transparent;
  3601. this.myTableLayoutPanel1.SetColumnSpan(this.RGV4, 4);
  3602. this.RGV4.Dock = System.Windows.Forms.DockStyle.Fill;
  3603. this.RGV4.Location = new System.Drawing.Point(1014, 205);
  3604. this.RGV4.Margin = new System.Windows.Forms.Padding(0);
  3605. this.RGV4.Name = "RGV4";
  3606. this.myTableLayoutPanel1.SetRowSpan(this.RGV4, 2);
  3607. this.RGV4.Size = new System.Drawing.Size(52, 19);
  3608. this.RGV4.TabIndex = 1002;
  3609. //
  3610. // RGV5
  3611. //
  3612. this.RGV5.BackColor = System.Drawing.Color.Transparent;
  3613. this.myTableLayoutPanel1.SetColumnSpan(this.RGV5, 4);
  3614. this.RGV5.Dock = System.Windows.Forms.DockStyle.Fill;
  3615. this.RGV5.Location = new System.Drawing.Point(1118, 205);
  3616. this.RGV5.Margin = new System.Windows.Forms.Padding(0);
  3617. this.RGV5.Name = "RGV5";
  3618. this.myTableLayoutPanel1.SetRowSpan(this.RGV5, 2);
  3619. this.RGV5.Size = new System.Drawing.Size(52, 19);
  3620. this.RGV5.TabIndex = 1003;
  3621. //
  3622. // RGV6
  3623. //
  3624. this.RGV6.BackColor = System.Drawing.Color.Transparent;
  3625. this.myTableLayoutPanel1.SetColumnSpan(this.RGV6, 4);
  3626. this.RGV6.Dock = System.Windows.Forms.DockStyle.Fill;
  3627. this.RGV6.Location = new System.Drawing.Point(1222, 205);
  3628. this.RGV6.Margin = new System.Windows.Forms.Padding(0);
  3629. this.RGV6.Name = "RGV6";
  3630. this.myTableLayoutPanel1.SetRowSpan(this.RGV6, 2);
  3631. this.RGV6.Size = new System.Drawing.Size(52, 19);
  3632. this.RGV6.TabIndex = 1004;
  3633. //
  3634. // RGV7
  3635. //
  3636. this.RGV7.BackColor = System.Drawing.Color.Transparent;
  3637. this.myTableLayoutPanel1.SetColumnSpan(this.RGV7, 4);
  3638. this.RGV7.Dock = System.Windows.Forms.DockStyle.Fill;
  3639. this.RGV7.Location = new System.Drawing.Point(1313, 205);
  3640. this.RGV7.Margin = new System.Windows.Forms.Padding(0);
  3641. this.RGV7.Name = "RGV7";
  3642. this.myTableLayoutPanel1.SetRowSpan(this.RGV7, 2);
  3643. this.RGV7.Size = new System.Drawing.Size(52, 19);
  3644. this.RGV7.TabIndex = 1005;
  3645. //
  3646. // tableCellLabel24
  3647. //
  3648. this.tableCellLabel24.BackColor = System.Drawing.Color.Transparent;
  3649. this.tableCellLabel24.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel24.BackgroundImage")));
  3650. this.tableCellLabel24.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3651. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel24, 3);
  3652. this.tableCellLabel24.Dock = System.Windows.Forms.DockStyle.Fill;
  3653. this.tableCellLabel24.Location = new System.Drawing.Point(936, 132);
  3654. this.tableCellLabel24.Margin = new System.Windows.Forms.Padding(0);
  3655. this.tableCellLabel24.Name = "tableCellLabel24";
  3656. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel24, 2);
  3657. this.tableCellLabel24.Size = new System.Drawing.Size(39, 18);
  3658. this.tableCellLabel24.TabIndex = 1006;
  3659. //
  3660. // tableCellLabel28
  3661. //
  3662. this.tableCellLabel28.BackColor = System.Drawing.Color.Transparent;
  3663. this.tableCellLabel28.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel28.BackgroundImage")));
  3664. this.tableCellLabel28.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3665. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel28, 6);
  3666. this.tableCellLabel28.Dock = System.Windows.Forms.DockStyle.Fill;
  3667. this.tableCellLabel28.Location = new System.Drawing.Point(1027, 132);
  3668. this.tableCellLabel28.Margin = new System.Windows.Forms.Padding(0);
  3669. this.tableCellLabel28.Name = "tableCellLabel28";
  3670. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel28, 2);
  3671. this.tableCellLabel28.Size = new System.Drawing.Size(78, 18);
  3672. this.tableCellLabel28.TabIndex = 1007;
  3673. //
  3674. // tableCellLabel212
  3675. //
  3676. this.tableCellLabel212.BackColor = System.Drawing.Color.Transparent;
  3677. this.tableCellLabel212.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel212.BackgroundImage")));
  3678. this.tableCellLabel212.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3679. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel212, 6);
  3680. this.tableCellLabel212.Dock = System.Windows.Forms.DockStyle.Fill;
  3681. this.tableCellLabel212.Location = new System.Drawing.Point(1157, 132);
  3682. this.tableCellLabel212.Margin = new System.Windows.Forms.Padding(0);
  3683. this.tableCellLabel212.Name = "tableCellLabel212";
  3684. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel212, 2);
  3685. this.tableCellLabel212.Size = new System.Drawing.Size(78, 18);
  3686. this.tableCellLabel212.TabIndex = 1008;
  3687. //
  3688. // tableCellLabel216
  3689. //
  3690. this.tableCellLabel216.BackColor = System.Drawing.Color.Transparent;
  3691. this.tableCellLabel216.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel216.BackgroundImage")));
  3692. this.tableCellLabel216.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3693. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel216, 7);
  3694. this.tableCellLabel216.Dock = System.Windows.Forms.DockStyle.Fill;
  3695. this.tableCellLabel216.Location = new System.Drawing.Point(1287, 132);
  3696. this.tableCellLabel216.Margin = new System.Windows.Forms.Padding(0);
  3697. this.tableCellLabel216.Name = "tableCellLabel216";
  3698. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel216, 2);
  3699. this.tableCellLabel216.Size = new System.Drawing.Size(91, 18);
  3700. this.tableCellLabel216.TabIndex = 1009;
  3701. //
  3702. // tableCellLabel217
  3703. //
  3704. this.tableCellLabel217.BackColor = System.Drawing.Color.Transparent;
  3705. this.tableCellLabel217.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel217.BackgroundImage")));
  3706. this.tableCellLabel217.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3707. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel217, 6);
  3708. this.tableCellLabel217.Dock = System.Windows.Forms.DockStyle.Fill;
  3709. this.tableCellLabel217.Location = new System.Drawing.Point(936, 205);
  3710. this.tableCellLabel217.Margin = new System.Windows.Forms.Padding(0);
  3711. this.tableCellLabel217.Name = "tableCellLabel217";
  3712. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel217, 2);
  3713. this.tableCellLabel217.Size = new System.Drawing.Size(78, 19);
  3714. this.tableCellLabel217.TabIndex = 1010;
  3715. //
  3716. // tableCellLabel218
  3717. //
  3718. this.tableCellLabel218.BackColor = System.Drawing.Color.Transparent;
  3719. this.tableCellLabel218.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel218.BackgroundImage")));
  3720. this.tableCellLabel218.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3721. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel218, 4);
  3722. this.tableCellLabel218.Dock = System.Windows.Forms.DockStyle.Fill;
  3723. this.tableCellLabel218.Location = new System.Drawing.Point(1066, 205);
  3724. this.tableCellLabel218.Margin = new System.Windows.Forms.Padding(0);
  3725. this.tableCellLabel218.Name = "tableCellLabel218";
  3726. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel218, 2);
  3727. this.tableCellLabel218.Size = new System.Drawing.Size(52, 19);
  3728. this.tableCellLabel218.TabIndex = 1011;
  3729. //
  3730. // tableCellLabel219
  3731. //
  3732. this.tableCellLabel219.BackColor = System.Drawing.Color.Transparent;
  3733. this.tableCellLabel219.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel219.BackgroundImage")));
  3734. this.tableCellLabel219.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3735. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel219, 4);
  3736. this.tableCellLabel219.Dock = System.Windows.Forms.DockStyle.Fill;
  3737. this.tableCellLabel219.Location = new System.Drawing.Point(1170, 205);
  3738. this.tableCellLabel219.Margin = new System.Windows.Forms.Padding(0);
  3739. this.tableCellLabel219.Name = "tableCellLabel219";
  3740. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel219, 2);
  3741. this.tableCellLabel219.Size = new System.Drawing.Size(52, 19);
  3742. this.tableCellLabel219.TabIndex = 1012;
  3743. //
  3744. // tableCellLabel220
  3745. //
  3746. this.tableCellLabel220.BackColor = System.Drawing.Color.Transparent;
  3747. this.tableCellLabel220.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel220.BackgroundImage")));
  3748. this.tableCellLabel220.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3749. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel220, 3);
  3750. this.tableCellLabel220.Dock = System.Windows.Forms.DockStyle.Fill;
  3751. this.tableCellLabel220.Location = new System.Drawing.Point(1274, 205);
  3752. this.tableCellLabel220.Margin = new System.Windows.Forms.Padding(0);
  3753. this.tableCellLabel220.Name = "tableCellLabel220";
  3754. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel220, 2);
  3755. this.tableCellLabel220.Size = new System.Drawing.Size(39, 19);
  3756. this.tableCellLabel220.TabIndex = 1013;
  3757. //
  3758. // tableCellLabel221
  3759. //
  3760. this.tableCellLabel221.BackColor = System.Drawing.Color.Transparent;
  3761. this.tableCellLabel221.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel221.BackgroundImage")));
  3762. this.tableCellLabel221.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3763. this.tableCellLabel221.Dock = System.Windows.Forms.DockStyle.Fill;
  3764. this.tableCellLabel221.Location = new System.Drawing.Point(1365, 205);
  3765. this.tableCellLabel221.Margin = new System.Windows.Forms.Padding(0);
  3766. this.tableCellLabel221.Name = "tableCellLabel221";
  3767. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel221, 2);
  3768. this.tableCellLabel221.Size = new System.Drawing.Size(13, 19);
  3769. this.tableCellLabel221.TabIndex = 1014;
  3770. //
  3771. // tableCellLabel4
  3772. //
  3773. this.tableCellLabel4.BackColor = System.Drawing.Color.Transparent;
  3774. this.tableCellLabel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel4.BackgroundImage")));
  3775. this.tableCellLabel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3776. this.tableCellLabel4.Dock = System.Windows.Forms.DockStyle.Fill;
  3777. this.tableCellLabel4.Location = new System.Drawing.Point(936, 150);
  3778. this.tableCellLabel4.Margin = new System.Windows.Forms.Padding(0);
  3779. this.tableCellLabel4.Name = "tableCellLabel4";
  3780. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel4, 6);
  3781. this.tableCellLabel4.Size = new System.Drawing.Size(13, 55);
  3782. this.tableCellLabel4.TabIndex = 1015;
  3783. //
  3784. // tableCellLabel7
  3785. //
  3786. this.tableCellLabel7.BackColor = System.Drawing.Color.Transparent;
  3787. this.tableCellLabel7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel7.BackgroundImage")));
  3788. this.tableCellLabel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  3789. this.tableCellLabel7.Dock = System.Windows.Forms.DockStyle.Fill;
  3790. this.tableCellLabel7.Location = new System.Drawing.Point(1365, 150);
  3791. this.tableCellLabel7.Margin = new System.Windows.Forms.Padding(0);
  3792. this.tableCellLabel7.Name = "tableCellLabel7";
  3793. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel7, 6);
  3794. this.tableCellLabel7.Size = new System.Drawing.Size(13, 55);
  3795. this.tableCellLabel7.TabIndex = 1016;
  3796. //
  3797. // con1435
  3798. //
  3799. this.myTableLayoutPanel1.SetColumnSpan(this.con1435, 4);
  3800. this.con1435.Dock = System.Windows.Forms.DockStyle.Fill;
  3801. this.con1435.Location = new System.Drawing.Point(1482, 251);
  3802. this.con1435.Margin = new System.Windows.Forms.Padding(0);
  3803. this.con1435.Name = "con1435";
  3804. this.myTableLayoutPanel1.SetRowSpan(this.con1435, 2);
  3805. this.con1435.Size = new System.Drawing.Size(52, 19);
  3806. this.con1435.TabIndex = 1017;
  3807. //
  3808. // con1436
  3809. //
  3810. this.myTableLayoutPanel1.SetColumnSpan(this.con1436, 4);
  3811. this.con1436.Dock = System.Windows.Forms.DockStyle.Fill;
  3812. this.con1436.Location = new System.Drawing.Point(1534, 251);
  3813. this.con1436.Margin = new System.Windows.Forms.Padding(0);
  3814. this.con1436.Name = "con1436";
  3815. this.myTableLayoutPanel1.SetRowSpan(this.con1436, 2);
  3816. this.con1436.Size = new System.Drawing.Size(52, 19);
  3817. this.con1436.TabIndex = 1018;
  3818. //
  3819. // pnlDDJ1
  3820. //
  3821. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  3822. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3823. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3824. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3825. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  3826. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  3827. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  3828. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  3829. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  3830. this.pnlDDJ1.Controls.Add(this.label84);
  3831. this.pnlDDJ1.Controls.Add(this.label85);
  3832. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  3833. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  3834. this.pnlDDJ1.Controls.Add(this.label137);
  3835. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  3836. this.pnlDDJ1.Controls.Add(this.label139);
  3837. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  3838. this.pnlDDJ1.Controls.Add(this.label13);
  3839. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  3840. this.pnlDDJ1.Controls.Add(this.label10);
  3841. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  3842. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  3843. this.pnlDDJ1.Controls.Add(this.label5);
  3844. this.pnlDDJ1.Controls.Add(this.label3);
  3845. this.pnlDDJ1.Controls.Add(this.label2);
  3846. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  3847. this.pnlDDJ1.Controls.Add(this.G1);
  3848. this.pnlDDJ1.Controls.Add(this.R1);
  3849. this.pnlDDJ1.Location = new System.Drawing.Point(0, 3);
  3850. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3851. this.pnlDDJ1.Name = "pnlDDJ1";
  3852. this.pnlDDJ1.Size = new System.Drawing.Size(217, 312);
  3853. this.pnlDDJ1.TabIndex = 25;
  3854. //
  3855. // lblInStatus1
  3856. //
  3857. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  3858. this.lblInStatus1.Location = new System.Drawing.Point(7, 2);
  3859. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3860. this.lblInStatus1.Name = "lblInStatus1";
  3861. this.lblInStatus1.Size = new System.Drawing.Size(37, 30);
  3862. this.lblInStatus1.TabIndex = 94;
  3863. this.lblInStatus1.Tag = "1";
  3864. this.lblInStatus1.Text = "入";
  3865. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3866. //
  3867. // lblOutStatus1
  3868. //
  3869. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  3870. this.lblOutStatus1.Location = new System.Drawing.Point(169, 2);
  3871. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3872. this.lblOutStatus1.Name = "lblOutStatus1";
  3873. this.lblOutStatus1.Size = new System.Drawing.Size(37, 30);
  3874. this.lblOutStatus1.TabIndex = 93;
  3875. this.lblOutStatus1.Text = "出";
  3876. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3877. //
  3878. // lblDDJWarning1
  3879. //
  3880. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  3881. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3882. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  3883. this.lblDDJWarning1.Location = new System.Drawing.Point(7, 58);
  3884. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3885. this.lblDDJWarning1.Name = "lblDDJWarning1";
  3886. this.lblDDJWarning1.Size = new System.Drawing.Size(201, 30);
  3887. this.lblDDJWarning1.TabIndex = 92;
  3888. //
  3889. // ddjPosTo1
  3890. //
  3891. this.ddjPosTo1.AutoSize = true;
  3892. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  3893. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3894. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  3895. this.ddjPosTo1.Location = new System.Drawing.Point(119, 292);
  3896. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3897. this.ddjPosTo1.Name = "ddjPosTo1";
  3898. this.ddjPosTo1.Size = new System.Drawing.Size(31, 15);
  3899. this.ddjPosTo1.TabIndex = 73;
  3900. this.ddjPosTo1.Text = "---";
  3901. //
  3902. // ddjPosFrom1
  3903. //
  3904. this.ddjPosFrom1.AutoSize = true;
  3905. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  3906. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3907. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  3908. this.ddjPosFrom1.Location = new System.Drawing.Point(119, 265);
  3909. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3910. this.ddjPosFrom1.Name = "ddjPosFrom1";
  3911. this.ddjPosFrom1.Size = new System.Drawing.Size(31, 15);
  3912. this.ddjPosFrom1.TabIndex = 72;
  3913. this.ddjPosFrom1.Text = "---";
  3914. //
  3915. // label84
  3916. //
  3917. this.label84.AutoSize = true;
  3918. this.label84.BackColor = System.Drawing.Color.Transparent;
  3919. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3920. this.label84.Location = new System.Drawing.Point(4, 265);
  3921. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3922. this.label84.Name = "label84";
  3923. this.label84.Size = new System.Drawing.Size(82, 15);
  3924. this.label84.TabIndex = 71;
  3925. this.label84.Text = "起始位置:";
  3926. //
  3927. // label85
  3928. //
  3929. this.label85.AutoSize = true;
  3930. this.label85.BackColor = System.Drawing.Color.Transparent;
  3931. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3932. this.label85.Location = new System.Drawing.Point(4, 292);
  3933. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3934. this.label85.Name = "label85";
  3935. this.label85.Size = new System.Drawing.Size(82, 15);
  3936. this.label85.TabIndex = 70;
  3937. this.label85.Text = "目标位置:";
  3938. //
  3939. // ddjMode1
  3940. //
  3941. this.ddjMode1.AutoSize = true;
  3942. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  3943. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3944. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  3945. this.ddjMode1.Location = new System.Drawing.Point(116, 92);
  3946. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3947. this.ddjMode1.Name = "ddjMode1";
  3948. this.ddjMode1.Size = new System.Drawing.Size(31, 15);
  3949. this.ddjMode1.TabIndex = 12;
  3950. this.ddjMode1.Text = "---";
  3951. //
  3952. // ddjOrdId1
  3953. //
  3954. this.ddjOrdId1.AutoSize = true;
  3955. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  3956. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3957. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  3958. this.ddjOrdId1.Location = new System.Drawing.Point(116, 142);
  3959. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3960. this.ddjOrdId1.Name = "ddjOrdId1";
  3961. this.ddjOrdId1.Size = new System.Drawing.Size(31, 15);
  3962. this.ddjOrdId1.TabIndex = 64;
  3963. this.ddjOrdId1.Text = "---";
  3964. //
  3965. // label137
  3966. //
  3967. this.label137.AutoSize = true;
  3968. this.label137.BackColor = System.Drawing.Color.Transparent;
  3969. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3970. this.label137.Location = new System.Drawing.Point(3, 142);
  3971. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3972. this.label137.Name = "label137";
  3973. this.label137.Size = new System.Drawing.Size(82, 15);
  3974. this.label137.TabIndex = 63;
  3975. this.label137.Text = "工作指令:";
  3976. //
  3977. // ddjOptType1
  3978. //
  3979. this.ddjOptType1.AutoSize = true;
  3980. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  3981. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3982. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  3983. this.ddjOptType1.Location = new System.Drawing.Point(116, 162);
  3984. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3985. this.ddjOptType1.Name = "ddjOptType1";
  3986. this.ddjOptType1.Size = new System.Drawing.Size(31, 15);
  3987. this.ddjOptType1.TabIndex = 62;
  3988. this.ddjOptType1.Text = "---";
  3989. //
  3990. // label139
  3991. //
  3992. this.label139.AutoSize = true;
  3993. this.label139.BackColor = System.Drawing.Color.Transparent;
  3994. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3995. this.label139.Location = new System.Drawing.Point(3, 162);
  3996. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3997. this.label139.Name = "label139";
  3998. this.label139.Size = new System.Drawing.Size(82, 15);
  3999. this.label139.TabIndex = 61;
  4000. this.label139.Text = "作业类型:";
  4001. //
  4002. // ddjTotal_KM1
  4003. //
  4004. this.ddjTotal_KM1.AutoSize = true;
  4005. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  4006. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4007. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  4008. this.ddjTotal_KM1.Location = new System.Drawing.Point(117, 238);
  4009. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4010. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  4011. this.ddjTotal_KM1.Size = new System.Drawing.Size(31, 15);
  4012. this.ddjTotal_KM1.TabIndex = 16;
  4013. this.ddjTotal_KM1.Text = "---";
  4014. //
  4015. // label13
  4016. //
  4017. this.label13.AutoSize = true;
  4018. this.label13.BackColor = System.Drawing.Color.Transparent;
  4019. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4020. this.label13.Location = new System.Drawing.Point(3, 92);
  4021. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4022. this.label13.Name = "label13";
  4023. this.label13.Size = new System.Drawing.Size(82, 15);
  4024. this.label13.TabIndex = 15;
  4025. this.label13.Text = "工作模式:";
  4026. //
  4027. // ddjWorkTime1
  4028. //
  4029. this.ddjWorkTime1.AutoSize = true;
  4030. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  4031. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4032. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  4033. this.ddjWorkTime1.Location = new System.Drawing.Point(116, 212);
  4034. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4035. this.ddjWorkTime1.Name = "ddjWorkTime1";
  4036. this.ddjWorkTime1.Size = new System.Drawing.Size(31, 15);
  4037. this.ddjWorkTime1.TabIndex = 14;
  4038. this.ddjWorkTime1.Text = "---";
  4039. //
  4040. // label10
  4041. //
  4042. this.label10.AutoSize = true;
  4043. this.label10.BackColor = System.Drawing.Color.Transparent;
  4044. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4045. this.label10.Location = new System.Drawing.Point(3, 212);
  4046. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4047. this.label10.Name = "label10";
  4048. this.label10.Size = new System.Drawing.Size(82, 15);
  4049. this.label10.TabIndex = 13;
  4050. this.label10.Text = "运行时长:";
  4051. //
  4052. // ddjStatus1
  4053. //
  4054. this.ddjStatus1.AutoSize = true;
  4055. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  4056. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4057. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  4058. this.ddjStatus1.Location = new System.Drawing.Point(116, 118);
  4059. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4060. this.ddjStatus1.Name = "ddjStatus1";
  4061. this.ddjStatus1.Size = new System.Drawing.Size(31, 15);
  4062. this.ddjStatus1.TabIndex = 10;
  4063. this.ddjStatus1.Text = "---";
  4064. //
  4065. // ddjPosCurr1
  4066. //
  4067. this.ddjPosCurr1.AutoSize = true;
  4068. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  4069. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4070. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  4071. this.ddjPosCurr1.Location = new System.Drawing.Point(117, 188);
  4072. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4073. this.ddjPosCurr1.Name = "ddjPosCurr1";
  4074. this.ddjPosCurr1.Size = new System.Drawing.Size(15, 15);
  4075. this.ddjPosCurr1.TabIndex = 9;
  4076. this.ddjPosCurr1.Text = "1";
  4077. //
  4078. // label5
  4079. //
  4080. this.label5.AutoSize = true;
  4081. this.label5.BackColor = System.Drawing.Color.Transparent;
  4082. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4083. this.label5.Location = new System.Drawing.Point(3, 238);
  4084. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4085. this.label5.Name = "label5";
  4086. this.label5.Size = new System.Drawing.Size(83, 15);
  4087. this.label5.TabIndex = 8;
  4088. this.label5.Text = "里 程 数:";
  4089. //
  4090. // label3
  4091. //
  4092. this.label3.AutoSize = true;
  4093. this.label3.BackColor = System.Drawing.Color.Transparent;
  4094. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4095. this.label3.Location = new System.Drawing.Point(3, 115);
  4096. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4097. this.label3.Name = "label3";
  4098. this.label3.Size = new System.Drawing.Size(82, 15);
  4099. this.label3.TabIndex = 6;
  4100. this.label3.Text = "工作状态:";
  4101. //
  4102. // label2
  4103. //
  4104. this.label2.AutoSize = true;
  4105. this.label2.BackColor = System.Drawing.Color.Transparent;
  4106. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4107. this.label2.Location = new System.Drawing.Point(3, 188);
  4108. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4109. this.label2.Name = "label2";
  4110. this.label2.Size = new System.Drawing.Size(82, 15);
  4111. this.label2.TabIndex = 1;
  4112. this.label2.Text = "当前巷道:";
  4113. //
  4114. // lblsrm01
  4115. //
  4116. this.lblsrm01.AutoSize = true;
  4117. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  4118. 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)));
  4119. this.lblsrm01.Location = new System.Drawing.Point(40, 32);
  4120. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4121. this.lblsrm01.Name = "lblsrm01";
  4122. this.lblsrm01.Size = new System.Drawing.Size(115, 20);
  4123. this.lblsrm01.TabIndex = 0;
  4124. this.lblsrm01.Text = "1号 堆垛机";
  4125. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  4126. //
  4127. // G1
  4128. //
  4129. this.G1.BackColor = System.Drawing.Color.Transparent;
  4130. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  4131. this.G1.InitialImage = null;
  4132. this.G1.Location = new System.Drawing.Point(88, -2);
  4133. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4134. this.G1.Name = "G1";
  4135. this.G1.Size = new System.Drawing.Size(35, 32);
  4136. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4137. this.G1.TabIndex = 65;
  4138. this.G1.TabStop = false;
  4139. this.G1.Tag = "1";
  4140. //
  4141. // R1
  4142. //
  4143. this.R1.BackColor = System.Drawing.Color.Transparent;
  4144. this.R1.Location = new System.Drawing.Point(87, -2);
  4145. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4146. this.R1.Name = "R1";
  4147. this.R1.Size = new System.Drawing.Size(35, 32);
  4148. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4149. this.R1.TabIndex = 5;
  4150. this.R1.TabStop = false;
  4151. //
  4152. // pnlDDJ2
  4153. //
  4154. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  4155. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4156. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4157. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4158. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  4159. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  4160. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  4161. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  4162. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  4163. this.pnlDDJ2.Controls.Add(this.label15);
  4164. this.pnlDDJ2.Controls.Add(this.label16);
  4165. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  4166. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  4167. this.pnlDDJ2.Controls.Add(this.label22);
  4168. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  4169. this.pnlDDJ2.Controls.Add(this.label26);
  4170. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  4171. this.pnlDDJ2.Controls.Add(this.label29);
  4172. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  4173. this.pnlDDJ2.Controls.Add(this.label32);
  4174. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  4175. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  4176. this.pnlDDJ2.Controls.Add(this.label83);
  4177. this.pnlDDJ2.Controls.Add(this.label86);
  4178. this.pnlDDJ2.Controls.Add(this.label87);
  4179. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  4180. this.pnlDDJ2.Controls.Add(this.G2);
  4181. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  4182. this.pnlDDJ2.Location = new System.Drawing.Point(224, 3);
  4183. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4184. this.pnlDDJ2.Name = "pnlDDJ2";
  4185. this.pnlDDJ2.Size = new System.Drawing.Size(217, 312);
  4186. this.pnlDDJ2.TabIndex = 26;
  4187. //
  4188. // lblInStatus2
  4189. //
  4190. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  4191. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  4192. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4193. this.lblInStatus2.Name = "lblInStatus2";
  4194. this.lblInStatus2.Size = new System.Drawing.Size(37, 30);
  4195. this.lblInStatus2.TabIndex = 95;
  4196. this.lblInStatus2.Tag = "2";
  4197. this.lblInStatus2.Text = "入";
  4198. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4199. //
  4200. // lblOutStatus2
  4201. //
  4202. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  4203. this.lblOutStatus2.Location = new System.Drawing.Point(169, 2);
  4204. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4205. this.lblOutStatus2.Name = "lblOutStatus2";
  4206. this.lblOutStatus2.Size = new System.Drawing.Size(37, 30);
  4207. this.lblOutStatus2.TabIndex = 94;
  4208. this.lblOutStatus2.Text = "出";
  4209. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4210. //
  4211. // lblDDJWarning2
  4212. //
  4213. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  4214. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4215. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  4216. this.lblDDJWarning2.Location = new System.Drawing.Point(5, 58);
  4217. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4218. this.lblDDJWarning2.Name = "lblDDJWarning2";
  4219. this.lblDDJWarning2.Size = new System.Drawing.Size(205, 30);
  4220. this.lblDDJWarning2.TabIndex = 93;
  4221. //
  4222. // ddjPosTo2
  4223. //
  4224. this.ddjPosTo2.AutoSize = true;
  4225. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  4226. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4227. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  4228. this.ddjPosTo2.Location = new System.Drawing.Point(123, 290);
  4229. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4230. this.ddjPosTo2.Name = "ddjPosTo2";
  4231. this.ddjPosTo2.Size = new System.Drawing.Size(31, 15);
  4232. this.ddjPosTo2.TabIndex = 91;
  4233. this.ddjPosTo2.Text = "---";
  4234. //
  4235. // ddjPosFrom2
  4236. //
  4237. this.ddjPosFrom2.AutoSize = true;
  4238. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  4239. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4240. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  4241. this.ddjPosFrom2.Location = new System.Drawing.Point(123, 262);
  4242. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4243. this.ddjPosFrom2.Name = "ddjPosFrom2";
  4244. this.ddjPosFrom2.Size = new System.Drawing.Size(31, 15);
  4245. this.ddjPosFrom2.TabIndex = 90;
  4246. this.ddjPosFrom2.Text = "---";
  4247. //
  4248. // label15
  4249. //
  4250. this.label15.AutoSize = true;
  4251. this.label15.BackColor = System.Drawing.Color.Transparent;
  4252. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4253. this.label15.Location = new System.Drawing.Point(5, 262);
  4254. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4255. this.label15.Name = "label15";
  4256. this.label15.Size = new System.Drawing.Size(82, 15);
  4257. this.label15.TabIndex = 89;
  4258. this.label15.Text = "起始位置:";
  4259. //
  4260. // label16
  4261. //
  4262. this.label16.AutoSize = true;
  4263. this.label16.BackColor = System.Drawing.Color.Transparent;
  4264. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4265. this.label16.Location = new System.Drawing.Point(5, 290);
  4266. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4267. this.label16.Name = "label16";
  4268. this.label16.Size = new System.Drawing.Size(82, 15);
  4269. this.label16.TabIndex = 88;
  4270. this.label16.Text = "目标位置:";
  4271. //
  4272. // ddjMode2
  4273. //
  4274. this.ddjMode2.AutoSize = true;
  4275. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  4276. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4277. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  4278. this.ddjMode2.Location = new System.Drawing.Point(120, 90);
  4279. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4280. this.ddjMode2.Name = "ddjMode2";
  4281. this.ddjMode2.Size = new System.Drawing.Size(31, 15);
  4282. this.ddjMode2.TabIndex = 79;
  4283. this.ddjMode2.Text = "---";
  4284. //
  4285. // ddjOrdId2
  4286. //
  4287. this.ddjOrdId2.AutoSize = true;
  4288. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  4289. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4290. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  4291. this.ddjOrdId2.Location = new System.Drawing.Point(120, 140);
  4292. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4293. this.ddjOrdId2.Name = "ddjOrdId2";
  4294. this.ddjOrdId2.Size = new System.Drawing.Size(31, 15);
  4295. this.ddjOrdId2.TabIndex = 87;
  4296. this.ddjOrdId2.Text = "---";
  4297. //
  4298. // label22
  4299. //
  4300. this.label22.AutoSize = true;
  4301. this.label22.BackColor = System.Drawing.Color.Transparent;
  4302. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4303. this.label22.Location = new System.Drawing.Point(5, 140);
  4304. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4305. this.label22.Name = "label22";
  4306. this.label22.Size = new System.Drawing.Size(82, 15);
  4307. this.label22.TabIndex = 86;
  4308. this.label22.Text = "工作指令:";
  4309. //
  4310. // ddjOptType2
  4311. //
  4312. this.ddjOptType2.AutoSize = true;
  4313. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  4314. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4315. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  4316. this.ddjOptType2.Location = new System.Drawing.Point(120, 162);
  4317. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4318. this.ddjOptType2.Name = "ddjOptType2";
  4319. this.ddjOptType2.Size = new System.Drawing.Size(31, 15);
  4320. this.ddjOptType2.TabIndex = 85;
  4321. this.ddjOptType2.Text = "---";
  4322. //
  4323. // label26
  4324. //
  4325. this.label26.AutoSize = true;
  4326. this.label26.BackColor = System.Drawing.Color.Transparent;
  4327. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4328. this.label26.Location = new System.Drawing.Point(5, 162);
  4329. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4330. this.label26.Name = "label26";
  4331. this.label26.Size = new System.Drawing.Size(82, 15);
  4332. this.label26.TabIndex = 84;
  4333. this.label26.Text = "作业类型:";
  4334. //
  4335. // ddjTotal_KM2
  4336. //
  4337. this.ddjTotal_KM2.AutoSize = true;
  4338. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  4339. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4340. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  4341. this.ddjTotal_KM2.Location = new System.Drawing.Point(121, 238);
  4342. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4343. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  4344. this.ddjTotal_KM2.Size = new System.Drawing.Size(31, 15);
  4345. this.ddjTotal_KM2.TabIndex = 83;
  4346. this.ddjTotal_KM2.Text = "---";
  4347. //
  4348. // label29
  4349. //
  4350. this.label29.AutoSize = true;
  4351. this.label29.BackColor = System.Drawing.Color.Transparent;
  4352. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4353. this.label29.Location = new System.Drawing.Point(5, 90);
  4354. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4355. this.label29.Name = "label29";
  4356. this.label29.Size = new System.Drawing.Size(82, 15);
  4357. this.label29.TabIndex = 82;
  4358. this.label29.Text = "工作模式:";
  4359. //
  4360. // ddjWorkTime2
  4361. //
  4362. this.ddjWorkTime2.AutoSize = true;
  4363. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  4364. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4365. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  4366. this.ddjWorkTime2.Location = new System.Drawing.Point(121, 212);
  4367. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4368. this.ddjWorkTime2.Name = "ddjWorkTime2";
  4369. this.ddjWorkTime2.Size = new System.Drawing.Size(31, 15);
  4370. this.ddjWorkTime2.TabIndex = 81;
  4371. this.ddjWorkTime2.Text = "---";
  4372. //
  4373. // label32
  4374. //
  4375. this.label32.AutoSize = true;
  4376. this.label32.BackColor = System.Drawing.Color.Transparent;
  4377. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4378. this.label32.Location = new System.Drawing.Point(5, 212);
  4379. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4380. this.label32.Name = "label32";
  4381. this.label32.Size = new System.Drawing.Size(82, 15);
  4382. this.label32.TabIndex = 80;
  4383. this.label32.Text = "运行时长:";
  4384. //
  4385. // ddjStatus2
  4386. //
  4387. this.ddjStatus2.AutoSize = true;
  4388. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  4389. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4390. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  4391. this.ddjStatus2.Location = new System.Drawing.Point(120, 112);
  4392. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4393. this.ddjStatus2.Name = "ddjStatus2";
  4394. this.ddjStatus2.Size = new System.Drawing.Size(31, 15);
  4395. this.ddjStatus2.TabIndex = 78;
  4396. this.ddjStatus2.Text = "---";
  4397. //
  4398. // ddjPosCurr2
  4399. //
  4400. this.ddjPosCurr2.AutoSize = true;
  4401. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  4402. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4403. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  4404. this.ddjPosCurr2.Location = new System.Drawing.Point(121, 185);
  4405. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4406. this.ddjPosCurr2.Name = "ddjPosCurr2";
  4407. this.ddjPosCurr2.Size = new System.Drawing.Size(15, 15);
  4408. this.ddjPosCurr2.TabIndex = 77;
  4409. this.ddjPosCurr2.Text = "2";
  4410. //
  4411. // label83
  4412. //
  4413. this.label83.AutoSize = true;
  4414. this.label83.BackColor = System.Drawing.Color.Transparent;
  4415. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4416. this.label83.Location = new System.Drawing.Point(5, 238);
  4417. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4418. this.label83.Name = "label83";
  4419. this.label83.Size = new System.Drawing.Size(83, 15);
  4420. this.label83.TabIndex = 76;
  4421. this.label83.Text = "里 程 数:";
  4422. //
  4423. // label86
  4424. //
  4425. this.label86.AutoSize = true;
  4426. this.label86.BackColor = System.Drawing.Color.Transparent;
  4427. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4428. this.label86.Location = new System.Drawing.Point(5, 112);
  4429. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4430. this.label86.Name = "label86";
  4431. this.label86.Size = new System.Drawing.Size(82, 15);
  4432. this.label86.TabIndex = 75;
  4433. this.label86.Text = "工作状态:";
  4434. //
  4435. // label87
  4436. //
  4437. this.label87.AutoSize = true;
  4438. this.label87.BackColor = System.Drawing.Color.Transparent;
  4439. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4440. this.label87.Location = new System.Drawing.Point(5, 185);
  4441. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4442. this.label87.Name = "label87";
  4443. this.label87.Size = new System.Drawing.Size(82, 15);
  4444. this.label87.TabIndex = 74;
  4445. this.label87.Text = "当前巷道:";
  4446. //
  4447. // lblsrm02
  4448. //
  4449. this.lblsrm02.AutoSize = true;
  4450. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  4451. 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)));
  4452. this.lblsrm02.Location = new System.Drawing.Point(51, 32);
  4453. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4454. this.lblsrm02.Name = "lblsrm02";
  4455. this.lblsrm02.Size = new System.Drawing.Size(115, 20);
  4456. this.lblsrm02.TabIndex = 0;
  4457. this.lblsrm02.Text = "2号 堆垛机";
  4458. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  4459. //
  4460. // G2
  4461. //
  4462. this.G2.BackColor = System.Drawing.Color.Transparent;
  4463. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  4464. this.G2.Location = new System.Drawing.Point(91, -2);
  4465. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4466. this.G2.Name = "G2";
  4467. this.G2.Size = new System.Drawing.Size(35, 32);
  4468. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4469. this.G2.TabIndex = 65;
  4470. this.G2.TabStop = false;
  4471. this.G2.Tag = "1";
  4472. //
  4473. // pictureBox6
  4474. //
  4475. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  4476. this.pictureBox6.Location = new System.Drawing.Point(91, -2);
  4477. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4478. this.pictureBox6.Name = "pictureBox6";
  4479. this.pictureBox6.Size = new System.Drawing.Size(35, 32);
  4480. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4481. this.pictureBox6.TabIndex = 5;
  4482. this.pictureBox6.TabStop = false;
  4483. //
  4484. // pnlDDJ3
  4485. //
  4486. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  4487. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4488. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4489. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4490. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  4491. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  4492. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  4493. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  4494. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  4495. this.pnlDDJ3.Controls.Add(this.label43);
  4496. this.pnlDDJ3.Controls.Add(this.label51);
  4497. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  4498. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  4499. this.pnlDDJ3.Controls.Add(this.label55);
  4500. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  4501. this.pnlDDJ3.Controls.Add(this.label57);
  4502. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  4503. this.pnlDDJ3.Controls.Add(this.label59);
  4504. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  4505. this.pnlDDJ3.Controls.Add(this.label61);
  4506. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  4507. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  4508. this.pnlDDJ3.Controls.Add(this.label64);
  4509. this.pnlDDJ3.Controls.Add(this.label65);
  4510. this.pnlDDJ3.Controls.Add(this.label66);
  4511. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  4512. this.pnlDDJ3.Controls.Add(this.G3);
  4513. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  4514. this.pnlDDJ3.Location = new System.Drawing.Point(448, 3);
  4515. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4516. this.pnlDDJ3.Name = "pnlDDJ3";
  4517. this.pnlDDJ3.Size = new System.Drawing.Size(217, 312);
  4518. this.pnlDDJ3.TabIndex = 28;
  4519. //
  4520. // lblInStatus3
  4521. //
  4522. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  4523. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  4524. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4525. this.lblInStatus3.Name = "lblInStatus3";
  4526. this.lblInStatus3.Size = new System.Drawing.Size(37, 30);
  4527. this.lblInStatus3.TabIndex = 96;
  4528. this.lblInStatus3.Tag = "3";
  4529. this.lblInStatus3.Text = "入";
  4530. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4531. //
  4532. // lblOutStatus3
  4533. //
  4534. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  4535. this.lblOutStatus3.Location = new System.Drawing.Point(172, 2);
  4536. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4537. this.lblOutStatus3.Name = "lblOutStatus3";
  4538. this.lblOutStatus3.Size = new System.Drawing.Size(37, 30);
  4539. this.lblOutStatus3.TabIndex = 94;
  4540. this.lblOutStatus3.Text = "出";
  4541. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4542. //
  4543. // lblDDJWarning3
  4544. //
  4545. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  4546. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4547. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  4548. this.lblDDJWarning3.Location = new System.Drawing.Point(7, 58);
  4549. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4550. this.lblDDJWarning3.Name = "lblDDJWarning3";
  4551. this.lblDDJWarning3.Size = new System.Drawing.Size(201, 30);
  4552. this.lblDDJWarning3.TabIndex = 92;
  4553. //
  4554. // ddjPosTo3
  4555. //
  4556. this.ddjPosTo3.AutoSize = true;
  4557. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  4558. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4559. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  4560. this.ddjPosTo3.Location = new System.Drawing.Point(119, 292);
  4561. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4562. this.ddjPosTo3.Name = "ddjPosTo3";
  4563. this.ddjPosTo3.Size = new System.Drawing.Size(31, 15);
  4564. this.ddjPosTo3.TabIndex = 73;
  4565. this.ddjPosTo3.Text = "---";
  4566. //
  4567. // ddjPosFrom3
  4568. //
  4569. this.ddjPosFrom3.AutoSize = true;
  4570. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  4571. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4572. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  4573. this.ddjPosFrom3.Location = new System.Drawing.Point(119, 265);
  4574. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4575. this.ddjPosFrom3.Name = "ddjPosFrom3";
  4576. this.ddjPosFrom3.Size = new System.Drawing.Size(31, 15);
  4577. this.ddjPosFrom3.TabIndex = 72;
  4578. this.ddjPosFrom3.Text = "---";
  4579. //
  4580. // label43
  4581. //
  4582. this.label43.AutoSize = true;
  4583. this.label43.BackColor = System.Drawing.Color.Transparent;
  4584. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4585. this.label43.Location = new System.Drawing.Point(4, 265);
  4586. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4587. this.label43.Name = "label43";
  4588. this.label43.Size = new System.Drawing.Size(82, 15);
  4589. this.label43.TabIndex = 71;
  4590. this.label43.Text = "起始位置:";
  4591. //
  4592. // label51
  4593. //
  4594. this.label51.AutoSize = true;
  4595. this.label51.BackColor = System.Drawing.Color.Transparent;
  4596. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4597. this.label51.Location = new System.Drawing.Point(4, 292);
  4598. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4599. this.label51.Name = "label51";
  4600. this.label51.Size = new System.Drawing.Size(82, 15);
  4601. this.label51.TabIndex = 70;
  4602. this.label51.Text = "目标位置:";
  4603. //
  4604. // ddjMode3
  4605. //
  4606. this.ddjMode3.AutoSize = true;
  4607. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  4608. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4609. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  4610. this.ddjMode3.Location = new System.Drawing.Point(116, 92);
  4611. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4612. this.ddjMode3.Name = "ddjMode3";
  4613. this.ddjMode3.Size = new System.Drawing.Size(31, 15);
  4614. this.ddjMode3.TabIndex = 12;
  4615. this.ddjMode3.Text = "---";
  4616. //
  4617. // ddjOrdId3
  4618. //
  4619. this.ddjOrdId3.AutoSize = true;
  4620. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  4621. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4622. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  4623. this.ddjOrdId3.Location = new System.Drawing.Point(116, 142);
  4624. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4625. this.ddjOrdId3.Name = "ddjOrdId3";
  4626. this.ddjOrdId3.Size = new System.Drawing.Size(31, 15);
  4627. this.ddjOrdId3.TabIndex = 64;
  4628. this.ddjOrdId3.Text = "---";
  4629. //
  4630. // label55
  4631. //
  4632. this.label55.AutoSize = true;
  4633. this.label55.BackColor = System.Drawing.Color.Transparent;
  4634. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4635. this.label55.Location = new System.Drawing.Point(3, 142);
  4636. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4637. this.label55.Name = "label55";
  4638. this.label55.Size = new System.Drawing.Size(82, 15);
  4639. this.label55.TabIndex = 63;
  4640. this.label55.Text = "工作指令:";
  4641. //
  4642. // ddjOptType3
  4643. //
  4644. this.ddjOptType3.AutoSize = true;
  4645. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  4646. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4647. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  4648. this.ddjOptType3.Location = new System.Drawing.Point(116, 162);
  4649. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4650. this.ddjOptType3.Name = "ddjOptType3";
  4651. this.ddjOptType3.Size = new System.Drawing.Size(31, 15);
  4652. this.ddjOptType3.TabIndex = 62;
  4653. this.ddjOptType3.Text = "---";
  4654. //
  4655. // label57
  4656. //
  4657. this.label57.AutoSize = true;
  4658. this.label57.BackColor = System.Drawing.Color.Transparent;
  4659. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4660. this.label57.Location = new System.Drawing.Point(3, 162);
  4661. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4662. this.label57.Name = "label57";
  4663. this.label57.Size = new System.Drawing.Size(82, 15);
  4664. this.label57.TabIndex = 61;
  4665. this.label57.Text = "作业类型:";
  4666. //
  4667. // ddjTotal_KM3
  4668. //
  4669. this.ddjTotal_KM3.AutoSize = true;
  4670. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  4671. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4672. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  4673. this.ddjTotal_KM3.Location = new System.Drawing.Point(117, 238);
  4674. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4675. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  4676. this.ddjTotal_KM3.Size = new System.Drawing.Size(31, 15);
  4677. this.ddjTotal_KM3.TabIndex = 16;
  4678. this.ddjTotal_KM3.Text = "---";
  4679. //
  4680. // label59
  4681. //
  4682. this.label59.AutoSize = true;
  4683. this.label59.BackColor = System.Drawing.Color.Transparent;
  4684. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4685. this.label59.Location = new System.Drawing.Point(3, 92);
  4686. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4687. this.label59.Name = "label59";
  4688. this.label59.Size = new System.Drawing.Size(82, 15);
  4689. this.label59.TabIndex = 15;
  4690. this.label59.Text = "工作模式:";
  4691. //
  4692. // ddjWorkTime3
  4693. //
  4694. this.ddjWorkTime3.AutoSize = true;
  4695. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  4696. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4697. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  4698. this.ddjWorkTime3.Location = new System.Drawing.Point(117, 212);
  4699. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4700. this.ddjWorkTime3.Name = "ddjWorkTime3";
  4701. this.ddjWorkTime3.Size = new System.Drawing.Size(31, 15);
  4702. this.ddjWorkTime3.TabIndex = 14;
  4703. this.ddjWorkTime3.Text = "---";
  4704. //
  4705. // label61
  4706. //
  4707. this.label61.AutoSize = true;
  4708. this.label61.BackColor = System.Drawing.Color.Transparent;
  4709. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4710. this.label61.Location = new System.Drawing.Point(3, 212);
  4711. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4712. this.label61.Name = "label61";
  4713. this.label61.Size = new System.Drawing.Size(82, 15);
  4714. this.label61.TabIndex = 13;
  4715. this.label61.Text = "运行时长:";
  4716. //
  4717. // ddjStatus3
  4718. //
  4719. this.ddjStatus3.AutoSize = true;
  4720. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  4721. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4722. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  4723. this.ddjStatus3.Location = new System.Drawing.Point(116, 118);
  4724. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4725. this.ddjStatus3.Name = "ddjStatus3";
  4726. this.ddjStatus3.Size = new System.Drawing.Size(31, 15);
  4727. this.ddjStatus3.TabIndex = 10;
  4728. this.ddjStatus3.Text = "---";
  4729. //
  4730. // ddjPosCurr3
  4731. //
  4732. this.ddjPosCurr3.AutoSize = true;
  4733. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  4734. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4735. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  4736. this.ddjPosCurr3.Location = new System.Drawing.Point(117, 188);
  4737. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4738. this.ddjPosCurr3.Name = "ddjPosCurr3";
  4739. this.ddjPosCurr3.Size = new System.Drawing.Size(15, 15);
  4740. this.ddjPosCurr3.TabIndex = 9;
  4741. this.ddjPosCurr3.Text = "3";
  4742. //
  4743. // label64
  4744. //
  4745. this.label64.AutoSize = true;
  4746. this.label64.BackColor = System.Drawing.Color.Transparent;
  4747. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4748. this.label64.Location = new System.Drawing.Point(3, 238);
  4749. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4750. this.label64.Name = "label64";
  4751. this.label64.Size = new System.Drawing.Size(83, 15);
  4752. this.label64.TabIndex = 8;
  4753. this.label64.Text = "里 程 数:";
  4754. //
  4755. // label65
  4756. //
  4757. this.label65.AutoSize = true;
  4758. this.label65.BackColor = System.Drawing.Color.Transparent;
  4759. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4760. this.label65.Location = new System.Drawing.Point(3, 115);
  4761. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4762. this.label65.Name = "label65";
  4763. this.label65.Size = new System.Drawing.Size(82, 15);
  4764. this.label65.TabIndex = 6;
  4765. this.label65.Text = "工作状态:";
  4766. //
  4767. // label66
  4768. //
  4769. this.label66.AutoSize = true;
  4770. this.label66.BackColor = System.Drawing.Color.Transparent;
  4771. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4772. this.label66.Location = new System.Drawing.Point(3, 188);
  4773. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4774. this.label66.Name = "label66";
  4775. this.label66.Size = new System.Drawing.Size(82, 15);
  4776. this.label66.TabIndex = 1;
  4777. this.label66.Text = "当前巷道:";
  4778. //
  4779. // lblsrm03
  4780. //
  4781. this.lblsrm03.AutoSize = true;
  4782. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  4783. 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)));
  4784. this.lblsrm03.Location = new System.Drawing.Point(40, 32);
  4785. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4786. this.lblsrm03.Name = "lblsrm03";
  4787. this.lblsrm03.Size = new System.Drawing.Size(115, 20);
  4788. this.lblsrm03.TabIndex = 0;
  4789. this.lblsrm03.Text = "3号 堆垛机";
  4790. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  4791. //
  4792. // G3
  4793. //
  4794. this.G3.BackColor = System.Drawing.Color.Transparent;
  4795. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  4796. this.G3.Location = new System.Drawing.Point(88, -2);
  4797. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4798. this.G3.Name = "G3";
  4799. this.G3.Size = new System.Drawing.Size(35, 32);
  4800. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4801. this.G3.TabIndex = 65;
  4802. this.G3.TabStop = false;
  4803. this.G3.Tag = "1";
  4804. //
  4805. // pictureBox10
  4806. //
  4807. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  4808. this.pictureBox10.Location = new System.Drawing.Point(87, -2);
  4809. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4810. this.pictureBox10.Name = "pictureBox10";
  4811. this.pictureBox10.Size = new System.Drawing.Size(35, 32);
  4812. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4813. this.pictureBox10.TabIndex = 5;
  4814. this.pictureBox10.TabStop = false;
  4815. //
  4816. // pnlDDJ4
  4817. //
  4818. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  4819. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4820. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4821. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4822. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  4823. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  4824. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  4825. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  4826. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  4827. this.pnlDDJ4.Controls.Add(this.label71);
  4828. this.pnlDDJ4.Controls.Add(this.label72);
  4829. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  4830. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  4831. this.pnlDDJ4.Controls.Add(this.label75);
  4832. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  4833. this.pnlDDJ4.Controls.Add(this.label77);
  4834. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  4835. this.pnlDDJ4.Controls.Add(this.label79);
  4836. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  4837. this.pnlDDJ4.Controls.Add(this.label81);
  4838. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  4839. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  4840. this.pnlDDJ4.Controls.Add(this.label89);
  4841. this.pnlDDJ4.Controls.Add(this.label90);
  4842. this.pnlDDJ4.Controls.Add(this.label91);
  4843. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  4844. this.pnlDDJ4.Controls.Add(this.G4);
  4845. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  4846. this.pnlDDJ4.Location = new System.Drawing.Point(672, 2);
  4847. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4848. this.pnlDDJ4.Name = "pnlDDJ4";
  4849. this.pnlDDJ4.Size = new System.Drawing.Size(217, 312);
  4850. this.pnlDDJ4.TabIndex = 29;
  4851. //
  4852. // lblInStatus4
  4853. //
  4854. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  4855. this.lblInStatus4.Location = new System.Drawing.Point(7, 2);
  4856. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4857. this.lblInStatus4.Name = "lblInStatus4";
  4858. this.lblInStatus4.Size = new System.Drawing.Size(37, 30);
  4859. this.lblInStatus4.TabIndex = 97;
  4860. this.lblInStatus4.Tag = "4";
  4861. this.lblInStatus4.Text = "入";
  4862. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4863. //
  4864. // lblOutStatus4
  4865. //
  4866. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  4867. this.lblOutStatus4.Location = new System.Drawing.Point(165, 2);
  4868. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4869. this.lblOutStatus4.Name = "lblOutStatus4";
  4870. this.lblOutStatus4.Size = new System.Drawing.Size(37, 30);
  4871. this.lblOutStatus4.TabIndex = 94;
  4872. this.lblOutStatus4.Text = "出";
  4873. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4874. //
  4875. // lblDDJWarning4
  4876. //
  4877. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  4878. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4879. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  4880. this.lblDDJWarning4.Location = new System.Drawing.Point(7, 58);
  4881. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4882. this.lblDDJWarning4.Name = "lblDDJWarning4";
  4883. this.lblDDJWarning4.Size = new System.Drawing.Size(201, 30);
  4884. this.lblDDJWarning4.TabIndex = 92;
  4885. //
  4886. // ddjPosTo4
  4887. //
  4888. this.ddjPosTo4.AutoSize = true;
  4889. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  4890. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4891. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  4892. this.ddjPosTo4.Location = new System.Drawing.Point(119, 292);
  4893. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4894. this.ddjPosTo4.Name = "ddjPosTo4";
  4895. this.ddjPosTo4.Size = new System.Drawing.Size(31, 15);
  4896. this.ddjPosTo4.TabIndex = 73;
  4897. this.ddjPosTo4.Text = "---";
  4898. //
  4899. // ddjPosFrom4
  4900. //
  4901. this.ddjPosFrom4.AutoSize = true;
  4902. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  4903. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4904. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  4905. this.ddjPosFrom4.Location = new System.Drawing.Point(119, 265);
  4906. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4907. this.ddjPosFrom4.Name = "ddjPosFrom4";
  4908. this.ddjPosFrom4.Size = new System.Drawing.Size(31, 15);
  4909. this.ddjPosFrom4.TabIndex = 72;
  4910. this.ddjPosFrom4.Text = "---";
  4911. //
  4912. // label71
  4913. //
  4914. this.label71.AutoSize = true;
  4915. this.label71.BackColor = System.Drawing.Color.Transparent;
  4916. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4917. this.label71.Location = new System.Drawing.Point(4, 265);
  4918. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4919. this.label71.Name = "label71";
  4920. this.label71.Size = new System.Drawing.Size(82, 15);
  4921. this.label71.TabIndex = 71;
  4922. this.label71.Text = "起始位置:";
  4923. //
  4924. // label72
  4925. //
  4926. this.label72.AutoSize = true;
  4927. this.label72.BackColor = System.Drawing.Color.Transparent;
  4928. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4929. this.label72.Location = new System.Drawing.Point(4, 292);
  4930. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4931. this.label72.Name = "label72";
  4932. this.label72.Size = new System.Drawing.Size(82, 15);
  4933. this.label72.TabIndex = 70;
  4934. this.label72.Text = "目标位置:";
  4935. //
  4936. // ddjMode4
  4937. //
  4938. this.ddjMode4.AutoSize = true;
  4939. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  4940. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4941. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  4942. this.ddjMode4.Location = new System.Drawing.Point(116, 92);
  4943. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4944. this.ddjMode4.Name = "ddjMode4";
  4945. this.ddjMode4.Size = new System.Drawing.Size(31, 15);
  4946. this.ddjMode4.TabIndex = 12;
  4947. this.ddjMode4.Text = "---";
  4948. //
  4949. // ddjOrdId4
  4950. //
  4951. this.ddjOrdId4.AutoSize = true;
  4952. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  4953. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4954. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  4955. this.ddjOrdId4.Location = new System.Drawing.Point(116, 142);
  4956. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4957. this.ddjOrdId4.Name = "ddjOrdId4";
  4958. this.ddjOrdId4.Size = new System.Drawing.Size(31, 15);
  4959. this.ddjOrdId4.TabIndex = 64;
  4960. this.ddjOrdId4.Text = "---";
  4961. //
  4962. // label75
  4963. //
  4964. this.label75.AutoSize = true;
  4965. this.label75.BackColor = System.Drawing.Color.Transparent;
  4966. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4967. this.label75.Location = new System.Drawing.Point(3, 142);
  4968. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4969. this.label75.Name = "label75";
  4970. this.label75.Size = new System.Drawing.Size(82, 15);
  4971. this.label75.TabIndex = 63;
  4972. this.label75.Text = "工作指令:";
  4973. //
  4974. // ddjOptType4
  4975. //
  4976. this.ddjOptType4.AutoSize = true;
  4977. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  4978. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4979. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  4980. this.ddjOptType4.Location = new System.Drawing.Point(116, 162);
  4981. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4982. this.ddjOptType4.Name = "ddjOptType4";
  4983. this.ddjOptType4.Size = new System.Drawing.Size(31, 15);
  4984. this.ddjOptType4.TabIndex = 62;
  4985. this.ddjOptType4.Text = "---";
  4986. //
  4987. // label77
  4988. //
  4989. this.label77.AutoSize = true;
  4990. this.label77.BackColor = System.Drawing.Color.Transparent;
  4991. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4992. this.label77.Location = new System.Drawing.Point(3, 162);
  4993. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4994. this.label77.Name = "label77";
  4995. this.label77.Size = new System.Drawing.Size(82, 15);
  4996. this.label77.TabIndex = 61;
  4997. this.label77.Text = "作业类型:";
  4998. //
  4999. // ddjTotal_KM4
  5000. //
  5001. this.ddjTotal_KM4.AutoSize = true;
  5002. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  5003. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5004. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  5005. this.ddjTotal_KM4.Location = new System.Drawing.Point(117, 238);
  5006. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5007. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  5008. this.ddjTotal_KM4.Size = new System.Drawing.Size(31, 15);
  5009. this.ddjTotal_KM4.TabIndex = 16;
  5010. this.ddjTotal_KM4.Text = "---";
  5011. //
  5012. // label79
  5013. //
  5014. this.label79.AutoSize = true;
  5015. this.label79.BackColor = System.Drawing.Color.Transparent;
  5016. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5017. this.label79.Location = new System.Drawing.Point(3, 92);
  5018. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5019. this.label79.Name = "label79";
  5020. this.label79.Size = new System.Drawing.Size(82, 15);
  5021. this.label79.TabIndex = 15;
  5022. this.label79.Text = "工作模式:";
  5023. //
  5024. // ddjWorkTime4
  5025. //
  5026. this.ddjWorkTime4.AutoSize = true;
  5027. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  5028. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5029. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  5030. this.ddjWorkTime4.Location = new System.Drawing.Point(117, 212);
  5031. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5032. this.ddjWorkTime4.Name = "ddjWorkTime4";
  5033. this.ddjWorkTime4.Size = new System.Drawing.Size(31, 15);
  5034. this.ddjWorkTime4.TabIndex = 14;
  5035. this.ddjWorkTime4.Text = "---";
  5036. //
  5037. // label81
  5038. //
  5039. this.label81.AutoSize = true;
  5040. this.label81.BackColor = System.Drawing.Color.Transparent;
  5041. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5042. this.label81.Location = new System.Drawing.Point(3, 212);
  5043. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5044. this.label81.Name = "label81";
  5045. this.label81.Size = new System.Drawing.Size(82, 15);
  5046. this.label81.TabIndex = 13;
  5047. this.label81.Text = "运行时长:";
  5048. //
  5049. // ddjStatus4
  5050. //
  5051. this.ddjStatus4.AutoSize = true;
  5052. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  5053. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5054. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  5055. this.ddjStatus4.Location = new System.Drawing.Point(116, 115);
  5056. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5057. this.ddjStatus4.Name = "ddjStatus4";
  5058. this.ddjStatus4.Size = new System.Drawing.Size(31, 15);
  5059. this.ddjStatus4.TabIndex = 10;
  5060. this.ddjStatus4.Text = "---";
  5061. //
  5062. // ddjPosCurr4
  5063. //
  5064. this.ddjPosCurr4.AutoSize = true;
  5065. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5066. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5067. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5068. this.ddjPosCurr4.Location = new System.Drawing.Point(117, 188);
  5069. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5070. this.ddjPosCurr4.Name = "ddjPosCurr4";
  5071. this.ddjPosCurr4.Size = new System.Drawing.Size(15, 15);
  5072. this.ddjPosCurr4.TabIndex = 9;
  5073. this.ddjPosCurr4.Text = "4";
  5074. //
  5075. // label89
  5076. //
  5077. this.label89.AutoSize = true;
  5078. this.label89.BackColor = System.Drawing.Color.Transparent;
  5079. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5080. this.label89.Location = new System.Drawing.Point(3, 238);
  5081. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5082. this.label89.Name = "label89";
  5083. this.label89.Size = new System.Drawing.Size(83, 15);
  5084. this.label89.TabIndex = 8;
  5085. this.label89.Text = "里 程 数:";
  5086. //
  5087. // label90
  5088. //
  5089. this.label90.AutoSize = true;
  5090. this.label90.BackColor = System.Drawing.Color.Transparent;
  5091. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5092. this.label90.Location = new System.Drawing.Point(3, 115);
  5093. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5094. this.label90.Name = "label90";
  5095. this.label90.Size = new System.Drawing.Size(82, 15);
  5096. this.label90.TabIndex = 6;
  5097. this.label90.Text = "工作状态:";
  5098. //
  5099. // label91
  5100. //
  5101. this.label91.AutoSize = true;
  5102. this.label91.BackColor = System.Drawing.Color.Transparent;
  5103. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5104. this.label91.Location = new System.Drawing.Point(3, 188);
  5105. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5106. this.label91.Name = "label91";
  5107. this.label91.Size = new System.Drawing.Size(82, 15);
  5108. this.label91.TabIndex = 1;
  5109. this.label91.Text = "当前巷道:";
  5110. //
  5111. // lblsrm04
  5112. //
  5113. this.lblsrm04.AutoSize = true;
  5114. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  5115. 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)));
  5116. this.lblsrm04.Location = new System.Drawing.Point(40, 32);
  5117. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5118. this.lblsrm04.Name = "lblsrm04";
  5119. this.lblsrm04.Size = new System.Drawing.Size(115, 20);
  5120. this.lblsrm04.TabIndex = 0;
  5121. this.lblsrm04.Text = "4号 堆垛机";
  5122. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  5123. //
  5124. // G4
  5125. //
  5126. this.G4.BackColor = System.Drawing.Color.Transparent;
  5127. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  5128. this.G4.Location = new System.Drawing.Point(88, -2);
  5129. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5130. this.G4.Name = "G4";
  5131. this.G4.Size = new System.Drawing.Size(35, 32);
  5132. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5133. this.G4.TabIndex = 65;
  5134. this.G4.TabStop = false;
  5135. this.G4.Tag = "1";
  5136. //
  5137. // pictureBox14
  5138. //
  5139. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  5140. this.pictureBox14.Location = new System.Drawing.Point(87, -2);
  5141. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5142. this.pictureBox14.Name = "pictureBox14";
  5143. this.pictureBox14.Size = new System.Drawing.Size(35, 32);
  5144. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5145. this.pictureBox14.TabIndex = 5;
  5146. this.pictureBox14.TabStop = false;
  5147. //
  5148. // myPanel1
  5149. //
  5150. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  5151. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5152. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5153. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5154. this.myPanel1.Controls.Add(this.lblInStatus5);
  5155. this.myPanel1.Controls.Add(this.lblOutStatus5);
  5156. this.myPanel1.Controls.Add(this.label11);
  5157. this.myPanel1.Controls.Add(this.ddjPosTo5);
  5158. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  5159. this.myPanel1.Controls.Add(this.label17);
  5160. this.myPanel1.Controls.Add(this.label18);
  5161. this.myPanel1.Controls.Add(this.ddjMode5);
  5162. this.myPanel1.Controls.Add(this.ddjOrdId5);
  5163. this.myPanel1.Controls.Add(this.label21);
  5164. this.myPanel1.Controls.Add(this.ddjOptType5);
  5165. this.myPanel1.Controls.Add(this.label24);
  5166. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  5167. this.myPanel1.Controls.Add(this.label27);
  5168. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  5169. this.myPanel1.Controls.Add(this.label30);
  5170. this.myPanel1.Controls.Add(this.ddjStatus5);
  5171. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  5172. this.myPanel1.Controls.Add(this.label36);
  5173. this.myPanel1.Controls.Add(this.label37);
  5174. this.myPanel1.Controls.Add(this.label38);
  5175. this.myPanel1.Controls.Add(this.lblsrm05);
  5176. this.myPanel1.Controls.Add(this.G5);
  5177. this.myPanel1.Controls.Add(this.pictureBox3);
  5178. this.myPanel1.Location = new System.Drawing.Point(896, 2);
  5179. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5180. this.myPanel1.Name = "myPanel1";
  5181. this.myPanel1.Size = new System.Drawing.Size(217, 312);
  5182. this.myPanel1.TabIndex = 30;
  5183. //
  5184. // lblInStatus5
  5185. //
  5186. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  5187. this.lblInStatus5.Location = new System.Drawing.Point(7, 2);
  5188. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5189. this.lblInStatus5.Name = "lblInStatus5";
  5190. this.lblInStatus5.Size = new System.Drawing.Size(37, 30);
  5191. this.lblInStatus5.TabIndex = 97;
  5192. this.lblInStatus5.Tag = "4";
  5193. this.lblInStatus5.Text = "入";
  5194. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5195. //
  5196. // lblOutStatus5
  5197. //
  5198. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  5199. this.lblOutStatus5.Location = new System.Drawing.Point(165, 2);
  5200. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5201. this.lblOutStatus5.Name = "lblOutStatus5";
  5202. this.lblOutStatus5.Size = new System.Drawing.Size(37, 30);
  5203. this.lblOutStatus5.TabIndex = 94;
  5204. this.lblOutStatus5.Text = "出";
  5205. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  5206. //
  5207. // label11
  5208. //
  5209. this.label11.BackColor = System.Drawing.Color.Transparent;
  5210. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5211. this.label11.ForeColor = System.Drawing.Color.Red;
  5212. this.label11.Location = new System.Drawing.Point(7, 58);
  5213. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5214. this.label11.Name = "label11";
  5215. this.label11.Size = new System.Drawing.Size(201, 30);
  5216. this.label11.TabIndex = 92;
  5217. //
  5218. // ddjPosTo5
  5219. //
  5220. this.ddjPosTo5.AutoSize = true;
  5221. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  5222. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5223. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  5224. this.ddjPosTo5.Location = new System.Drawing.Point(119, 292);
  5225. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5226. this.ddjPosTo5.Name = "ddjPosTo5";
  5227. this.ddjPosTo5.Size = new System.Drawing.Size(31, 15);
  5228. this.ddjPosTo5.TabIndex = 73;
  5229. this.ddjPosTo5.Text = "---";
  5230. //
  5231. // ddjPosFrom5
  5232. //
  5233. this.ddjPosFrom5.AutoSize = true;
  5234. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  5235. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5236. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  5237. this.ddjPosFrom5.Location = new System.Drawing.Point(119, 265);
  5238. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5239. this.ddjPosFrom5.Name = "ddjPosFrom5";
  5240. this.ddjPosFrom5.Size = new System.Drawing.Size(31, 15);
  5241. this.ddjPosFrom5.TabIndex = 72;
  5242. this.ddjPosFrom5.Text = "---";
  5243. //
  5244. // label17
  5245. //
  5246. this.label17.AutoSize = true;
  5247. this.label17.BackColor = System.Drawing.Color.Transparent;
  5248. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5249. this.label17.Location = new System.Drawing.Point(4, 265);
  5250. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5251. this.label17.Name = "label17";
  5252. this.label17.Size = new System.Drawing.Size(82, 15);
  5253. this.label17.TabIndex = 71;
  5254. this.label17.Text = "起始位置:";
  5255. //
  5256. // label18
  5257. //
  5258. this.label18.AutoSize = true;
  5259. this.label18.BackColor = System.Drawing.Color.Transparent;
  5260. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5261. this.label18.Location = new System.Drawing.Point(4, 292);
  5262. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5263. this.label18.Name = "label18";
  5264. this.label18.Size = new System.Drawing.Size(82, 15);
  5265. this.label18.TabIndex = 70;
  5266. this.label18.Text = "目标位置:";
  5267. //
  5268. // ddjMode5
  5269. //
  5270. this.ddjMode5.AutoSize = true;
  5271. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  5272. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5273. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  5274. this.ddjMode5.Location = new System.Drawing.Point(116, 92);
  5275. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5276. this.ddjMode5.Name = "ddjMode5";
  5277. this.ddjMode5.Size = new System.Drawing.Size(31, 15);
  5278. this.ddjMode5.TabIndex = 12;
  5279. this.ddjMode5.Text = "---";
  5280. //
  5281. // ddjOrdId5
  5282. //
  5283. this.ddjOrdId5.AutoSize = true;
  5284. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  5285. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5286. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  5287. this.ddjOrdId5.Location = new System.Drawing.Point(116, 142);
  5288. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5289. this.ddjOrdId5.Name = "ddjOrdId5";
  5290. this.ddjOrdId5.Size = new System.Drawing.Size(31, 15);
  5291. this.ddjOrdId5.TabIndex = 64;
  5292. this.ddjOrdId5.Text = "---";
  5293. //
  5294. // label21
  5295. //
  5296. this.label21.AutoSize = true;
  5297. this.label21.BackColor = System.Drawing.Color.Transparent;
  5298. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5299. this.label21.Location = new System.Drawing.Point(3, 142);
  5300. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5301. this.label21.Name = "label21";
  5302. this.label21.Size = new System.Drawing.Size(82, 15);
  5303. this.label21.TabIndex = 63;
  5304. this.label21.Text = "工作指令:";
  5305. //
  5306. // ddjOptType5
  5307. //
  5308. this.ddjOptType5.AutoSize = true;
  5309. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  5310. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5311. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  5312. this.ddjOptType5.Location = new System.Drawing.Point(116, 162);
  5313. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5314. this.ddjOptType5.Name = "ddjOptType5";
  5315. this.ddjOptType5.Size = new System.Drawing.Size(31, 15);
  5316. this.ddjOptType5.TabIndex = 62;
  5317. this.ddjOptType5.Text = "---";
  5318. //
  5319. // label24
  5320. //
  5321. this.label24.AutoSize = true;
  5322. this.label24.BackColor = System.Drawing.Color.Transparent;
  5323. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5324. this.label24.Location = new System.Drawing.Point(3, 162);
  5325. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5326. this.label24.Name = "label24";
  5327. this.label24.Size = new System.Drawing.Size(82, 15);
  5328. this.label24.TabIndex = 61;
  5329. this.label24.Text = "作业类型:";
  5330. //
  5331. // ddjTotal_KM5
  5332. //
  5333. this.ddjTotal_KM5.AutoSize = true;
  5334. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  5335. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5336. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  5337. this.ddjTotal_KM5.Location = new System.Drawing.Point(117, 238);
  5338. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5339. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  5340. this.ddjTotal_KM5.Size = new System.Drawing.Size(31, 15);
  5341. this.ddjTotal_KM5.TabIndex = 16;
  5342. this.ddjTotal_KM5.Text = "---";
  5343. //
  5344. // label27
  5345. //
  5346. this.label27.AutoSize = true;
  5347. this.label27.BackColor = System.Drawing.Color.Transparent;
  5348. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5349. this.label27.Location = new System.Drawing.Point(3, 92);
  5350. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5351. this.label27.Name = "label27";
  5352. this.label27.Size = new System.Drawing.Size(82, 15);
  5353. this.label27.TabIndex = 15;
  5354. this.label27.Text = "工作模式:";
  5355. //
  5356. // ddjWorkTime5
  5357. //
  5358. this.ddjWorkTime5.AutoSize = true;
  5359. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  5360. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5361. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  5362. this.ddjWorkTime5.Location = new System.Drawing.Point(117, 212);
  5363. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5364. this.ddjWorkTime5.Name = "ddjWorkTime5";
  5365. this.ddjWorkTime5.Size = new System.Drawing.Size(31, 15);
  5366. this.ddjWorkTime5.TabIndex = 14;
  5367. this.ddjWorkTime5.Text = "---";
  5368. //
  5369. // label30
  5370. //
  5371. this.label30.AutoSize = true;
  5372. this.label30.BackColor = System.Drawing.Color.Transparent;
  5373. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5374. this.label30.Location = new System.Drawing.Point(3, 212);
  5375. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5376. this.label30.Name = "label30";
  5377. this.label30.Size = new System.Drawing.Size(82, 15);
  5378. this.label30.TabIndex = 13;
  5379. this.label30.Text = "运行时长:";
  5380. //
  5381. // ddjStatus5
  5382. //
  5383. this.ddjStatus5.AutoSize = true;
  5384. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  5385. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5386. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  5387. this.ddjStatus5.Location = new System.Drawing.Point(116, 115);
  5388. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5389. this.ddjStatus5.Name = "ddjStatus5";
  5390. this.ddjStatus5.Size = new System.Drawing.Size(31, 15);
  5391. this.ddjStatus5.TabIndex = 10;
  5392. this.ddjStatus5.Text = "---";
  5393. //
  5394. // ddjPosCurr5
  5395. //
  5396. this.ddjPosCurr5.AutoSize = true;
  5397. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  5398. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5399. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  5400. this.ddjPosCurr5.Location = new System.Drawing.Point(117, 188);
  5401. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5402. this.ddjPosCurr5.Name = "ddjPosCurr5";
  5403. this.ddjPosCurr5.Size = new System.Drawing.Size(15, 15);
  5404. this.ddjPosCurr5.TabIndex = 9;
  5405. this.ddjPosCurr5.Text = "5";
  5406. //
  5407. // label36
  5408. //
  5409. this.label36.AutoSize = true;
  5410. this.label36.BackColor = System.Drawing.Color.Transparent;
  5411. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5412. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  5413. this.label36.Location = new System.Drawing.Point(3, 238);
  5414. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5415. this.label36.Name = "label36";
  5416. this.label36.Size = new System.Drawing.Size(83, 15);
  5417. this.label36.TabIndex = 8;
  5418. this.label36.Text = "里 程 数:";
  5419. //
  5420. // label37
  5421. //
  5422. this.label37.AutoSize = true;
  5423. this.label37.BackColor = System.Drawing.Color.Transparent;
  5424. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5425. this.label37.Location = new System.Drawing.Point(3, 115);
  5426. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5427. this.label37.Name = "label37";
  5428. this.label37.Size = new System.Drawing.Size(82, 15);
  5429. this.label37.TabIndex = 6;
  5430. this.label37.Text = "工作状态:";
  5431. //
  5432. // label38
  5433. //
  5434. this.label38.AutoSize = true;
  5435. this.label38.BackColor = System.Drawing.Color.Transparent;
  5436. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5437. this.label38.Location = new System.Drawing.Point(3, 188);
  5438. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5439. this.label38.Name = "label38";
  5440. this.label38.Size = new System.Drawing.Size(82, 15);
  5441. this.label38.TabIndex = 1;
  5442. this.label38.Text = "当前巷道:";
  5443. //
  5444. // lblsrm05
  5445. //
  5446. this.lblsrm05.AutoSize = true;
  5447. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  5448. 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)));
  5449. this.lblsrm05.Location = new System.Drawing.Point(40, 32);
  5450. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5451. this.lblsrm05.Name = "lblsrm05";
  5452. this.lblsrm05.Size = new System.Drawing.Size(115, 20);
  5453. this.lblsrm05.TabIndex = 0;
  5454. this.lblsrm05.Text = "5号 堆垛机";
  5455. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  5456. //
  5457. // G5
  5458. //
  5459. this.G5.BackColor = System.Drawing.Color.Transparent;
  5460. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  5461. this.G5.Location = new System.Drawing.Point(88, -2);
  5462. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5463. this.G5.Name = "G5";
  5464. this.G5.Size = new System.Drawing.Size(35, 32);
  5465. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5466. this.G5.TabIndex = 65;
  5467. this.G5.TabStop = false;
  5468. this.G5.Tag = "1";
  5469. //
  5470. // pictureBox3
  5471. //
  5472. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  5473. this.pictureBox3.Location = new System.Drawing.Point(87, -2);
  5474. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5475. this.pictureBox3.Name = "pictureBox3";
  5476. this.pictureBox3.Size = new System.Drawing.Size(35, 32);
  5477. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5478. this.pictureBox3.TabIndex = 5;
  5479. this.pictureBox3.TabStop = false;
  5480. //
  5481. // RGV4000
  5482. //
  5483. this.RGV4000.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RGV4000.BackgroundImage")));
  5484. this.RGV4000.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5485. this.RGV4000.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5486. this.RGV4000.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5487. this.RGV4000.Controls.Add(this.label14);
  5488. this.RGV4000.Controls.Add(this.label19);
  5489. this.RGV4000.Controls.Add(this.label20);
  5490. this.RGV4000.Controls.Add(this.rgvOptType4);
  5491. this.RGV4000.Controls.Add(this.label74);
  5492. this.RGV4000.Controls.Add(this.lblRGVWarning1091);
  5493. this.RGV4000.Controls.Add(this.rgvPosCurr4);
  5494. this.RGV4000.Controls.Add(this.rgvMode4);
  5495. this.RGV4000.Controls.Add(this.rgvOrdId4);
  5496. this.RGV4000.Controls.Add(this.label94);
  5497. this.RGV4000.Controls.Add(this.rgvPosTo4);
  5498. this.RGV4000.Controls.Add(this.label96);
  5499. this.RGV4000.Controls.Add(this.rgvPosFrom4);
  5500. this.RGV4000.Controls.Add(this.rgvStatus4);
  5501. this.RGV4000.Controls.Add(this.label102);
  5502. this.RGV4000.Controls.Add(this.lblrgv4);
  5503. this.RGV4000.Controls.Add(this.GV4);
  5504. this.RGV4000.Controls.Add(this.pictureBox7);
  5505. this.RGV4000.Location = new System.Drawing.Point(2442, 3);
  5506. this.RGV4000.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5507. this.RGV4000.Name = "RGV4000";
  5508. this.RGV4000.Size = new System.Drawing.Size(217, 312);
  5509. this.RGV4000.TabIndex = 104;
  5510. //
  5511. // label14
  5512. //
  5513. this.label14.AutoSize = true;
  5514. this.label14.BackColor = System.Drawing.Color.Transparent;
  5515. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5516. this.label14.Location = new System.Drawing.Point(4, 241);
  5517. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5518. this.label14.Name = "label14";
  5519. this.label14.Size = new System.Drawing.Size(82, 15);
  5520. this.label14.TabIndex = 106;
  5521. this.label14.Text = "光电状态:";
  5522. //
  5523. // label19
  5524. //
  5525. this.label19.AutoSize = true;
  5526. this.label19.BackColor = System.Drawing.Color.Transparent;
  5527. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5528. this.label19.Location = new System.Drawing.Point(3, 189);
  5529. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5530. this.label19.Name = "label19";
  5531. this.label19.Size = new System.Drawing.Size(82, 15);
  5532. this.label19.TabIndex = 105;
  5533. this.label19.Text = "起始地址:";
  5534. //
  5535. // label20
  5536. //
  5537. this.label20.AutoSize = true;
  5538. this.label20.BackColor = System.Drawing.Color.Transparent;
  5539. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5540. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  5541. this.label20.Location = new System.Drawing.Point(3, 214);
  5542. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5543. this.label20.Name = "label20";
  5544. this.label20.Size = new System.Drawing.Size(82, 15);
  5545. this.label20.TabIndex = 104;
  5546. this.label20.Text = "目标地址:";
  5547. //
  5548. // rgvOptType4
  5549. //
  5550. this.rgvOptType4.AutoSize = true;
  5551. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  5552. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5553. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  5554. this.rgvOptType4.Location = new System.Drawing.Point(96, 166);
  5555. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5556. this.rgvOptType4.Name = "rgvOptType4";
  5557. this.rgvOptType4.Size = new System.Drawing.Size(31, 15);
  5558. this.rgvOptType4.TabIndex = 101;
  5559. this.rgvOptType4.Text = "---";
  5560. //
  5561. // label74
  5562. //
  5563. this.label74.AutoSize = true;
  5564. this.label74.BackColor = System.Drawing.Color.Transparent;
  5565. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5566. this.label74.Location = new System.Drawing.Point(3, 166);
  5567. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5568. this.label74.Name = "label74";
  5569. this.label74.Size = new System.Drawing.Size(82, 15);
  5570. this.label74.TabIndex = 100;
  5571. this.label74.Text = "作业类型:";
  5572. //
  5573. // lblRGVWarning1091
  5574. //
  5575. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  5576. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5577. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  5578. this.lblRGVWarning1091.Location = new System.Drawing.Point(7, 58);
  5579. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5580. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  5581. this.lblRGVWarning1091.Size = new System.Drawing.Size(201, 30);
  5582. this.lblRGVWarning1091.TabIndex = 92;
  5583. //
  5584. // rgvPosCurr4
  5585. //
  5586. this.rgvPosCurr4.AutoSize = true;
  5587. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5588. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5589. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5590. this.rgvPosCurr4.Location = new System.Drawing.Point(99, 242);
  5591. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5592. this.rgvPosCurr4.Name = "rgvPosCurr4";
  5593. this.rgvPosCurr4.Size = new System.Drawing.Size(31, 15);
  5594. this.rgvPosCurr4.TabIndex = 72;
  5595. this.rgvPosCurr4.Text = "---";
  5596. //
  5597. // rgvMode4
  5598. //
  5599. this.rgvMode4.AutoSize = true;
  5600. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  5601. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5602. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  5603. this.rgvMode4.Location = new System.Drawing.Point(96, 92);
  5604. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5605. this.rgvMode4.Name = "rgvMode4";
  5606. this.rgvMode4.Size = new System.Drawing.Size(31, 15);
  5607. this.rgvMode4.TabIndex = 12;
  5608. this.rgvMode4.Text = "---";
  5609. //
  5610. // rgvOrdId4
  5611. //
  5612. this.rgvOrdId4.AutoSize = true;
  5613. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  5614. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5615. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  5616. this.rgvOrdId4.Location = new System.Drawing.Point(96, 142);
  5617. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5618. this.rgvOrdId4.Name = "rgvOrdId4";
  5619. this.rgvOrdId4.Size = new System.Drawing.Size(31, 15);
  5620. this.rgvOrdId4.TabIndex = 64;
  5621. this.rgvOrdId4.Text = "---";
  5622. //
  5623. // label94
  5624. //
  5625. this.label94.AutoSize = true;
  5626. this.label94.BackColor = System.Drawing.Color.Transparent;
  5627. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5628. this.label94.Location = new System.Drawing.Point(3, 142);
  5629. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5630. this.label94.Name = "label94";
  5631. this.label94.Size = new System.Drawing.Size(82, 15);
  5632. this.label94.TabIndex = 63;
  5633. this.label94.Text = "工作指令:";
  5634. //
  5635. // rgvPosTo4
  5636. //
  5637. this.rgvPosTo4.AutoSize = true;
  5638. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  5639. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5640. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  5641. this.rgvPosTo4.Location = new System.Drawing.Point(97, 215);
  5642. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5643. this.rgvPosTo4.Name = "rgvPosTo4";
  5644. this.rgvPosTo4.Size = new System.Drawing.Size(31, 15);
  5645. this.rgvPosTo4.TabIndex = 16;
  5646. this.rgvPosTo4.Text = "---";
  5647. //
  5648. // label96
  5649. //
  5650. this.label96.AutoSize = true;
  5651. this.label96.BackColor = System.Drawing.Color.Transparent;
  5652. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5653. this.label96.Location = new System.Drawing.Point(3, 92);
  5654. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5655. this.label96.Name = "label96";
  5656. this.label96.Size = new System.Drawing.Size(82, 15);
  5657. this.label96.TabIndex = 15;
  5658. this.label96.Text = "工作模式:";
  5659. //
  5660. // rgvPosFrom4
  5661. //
  5662. this.rgvPosFrom4.AutoSize = true;
  5663. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  5664. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5665. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  5666. this.rgvPosFrom4.Location = new System.Drawing.Point(97, 190);
  5667. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5668. this.rgvPosFrom4.Name = "rgvPosFrom4";
  5669. this.rgvPosFrom4.Size = new System.Drawing.Size(31, 15);
  5670. this.rgvPosFrom4.TabIndex = 14;
  5671. this.rgvPosFrom4.Text = "---";
  5672. //
  5673. // rgvStatus4
  5674. //
  5675. this.rgvStatus4.AutoSize = true;
  5676. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  5677. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5678. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  5679. this.rgvStatus4.Location = new System.Drawing.Point(96, 115);
  5680. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5681. this.rgvStatus4.Name = "rgvStatus4";
  5682. this.rgvStatus4.Size = new System.Drawing.Size(31, 15);
  5683. this.rgvStatus4.TabIndex = 10;
  5684. this.rgvStatus4.Text = "---";
  5685. //
  5686. // label102
  5687. //
  5688. this.label102.AutoSize = true;
  5689. this.label102.BackColor = System.Drawing.Color.Transparent;
  5690. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5691. this.label102.Location = new System.Drawing.Point(3, 115);
  5692. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5693. this.label102.Name = "label102";
  5694. this.label102.Size = new System.Drawing.Size(82, 15);
  5695. this.label102.TabIndex = 6;
  5696. this.label102.Text = "工作状态:";
  5697. //
  5698. // lblrgv4
  5699. //
  5700. this.lblrgv4.AutoSize = true;
  5701. this.lblrgv4.BackColor = System.Drawing.Color.Transparent;
  5702. this.lblrgv4.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5703. this.lblrgv4.Location = new System.Drawing.Point(59, 32);
  5704. this.lblrgv4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5705. this.lblrgv4.Name = "lblrgv4";
  5706. this.lblrgv4.Size = new System.Drawing.Size(53, 20);
  5707. this.lblrgv4.TabIndex = 0;
  5708. this.lblrgv4.Text = "RGV4";
  5709. this.lblrgv4.Click += new System.EventHandler(this.lblsrm01_Click);
  5710. //
  5711. // GV4
  5712. //
  5713. this.GV4.BackColor = System.Drawing.Color.Transparent;
  5714. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  5715. this.GV4.Location = new System.Drawing.Point(88, -2);
  5716. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5717. this.GV4.Name = "GV4";
  5718. this.GV4.Size = new System.Drawing.Size(35, 32);
  5719. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5720. this.GV4.TabIndex = 65;
  5721. this.GV4.TabStop = false;
  5722. this.GV4.Tag = "1";
  5723. //
  5724. // pictureBox7
  5725. //
  5726. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  5727. this.pictureBox7.Location = new System.Drawing.Point(87, -2);
  5728. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5729. this.pictureBox7.Name = "pictureBox7";
  5730. this.pictureBox7.Size = new System.Drawing.Size(35, 32);
  5731. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5732. this.pictureBox7.TabIndex = 5;
  5733. this.pictureBox7.TabStop = false;
  5734. //
  5735. // myPanel5
  5736. //
  5737. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  5738. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5739. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5740. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5741. this.myPanel5.Controls.Add(this.label25);
  5742. this.myPanel5.Controls.Add(this.label35);
  5743. this.myPanel5.Controls.Add(this.label39);
  5744. this.myPanel5.Controls.Add(this.rgvOptType1);
  5745. this.myPanel5.Controls.Add(this.label173);
  5746. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  5747. this.myPanel5.Controls.Add(this.rgvPosCurr1);
  5748. this.myPanel5.Controls.Add(this.rgvMode1);
  5749. this.myPanel5.Controls.Add(this.rgvOrdId1);
  5750. this.myPanel5.Controls.Add(this.label181);
  5751. this.myPanel5.Controls.Add(this.rgvPosTo1);
  5752. this.myPanel5.Controls.Add(this.label183);
  5753. this.myPanel5.Controls.Add(this.rgvPosFrom1);
  5754. this.myPanel5.Controls.Add(this.rgvStatus1);
  5755. this.myPanel5.Controls.Add(this.label189);
  5756. this.myPanel5.Controls.Add(this.lblrgv1);
  5757. this.myPanel5.Controls.Add(this.GV1);
  5758. this.myPanel5.Controls.Add(this.pictureBox17);
  5759. this.myPanel5.Location = new System.Drawing.Point(1776, 4);
  5760. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5761. this.myPanel5.Name = "myPanel5";
  5762. this.myPanel5.Size = new System.Drawing.Size(217, 312);
  5763. this.myPanel5.TabIndex = 107;
  5764. //
  5765. // label25
  5766. //
  5767. this.label25.AutoSize = true;
  5768. this.label25.BackColor = System.Drawing.Color.Transparent;
  5769. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5770. this.label25.Location = new System.Drawing.Point(5, 242);
  5771. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5772. this.label25.Name = "label25";
  5773. this.label25.Size = new System.Drawing.Size(82, 15);
  5774. this.label25.TabIndex = 106;
  5775. this.label25.Text = "光电状态:";
  5776. //
  5777. // label35
  5778. //
  5779. this.label35.AutoSize = true;
  5780. this.label35.BackColor = System.Drawing.Color.Transparent;
  5781. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5782. this.label35.Location = new System.Drawing.Point(4, 190);
  5783. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5784. this.label35.Name = "label35";
  5785. this.label35.Size = new System.Drawing.Size(82, 15);
  5786. this.label35.TabIndex = 105;
  5787. this.label35.Text = "起始地址:";
  5788. //
  5789. // label39
  5790. //
  5791. this.label39.AutoSize = true;
  5792. this.label39.BackColor = System.Drawing.Color.Transparent;
  5793. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5794. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  5795. this.label39.Location = new System.Drawing.Point(4, 215);
  5796. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5797. this.label39.Name = "label39";
  5798. this.label39.Size = new System.Drawing.Size(82, 15);
  5799. this.label39.TabIndex = 104;
  5800. this.label39.Text = "目标地址:";
  5801. //
  5802. // rgvOptType1
  5803. //
  5804. this.rgvOptType1.AutoSize = true;
  5805. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  5806. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5807. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  5808. this.rgvOptType1.Location = new System.Drawing.Point(96, 166);
  5809. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5810. this.rgvOptType1.Name = "rgvOptType1";
  5811. this.rgvOptType1.Size = new System.Drawing.Size(31, 15);
  5812. this.rgvOptType1.TabIndex = 101;
  5813. this.rgvOptType1.Text = "---";
  5814. //
  5815. // label173
  5816. //
  5817. this.label173.AutoSize = true;
  5818. this.label173.BackColor = System.Drawing.Color.Transparent;
  5819. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5820. this.label173.Location = new System.Drawing.Point(3, 166);
  5821. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5822. this.label173.Name = "label173";
  5823. this.label173.Size = new System.Drawing.Size(82, 15);
  5824. this.label173.TabIndex = 100;
  5825. this.label173.Text = "作业类型:";
  5826. //
  5827. // lblRGVWarning1007
  5828. //
  5829. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  5830. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5831. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  5832. this.lblRGVWarning1007.Location = new System.Drawing.Point(7, 58);
  5833. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5834. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  5835. this.lblRGVWarning1007.Size = new System.Drawing.Size(201, 30);
  5836. this.lblRGVWarning1007.TabIndex = 92;
  5837. //
  5838. // rgvPosCurr1
  5839. //
  5840. this.rgvPosCurr1.AutoSize = true;
  5841. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  5842. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5843. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  5844. this.rgvPosCurr1.Location = new System.Drawing.Point(99, 244);
  5845. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5846. this.rgvPosCurr1.Name = "rgvPosCurr1";
  5847. this.rgvPosCurr1.Size = new System.Drawing.Size(31, 15);
  5848. this.rgvPosCurr1.TabIndex = 72;
  5849. this.rgvPosCurr1.Text = "---";
  5850. //
  5851. // rgvMode1
  5852. //
  5853. this.rgvMode1.AutoSize = true;
  5854. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  5855. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5856. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  5857. this.rgvMode1.Location = new System.Drawing.Point(96, 92);
  5858. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5859. this.rgvMode1.Name = "rgvMode1";
  5860. this.rgvMode1.Size = new System.Drawing.Size(31, 15);
  5861. this.rgvMode1.TabIndex = 12;
  5862. this.rgvMode1.Text = "---";
  5863. //
  5864. // rgvOrdId1
  5865. //
  5866. this.rgvOrdId1.AutoSize = true;
  5867. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  5868. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5869. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  5870. this.rgvOrdId1.Location = new System.Drawing.Point(96, 142);
  5871. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5872. this.rgvOrdId1.Name = "rgvOrdId1";
  5873. this.rgvOrdId1.Size = new System.Drawing.Size(31, 15);
  5874. this.rgvOrdId1.TabIndex = 64;
  5875. this.rgvOrdId1.Text = "---";
  5876. //
  5877. // label181
  5878. //
  5879. this.label181.AutoSize = true;
  5880. this.label181.BackColor = System.Drawing.Color.Transparent;
  5881. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5882. this.label181.Location = new System.Drawing.Point(3, 142);
  5883. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5884. this.label181.Name = "label181";
  5885. this.label181.Size = new System.Drawing.Size(82, 15);
  5886. this.label181.TabIndex = 63;
  5887. this.label181.Text = "工作指令:";
  5888. //
  5889. // rgvPosTo1
  5890. //
  5891. this.rgvPosTo1.AutoSize = true;
  5892. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  5893. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5894. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  5895. this.rgvPosTo1.Location = new System.Drawing.Point(97, 215);
  5896. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5897. this.rgvPosTo1.Name = "rgvPosTo1";
  5898. this.rgvPosTo1.Size = new System.Drawing.Size(31, 15);
  5899. this.rgvPosTo1.TabIndex = 16;
  5900. this.rgvPosTo1.Text = "---";
  5901. //
  5902. // label183
  5903. //
  5904. this.label183.AutoSize = true;
  5905. this.label183.BackColor = System.Drawing.Color.Transparent;
  5906. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5907. this.label183.Location = new System.Drawing.Point(3, 92);
  5908. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5909. this.label183.Name = "label183";
  5910. this.label183.Size = new System.Drawing.Size(82, 15);
  5911. this.label183.TabIndex = 15;
  5912. this.label183.Text = "工作模式:";
  5913. //
  5914. // rgvPosFrom1
  5915. //
  5916. this.rgvPosFrom1.AutoSize = true;
  5917. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  5918. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5919. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  5920. this.rgvPosFrom1.Location = new System.Drawing.Point(97, 190);
  5921. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5922. this.rgvPosFrom1.Name = "rgvPosFrom1";
  5923. this.rgvPosFrom1.Size = new System.Drawing.Size(31, 15);
  5924. this.rgvPosFrom1.TabIndex = 14;
  5925. this.rgvPosFrom1.Text = "---";
  5926. //
  5927. // rgvStatus1
  5928. //
  5929. this.rgvStatus1.AutoSize = true;
  5930. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  5931. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5932. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  5933. this.rgvStatus1.Location = new System.Drawing.Point(96, 115);
  5934. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5935. this.rgvStatus1.Name = "rgvStatus1";
  5936. this.rgvStatus1.Size = new System.Drawing.Size(31, 15);
  5937. this.rgvStatus1.TabIndex = 10;
  5938. this.rgvStatus1.Text = "---";
  5939. //
  5940. // label189
  5941. //
  5942. this.label189.AutoSize = true;
  5943. this.label189.BackColor = System.Drawing.Color.Transparent;
  5944. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5945. this.label189.Location = new System.Drawing.Point(3, 115);
  5946. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5947. this.label189.Name = "label189";
  5948. this.label189.Size = new System.Drawing.Size(82, 15);
  5949. this.label189.TabIndex = 6;
  5950. this.label189.Text = "工作状态:";
  5951. //
  5952. // lblrgv1
  5953. //
  5954. this.lblrgv1.AutoSize = true;
  5955. this.lblrgv1.BackColor = System.Drawing.Color.Transparent;
  5956. this.lblrgv1.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5957. this.lblrgv1.Location = new System.Drawing.Point(59, 32);
  5958. this.lblrgv1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5959. this.lblrgv1.Name = "lblrgv1";
  5960. this.lblrgv1.Size = new System.Drawing.Size(53, 20);
  5961. this.lblrgv1.TabIndex = 0;
  5962. this.lblrgv1.Text = "RGV1";
  5963. this.lblrgv1.Click += new System.EventHandler(this.lblsrm01_Click);
  5964. //
  5965. // GV1
  5966. //
  5967. this.GV1.BackColor = System.Drawing.Color.Transparent;
  5968. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  5969. this.GV1.Location = new System.Drawing.Point(88, -2);
  5970. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5971. this.GV1.Name = "GV1";
  5972. this.GV1.Size = new System.Drawing.Size(35, 32);
  5973. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5974. this.GV1.TabIndex = 65;
  5975. this.GV1.TabStop = false;
  5976. this.GV1.Tag = "1";
  5977. //
  5978. // pictureBox17
  5979. //
  5980. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  5981. this.pictureBox17.Location = new System.Drawing.Point(87, -2);
  5982. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5983. this.pictureBox17.Name = "pictureBox17";
  5984. this.pictureBox17.Size = new System.Drawing.Size(35, 32);
  5985. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5986. this.pictureBox17.TabIndex = 5;
  5987. this.pictureBox17.TabStop = false;
  5988. //
  5989. // pnlBottom
  5990. //
  5991. this.pnlBottom.AutoScroll = true;
  5992. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  5993. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5994. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5995. this.pnlBottom.Controls.Add(this.myPanel17);
  5996. this.pnlBottom.Controls.Add(this.myPanel11);
  5997. this.pnlBottom.Controls.Add(this.myPanel16);
  5998. this.pnlBottom.Controls.Add(this.myPanel15);
  5999. this.pnlBottom.Controls.Add(this.myPanel14);
  6000. this.pnlBottom.Controls.Add(this.myPanel13);
  6001. this.pnlBottom.Controls.Add(this.myPanel12);
  6002. this.pnlBottom.Controls.Add(this.myPanel10);
  6003. this.pnlBottom.Controls.Add(this.myPanel9);
  6004. this.pnlBottom.Controls.Add(this.myPanel8);
  6005. this.pnlBottom.Controls.Add(this.myPanel7);
  6006. this.pnlBottom.Controls.Add(this.myPanel6);
  6007. this.pnlBottom.Controls.Add(this.myPanel3);
  6008. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  6009. this.pnlBottom.Controls.Add(this.myPanel2);
  6010. this.pnlBottom.Controls.Add(this.myPanel5);
  6011. this.pnlBottom.Controls.Add(this.RGV4000);
  6012. this.pnlBottom.Controls.Add(this.myPanel1);
  6013. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  6014. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  6015. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  6016. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  6017. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
  6018. this.pnlBottom.Location = new System.Drawing.Point(4, 617);
  6019. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6020. this.pnlBottom.Name = "pnlBottom";
  6021. this.pnlBottom.Padding = new System.Windows.Forms.Padding(13, 0, 0, 0);
  6022. this.pnlBottom.Size = new System.Drawing.Size(1702, 260);
  6023. this.pnlBottom.TabIndex = 126;
  6024. //
  6025. // myPanel17
  6026. //
  6027. this.myPanel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel17.BackgroundImage")));
  6028. this.myPanel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6029. this.myPanel17.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6030. this.myPanel17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6031. this.myPanel17.Controls.Add(this.label314);
  6032. this.myPanel17.Controls.Add(this.label315);
  6033. this.myPanel17.Controls.Add(this.label316);
  6034. this.myPanel17.Controls.Add(this.rgvOptType13);
  6035. this.myPanel17.Controls.Add(this.label318);
  6036. this.myPanel17.Controls.Add(this.label319);
  6037. this.myPanel17.Controls.Add(this.rgvPosCurr13);
  6038. this.myPanel17.Controls.Add(this.rgvMode13);
  6039. this.myPanel17.Controls.Add(this.rgvOrdId13);
  6040. this.myPanel17.Controls.Add(this.label323);
  6041. this.myPanel17.Controls.Add(this.rgvPosTo13);
  6042. this.myPanel17.Controls.Add(this.label325);
  6043. this.myPanel17.Controls.Add(this.rgvPosFrom13);
  6044. this.myPanel17.Controls.Add(this.rgvStatus13);
  6045. this.myPanel17.Controls.Add(this.label328);
  6046. this.myPanel17.Controls.Add(this.lblrgv13);
  6047. this.myPanel17.Controls.Add(this.GV13);
  6048. this.myPanel17.Controls.Add(this.pictureBox36);
  6049. this.myPanel17.Location = new System.Drawing.Point(4409, 3);
  6050. this.myPanel17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6051. this.myPanel17.Name = "myPanel17";
  6052. this.myPanel17.Size = new System.Drawing.Size(217, 312);
  6053. this.myPanel17.TabIndex = 141;
  6054. //
  6055. // label314
  6056. //
  6057. this.label314.AutoSize = true;
  6058. this.label314.BackColor = System.Drawing.Color.Transparent;
  6059. this.label314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6060. this.label314.Location = new System.Drawing.Point(4, 241);
  6061. this.label314.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6062. this.label314.Name = "label314";
  6063. this.label314.Size = new System.Drawing.Size(82, 15);
  6064. this.label314.TabIndex = 106;
  6065. this.label314.Text = "光电状态:";
  6066. //
  6067. // label315
  6068. //
  6069. this.label315.AutoSize = true;
  6070. this.label315.BackColor = System.Drawing.Color.Transparent;
  6071. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6072. this.label315.Location = new System.Drawing.Point(3, 189);
  6073. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6074. this.label315.Name = "label315";
  6075. this.label315.Size = new System.Drawing.Size(82, 15);
  6076. this.label315.TabIndex = 105;
  6077. this.label315.Text = "起始地址:";
  6078. //
  6079. // label316
  6080. //
  6081. this.label316.AutoSize = true;
  6082. this.label316.BackColor = System.Drawing.Color.Transparent;
  6083. this.label316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6084. this.label316.ForeColor = System.Drawing.SystemColors.ControlText;
  6085. this.label316.Location = new System.Drawing.Point(3, 214);
  6086. this.label316.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6087. this.label316.Name = "label316";
  6088. this.label316.Size = new System.Drawing.Size(82, 15);
  6089. this.label316.TabIndex = 104;
  6090. this.label316.Text = "目标地址:";
  6091. //
  6092. // rgvOptType13
  6093. //
  6094. this.rgvOptType13.AutoSize = true;
  6095. this.rgvOptType13.BackColor = System.Drawing.Color.Transparent;
  6096. this.rgvOptType13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6097. this.rgvOptType13.ForeColor = System.Drawing.Color.Blue;
  6098. this.rgvOptType13.Location = new System.Drawing.Point(96, 166);
  6099. this.rgvOptType13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6100. this.rgvOptType13.Name = "rgvOptType13";
  6101. this.rgvOptType13.Size = new System.Drawing.Size(31, 15);
  6102. this.rgvOptType13.TabIndex = 101;
  6103. this.rgvOptType13.Text = "---";
  6104. //
  6105. // label318
  6106. //
  6107. this.label318.AutoSize = true;
  6108. this.label318.BackColor = System.Drawing.Color.Transparent;
  6109. this.label318.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6110. this.label318.Location = new System.Drawing.Point(3, 166);
  6111. this.label318.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6112. this.label318.Name = "label318";
  6113. this.label318.Size = new System.Drawing.Size(82, 15);
  6114. this.label318.TabIndex = 100;
  6115. this.label318.Text = "作业类型:";
  6116. //
  6117. // label319
  6118. //
  6119. this.label319.BackColor = System.Drawing.Color.Transparent;
  6120. this.label319.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6121. this.label319.ForeColor = System.Drawing.Color.Red;
  6122. this.label319.Location = new System.Drawing.Point(7, 58);
  6123. this.label319.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6124. this.label319.Name = "label319";
  6125. this.label319.Size = new System.Drawing.Size(201, 30);
  6126. this.label319.TabIndex = 92;
  6127. //
  6128. // rgvPosCurr13
  6129. //
  6130. this.rgvPosCurr13.AutoSize = true;
  6131. this.rgvPosCurr13.BackColor = System.Drawing.Color.Transparent;
  6132. this.rgvPosCurr13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6133. this.rgvPosCurr13.ForeColor = System.Drawing.Color.Blue;
  6134. this.rgvPosCurr13.Location = new System.Drawing.Point(99, 242);
  6135. this.rgvPosCurr13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6136. this.rgvPosCurr13.Name = "rgvPosCurr13";
  6137. this.rgvPosCurr13.Size = new System.Drawing.Size(31, 15);
  6138. this.rgvPosCurr13.TabIndex = 72;
  6139. this.rgvPosCurr13.Text = "---";
  6140. //
  6141. // rgvMode13
  6142. //
  6143. this.rgvMode13.AutoSize = true;
  6144. this.rgvMode13.BackColor = System.Drawing.Color.Transparent;
  6145. this.rgvMode13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6146. this.rgvMode13.ForeColor = System.Drawing.Color.Blue;
  6147. this.rgvMode13.Location = new System.Drawing.Point(96, 92);
  6148. this.rgvMode13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6149. this.rgvMode13.Name = "rgvMode13";
  6150. this.rgvMode13.Size = new System.Drawing.Size(31, 15);
  6151. this.rgvMode13.TabIndex = 12;
  6152. this.rgvMode13.Text = "---";
  6153. //
  6154. // rgvOrdId13
  6155. //
  6156. this.rgvOrdId13.AutoSize = true;
  6157. this.rgvOrdId13.BackColor = System.Drawing.Color.Transparent;
  6158. this.rgvOrdId13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6159. this.rgvOrdId13.ForeColor = System.Drawing.Color.Blue;
  6160. this.rgvOrdId13.Location = new System.Drawing.Point(96, 142);
  6161. this.rgvOrdId13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6162. this.rgvOrdId13.Name = "rgvOrdId13";
  6163. this.rgvOrdId13.Size = new System.Drawing.Size(31, 15);
  6164. this.rgvOrdId13.TabIndex = 64;
  6165. this.rgvOrdId13.Text = "---";
  6166. //
  6167. // label323
  6168. //
  6169. this.label323.AutoSize = true;
  6170. this.label323.BackColor = System.Drawing.Color.Transparent;
  6171. this.label323.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6172. this.label323.Location = new System.Drawing.Point(3, 142);
  6173. this.label323.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6174. this.label323.Name = "label323";
  6175. this.label323.Size = new System.Drawing.Size(82, 15);
  6176. this.label323.TabIndex = 63;
  6177. this.label323.Text = "工作指令:";
  6178. //
  6179. // rgvPosTo13
  6180. //
  6181. this.rgvPosTo13.AutoSize = true;
  6182. this.rgvPosTo13.BackColor = System.Drawing.Color.Transparent;
  6183. this.rgvPosTo13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6184. this.rgvPosTo13.ForeColor = System.Drawing.Color.Blue;
  6185. this.rgvPosTo13.Location = new System.Drawing.Point(97, 215);
  6186. this.rgvPosTo13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6187. this.rgvPosTo13.Name = "rgvPosTo13";
  6188. this.rgvPosTo13.Size = new System.Drawing.Size(31, 15);
  6189. this.rgvPosTo13.TabIndex = 16;
  6190. this.rgvPosTo13.Text = "---";
  6191. //
  6192. // label325
  6193. //
  6194. this.label325.AutoSize = true;
  6195. this.label325.BackColor = System.Drawing.Color.Transparent;
  6196. this.label325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6197. this.label325.Location = new System.Drawing.Point(3, 92);
  6198. this.label325.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6199. this.label325.Name = "label325";
  6200. this.label325.Size = new System.Drawing.Size(82, 15);
  6201. this.label325.TabIndex = 15;
  6202. this.label325.Text = "工作模式:";
  6203. //
  6204. // rgvPosFrom13
  6205. //
  6206. this.rgvPosFrom13.AutoSize = true;
  6207. this.rgvPosFrom13.BackColor = System.Drawing.Color.Transparent;
  6208. this.rgvPosFrom13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6209. this.rgvPosFrom13.ForeColor = System.Drawing.Color.Blue;
  6210. this.rgvPosFrom13.Location = new System.Drawing.Point(97, 190);
  6211. this.rgvPosFrom13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6212. this.rgvPosFrom13.Name = "rgvPosFrom13";
  6213. this.rgvPosFrom13.Size = new System.Drawing.Size(31, 15);
  6214. this.rgvPosFrom13.TabIndex = 14;
  6215. this.rgvPosFrom13.Text = "---";
  6216. //
  6217. // rgvStatus13
  6218. //
  6219. this.rgvStatus13.AutoSize = true;
  6220. this.rgvStatus13.BackColor = System.Drawing.Color.Transparent;
  6221. this.rgvStatus13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6222. this.rgvStatus13.ForeColor = System.Drawing.Color.Blue;
  6223. this.rgvStatus13.Location = new System.Drawing.Point(96, 115);
  6224. this.rgvStatus13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6225. this.rgvStatus13.Name = "rgvStatus13";
  6226. this.rgvStatus13.Size = new System.Drawing.Size(31, 15);
  6227. this.rgvStatus13.TabIndex = 10;
  6228. this.rgvStatus13.Text = "---";
  6229. //
  6230. // label328
  6231. //
  6232. this.label328.AutoSize = true;
  6233. this.label328.BackColor = System.Drawing.Color.Transparent;
  6234. this.label328.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6235. this.label328.Location = new System.Drawing.Point(3, 115);
  6236. this.label328.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6237. this.label328.Name = "label328";
  6238. this.label328.Size = new System.Drawing.Size(82, 15);
  6239. this.label328.TabIndex = 6;
  6240. this.label328.Text = "工作状态:";
  6241. //
  6242. // lblrgv13
  6243. //
  6244. this.lblrgv13.AutoSize = true;
  6245. this.lblrgv13.BackColor = System.Drawing.Color.Transparent;
  6246. this.lblrgv13.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6247. this.lblrgv13.Location = new System.Drawing.Point(59, 32);
  6248. this.lblrgv13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6249. this.lblrgv13.Name = "lblrgv13";
  6250. this.lblrgv13.Size = new System.Drawing.Size(64, 20);
  6251. this.lblrgv13.TabIndex = 0;
  6252. this.lblrgv13.Text = "RGV13";
  6253. //
  6254. // GV13
  6255. //
  6256. this.GV13.BackColor = System.Drawing.Color.Transparent;
  6257. this.GV13.Image = ((System.Drawing.Image)(resources.GetObject("GV13.Image")));
  6258. this.GV13.Location = new System.Drawing.Point(88, -2);
  6259. this.GV13.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6260. this.GV13.Name = "GV13";
  6261. this.GV13.Size = new System.Drawing.Size(35, 32);
  6262. this.GV13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6263. this.GV13.TabIndex = 65;
  6264. this.GV13.TabStop = false;
  6265. this.GV13.Tag = "1";
  6266. //
  6267. // pictureBox36
  6268. //
  6269. this.pictureBox36.BackColor = System.Drawing.Color.Transparent;
  6270. this.pictureBox36.Location = new System.Drawing.Point(87, -2);
  6271. this.pictureBox36.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6272. this.pictureBox36.Name = "pictureBox36";
  6273. this.pictureBox36.Size = new System.Drawing.Size(35, 32);
  6274. this.pictureBox36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6275. this.pictureBox36.TabIndex = 5;
  6276. this.pictureBox36.TabStop = false;
  6277. //
  6278. // myPanel11
  6279. //
  6280. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  6281. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6282. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6283. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6284. this.myPanel11.Controls.Add(this.label40);
  6285. this.myPanel11.Controls.Add(this.label41);
  6286. this.myPanel11.Controls.Add(this.label42);
  6287. this.myPanel11.Controls.Add(this.rgvOptType12);
  6288. this.myPanel11.Controls.Add(this.label302);
  6289. this.myPanel11.Controls.Add(this.label303);
  6290. this.myPanel11.Controls.Add(this.rgvPosCurr12);
  6291. this.myPanel11.Controls.Add(this.rgvMode12);
  6292. this.myPanel11.Controls.Add(this.rgvOrdId12);
  6293. this.myPanel11.Controls.Add(this.label307);
  6294. this.myPanel11.Controls.Add(this.rgvPosTo12);
  6295. this.myPanel11.Controls.Add(this.label309);
  6296. this.myPanel11.Controls.Add(this.rgvPosFrom12);
  6297. this.myPanel11.Controls.Add(this.rgvStatus12);
  6298. this.myPanel11.Controls.Add(this.label312);
  6299. this.myPanel11.Controls.Add(this.lblrgv12);
  6300. this.myPanel11.Controls.Add(this.GV12);
  6301. this.myPanel11.Controls.Add(this.pictureBox34);
  6302. this.myPanel11.Location = new System.Drawing.Point(4190, 3);
  6303. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6304. this.myPanel11.Name = "myPanel11";
  6305. this.myPanel11.Size = new System.Drawing.Size(217, 312);
  6306. this.myPanel11.TabIndex = 140;
  6307. //
  6308. // label40
  6309. //
  6310. this.label40.AutoSize = true;
  6311. this.label40.BackColor = System.Drawing.Color.Transparent;
  6312. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6313. this.label40.Location = new System.Drawing.Point(4, 241);
  6314. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6315. this.label40.Name = "label40";
  6316. this.label40.Size = new System.Drawing.Size(82, 15);
  6317. this.label40.TabIndex = 106;
  6318. this.label40.Text = "光电状态:";
  6319. //
  6320. // label41
  6321. //
  6322. this.label41.AutoSize = true;
  6323. this.label41.BackColor = System.Drawing.Color.Transparent;
  6324. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6325. this.label41.Location = new System.Drawing.Point(3, 189);
  6326. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6327. this.label41.Name = "label41";
  6328. this.label41.Size = new System.Drawing.Size(82, 15);
  6329. this.label41.TabIndex = 105;
  6330. this.label41.Text = "起始地址:";
  6331. //
  6332. // label42
  6333. //
  6334. this.label42.AutoSize = true;
  6335. this.label42.BackColor = System.Drawing.Color.Transparent;
  6336. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6337. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  6338. this.label42.Location = new System.Drawing.Point(3, 214);
  6339. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6340. this.label42.Name = "label42";
  6341. this.label42.Size = new System.Drawing.Size(82, 15);
  6342. this.label42.TabIndex = 104;
  6343. this.label42.Text = "目标地址:";
  6344. //
  6345. // rgvOptType12
  6346. //
  6347. this.rgvOptType12.AutoSize = true;
  6348. this.rgvOptType12.BackColor = System.Drawing.Color.Transparent;
  6349. this.rgvOptType12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6350. this.rgvOptType12.ForeColor = System.Drawing.Color.Blue;
  6351. this.rgvOptType12.Location = new System.Drawing.Point(96, 166);
  6352. this.rgvOptType12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6353. this.rgvOptType12.Name = "rgvOptType12";
  6354. this.rgvOptType12.Size = new System.Drawing.Size(31, 15);
  6355. this.rgvOptType12.TabIndex = 101;
  6356. this.rgvOptType12.Text = "---";
  6357. //
  6358. // label302
  6359. //
  6360. this.label302.AutoSize = true;
  6361. this.label302.BackColor = System.Drawing.Color.Transparent;
  6362. this.label302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6363. this.label302.Location = new System.Drawing.Point(3, 166);
  6364. this.label302.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6365. this.label302.Name = "label302";
  6366. this.label302.Size = new System.Drawing.Size(82, 15);
  6367. this.label302.TabIndex = 100;
  6368. this.label302.Text = "作业类型:";
  6369. //
  6370. // label303
  6371. //
  6372. this.label303.BackColor = System.Drawing.Color.Transparent;
  6373. this.label303.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6374. this.label303.ForeColor = System.Drawing.Color.Red;
  6375. this.label303.Location = new System.Drawing.Point(7, 58);
  6376. this.label303.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6377. this.label303.Name = "label303";
  6378. this.label303.Size = new System.Drawing.Size(201, 30);
  6379. this.label303.TabIndex = 92;
  6380. //
  6381. // rgvPosCurr12
  6382. //
  6383. this.rgvPosCurr12.AutoSize = true;
  6384. this.rgvPosCurr12.BackColor = System.Drawing.Color.Transparent;
  6385. this.rgvPosCurr12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6386. this.rgvPosCurr12.ForeColor = System.Drawing.Color.Blue;
  6387. this.rgvPosCurr12.Location = new System.Drawing.Point(99, 242);
  6388. this.rgvPosCurr12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6389. this.rgvPosCurr12.Name = "rgvPosCurr12";
  6390. this.rgvPosCurr12.Size = new System.Drawing.Size(31, 15);
  6391. this.rgvPosCurr12.TabIndex = 72;
  6392. this.rgvPosCurr12.Text = "---";
  6393. //
  6394. // rgvMode12
  6395. //
  6396. this.rgvMode12.AutoSize = true;
  6397. this.rgvMode12.BackColor = System.Drawing.Color.Transparent;
  6398. this.rgvMode12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6399. this.rgvMode12.ForeColor = System.Drawing.Color.Blue;
  6400. this.rgvMode12.Location = new System.Drawing.Point(96, 92);
  6401. this.rgvMode12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6402. this.rgvMode12.Name = "rgvMode12";
  6403. this.rgvMode12.Size = new System.Drawing.Size(31, 15);
  6404. this.rgvMode12.TabIndex = 12;
  6405. this.rgvMode12.Text = "---";
  6406. //
  6407. // rgvOrdId12
  6408. //
  6409. this.rgvOrdId12.AutoSize = true;
  6410. this.rgvOrdId12.BackColor = System.Drawing.Color.Transparent;
  6411. this.rgvOrdId12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6412. this.rgvOrdId12.ForeColor = System.Drawing.Color.Blue;
  6413. this.rgvOrdId12.Location = new System.Drawing.Point(96, 142);
  6414. this.rgvOrdId12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6415. this.rgvOrdId12.Name = "rgvOrdId12";
  6416. this.rgvOrdId12.Size = new System.Drawing.Size(31, 15);
  6417. this.rgvOrdId12.TabIndex = 64;
  6418. this.rgvOrdId12.Text = "---";
  6419. //
  6420. // label307
  6421. //
  6422. this.label307.AutoSize = true;
  6423. this.label307.BackColor = System.Drawing.Color.Transparent;
  6424. this.label307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6425. this.label307.Location = new System.Drawing.Point(3, 142);
  6426. this.label307.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6427. this.label307.Name = "label307";
  6428. this.label307.Size = new System.Drawing.Size(82, 15);
  6429. this.label307.TabIndex = 63;
  6430. this.label307.Text = "工作指令:";
  6431. //
  6432. // rgvPosTo12
  6433. //
  6434. this.rgvPosTo12.AutoSize = true;
  6435. this.rgvPosTo12.BackColor = System.Drawing.Color.Transparent;
  6436. this.rgvPosTo12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6437. this.rgvPosTo12.ForeColor = System.Drawing.Color.Blue;
  6438. this.rgvPosTo12.Location = new System.Drawing.Point(97, 215);
  6439. this.rgvPosTo12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6440. this.rgvPosTo12.Name = "rgvPosTo12";
  6441. this.rgvPosTo12.Size = new System.Drawing.Size(31, 15);
  6442. this.rgvPosTo12.TabIndex = 16;
  6443. this.rgvPosTo12.Text = "---";
  6444. //
  6445. // label309
  6446. //
  6447. this.label309.AutoSize = true;
  6448. this.label309.BackColor = System.Drawing.Color.Transparent;
  6449. this.label309.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6450. this.label309.Location = new System.Drawing.Point(3, 92);
  6451. this.label309.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6452. this.label309.Name = "label309";
  6453. this.label309.Size = new System.Drawing.Size(82, 15);
  6454. this.label309.TabIndex = 15;
  6455. this.label309.Text = "工作模式:";
  6456. //
  6457. // rgvPosFrom12
  6458. //
  6459. this.rgvPosFrom12.AutoSize = true;
  6460. this.rgvPosFrom12.BackColor = System.Drawing.Color.Transparent;
  6461. this.rgvPosFrom12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6462. this.rgvPosFrom12.ForeColor = System.Drawing.Color.Blue;
  6463. this.rgvPosFrom12.Location = new System.Drawing.Point(97, 190);
  6464. this.rgvPosFrom12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6465. this.rgvPosFrom12.Name = "rgvPosFrom12";
  6466. this.rgvPosFrom12.Size = new System.Drawing.Size(31, 15);
  6467. this.rgvPosFrom12.TabIndex = 14;
  6468. this.rgvPosFrom12.Text = "---";
  6469. //
  6470. // rgvStatus12
  6471. //
  6472. this.rgvStatus12.AutoSize = true;
  6473. this.rgvStatus12.BackColor = System.Drawing.Color.Transparent;
  6474. this.rgvStatus12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6475. this.rgvStatus12.ForeColor = System.Drawing.Color.Blue;
  6476. this.rgvStatus12.Location = new System.Drawing.Point(96, 115);
  6477. this.rgvStatus12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6478. this.rgvStatus12.Name = "rgvStatus12";
  6479. this.rgvStatus12.Size = new System.Drawing.Size(31, 15);
  6480. this.rgvStatus12.TabIndex = 10;
  6481. this.rgvStatus12.Text = "---";
  6482. //
  6483. // label312
  6484. //
  6485. this.label312.AutoSize = true;
  6486. this.label312.BackColor = System.Drawing.Color.Transparent;
  6487. this.label312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6488. this.label312.Location = new System.Drawing.Point(3, 115);
  6489. this.label312.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6490. this.label312.Name = "label312";
  6491. this.label312.Size = new System.Drawing.Size(82, 15);
  6492. this.label312.TabIndex = 6;
  6493. this.label312.Text = "工作状态:";
  6494. //
  6495. // lblrgv12
  6496. //
  6497. this.lblrgv12.AutoSize = true;
  6498. this.lblrgv12.BackColor = System.Drawing.Color.Transparent;
  6499. this.lblrgv12.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6500. this.lblrgv12.Location = new System.Drawing.Point(59, 32);
  6501. this.lblrgv12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6502. this.lblrgv12.Name = "lblrgv12";
  6503. this.lblrgv12.Size = new System.Drawing.Size(64, 20);
  6504. this.lblrgv12.TabIndex = 0;
  6505. this.lblrgv12.Text = "RGV12";
  6506. //
  6507. // GV12
  6508. //
  6509. this.GV12.BackColor = System.Drawing.Color.Transparent;
  6510. this.GV12.Image = ((System.Drawing.Image)(resources.GetObject("GV12.Image")));
  6511. this.GV12.Location = new System.Drawing.Point(88, -2);
  6512. this.GV12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6513. this.GV12.Name = "GV12";
  6514. this.GV12.Size = new System.Drawing.Size(35, 32);
  6515. this.GV12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6516. this.GV12.TabIndex = 65;
  6517. this.GV12.TabStop = false;
  6518. this.GV12.Tag = "1";
  6519. //
  6520. // pictureBox34
  6521. //
  6522. this.pictureBox34.BackColor = System.Drawing.Color.Transparent;
  6523. this.pictureBox34.Location = new System.Drawing.Point(87, -2);
  6524. this.pictureBox34.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6525. this.pictureBox34.Name = "pictureBox34";
  6526. this.pictureBox34.Size = new System.Drawing.Size(35, 32);
  6527. this.pictureBox34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6528. this.pictureBox34.TabIndex = 5;
  6529. this.pictureBox34.TabStop = false;
  6530. //
  6531. // myPanel16
  6532. //
  6533. this.myPanel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel16.BackgroundImage")));
  6534. this.myPanel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6535. this.myPanel16.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6536. this.myPanel16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6537. this.myPanel16.Controls.Add(this.label285);
  6538. this.myPanel16.Controls.Add(this.label286);
  6539. this.myPanel16.Controls.Add(this.label287);
  6540. this.myPanel16.Controls.Add(this.rgvOptType14);
  6541. this.myPanel16.Controls.Add(this.label289);
  6542. this.myPanel16.Controls.Add(this.label290);
  6543. this.myPanel16.Controls.Add(this.rgvPosCurr14);
  6544. this.myPanel16.Controls.Add(this.rgvMode14);
  6545. this.myPanel16.Controls.Add(this.rgvOrdId14);
  6546. this.myPanel16.Controls.Add(this.label294);
  6547. this.myPanel16.Controls.Add(this.rgvPosTo14);
  6548. this.myPanel16.Controls.Add(this.label296);
  6549. this.myPanel16.Controls.Add(this.rgvPosFrom14);
  6550. this.myPanel16.Controls.Add(this.rgvStatus14);
  6551. this.myPanel16.Controls.Add(this.label299);
  6552. this.myPanel16.Controls.Add(this.lblrgv14);
  6553. this.myPanel16.Controls.Add(this.GV14);
  6554. this.myPanel16.Controls.Add(this.pictureBox33);
  6555. this.myPanel16.Location = new System.Drawing.Point(4627, 0);
  6556. this.myPanel16.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6557. this.myPanel16.Name = "myPanel16";
  6558. this.myPanel16.Size = new System.Drawing.Size(217, 312);
  6559. this.myPanel16.TabIndex = 139;
  6560. //
  6561. // label285
  6562. //
  6563. this.label285.AutoSize = true;
  6564. this.label285.BackColor = System.Drawing.Color.Transparent;
  6565. this.label285.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6566. this.label285.Location = new System.Drawing.Point(4, 241);
  6567. this.label285.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6568. this.label285.Name = "label285";
  6569. this.label285.Size = new System.Drawing.Size(82, 15);
  6570. this.label285.TabIndex = 106;
  6571. this.label285.Text = "光电状态:";
  6572. //
  6573. // label286
  6574. //
  6575. this.label286.AutoSize = true;
  6576. this.label286.BackColor = System.Drawing.Color.Transparent;
  6577. this.label286.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6578. this.label286.Location = new System.Drawing.Point(3, 189);
  6579. this.label286.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6580. this.label286.Name = "label286";
  6581. this.label286.Size = new System.Drawing.Size(82, 15);
  6582. this.label286.TabIndex = 105;
  6583. this.label286.Text = "起始地址:";
  6584. //
  6585. // label287
  6586. //
  6587. this.label287.AutoSize = true;
  6588. this.label287.BackColor = System.Drawing.Color.Transparent;
  6589. this.label287.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6590. this.label287.ForeColor = System.Drawing.SystemColors.ControlText;
  6591. this.label287.Location = new System.Drawing.Point(3, 214);
  6592. this.label287.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6593. this.label287.Name = "label287";
  6594. this.label287.Size = new System.Drawing.Size(82, 15);
  6595. this.label287.TabIndex = 104;
  6596. this.label287.Text = "目标地址:";
  6597. //
  6598. // rgvOptType14
  6599. //
  6600. this.rgvOptType14.AutoSize = true;
  6601. this.rgvOptType14.BackColor = System.Drawing.Color.Transparent;
  6602. this.rgvOptType14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6603. this.rgvOptType14.ForeColor = System.Drawing.Color.Blue;
  6604. this.rgvOptType14.Location = new System.Drawing.Point(96, 166);
  6605. this.rgvOptType14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6606. this.rgvOptType14.Name = "rgvOptType14";
  6607. this.rgvOptType14.Size = new System.Drawing.Size(31, 15);
  6608. this.rgvOptType14.TabIndex = 101;
  6609. this.rgvOptType14.Text = "---";
  6610. //
  6611. // label289
  6612. //
  6613. this.label289.AutoSize = true;
  6614. this.label289.BackColor = System.Drawing.Color.Transparent;
  6615. this.label289.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6616. this.label289.Location = new System.Drawing.Point(3, 166);
  6617. this.label289.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6618. this.label289.Name = "label289";
  6619. this.label289.Size = new System.Drawing.Size(82, 15);
  6620. this.label289.TabIndex = 100;
  6621. this.label289.Text = "作业类型:";
  6622. //
  6623. // label290
  6624. //
  6625. this.label290.BackColor = System.Drawing.Color.Transparent;
  6626. this.label290.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6627. this.label290.ForeColor = System.Drawing.Color.Red;
  6628. this.label290.Location = new System.Drawing.Point(7, 58);
  6629. this.label290.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6630. this.label290.Name = "label290";
  6631. this.label290.Size = new System.Drawing.Size(201, 30);
  6632. this.label290.TabIndex = 92;
  6633. //
  6634. // rgvPosCurr14
  6635. //
  6636. this.rgvPosCurr14.AutoSize = true;
  6637. this.rgvPosCurr14.BackColor = System.Drawing.Color.Transparent;
  6638. this.rgvPosCurr14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6639. this.rgvPosCurr14.ForeColor = System.Drawing.Color.Blue;
  6640. this.rgvPosCurr14.Location = new System.Drawing.Point(99, 242);
  6641. this.rgvPosCurr14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6642. this.rgvPosCurr14.Name = "rgvPosCurr14";
  6643. this.rgvPosCurr14.Size = new System.Drawing.Size(31, 15);
  6644. this.rgvPosCurr14.TabIndex = 72;
  6645. this.rgvPosCurr14.Text = "---";
  6646. //
  6647. // rgvMode14
  6648. //
  6649. this.rgvMode14.AutoSize = true;
  6650. this.rgvMode14.BackColor = System.Drawing.Color.Transparent;
  6651. this.rgvMode14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6652. this.rgvMode14.ForeColor = System.Drawing.Color.Blue;
  6653. this.rgvMode14.Location = new System.Drawing.Point(96, 92);
  6654. this.rgvMode14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6655. this.rgvMode14.Name = "rgvMode14";
  6656. this.rgvMode14.Size = new System.Drawing.Size(31, 15);
  6657. this.rgvMode14.TabIndex = 12;
  6658. this.rgvMode14.Text = "---";
  6659. //
  6660. // rgvOrdId14
  6661. //
  6662. this.rgvOrdId14.AutoSize = true;
  6663. this.rgvOrdId14.BackColor = System.Drawing.Color.Transparent;
  6664. this.rgvOrdId14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6665. this.rgvOrdId14.ForeColor = System.Drawing.Color.Blue;
  6666. this.rgvOrdId14.Location = new System.Drawing.Point(96, 142);
  6667. this.rgvOrdId14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6668. this.rgvOrdId14.Name = "rgvOrdId14";
  6669. this.rgvOrdId14.Size = new System.Drawing.Size(31, 15);
  6670. this.rgvOrdId14.TabIndex = 64;
  6671. this.rgvOrdId14.Text = "---";
  6672. //
  6673. // label294
  6674. //
  6675. this.label294.AutoSize = true;
  6676. this.label294.BackColor = System.Drawing.Color.Transparent;
  6677. this.label294.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6678. this.label294.Location = new System.Drawing.Point(3, 142);
  6679. this.label294.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6680. this.label294.Name = "label294";
  6681. this.label294.Size = new System.Drawing.Size(82, 15);
  6682. this.label294.TabIndex = 63;
  6683. this.label294.Text = "工作指令:";
  6684. //
  6685. // rgvPosTo14
  6686. //
  6687. this.rgvPosTo14.AutoSize = true;
  6688. this.rgvPosTo14.BackColor = System.Drawing.Color.Transparent;
  6689. this.rgvPosTo14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6690. this.rgvPosTo14.ForeColor = System.Drawing.Color.Blue;
  6691. this.rgvPosTo14.Location = new System.Drawing.Point(97, 215);
  6692. this.rgvPosTo14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6693. this.rgvPosTo14.Name = "rgvPosTo14";
  6694. this.rgvPosTo14.Size = new System.Drawing.Size(31, 15);
  6695. this.rgvPosTo14.TabIndex = 16;
  6696. this.rgvPosTo14.Text = "---";
  6697. //
  6698. // label296
  6699. //
  6700. this.label296.AutoSize = true;
  6701. this.label296.BackColor = System.Drawing.Color.Transparent;
  6702. this.label296.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6703. this.label296.Location = new System.Drawing.Point(3, 92);
  6704. this.label296.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6705. this.label296.Name = "label296";
  6706. this.label296.Size = new System.Drawing.Size(82, 15);
  6707. this.label296.TabIndex = 15;
  6708. this.label296.Text = "工作模式:";
  6709. //
  6710. // rgvPosFrom14
  6711. //
  6712. this.rgvPosFrom14.AutoSize = true;
  6713. this.rgvPosFrom14.BackColor = System.Drawing.Color.Transparent;
  6714. this.rgvPosFrom14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6715. this.rgvPosFrom14.ForeColor = System.Drawing.Color.Blue;
  6716. this.rgvPosFrom14.Location = new System.Drawing.Point(97, 190);
  6717. this.rgvPosFrom14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6718. this.rgvPosFrom14.Name = "rgvPosFrom14";
  6719. this.rgvPosFrom14.Size = new System.Drawing.Size(31, 15);
  6720. this.rgvPosFrom14.TabIndex = 14;
  6721. this.rgvPosFrom14.Text = "---";
  6722. //
  6723. // rgvStatus14
  6724. //
  6725. this.rgvStatus14.AutoSize = true;
  6726. this.rgvStatus14.BackColor = System.Drawing.Color.Transparent;
  6727. this.rgvStatus14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6728. this.rgvStatus14.ForeColor = System.Drawing.Color.Blue;
  6729. this.rgvStatus14.Location = new System.Drawing.Point(96, 115);
  6730. this.rgvStatus14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6731. this.rgvStatus14.Name = "rgvStatus14";
  6732. this.rgvStatus14.Size = new System.Drawing.Size(31, 15);
  6733. this.rgvStatus14.TabIndex = 10;
  6734. this.rgvStatus14.Text = "---";
  6735. //
  6736. // label299
  6737. //
  6738. this.label299.AutoSize = true;
  6739. this.label299.BackColor = System.Drawing.Color.Transparent;
  6740. this.label299.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6741. this.label299.Location = new System.Drawing.Point(3, 115);
  6742. this.label299.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6743. this.label299.Name = "label299";
  6744. this.label299.Size = new System.Drawing.Size(82, 15);
  6745. this.label299.TabIndex = 6;
  6746. this.label299.Text = "工作状态:";
  6747. //
  6748. // lblrgv14
  6749. //
  6750. this.lblrgv14.AutoSize = true;
  6751. this.lblrgv14.BackColor = System.Drawing.Color.Transparent;
  6752. this.lblrgv14.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6753. this.lblrgv14.Location = new System.Drawing.Point(59, 32);
  6754. this.lblrgv14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6755. this.lblrgv14.Name = "lblrgv14";
  6756. this.lblrgv14.Size = new System.Drawing.Size(64, 20);
  6757. this.lblrgv14.TabIndex = 0;
  6758. this.lblrgv14.Text = "RGV14";
  6759. //
  6760. // GV14
  6761. //
  6762. this.GV14.BackColor = System.Drawing.Color.Transparent;
  6763. this.GV14.Image = ((System.Drawing.Image)(resources.GetObject("GV14.Image")));
  6764. this.GV14.Location = new System.Drawing.Point(88, -2);
  6765. this.GV14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6766. this.GV14.Name = "GV14";
  6767. this.GV14.Size = new System.Drawing.Size(35, 32);
  6768. this.GV14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6769. this.GV14.TabIndex = 65;
  6770. this.GV14.TabStop = false;
  6771. this.GV14.Tag = "1";
  6772. //
  6773. // pictureBox33
  6774. //
  6775. this.pictureBox33.BackColor = System.Drawing.Color.Transparent;
  6776. this.pictureBox33.Location = new System.Drawing.Point(87, -2);
  6777. this.pictureBox33.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6778. this.pictureBox33.Name = "pictureBox33";
  6779. this.pictureBox33.Size = new System.Drawing.Size(35, 32);
  6780. this.pictureBox33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6781. this.pictureBox33.TabIndex = 5;
  6782. this.pictureBox33.TabStop = false;
  6783. //
  6784. // myPanel15
  6785. //
  6786. this.myPanel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel15.BackgroundImage")));
  6787. this.myPanel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6788. this.myPanel15.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6789. this.myPanel15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6790. this.myPanel15.Controls.Add(this.label269);
  6791. this.myPanel15.Controls.Add(this.label270);
  6792. this.myPanel15.Controls.Add(this.label271);
  6793. this.myPanel15.Controls.Add(this.rgvOptType11);
  6794. this.myPanel15.Controls.Add(this.label273);
  6795. this.myPanel15.Controls.Add(this.label274);
  6796. this.myPanel15.Controls.Add(this.rgvPosCurr11);
  6797. this.myPanel15.Controls.Add(this.rgvMode11);
  6798. this.myPanel15.Controls.Add(this.rgvOrdId11);
  6799. this.myPanel15.Controls.Add(this.label278);
  6800. this.myPanel15.Controls.Add(this.rgvPosTo11);
  6801. this.myPanel15.Controls.Add(this.label280);
  6802. this.myPanel15.Controls.Add(this.rgvPosFrom11);
  6803. this.myPanel15.Controls.Add(this.rgvStatus11);
  6804. this.myPanel15.Controls.Add(this.label283);
  6805. this.myPanel15.Controls.Add(this.lblrgv11);
  6806. this.myPanel15.Controls.Add(this.GV11);
  6807. this.myPanel15.Controls.Add(this.pictureBox31);
  6808. this.myPanel15.Location = new System.Drawing.Point(3971, 1);
  6809. this.myPanel15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6810. this.myPanel15.Name = "myPanel15";
  6811. this.myPanel15.Size = new System.Drawing.Size(217, 312);
  6812. this.myPanel15.TabIndex = 138;
  6813. //
  6814. // label269
  6815. //
  6816. this.label269.AutoSize = true;
  6817. this.label269.BackColor = System.Drawing.Color.Transparent;
  6818. this.label269.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6819. this.label269.Location = new System.Drawing.Point(4, 241);
  6820. this.label269.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6821. this.label269.Name = "label269";
  6822. this.label269.Size = new System.Drawing.Size(82, 15);
  6823. this.label269.TabIndex = 106;
  6824. this.label269.Text = "光电状态:";
  6825. //
  6826. // label270
  6827. //
  6828. this.label270.AutoSize = true;
  6829. this.label270.BackColor = System.Drawing.Color.Transparent;
  6830. this.label270.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6831. this.label270.Location = new System.Drawing.Point(3, 189);
  6832. this.label270.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6833. this.label270.Name = "label270";
  6834. this.label270.Size = new System.Drawing.Size(82, 15);
  6835. this.label270.TabIndex = 105;
  6836. this.label270.Text = "起始地址:";
  6837. //
  6838. // label271
  6839. //
  6840. this.label271.AutoSize = true;
  6841. this.label271.BackColor = System.Drawing.Color.Transparent;
  6842. this.label271.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6843. this.label271.ForeColor = System.Drawing.SystemColors.ControlText;
  6844. this.label271.Location = new System.Drawing.Point(3, 214);
  6845. this.label271.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6846. this.label271.Name = "label271";
  6847. this.label271.Size = new System.Drawing.Size(82, 15);
  6848. this.label271.TabIndex = 104;
  6849. this.label271.Text = "目标地址:";
  6850. //
  6851. // rgvOptType11
  6852. //
  6853. this.rgvOptType11.AutoSize = true;
  6854. this.rgvOptType11.BackColor = System.Drawing.Color.Transparent;
  6855. this.rgvOptType11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6856. this.rgvOptType11.ForeColor = System.Drawing.Color.Blue;
  6857. this.rgvOptType11.Location = new System.Drawing.Point(96, 166);
  6858. this.rgvOptType11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6859. this.rgvOptType11.Name = "rgvOptType11";
  6860. this.rgvOptType11.Size = new System.Drawing.Size(31, 15);
  6861. this.rgvOptType11.TabIndex = 101;
  6862. this.rgvOptType11.Text = "---";
  6863. //
  6864. // label273
  6865. //
  6866. this.label273.AutoSize = true;
  6867. this.label273.BackColor = System.Drawing.Color.Transparent;
  6868. this.label273.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6869. this.label273.Location = new System.Drawing.Point(3, 166);
  6870. this.label273.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6871. this.label273.Name = "label273";
  6872. this.label273.Size = new System.Drawing.Size(82, 15);
  6873. this.label273.TabIndex = 100;
  6874. this.label273.Text = "作业类型:";
  6875. //
  6876. // label274
  6877. //
  6878. this.label274.BackColor = System.Drawing.Color.Transparent;
  6879. this.label274.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6880. this.label274.ForeColor = System.Drawing.Color.Red;
  6881. this.label274.Location = new System.Drawing.Point(7, 58);
  6882. this.label274.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6883. this.label274.Name = "label274";
  6884. this.label274.Size = new System.Drawing.Size(201, 30);
  6885. this.label274.TabIndex = 92;
  6886. //
  6887. // rgvPosCurr11
  6888. //
  6889. this.rgvPosCurr11.AutoSize = true;
  6890. this.rgvPosCurr11.BackColor = System.Drawing.Color.Transparent;
  6891. this.rgvPosCurr11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6892. this.rgvPosCurr11.ForeColor = System.Drawing.Color.Blue;
  6893. this.rgvPosCurr11.Location = new System.Drawing.Point(99, 242);
  6894. this.rgvPosCurr11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6895. this.rgvPosCurr11.Name = "rgvPosCurr11";
  6896. this.rgvPosCurr11.Size = new System.Drawing.Size(31, 15);
  6897. this.rgvPosCurr11.TabIndex = 72;
  6898. this.rgvPosCurr11.Text = "---";
  6899. //
  6900. // rgvMode11
  6901. //
  6902. this.rgvMode11.AutoSize = true;
  6903. this.rgvMode11.BackColor = System.Drawing.Color.Transparent;
  6904. this.rgvMode11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6905. this.rgvMode11.ForeColor = System.Drawing.Color.Blue;
  6906. this.rgvMode11.Location = new System.Drawing.Point(96, 92);
  6907. this.rgvMode11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6908. this.rgvMode11.Name = "rgvMode11";
  6909. this.rgvMode11.Size = new System.Drawing.Size(31, 15);
  6910. this.rgvMode11.TabIndex = 12;
  6911. this.rgvMode11.Text = "---";
  6912. //
  6913. // rgvOrdId11
  6914. //
  6915. this.rgvOrdId11.AutoSize = true;
  6916. this.rgvOrdId11.BackColor = System.Drawing.Color.Transparent;
  6917. this.rgvOrdId11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6918. this.rgvOrdId11.ForeColor = System.Drawing.Color.Blue;
  6919. this.rgvOrdId11.Location = new System.Drawing.Point(96, 142);
  6920. this.rgvOrdId11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6921. this.rgvOrdId11.Name = "rgvOrdId11";
  6922. this.rgvOrdId11.Size = new System.Drawing.Size(31, 15);
  6923. this.rgvOrdId11.TabIndex = 64;
  6924. this.rgvOrdId11.Text = "---";
  6925. //
  6926. // label278
  6927. //
  6928. this.label278.AutoSize = true;
  6929. this.label278.BackColor = System.Drawing.Color.Transparent;
  6930. this.label278.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6931. this.label278.Location = new System.Drawing.Point(3, 142);
  6932. this.label278.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6933. this.label278.Name = "label278";
  6934. this.label278.Size = new System.Drawing.Size(82, 15);
  6935. this.label278.TabIndex = 63;
  6936. this.label278.Text = "工作指令:";
  6937. //
  6938. // rgvPosTo11
  6939. //
  6940. this.rgvPosTo11.AutoSize = true;
  6941. this.rgvPosTo11.BackColor = System.Drawing.Color.Transparent;
  6942. this.rgvPosTo11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6943. this.rgvPosTo11.ForeColor = System.Drawing.Color.Blue;
  6944. this.rgvPosTo11.Location = new System.Drawing.Point(97, 215);
  6945. this.rgvPosTo11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6946. this.rgvPosTo11.Name = "rgvPosTo11";
  6947. this.rgvPosTo11.Size = new System.Drawing.Size(31, 15);
  6948. this.rgvPosTo11.TabIndex = 16;
  6949. this.rgvPosTo11.Text = "---";
  6950. //
  6951. // label280
  6952. //
  6953. this.label280.AutoSize = true;
  6954. this.label280.BackColor = System.Drawing.Color.Transparent;
  6955. this.label280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6956. this.label280.Location = new System.Drawing.Point(3, 92);
  6957. this.label280.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6958. this.label280.Name = "label280";
  6959. this.label280.Size = new System.Drawing.Size(82, 15);
  6960. this.label280.TabIndex = 15;
  6961. this.label280.Text = "工作模式:";
  6962. //
  6963. // rgvPosFrom11
  6964. //
  6965. this.rgvPosFrom11.AutoSize = true;
  6966. this.rgvPosFrom11.BackColor = System.Drawing.Color.Transparent;
  6967. this.rgvPosFrom11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6968. this.rgvPosFrom11.ForeColor = System.Drawing.Color.Blue;
  6969. this.rgvPosFrom11.Location = new System.Drawing.Point(97, 190);
  6970. this.rgvPosFrom11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6971. this.rgvPosFrom11.Name = "rgvPosFrom11";
  6972. this.rgvPosFrom11.Size = new System.Drawing.Size(31, 15);
  6973. this.rgvPosFrom11.TabIndex = 14;
  6974. this.rgvPosFrom11.Text = "---";
  6975. //
  6976. // rgvStatus11
  6977. //
  6978. this.rgvStatus11.AutoSize = true;
  6979. this.rgvStatus11.BackColor = System.Drawing.Color.Transparent;
  6980. this.rgvStatus11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6981. this.rgvStatus11.ForeColor = System.Drawing.Color.Blue;
  6982. this.rgvStatus11.Location = new System.Drawing.Point(96, 115);
  6983. this.rgvStatus11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6984. this.rgvStatus11.Name = "rgvStatus11";
  6985. this.rgvStatus11.Size = new System.Drawing.Size(31, 15);
  6986. this.rgvStatus11.TabIndex = 10;
  6987. this.rgvStatus11.Text = "---";
  6988. //
  6989. // label283
  6990. //
  6991. this.label283.AutoSize = true;
  6992. this.label283.BackColor = System.Drawing.Color.Transparent;
  6993. this.label283.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6994. this.label283.Location = new System.Drawing.Point(3, 115);
  6995. this.label283.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6996. this.label283.Name = "label283";
  6997. this.label283.Size = new System.Drawing.Size(82, 15);
  6998. this.label283.TabIndex = 6;
  6999. this.label283.Text = "工作状态:";
  7000. //
  7001. // lblrgv11
  7002. //
  7003. this.lblrgv11.AutoSize = true;
  7004. this.lblrgv11.BackColor = System.Drawing.Color.Transparent;
  7005. this.lblrgv11.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7006. this.lblrgv11.Location = new System.Drawing.Point(59, 32);
  7007. this.lblrgv11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7008. this.lblrgv11.Name = "lblrgv11";
  7009. this.lblrgv11.Size = new System.Drawing.Size(64, 20);
  7010. this.lblrgv11.TabIndex = 0;
  7011. this.lblrgv11.Text = "RGV11";
  7012. //
  7013. // GV11
  7014. //
  7015. this.GV11.BackColor = System.Drawing.Color.Transparent;
  7016. this.GV11.Image = ((System.Drawing.Image)(resources.GetObject("GV11.Image")));
  7017. this.GV11.Location = new System.Drawing.Point(88, -2);
  7018. this.GV11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7019. this.GV11.Name = "GV11";
  7020. this.GV11.Size = new System.Drawing.Size(35, 32);
  7021. this.GV11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7022. this.GV11.TabIndex = 65;
  7023. this.GV11.TabStop = false;
  7024. this.GV11.Tag = "1";
  7025. //
  7026. // pictureBox31
  7027. //
  7028. this.pictureBox31.BackColor = System.Drawing.Color.Transparent;
  7029. this.pictureBox31.Location = new System.Drawing.Point(87, -2);
  7030. this.pictureBox31.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7031. this.pictureBox31.Name = "pictureBox31";
  7032. this.pictureBox31.Size = new System.Drawing.Size(35, 32);
  7033. this.pictureBox31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7034. this.pictureBox31.TabIndex = 5;
  7035. this.pictureBox31.TabStop = false;
  7036. //
  7037. // myPanel14
  7038. //
  7039. this.myPanel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel14.BackgroundImage")));
  7040. this.myPanel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7041. this.myPanel14.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7042. this.myPanel14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7043. this.myPanel14.Controls.Add(this.label253);
  7044. this.myPanel14.Controls.Add(this.label254);
  7045. this.myPanel14.Controls.Add(this.label255);
  7046. this.myPanel14.Controls.Add(this.rgvOptType10);
  7047. this.myPanel14.Controls.Add(this.label257);
  7048. this.myPanel14.Controls.Add(this.label258);
  7049. this.myPanel14.Controls.Add(this.rgvPosCurr10);
  7050. this.myPanel14.Controls.Add(this.rgvMode10);
  7051. this.myPanel14.Controls.Add(this.rgvOrdId10);
  7052. this.myPanel14.Controls.Add(this.label262);
  7053. this.myPanel14.Controls.Add(this.rgvPosTo10);
  7054. this.myPanel14.Controls.Add(this.label264);
  7055. this.myPanel14.Controls.Add(this.rgvPosFrom10);
  7056. this.myPanel14.Controls.Add(this.rgvStatus10);
  7057. this.myPanel14.Controls.Add(this.label267);
  7058. this.myPanel14.Controls.Add(this.lblrgv10);
  7059. this.myPanel14.Controls.Add(this.GV10);
  7060. this.myPanel14.Controls.Add(this.pictureBox28);
  7061. this.myPanel14.Location = new System.Drawing.Point(3753, 2);
  7062. this.myPanel14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7063. this.myPanel14.Name = "myPanel14";
  7064. this.myPanel14.Size = new System.Drawing.Size(217, 312);
  7065. this.myPanel14.TabIndex = 137;
  7066. //
  7067. // label253
  7068. //
  7069. this.label253.AutoSize = true;
  7070. this.label253.BackColor = System.Drawing.Color.Transparent;
  7071. this.label253.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7072. this.label253.Location = new System.Drawing.Point(4, 241);
  7073. this.label253.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7074. this.label253.Name = "label253";
  7075. this.label253.Size = new System.Drawing.Size(82, 15);
  7076. this.label253.TabIndex = 106;
  7077. this.label253.Text = "光电状态:";
  7078. //
  7079. // label254
  7080. //
  7081. this.label254.AutoSize = true;
  7082. this.label254.BackColor = System.Drawing.Color.Transparent;
  7083. this.label254.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7084. this.label254.Location = new System.Drawing.Point(3, 189);
  7085. this.label254.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7086. this.label254.Name = "label254";
  7087. this.label254.Size = new System.Drawing.Size(82, 15);
  7088. this.label254.TabIndex = 105;
  7089. this.label254.Text = "起始地址:";
  7090. //
  7091. // label255
  7092. //
  7093. this.label255.AutoSize = true;
  7094. this.label255.BackColor = System.Drawing.Color.Transparent;
  7095. this.label255.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7096. this.label255.ForeColor = System.Drawing.SystemColors.ControlText;
  7097. this.label255.Location = new System.Drawing.Point(3, 214);
  7098. this.label255.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7099. this.label255.Name = "label255";
  7100. this.label255.Size = new System.Drawing.Size(82, 15);
  7101. this.label255.TabIndex = 104;
  7102. this.label255.Text = "目标地址:";
  7103. //
  7104. // rgvOptType10
  7105. //
  7106. this.rgvOptType10.AutoSize = true;
  7107. this.rgvOptType10.BackColor = System.Drawing.Color.Transparent;
  7108. this.rgvOptType10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7109. this.rgvOptType10.ForeColor = System.Drawing.Color.Blue;
  7110. this.rgvOptType10.Location = new System.Drawing.Point(96, 166);
  7111. this.rgvOptType10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7112. this.rgvOptType10.Name = "rgvOptType10";
  7113. this.rgvOptType10.Size = new System.Drawing.Size(31, 15);
  7114. this.rgvOptType10.TabIndex = 101;
  7115. this.rgvOptType10.Text = "---";
  7116. //
  7117. // label257
  7118. //
  7119. this.label257.AutoSize = true;
  7120. this.label257.BackColor = System.Drawing.Color.Transparent;
  7121. this.label257.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7122. this.label257.Location = new System.Drawing.Point(3, 166);
  7123. this.label257.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7124. this.label257.Name = "label257";
  7125. this.label257.Size = new System.Drawing.Size(82, 15);
  7126. this.label257.TabIndex = 100;
  7127. this.label257.Text = "作业类型:";
  7128. //
  7129. // label258
  7130. //
  7131. this.label258.BackColor = System.Drawing.Color.Transparent;
  7132. this.label258.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7133. this.label258.ForeColor = System.Drawing.Color.Red;
  7134. this.label258.Location = new System.Drawing.Point(7, 58);
  7135. this.label258.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7136. this.label258.Name = "label258";
  7137. this.label258.Size = new System.Drawing.Size(201, 30);
  7138. this.label258.TabIndex = 92;
  7139. //
  7140. // rgvPosCurr10
  7141. //
  7142. this.rgvPosCurr10.AutoSize = true;
  7143. this.rgvPosCurr10.BackColor = System.Drawing.Color.Transparent;
  7144. this.rgvPosCurr10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7145. this.rgvPosCurr10.ForeColor = System.Drawing.Color.Blue;
  7146. this.rgvPosCurr10.Location = new System.Drawing.Point(99, 242);
  7147. this.rgvPosCurr10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7148. this.rgvPosCurr10.Name = "rgvPosCurr10";
  7149. this.rgvPosCurr10.Size = new System.Drawing.Size(31, 15);
  7150. this.rgvPosCurr10.TabIndex = 72;
  7151. this.rgvPosCurr10.Text = "---";
  7152. //
  7153. // rgvMode10
  7154. //
  7155. this.rgvMode10.AutoSize = true;
  7156. this.rgvMode10.BackColor = System.Drawing.Color.Transparent;
  7157. this.rgvMode10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7158. this.rgvMode10.ForeColor = System.Drawing.Color.Blue;
  7159. this.rgvMode10.Location = new System.Drawing.Point(96, 92);
  7160. this.rgvMode10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7161. this.rgvMode10.Name = "rgvMode10";
  7162. this.rgvMode10.Size = new System.Drawing.Size(31, 15);
  7163. this.rgvMode10.TabIndex = 12;
  7164. this.rgvMode10.Text = "---";
  7165. //
  7166. // rgvOrdId10
  7167. //
  7168. this.rgvOrdId10.AutoSize = true;
  7169. this.rgvOrdId10.BackColor = System.Drawing.Color.Transparent;
  7170. this.rgvOrdId10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7171. this.rgvOrdId10.ForeColor = System.Drawing.Color.Blue;
  7172. this.rgvOrdId10.Location = new System.Drawing.Point(96, 142);
  7173. this.rgvOrdId10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7174. this.rgvOrdId10.Name = "rgvOrdId10";
  7175. this.rgvOrdId10.Size = new System.Drawing.Size(31, 15);
  7176. this.rgvOrdId10.TabIndex = 64;
  7177. this.rgvOrdId10.Text = "---";
  7178. //
  7179. // label262
  7180. //
  7181. this.label262.AutoSize = true;
  7182. this.label262.BackColor = System.Drawing.Color.Transparent;
  7183. this.label262.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7184. this.label262.Location = new System.Drawing.Point(3, 142);
  7185. this.label262.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7186. this.label262.Name = "label262";
  7187. this.label262.Size = new System.Drawing.Size(82, 15);
  7188. this.label262.TabIndex = 63;
  7189. this.label262.Text = "工作指令:";
  7190. //
  7191. // rgvPosTo10
  7192. //
  7193. this.rgvPosTo10.AutoSize = true;
  7194. this.rgvPosTo10.BackColor = System.Drawing.Color.Transparent;
  7195. this.rgvPosTo10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7196. this.rgvPosTo10.ForeColor = System.Drawing.Color.Blue;
  7197. this.rgvPosTo10.Location = new System.Drawing.Point(97, 215);
  7198. this.rgvPosTo10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7199. this.rgvPosTo10.Name = "rgvPosTo10";
  7200. this.rgvPosTo10.Size = new System.Drawing.Size(31, 15);
  7201. this.rgvPosTo10.TabIndex = 16;
  7202. this.rgvPosTo10.Text = "---";
  7203. //
  7204. // label264
  7205. //
  7206. this.label264.AutoSize = true;
  7207. this.label264.BackColor = System.Drawing.Color.Transparent;
  7208. this.label264.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7209. this.label264.Location = new System.Drawing.Point(3, 92);
  7210. this.label264.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7211. this.label264.Name = "label264";
  7212. this.label264.Size = new System.Drawing.Size(82, 15);
  7213. this.label264.TabIndex = 15;
  7214. this.label264.Text = "工作模式:";
  7215. //
  7216. // rgvPosFrom10
  7217. //
  7218. this.rgvPosFrom10.AutoSize = true;
  7219. this.rgvPosFrom10.BackColor = System.Drawing.Color.Transparent;
  7220. this.rgvPosFrom10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7221. this.rgvPosFrom10.ForeColor = System.Drawing.Color.Blue;
  7222. this.rgvPosFrom10.Location = new System.Drawing.Point(97, 190);
  7223. this.rgvPosFrom10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7224. this.rgvPosFrom10.Name = "rgvPosFrom10";
  7225. this.rgvPosFrom10.Size = new System.Drawing.Size(31, 15);
  7226. this.rgvPosFrom10.TabIndex = 14;
  7227. this.rgvPosFrom10.Text = "---";
  7228. //
  7229. // rgvStatus10
  7230. //
  7231. this.rgvStatus10.AutoSize = true;
  7232. this.rgvStatus10.BackColor = System.Drawing.Color.Transparent;
  7233. this.rgvStatus10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7234. this.rgvStatus10.ForeColor = System.Drawing.Color.Blue;
  7235. this.rgvStatus10.Location = new System.Drawing.Point(96, 115);
  7236. this.rgvStatus10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7237. this.rgvStatus10.Name = "rgvStatus10";
  7238. this.rgvStatus10.Size = new System.Drawing.Size(31, 15);
  7239. this.rgvStatus10.TabIndex = 10;
  7240. this.rgvStatus10.Text = "---";
  7241. //
  7242. // label267
  7243. //
  7244. this.label267.AutoSize = true;
  7245. this.label267.BackColor = System.Drawing.Color.Transparent;
  7246. this.label267.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7247. this.label267.Location = new System.Drawing.Point(3, 115);
  7248. this.label267.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7249. this.label267.Name = "label267";
  7250. this.label267.Size = new System.Drawing.Size(82, 15);
  7251. this.label267.TabIndex = 6;
  7252. this.label267.Text = "工作状态:";
  7253. //
  7254. // lblrgv10
  7255. //
  7256. this.lblrgv10.AutoSize = true;
  7257. this.lblrgv10.BackColor = System.Drawing.Color.Transparent;
  7258. this.lblrgv10.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7259. this.lblrgv10.Location = new System.Drawing.Point(59, 32);
  7260. this.lblrgv10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7261. this.lblrgv10.Name = "lblrgv10";
  7262. this.lblrgv10.Size = new System.Drawing.Size(64, 20);
  7263. this.lblrgv10.TabIndex = 0;
  7264. this.lblrgv10.Text = "RGV10";
  7265. //
  7266. // GV10
  7267. //
  7268. this.GV10.BackColor = System.Drawing.Color.Transparent;
  7269. this.GV10.Image = ((System.Drawing.Image)(resources.GetObject("GV10.Image")));
  7270. this.GV10.Location = new System.Drawing.Point(88, -2);
  7271. this.GV10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7272. this.GV10.Name = "GV10";
  7273. this.GV10.Size = new System.Drawing.Size(35, 32);
  7274. this.GV10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7275. this.GV10.TabIndex = 65;
  7276. this.GV10.TabStop = false;
  7277. this.GV10.Tag = "1";
  7278. //
  7279. // pictureBox28
  7280. //
  7281. this.pictureBox28.BackColor = System.Drawing.Color.Transparent;
  7282. this.pictureBox28.Location = new System.Drawing.Point(87, -2);
  7283. this.pictureBox28.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7284. this.pictureBox28.Name = "pictureBox28";
  7285. this.pictureBox28.Size = new System.Drawing.Size(35, 32);
  7286. this.pictureBox28.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7287. this.pictureBox28.TabIndex = 5;
  7288. this.pictureBox28.TabStop = false;
  7289. //
  7290. // myPanel13
  7291. //
  7292. this.myPanel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel13.BackgroundImage")));
  7293. this.myPanel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7294. this.myPanel13.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7295. this.myPanel13.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7296. this.myPanel13.Controls.Add(this.label237);
  7297. this.myPanel13.Controls.Add(this.label238);
  7298. this.myPanel13.Controls.Add(this.label239);
  7299. this.myPanel13.Controls.Add(this.rgvOptType9);
  7300. this.myPanel13.Controls.Add(this.label241);
  7301. this.myPanel13.Controls.Add(this.label242);
  7302. this.myPanel13.Controls.Add(this.rgvPosCurr9);
  7303. this.myPanel13.Controls.Add(this.rgvMode9);
  7304. this.myPanel13.Controls.Add(this.rgvOrdId9);
  7305. this.myPanel13.Controls.Add(this.label246);
  7306. this.myPanel13.Controls.Add(this.rgvPosTo9);
  7307. this.myPanel13.Controls.Add(this.label248);
  7308. this.myPanel13.Controls.Add(this.rgvPosFrom9);
  7309. this.myPanel13.Controls.Add(this.rgvStatus9);
  7310. this.myPanel13.Controls.Add(this.label251);
  7311. this.myPanel13.Controls.Add(this.lblrgv9);
  7312. this.myPanel13.Controls.Add(this.GV9);
  7313. this.myPanel13.Controls.Add(this.pictureBox26);
  7314. this.myPanel13.Location = new System.Drawing.Point(3535, 2);
  7315. this.myPanel13.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7316. this.myPanel13.Name = "myPanel13";
  7317. this.myPanel13.Size = new System.Drawing.Size(217, 312);
  7318. this.myPanel13.TabIndex = 136;
  7319. //
  7320. // label237
  7321. //
  7322. this.label237.AutoSize = true;
  7323. this.label237.BackColor = System.Drawing.Color.Transparent;
  7324. this.label237.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7325. this.label237.Location = new System.Drawing.Point(4, 241);
  7326. this.label237.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7327. this.label237.Name = "label237";
  7328. this.label237.Size = new System.Drawing.Size(82, 15);
  7329. this.label237.TabIndex = 106;
  7330. this.label237.Text = "光电状态:";
  7331. //
  7332. // label238
  7333. //
  7334. this.label238.AutoSize = true;
  7335. this.label238.BackColor = System.Drawing.Color.Transparent;
  7336. this.label238.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7337. this.label238.Location = new System.Drawing.Point(3, 189);
  7338. this.label238.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7339. this.label238.Name = "label238";
  7340. this.label238.Size = new System.Drawing.Size(82, 15);
  7341. this.label238.TabIndex = 105;
  7342. this.label238.Text = "起始地址:";
  7343. //
  7344. // label239
  7345. //
  7346. this.label239.AutoSize = true;
  7347. this.label239.BackColor = System.Drawing.Color.Transparent;
  7348. this.label239.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7349. this.label239.ForeColor = System.Drawing.SystemColors.ControlText;
  7350. this.label239.Location = new System.Drawing.Point(3, 214);
  7351. this.label239.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7352. this.label239.Name = "label239";
  7353. this.label239.Size = new System.Drawing.Size(82, 15);
  7354. this.label239.TabIndex = 104;
  7355. this.label239.Text = "目标地址:";
  7356. //
  7357. // rgvOptType9
  7358. //
  7359. this.rgvOptType9.AutoSize = true;
  7360. this.rgvOptType9.BackColor = System.Drawing.Color.Transparent;
  7361. this.rgvOptType9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7362. this.rgvOptType9.ForeColor = System.Drawing.Color.Blue;
  7363. this.rgvOptType9.Location = new System.Drawing.Point(96, 166);
  7364. this.rgvOptType9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7365. this.rgvOptType9.Name = "rgvOptType9";
  7366. this.rgvOptType9.Size = new System.Drawing.Size(31, 15);
  7367. this.rgvOptType9.TabIndex = 101;
  7368. this.rgvOptType9.Text = "---";
  7369. //
  7370. // label241
  7371. //
  7372. this.label241.AutoSize = true;
  7373. this.label241.BackColor = System.Drawing.Color.Transparent;
  7374. this.label241.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7375. this.label241.Location = new System.Drawing.Point(3, 166);
  7376. this.label241.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7377. this.label241.Name = "label241";
  7378. this.label241.Size = new System.Drawing.Size(82, 15);
  7379. this.label241.TabIndex = 100;
  7380. this.label241.Text = "作业类型:";
  7381. //
  7382. // label242
  7383. //
  7384. this.label242.BackColor = System.Drawing.Color.Transparent;
  7385. this.label242.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7386. this.label242.ForeColor = System.Drawing.Color.Red;
  7387. this.label242.Location = new System.Drawing.Point(7, 58);
  7388. this.label242.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7389. this.label242.Name = "label242";
  7390. this.label242.Size = new System.Drawing.Size(201, 30);
  7391. this.label242.TabIndex = 92;
  7392. //
  7393. // rgvPosCurr9
  7394. //
  7395. this.rgvPosCurr9.AutoSize = true;
  7396. this.rgvPosCurr9.BackColor = System.Drawing.Color.Transparent;
  7397. this.rgvPosCurr9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7398. this.rgvPosCurr9.ForeColor = System.Drawing.Color.Blue;
  7399. this.rgvPosCurr9.Location = new System.Drawing.Point(99, 242);
  7400. this.rgvPosCurr9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7401. this.rgvPosCurr9.Name = "rgvPosCurr9";
  7402. this.rgvPosCurr9.Size = new System.Drawing.Size(31, 15);
  7403. this.rgvPosCurr9.TabIndex = 72;
  7404. this.rgvPosCurr9.Text = "---";
  7405. //
  7406. // rgvMode9
  7407. //
  7408. this.rgvMode9.AutoSize = true;
  7409. this.rgvMode9.BackColor = System.Drawing.Color.Transparent;
  7410. this.rgvMode9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7411. this.rgvMode9.ForeColor = System.Drawing.Color.Blue;
  7412. this.rgvMode9.Location = new System.Drawing.Point(96, 92);
  7413. this.rgvMode9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7414. this.rgvMode9.Name = "rgvMode9";
  7415. this.rgvMode9.Size = new System.Drawing.Size(31, 15);
  7416. this.rgvMode9.TabIndex = 12;
  7417. this.rgvMode9.Text = "---";
  7418. //
  7419. // rgvOrdId9
  7420. //
  7421. this.rgvOrdId9.AutoSize = true;
  7422. this.rgvOrdId9.BackColor = System.Drawing.Color.Transparent;
  7423. this.rgvOrdId9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7424. this.rgvOrdId9.ForeColor = System.Drawing.Color.Blue;
  7425. this.rgvOrdId9.Location = new System.Drawing.Point(96, 142);
  7426. this.rgvOrdId9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7427. this.rgvOrdId9.Name = "rgvOrdId9";
  7428. this.rgvOrdId9.Size = new System.Drawing.Size(31, 15);
  7429. this.rgvOrdId9.TabIndex = 64;
  7430. this.rgvOrdId9.Text = "---";
  7431. //
  7432. // label246
  7433. //
  7434. this.label246.AutoSize = true;
  7435. this.label246.BackColor = System.Drawing.Color.Transparent;
  7436. this.label246.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7437. this.label246.Location = new System.Drawing.Point(3, 142);
  7438. this.label246.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7439. this.label246.Name = "label246";
  7440. this.label246.Size = new System.Drawing.Size(82, 15);
  7441. this.label246.TabIndex = 63;
  7442. this.label246.Text = "工作指令:";
  7443. //
  7444. // rgvPosTo9
  7445. //
  7446. this.rgvPosTo9.AutoSize = true;
  7447. this.rgvPosTo9.BackColor = System.Drawing.Color.Transparent;
  7448. this.rgvPosTo9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7449. this.rgvPosTo9.ForeColor = System.Drawing.Color.Blue;
  7450. this.rgvPosTo9.Location = new System.Drawing.Point(97, 215);
  7451. this.rgvPosTo9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7452. this.rgvPosTo9.Name = "rgvPosTo9";
  7453. this.rgvPosTo9.Size = new System.Drawing.Size(31, 15);
  7454. this.rgvPosTo9.TabIndex = 16;
  7455. this.rgvPosTo9.Text = "---";
  7456. //
  7457. // label248
  7458. //
  7459. this.label248.AutoSize = true;
  7460. this.label248.BackColor = System.Drawing.Color.Transparent;
  7461. this.label248.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7462. this.label248.Location = new System.Drawing.Point(3, 92);
  7463. this.label248.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7464. this.label248.Name = "label248";
  7465. this.label248.Size = new System.Drawing.Size(82, 15);
  7466. this.label248.TabIndex = 15;
  7467. this.label248.Text = "工作模式:";
  7468. //
  7469. // rgvPosFrom9
  7470. //
  7471. this.rgvPosFrom9.AutoSize = true;
  7472. this.rgvPosFrom9.BackColor = System.Drawing.Color.Transparent;
  7473. this.rgvPosFrom9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7474. this.rgvPosFrom9.ForeColor = System.Drawing.Color.Blue;
  7475. this.rgvPosFrom9.Location = new System.Drawing.Point(97, 190);
  7476. this.rgvPosFrom9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7477. this.rgvPosFrom9.Name = "rgvPosFrom9";
  7478. this.rgvPosFrom9.Size = new System.Drawing.Size(31, 15);
  7479. this.rgvPosFrom9.TabIndex = 14;
  7480. this.rgvPosFrom9.Text = "---";
  7481. //
  7482. // rgvStatus9
  7483. //
  7484. this.rgvStatus9.AutoSize = true;
  7485. this.rgvStatus9.BackColor = System.Drawing.Color.Transparent;
  7486. this.rgvStatus9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7487. this.rgvStatus9.ForeColor = System.Drawing.Color.Blue;
  7488. this.rgvStatus9.Location = new System.Drawing.Point(96, 115);
  7489. this.rgvStatus9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7490. this.rgvStatus9.Name = "rgvStatus9";
  7491. this.rgvStatus9.Size = new System.Drawing.Size(31, 15);
  7492. this.rgvStatus9.TabIndex = 10;
  7493. this.rgvStatus9.Text = "---";
  7494. //
  7495. // label251
  7496. //
  7497. this.label251.AutoSize = true;
  7498. this.label251.BackColor = System.Drawing.Color.Transparent;
  7499. this.label251.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7500. this.label251.Location = new System.Drawing.Point(3, 115);
  7501. this.label251.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7502. this.label251.Name = "label251";
  7503. this.label251.Size = new System.Drawing.Size(82, 15);
  7504. this.label251.TabIndex = 6;
  7505. this.label251.Text = "工作状态:";
  7506. //
  7507. // lblrgv9
  7508. //
  7509. this.lblrgv9.AutoSize = true;
  7510. this.lblrgv9.BackColor = System.Drawing.Color.Transparent;
  7511. this.lblrgv9.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7512. this.lblrgv9.Location = new System.Drawing.Point(59, 32);
  7513. this.lblrgv9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7514. this.lblrgv9.Name = "lblrgv9";
  7515. this.lblrgv9.Size = new System.Drawing.Size(53, 20);
  7516. this.lblrgv9.TabIndex = 0;
  7517. this.lblrgv9.Text = "RGV9";
  7518. //
  7519. // GV9
  7520. //
  7521. this.GV9.BackColor = System.Drawing.Color.Transparent;
  7522. this.GV9.Image = ((System.Drawing.Image)(resources.GetObject("GV9.Image")));
  7523. this.GV9.Location = new System.Drawing.Point(88, -2);
  7524. this.GV9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7525. this.GV9.Name = "GV9";
  7526. this.GV9.Size = new System.Drawing.Size(35, 32);
  7527. this.GV9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7528. this.GV9.TabIndex = 65;
  7529. this.GV9.TabStop = false;
  7530. this.GV9.Tag = "1";
  7531. //
  7532. // pictureBox26
  7533. //
  7534. this.pictureBox26.BackColor = System.Drawing.Color.Transparent;
  7535. this.pictureBox26.Location = new System.Drawing.Point(87, -2);
  7536. this.pictureBox26.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7537. this.pictureBox26.Name = "pictureBox26";
  7538. this.pictureBox26.Size = new System.Drawing.Size(35, 32);
  7539. this.pictureBox26.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7540. this.pictureBox26.TabIndex = 5;
  7541. this.pictureBox26.TabStop = false;
  7542. //
  7543. // myPanel12
  7544. //
  7545. this.myPanel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel12.BackgroundImage")));
  7546. this.myPanel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7547. this.myPanel12.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7548. this.myPanel12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7549. this.myPanel12.Controls.Add(this.label221);
  7550. this.myPanel12.Controls.Add(this.label222);
  7551. this.myPanel12.Controls.Add(this.label223);
  7552. this.myPanel12.Controls.Add(this.rgvOptType7);
  7553. this.myPanel12.Controls.Add(this.label225);
  7554. this.myPanel12.Controls.Add(this.label226);
  7555. this.myPanel12.Controls.Add(this.rgvPosCurr7);
  7556. this.myPanel12.Controls.Add(this.rgvMode7);
  7557. this.myPanel12.Controls.Add(this.rgvOrdId7);
  7558. this.myPanel12.Controls.Add(this.label230);
  7559. this.myPanel12.Controls.Add(this.rgvPosTo7);
  7560. this.myPanel12.Controls.Add(this.label232);
  7561. this.myPanel12.Controls.Add(this.rgvPosFrom7);
  7562. this.myPanel12.Controls.Add(this.rgvStatus7);
  7563. this.myPanel12.Controls.Add(this.label235);
  7564. this.myPanel12.Controls.Add(this.lblrgv7);
  7565. this.myPanel12.Controls.Add(this.GV7);
  7566. this.myPanel12.Controls.Add(this.pictureBox24);
  7567. this.myPanel12.Location = new System.Drawing.Point(3097, 2);
  7568. this.myPanel12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7569. this.myPanel12.Name = "myPanel12";
  7570. this.myPanel12.Size = new System.Drawing.Size(217, 312);
  7571. this.myPanel12.TabIndex = 135;
  7572. //
  7573. // label221
  7574. //
  7575. this.label221.AutoSize = true;
  7576. this.label221.BackColor = System.Drawing.Color.Transparent;
  7577. this.label221.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7578. this.label221.Location = new System.Drawing.Point(4, 241);
  7579. this.label221.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7580. this.label221.Name = "label221";
  7581. this.label221.Size = new System.Drawing.Size(82, 15);
  7582. this.label221.TabIndex = 106;
  7583. this.label221.Text = "光电状态:";
  7584. //
  7585. // label222
  7586. //
  7587. this.label222.AutoSize = true;
  7588. this.label222.BackColor = System.Drawing.Color.Transparent;
  7589. this.label222.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7590. this.label222.Location = new System.Drawing.Point(3, 189);
  7591. this.label222.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7592. this.label222.Name = "label222";
  7593. this.label222.Size = new System.Drawing.Size(82, 15);
  7594. this.label222.TabIndex = 105;
  7595. this.label222.Text = "起始地址:";
  7596. //
  7597. // label223
  7598. //
  7599. this.label223.AutoSize = true;
  7600. this.label223.BackColor = System.Drawing.Color.Transparent;
  7601. this.label223.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7602. this.label223.ForeColor = System.Drawing.SystemColors.ControlText;
  7603. this.label223.Location = new System.Drawing.Point(3, 214);
  7604. this.label223.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7605. this.label223.Name = "label223";
  7606. this.label223.Size = new System.Drawing.Size(82, 15);
  7607. this.label223.TabIndex = 104;
  7608. this.label223.Text = "目标地址:";
  7609. //
  7610. // rgvOptType7
  7611. //
  7612. this.rgvOptType7.AutoSize = true;
  7613. this.rgvOptType7.BackColor = System.Drawing.Color.Transparent;
  7614. this.rgvOptType7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7615. this.rgvOptType7.ForeColor = System.Drawing.Color.Blue;
  7616. this.rgvOptType7.Location = new System.Drawing.Point(96, 166);
  7617. this.rgvOptType7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7618. this.rgvOptType7.Name = "rgvOptType7";
  7619. this.rgvOptType7.Size = new System.Drawing.Size(31, 15);
  7620. this.rgvOptType7.TabIndex = 101;
  7621. this.rgvOptType7.Text = "---";
  7622. //
  7623. // label225
  7624. //
  7625. this.label225.AutoSize = true;
  7626. this.label225.BackColor = System.Drawing.Color.Transparent;
  7627. this.label225.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7628. this.label225.Location = new System.Drawing.Point(3, 166);
  7629. this.label225.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7630. this.label225.Name = "label225";
  7631. this.label225.Size = new System.Drawing.Size(82, 15);
  7632. this.label225.TabIndex = 100;
  7633. this.label225.Text = "作业类型:";
  7634. //
  7635. // label226
  7636. //
  7637. this.label226.BackColor = System.Drawing.Color.Transparent;
  7638. this.label226.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7639. this.label226.ForeColor = System.Drawing.Color.Red;
  7640. this.label226.Location = new System.Drawing.Point(7, 58);
  7641. this.label226.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7642. this.label226.Name = "label226";
  7643. this.label226.Size = new System.Drawing.Size(201, 30);
  7644. this.label226.TabIndex = 92;
  7645. //
  7646. // rgvPosCurr7
  7647. //
  7648. this.rgvPosCurr7.AutoSize = true;
  7649. this.rgvPosCurr7.BackColor = System.Drawing.Color.Transparent;
  7650. this.rgvPosCurr7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7651. this.rgvPosCurr7.ForeColor = System.Drawing.Color.Blue;
  7652. this.rgvPosCurr7.Location = new System.Drawing.Point(99, 242);
  7653. this.rgvPosCurr7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7654. this.rgvPosCurr7.Name = "rgvPosCurr7";
  7655. this.rgvPosCurr7.Size = new System.Drawing.Size(31, 15);
  7656. this.rgvPosCurr7.TabIndex = 72;
  7657. this.rgvPosCurr7.Text = "---";
  7658. //
  7659. // rgvMode7
  7660. //
  7661. this.rgvMode7.AutoSize = true;
  7662. this.rgvMode7.BackColor = System.Drawing.Color.Transparent;
  7663. this.rgvMode7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7664. this.rgvMode7.ForeColor = System.Drawing.Color.Blue;
  7665. this.rgvMode7.Location = new System.Drawing.Point(96, 92);
  7666. this.rgvMode7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7667. this.rgvMode7.Name = "rgvMode7";
  7668. this.rgvMode7.Size = new System.Drawing.Size(31, 15);
  7669. this.rgvMode7.TabIndex = 12;
  7670. this.rgvMode7.Text = "---";
  7671. //
  7672. // rgvOrdId7
  7673. //
  7674. this.rgvOrdId7.AutoSize = true;
  7675. this.rgvOrdId7.BackColor = System.Drawing.Color.Transparent;
  7676. this.rgvOrdId7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7677. this.rgvOrdId7.ForeColor = System.Drawing.Color.Blue;
  7678. this.rgvOrdId7.Location = new System.Drawing.Point(96, 142);
  7679. this.rgvOrdId7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7680. this.rgvOrdId7.Name = "rgvOrdId7";
  7681. this.rgvOrdId7.Size = new System.Drawing.Size(31, 15);
  7682. this.rgvOrdId7.TabIndex = 64;
  7683. this.rgvOrdId7.Text = "---";
  7684. //
  7685. // label230
  7686. //
  7687. this.label230.AutoSize = true;
  7688. this.label230.BackColor = System.Drawing.Color.Transparent;
  7689. this.label230.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7690. this.label230.Location = new System.Drawing.Point(3, 142);
  7691. this.label230.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7692. this.label230.Name = "label230";
  7693. this.label230.Size = new System.Drawing.Size(82, 15);
  7694. this.label230.TabIndex = 63;
  7695. this.label230.Text = "工作指令:";
  7696. //
  7697. // rgvPosTo7
  7698. //
  7699. this.rgvPosTo7.AutoSize = true;
  7700. this.rgvPosTo7.BackColor = System.Drawing.Color.Transparent;
  7701. this.rgvPosTo7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7702. this.rgvPosTo7.ForeColor = System.Drawing.Color.Blue;
  7703. this.rgvPosTo7.Location = new System.Drawing.Point(97, 215);
  7704. this.rgvPosTo7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7705. this.rgvPosTo7.Name = "rgvPosTo7";
  7706. this.rgvPosTo7.Size = new System.Drawing.Size(31, 15);
  7707. this.rgvPosTo7.TabIndex = 16;
  7708. this.rgvPosTo7.Text = "---";
  7709. //
  7710. // label232
  7711. //
  7712. this.label232.AutoSize = true;
  7713. this.label232.BackColor = System.Drawing.Color.Transparent;
  7714. this.label232.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7715. this.label232.Location = new System.Drawing.Point(3, 92);
  7716. this.label232.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7717. this.label232.Name = "label232";
  7718. this.label232.Size = new System.Drawing.Size(82, 15);
  7719. this.label232.TabIndex = 15;
  7720. this.label232.Text = "工作模式:";
  7721. //
  7722. // rgvPosFrom7
  7723. //
  7724. this.rgvPosFrom7.AutoSize = true;
  7725. this.rgvPosFrom7.BackColor = System.Drawing.Color.Transparent;
  7726. this.rgvPosFrom7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7727. this.rgvPosFrom7.ForeColor = System.Drawing.Color.Blue;
  7728. this.rgvPosFrom7.Location = new System.Drawing.Point(97, 190);
  7729. this.rgvPosFrom7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7730. this.rgvPosFrom7.Name = "rgvPosFrom7";
  7731. this.rgvPosFrom7.Size = new System.Drawing.Size(31, 15);
  7732. this.rgvPosFrom7.TabIndex = 14;
  7733. this.rgvPosFrom7.Text = "---";
  7734. //
  7735. // rgvStatus7
  7736. //
  7737. this.rgvStatus7.AutoSize = true;
  7738. this.rgvStatus7.BackColor = System.Drawing.Color.Transparent;
  7739. this.rgvStatus7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7740. this.rgvStatus7.ForeColor = System.Drawing.Color.Blue;
  7741. this.rgvStatus7.Location = new System.Drawing.Point(96, 115);
  7742. this.rgvStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7743. this.rgvStatus7.Name = "rgvStatus7";
  7744. this.rgvStatus7.Size = new System.Drawing.Size(31, 15);
  7745. this.rgvStatus7.TabIndex = 10;
  7746. this.rgvStatus7.Text = "---";
  7747. //
  7748. // label235
  7749. //
  7750. this.label235.AutoSize = true;
  7751. this.label235.BackColor = System.Drawing.Color.Transparent;
  7752. this.label235.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7753. this.label235.Location = new System.Drawing.Point(3, 115);
  7754. this.label235.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7755. this.label235.Name = "label235";
  7756. this.label235.Size = new System.Drawing.Size(82, 15);
  7757. this.label235.TabIndex = 6;
  7758. this.label235.Text = "工作状态:";
  7759. //
  7760. // lblrgv7
  7761. //
  7762. this.lblrgv7.AutoSize = true;
  7763. this.lblrgv7.BackColor = System.Drawing.Color.Transparent;
  7764. this.lblrgv7.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7765. this.lblrgv7.Location = new System.Drawing.Point(59, 32);
  7766. this.lblrgv7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7767. this.lblrgv7.Name = "lblrgv7";
  7768. this.lblrgv7.Size = new System.Drawing.Size(53, 20);
  7769. this.lblrgv7.TabIndex = 0;
  7770. this.lblrgv7.Text = "RGV7";
  7771. //
  7772. // GV7
  7773. //
  7774. this.GV7.BackColor = System.Drawing.Color.Transparent;
  7775. this.GV7.Image = ((System.Drawing.Image)(resources.GetObject("GV7.Image")));
  7776. this.GV7.Location = new System.Drawing.Point(88, -2);
  7777. this.GV7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7778. this.GV7.Name = "GV7";
  7779. this.GV7.Size = new System.Drawing.Size(35, 32);
  7780. this.GV7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7781. this.GV7.TabIndex = 65;
  7782. this.GV7.TabStop = false;
  7783. this.GV7.Tag = "1";
  7784. //
  7785. // pictureBox24
  7786. //
  7787. this.pictureBox24.BackColor = System.Drawing.Color.Transparent;
  7788. this.pictureBox24.Location = new System.Drawing.Point(87, -2);
  7789. this.pictureBox24.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7790. this.pictureBox24.Name = "pictureBox24";
  7791. this.pictureBox24.Size = new System.Drawing.Size(35, 32);
  7792. this.pictureBox24.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7793. this.pictureBox24.TabIndex = 5;
  7794. this.pictureBox24.TabStop = false;
  7795. //
  7796. // myPanel10
  7797. //
  7798. this.myPanel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel10.BackgroundImage")));
  7799. this.myPanel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7800. this.myPanel10.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7801. this.myPanel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7802. this.myPanel10.Controls.Add(this.label205);
  7803. this.myPanel10.Controls.Add(this.label206);
  7804. this.myPanel10.Controls.Add(this.label207);
  7805. this.myPanel10.Controls.Add(this.rgvOptType8);
  7806. this.myPanel10.Controls.Add(this.label209);
  7807. this.myPanel10.Controls.Add(this.label210);
  7808. this.myPanel10.Controls.Add(this.rgvPosCurr8);
  7809. this.myPanel10.Controls.Add(this.rgvMode8);
  7810. this.myPanel10.Controls.Add(this.rgvOrdId8);
  7811. this.myPanel10.Controls.Add(this.label214);
  7812. this.myPanel10.Controls.Add(this.rgvPosTo8);
  7813. this.myPanel10.Controls.Add(this.label216);
  7814. this.myPanel10.Controls.Add(this.rgvPosFrom8);
  7815. this.myPanel10.Controls.Add(this.rgvStatus8);
  7816. this.myPanel10.Controls.Add(this.label219);
  7817. this.myPanel10.Controls.Add(this.lblrgv8);
  7818. this.myPanel10.Controls.Add(this.GV8);
  7819. this.myPanel10.Controls.Add(this.pictureBox22);
  7820. this.myPanel10.Location = new System.Drawing.Point(3315, 2);
  7821. this.myPanel10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7822. this.myPanel10.Name = "myPanel10";
  7823. this.myPanel10.Size = new System.Drawing.Size(217, 312);
  7824. this.myPanel10.TabIndex = 134;
  7825. //
  7826. // label205
  7827. //
  7828. this.label205.AutoSize = true;
  7829. this.label205.BackColor = System.Drawing.Color.Transparent;
  7830. this.label205.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7831. this.label205.Location = new System.Drawing.Point(4, 241);
  7832. this.label205.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7833. this.label205.Name = "label205";
  7834. this.label205.Size = new System.Drawing.Size(82, 15);
  7835. this.label205.TabIndex = 106;
  7836. this.label205.Text = "光电状态:";
  7837. //
  7838. // label206
  7839. //
  7840. this.label206.AutoSize = true;
  7841. this.label206.BackColor = System.Drawing.Color.Transparent;
  7842. this.label206.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7843. this.label206.Location = new System.Drawing.Point(3, 189);
  7844. this.label206.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7845. this.label206.Name = "label206";
  7846. this.label206.Size = new System.Drawing.Size(82, 15);
  7847. this.label206.TabIndex = 105;
  7848. this.label206.Text = "起始地址:";
  7849. //
  7850. // label207
  7851. //
  7852. this.label207.AutoSize = true;
  7853. this.label207.BackColor = System.Drawing.Color.Transparent;
  7854. this.label207.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7855. this.label207.ForeColor = System.Drawing.SystemColors.ControlText;
  7856. this.label207.Location = new System.Drawing.Point(3, 214);
  7857. this.label207.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7858. this.label207.Name = "label207";
  7859. this.label207.Size = new System.Drawing.Size(82, 15);
  7860. this.label207.TabIndex = 104;
  7861. this.label207.Text = "目标地址:";
  7862. //
  7863. // rgvOptType8
  7864. //
  7865. this.rgvOptType8.AutoSize = true;
  7866. this.rgvOptType8.BackColor = System.Drawing.Color.Transparent;
  7867. this.rgvOptType8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7868. this.rgvOptType8.ForeColor = System.Drawing.Color.Blue;
  7869. this.rgvOptType8.Location = new System.Drawing.Point(96, 166);
  7870. this.rgvOptType8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7871. this.rgvOptType8.Name = "rgvOptType8";
  7872. this.rgvOptType8.Size = new System.Drawing.Size(31, 15);
  7873. this.rgvOptType8.TabIndex = 101;
  7874. this.rgvOptType8.Text = "---";
  7875. //
  7876. // label209
  7877. //
  7878. this.label209.AutoSize = true;
  7879. this.label209.BackColor = System.Drawing.Color.Transparent;
  7880. this.label209.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7881. this.label209.Location = new System.Drawing.Point(3, 166);
  7882. this.label209.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7883. this.label209.Name = "label209";
  7884. this.label209.Size = new System.Drawing.Size(82, 15);
  7885. this.label209.TabIndex = 100;
  7886. this.label209.Text = "作业类型:";
  7887. //
  7888. // label210
  7889. //
  7890. this.label210.BackColor = System.Drawing.Color.Transparent;
  7891. this.label210.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7892. this.label210.ForeColor = System.Drawing.Color.Red;
  7893. this.label210.Location = new System.Drawing.Point(7, 58);
  7894. this.label210.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7895. this.label210.Name = "label210";
  7896. this.label210.Size = new System.Drawing.Size(201, 30);
  7897. this.label210.TabIndex = 92;
  7898. //
  7899. // rgvPosCurr8
  7900. //
  7901. this.rgvPosCurr8.AutoSize = true;
  7902. this.rgvPosCurr8.BackColor = System.Drawing.Color.Transparent;
  7903. this.rgvPosCurr8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7904. this.rgvPosCurr8.ForeColor = System.Drawing.Color.Blue;
  7905. this.rgvPosCurr8.Location = new System.Drawing.Point(99, 242);
  7906. this.rgvPosCurr8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7907. this.rgvPosCurr8.Name = "rgvPosCurr8";
  7908. this.rgvPosCurr8.Size = new System.Drawing.Size(31, 15);
  7909. this.rgvPosCurr8.TabIndex = 72;
  7910. this.rgvPosCurr8.Text = "---";
  7911. //
  7912. // rgvMode8
  7913. //
  7914. this.rgvMode8.AutoSize = true;
  7915. this.rgvMode8.BackColor = System.Drawing.Color.Transparent;
  7916. this.rgvMode8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7917. this.rgvMode8.ForeColor = System.Drawing.Color.Blue;
  7918. this.rgvMode8.Location = new System.Drawing.Point(96, 92);
  7919. this.rgvMode8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7920. this.rgvMode8.Name = "rgvMode8";
  7921. this.rgvMode8.Size = new System.Drawing.Size(31, 15);
  7922. this.rgvMode8.TabIndex = 12;
  7923. this.rgvMode8.Text = "---";
  7924. //
  7925. // rgvOrdId8
  7926. //
  7927. this.rgvOrdId8.AutoSize = true;
  7928. this.rgvOrdId8.BackColor = System.Drawing.Color.Transparent;
  7929. this.rgvOrdId8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7930. this.rgvOrdId8.ForeColor = System.Drawing.Color.Blue;
  7931. this.rgvOrdId8.Location = new System.Drawing.Point(96, 142);
  7932. this.rgvOrdId8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7933. this.rgvOrdId8.Name = "rgvOrdId8";
  7934. this.rgvOrdId8.Size = new System.Drawing.Size(31, 15);
  7935. this.rgvOrdId8.TabIndex = 64;
  7936. this.rgvOrdId8.Text = "---";
  7937. //
  7938. // label214
  7939. //
  7940. this.label214.AutoSize = true;
  7941. this.label214.BackColor = System.Drawing.Color.Transparent;
  7942. this.label214.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7943. this.label214.Location = new System.Drawing.Point(3, 142);
  7944. this.label214.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7945. this.label214.Name = "label214";
  7946. this.label214.Size = new System.Drawing.Size(82, 15);
  7947. this.label214.TabIndex = 63;
  7948. this.label214.Text = "工作指令:";
  7949. //
  7950. // rgvPosTo8
  7951. //
  7952. this.rgvPosTo8.AutoSize = true;
  7953. this.rgvPosTo8.BackColor = System.Drawing.Color.Transparent;
  7954. this.rgvPosTo8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7955. this.rgvPosTo8.ForeColor = System.Drawing.Color.Blue;
  7956. this.rgvPosTo8.Location = new System.Drawing.Point(97, 215);
  7957. this.rgvPosTo8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7958. this.rgvPosTo8.Name = "rgvPosTo8";
  7959. this.rgvPosTo8.Size = new System.Drawing.Size(31, 15);
  7960. this.rgvPosTo8.TabIndex = 16;
  7961. this.rgvPosTo8.Text = "---";
  7962. //
  7963. // label216
  7964. //
  7965. this.label216.AutoSize = true;
  7966. this.label216.BackColor = System.Drawing.Color.Transparent;
  7967. this.label216.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7968. this.label216.Location = new System.Drawing.Point(3, 92);
  7969. this.label216.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7970. this.label216.Name = "label216";
  7971. this.label216.Size = new System.Drawing.Size(82, 15);
  7972. this.label216.TabIndex = 15;
  7973. this.label216.Text = "工作模式:";
  7974. //
  7975. // rgvPosFrom8
  7976. //
  7977. this.rgvPosFrom8.AutoSize = true;
  7978. this.rgvPosFrom8.BackColor = System.Drawing.Color.Transparent;
  7979. this.rgvPosFrom8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7980. this.rgvPosFrom8.ForeColor = System.Drawing.Color.Blue;
  7981. this.rgvPosFrom8.Location = new System.Drawing.Point(97, 190);
  7982. this.rgvPosFrom8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7983. this.rgvPosFrom8.Name = "rgvPosFrom8";
  7984. this.rgvPosFrom8.Size = new System.Drawing.Size(31, 15);
  7985. this.rgvPosFrom8.TabIndex = 14;
  7986. this.rgvPosFrom8.Text = "---";
  7987. //
  7988. // rgvStatus8
  7989. //
  7990. this.rgvStatus8.AutoSize = true;
  7991. this.rgvStatus8.BackColor = System.Drawing.Color.Transparent;
  7992. this.rgvStatus8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7993. this.rgvStatus8.ForeColor = System.Drawing.Color.Blue;
  7994. this.rgvStatus8.Location = new System.Drawing.Point(96, 115);
  7995. this.rgvStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7996. this.rgvStatus8.Name = "rgvStatus8";
  7997. this.rgvStatus8.Size = new System.Drawing.Size(31, 15);
  7998. this.rgvStatus8.TabIndex = 10;
  7999. this.rgvStatus8.Text = "---";
  8000. //
  8001. // label219
  8002. //
  8003. this.label219.AutoSize = true;
  8004. this.label219.BackColor = System.Drawing.Color.Transparent;
  8005. this.label219.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8006. this.label219.Location = new System.Drawing.Point(3, 115);
  8007. this.label219.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8008. this.label219.Name = "label219";
  8009. this.label219.Size = new System.Drawing.Size(82, 15);
  8010. this.label219.TabIndex = 6;
  8011. this.label219.Text = "工作状态:";
  8012. //
  8013. // lblrgv8
  8014. //
  8015. this.lblrgv8.AutoSize = true;
  8016. this.lblrgv8.BackColor = System.Drawing.Color.Transparent;
  8017. this.lblrgv8.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8018. this.lblrgv8.Location = new System.Drawing.Point(59, 32);
  8019. this.lblrgv8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8020. this.lblrgv8.Name = "lblrgv8";
  8021. this.lblrgv8.Size = new System.Drawing.Size(53, 20);
  8022. this.lblrgv8.TabIndex = 0;
  8023. this.lblrgv8.Text = "RGV8";
  8024. //
  8025. // GV8
  8026. //
  8027. this.GV8.BackColor = System.Drawing.Color.Transparent;
  8028. this.GV8.Image = ((System.Drawing.Image)(resources.GetObject("GV8.Image")));
  8029. this.GV8.Location = new System.Drawing.Point(88, -2);
  8030. this.GV8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8031. this.GV8.Name = "GV8";
  8032. this.GV8.Size = new System.Drawing.Size(35, 32);
  8033. this.GV8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8034. this.GV8.TabIndex = 65;
  8035. this.GV8.TabStop = false;
  8036. this.GV8.Tag = "1";
  8037. //
  8038. // pictureBox22
  8039. //
  8040. this.pictureBox22.BackColor = System.Drawing.Color.Transparent;
  8041. this.pictureBox22.Location = new System.Drawing.Point(87, -2);
  8042. this.pictureBox22.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8043. this.pictureBox22.Name = "pictureBox22";
  8044. this.pictureBox22.Size = new System.Drawing.Size(35, 32);
  8045. this.pictureBox22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8046. this.pictureBox22.TabIndex = 5;
  8047. this.pictureBox22.TabStop = false;
  8048. //
  8049. // myPanel9
  8050. //
  8051. this.myPanel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel9.BackgroundImage")));
  8052. this.myPanel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8053. this.myPanel9.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8054. this.myPanel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8055. this.myPanel9.Controls.Add(this.label188);
  8056. this.myPanel9.Controls.Add(this.label190);
  8057. this.myPanel9.Controls.Add(this.label191);
  8058. this.myPanel9.Controls.Add(this.rgvOptType6);
  8059. this.myPanel9.Controls.Add(this.label193);
  8060. this.myPanel9.Controls.Add(this.label194);
  8061. this.myPanel9.Controls.Add(this.rgvPosCurr6);
  8062. this.myPanel9.Controls.Add(this.rgvMode6);
  8063. this.myPanel9.Controls.Add(this.rgvOrdId6);
  8064. this.myPanel9.Controls.Add(this.label198);
  8065. this.myPanel9.Controls.Add(this.rgvPosTo6);
  8066. this.myPanel9.Controls.Add(this.label200);
  8067. this.myPanel9.Controls.Add(this.rgvPosFrom6);
  8068. this.myPanel9.Controls.Add(this.rgvStatus6);
  8069. this.myPanel9.Controls.Add(this.label203);
  8070. this.myPanel9.Controls.Add(this.lblrgv6);
  8071. this.myPanel9.Controls.Add(this.GV6);
  8072. this.myPanel9.Controls.Add(this.pictureBox20);
  8073. this.myPanel9.Location = new System.Drawing.Point(2879, 1);
  8074. this.myPanel9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8075. this.myPanel9.Name = "myPanel9";
  8076. this.myPanel9.Size = new System.Drawing.Size(217, 312);
  8077. this.myPanel9.TabIndex = 133;
  8078. //
  8079. // label188
  8080. //
  8081. this.label188.AutoSize = true;
  8082. this.label188.BackColor = System.Drawing.Color.Transparent;
  8083. this.label188.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8084. this.label188.Location = new System.Drawing.Point(4, 241);
  8085. this.label188.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8086. this.label188.Name = "label188";
  8087. this.label188.Size = new System.Drawing.Size(82, 15);
  8088. this.label188.TabIndex = 106;
  8089. this.label188.Text = "光电状态:";
  8090. //
  8091. // label190
  8092. //
  8093. this.label190.AutoSize = true;
  8094. this.label190.BackColor = System.Drawing.Color.Transparent;
  8095. this.label190.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8096. this.label190.Location = new System.Drawing.Point(3, 189);
  8097. this.label190.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8098. this.label190.Name = "label190";
  8099. this.label190.Size = new System.Drawing.Size(82, 15);
  8100. this.label190.TabIndex = 105;
  8101. this.label190.Text = "起始地址:";
  8102. //
  8103. // label191
  8104. //
  8105. this.label191.AutoSize = true;
  8106. this.label191.BackColor = System.Drawing.Color.Transparent;
  8107. this.label191.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8108. this.label191.ForeColor = System.Drawing.SystemColors.ControlText;
  8109. this.label191.Location = new System.Drawing.Point(3, 214);
  8110. this.label191.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8111. this.label191.Name = "label191";
  8112. this.label191.Size = new System.Drawing.Size(82, 15);
  8113. this.label191.TabIndex = 104;
  8114. this.label191.Text = "目标地址:";
  8115. //
  8116. // rgvOptType6
  8117. //
  8118. this.rgvOptType6.AutoSize = true;
  8119. this.rgvOptType6.BackColor = System.Drawing.Color.Transparent;
  8120. this.rgvOptType6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8121. this.rgvOptType6.ForeColor = System.Drawing.Color.Blue;
  8122. this.rgvOptType6.Location = new System.Drawing.Point(96, 166);
  8123. this.rgvOptType6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8124. this.rgvOptType6.Name = "rgvOptType6";
  8125. this.rgvOptType6.Size = new System.Drawing.Size(31, 15);
  8126. this.rgvOptType6.TabIndex = 101;
  8127. this.rgvOptType6.Text = "---";
  8128. //
  8129. // label193
  8130. //
  8131. this.label193.AutoSize = true;
  8132. this.label193.BackColor = System.Drawing.Color.Transparent;
  8133. this.label193.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8134. this.label193.Location = new System.Drawing.Point(3, 166);
  8135. this.label193.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8136. this.label193.Name = "label193";
  8137. this.label193.Size = new System.Drawing.Size(82, 15);
  8138. this.label193.TabIndex = 100;
  8139. this.label193.Text = "作业类型:";
  8140. //
  8141. // label194
  8142. //
  8143. this.label194.BackColor = System.Drawing.Color.Transparent;
  8144. this.label194.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8145. this.label194.ForeColor = System.Drawing.Color.Red;
  8146. this.label194.Location = new System.Drawing.Point(7, 58);
  8147. this.label194.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8148. this.label194.Name = "label194";
  8149. this.label194.Size = new System.Drawing.Size(201, 30);
  8150. this.label194.TabIndex = 92;
  8151. //
  8152. // rgvPosCurr6
  8153. //
  8154. this.rgvPosCurr6.AutoSize = true;
  8155. this.rgvPosCurr6.BackColor = System.Drawing.Color.Transparent;
  8156. this.rgvPosCurr6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8157. this.rgvPosCurr6.ForeColor = System.Drawing.Color.Blue;
  8158. this.rgvPosCurr6.Location = new System.Drawing.Point(99, 242);
  8159. this.rgvPosCurr6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8160. this.rgvPosCurr6.Name = "rgvPosCurr6";
  8161. this.rgvPosCurr6.Size = new System.Drawing.Size(31, 15);
  8162. this.rgvPosCurr6.TabIndex = 72;
  8163. this.rgvPosCurr6.Text = "---";
  8164. //
  8165. // rgvMode6
  8166. //
  8167. this.rgvMode6.AutoSize = true;
  8168. this.rgvMode6.BackColor = System.Drawing.Color.Transparent;
  8169. this.rgvMode6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8170. this.rgvMode6.ForeColor = System.Drawing.Color.Blue;
  8171. this.rgvMode6.Location = new System.Drawing.Point(96, 92);
  8172. this.rgvMode6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8173. this.rgvMode6.Name = "rgvMode6";
  8174. this.rgvMode6.Size = new System.Drawing.Size(31, 15);
  8175. this.rgvMode6.TabIndex = 12;
  8176. this.rgvMode6.Text = "---";
  8177. //
  8178. // rgvOrdId6
  8179. //
  8180. this.rgvOrdId6.AutoSize = true;
  8181. this.rgvOrdId6.BackColor = System.Drawing.Color.Transparent;
  8182. this.rgvOrdId6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8183. this.rgvOrdId6.ForeColor = System.Drawing.Color.Blue;
  8184. this.rgvOrdId6.Location = new System.Drawing.Point(96, 142);
  8185. this.rgvOrdId6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8186. this.rgvOrdId6.Name = "rgvOrdId6";
  8187. this.rgvOrdId6.Size = new System.Drawing.Size(31, 15);
  8188. this.rgvOrdId6.TabIndex = 64;
  8189. this.rgvOrdId6.Text = "---";
  8190. //
  8191. // label198
  8192. //
  8193. this.label198.AutoSize = true;
  8194. this.label198.BackColor = System.Drawing.Color.Transparent;
  8195. this.label198.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8196. this.label198.Location = new System.Drawing.Point(3, 142);
  8197. this.label198.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8198. this.label198.Name = "label198";
  8199. this.label198.Size = new System.Drawing.Size(82, 15);
  8200. this.label198.TabIndex = 63;
  8201. this.label198.Text = "工作指令:";
  8202. //
  8203. // rgvPosTo6
  8204. //
  8205. this.rgvPosTo6.AutoSize = true;
  8206. this.rgvPosTo6.BackColor = System.Drawing.Color.Transparent;
  8207. this.rgvPosTo6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8208. this.rgvPosTo6.ForeColor = System.Drawing.Color.Blue;
  8209. this.rgvPosTo6.Location = new System.Drawing.Point(97, 215);
  8210. this.rgvPosTo6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8211. this.rgvPosTo6.Name = "rgvPosTo6";
  8212. this.rgvPosTo6.Size = new System.Drawing.Size(31, 15);
  8213. this.rgvPosTo6.TabIndex = 16;
  8214. this.rgvPosTo6.Text = "---";
  8215. //
  8216. // label200
  8217. //
  8218. this.label200.AutoSize = true;
  8219. this.label200.BackColor = System.Drawing.Color.Transparent;
  8220. this.label200.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8221. this.label200.Location = new System.Drawing.Point(3, 92);
  8222. this.label200.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8223. this.label200.Name = "label200";
  8224. this.label200.Size = new System.Drawing.Size(82, 15);
  8225. this.label200.TabIndex = 15;
  8226. this.label200.Text = "工作模式:";
  8227. //
  8228. // rgvPosFrom6
  8229. //
  8230. this.rgvPosFrom6.AutoSize = true;
  8231. this.rgvPosFrom6.BackColor = System.Drawing.Color.Transparent;
  8232. this.rgvPosFrom6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8233. this.rgvPosFrom6.ForeColor = System.Drawing.Color.Blue;
  8234. this.rgvPosFrom6.Location = new System.Drawing.Point(97, 190);
  8235. this.rgvPosFrom6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8236. this.rgvPosFrom6.Name = "rgvPosFrom6";
  8237. this.rgvPosFrom6.Size = new System.Drawing.Size(31, 15);
  8238. this.rgvPosFrom6.TabIndex = 14;
  8239. this.rgvPosFrom6.Text = "---";
  8240. //
  8241. // rgvStatus6
  8242. //
  8243. this.rgvStatus6.AutoSize = true;
  8244. this.rgvStatus6.BackColor = System.Drawing.Color.Transparent;
  8245. this.rgvStatus6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8246. this.rgvStatus6.ForeColor = System.Drawing.Color.Blue;
  8247. this.rgvStatus6.Location = new System.Drawing.Point(96, 115);
  8248. this.rgvStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8249. this.rgvStatus6.Name = "rgvStatus6";
  8250. this.rgvStatus6.Size = new System.Drawing.Size(31, 15);
  8251. this.rgvStatus6.TabIndex = 10;
  8252. this.rgvStatus6.Text = "---";
  8253. //
  8254. // label203
  8255. //
  8256. this.label203.AutoSize = true;
  8257. this.label203.BackColor = System.Drawing.Color.Transparent;
  8258. this.label203.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8259. this.label203.Location = new System.Drawing.Point(3, 115);
  8260. this.label203.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8261. this.label203.Name = "label203";
  8262. this.label203.Size = new System.Drawing.Size(82, 15);
  8263. this.label203.TabIndex = 6;
  8264. this.label203.Text = "工作状态:";
  8265. //
  8266. // lblrgv6
  8267. //
  8268. this.lblrgv6.AutoSize = true;
  8269. this.lblrgv6.BackColor = System.Drawing.Color.Transparent;
  8270. this.lblrgv6.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8271. this.lblrgv6.Location = new System.Drawing.Point(59, 32);
  8272. this.lblrgv6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8273. this.lblrgv6.Name = "lblrgv6";
  8274. this.lblrgv6.Size = new System.Drawing.Size(53, 20);
  8275. this.lblrgv6.TabIndex = 0;
  8276. this.lblrgv6.Text = "RGV6";
  8277. //
  8278. // GV6
  8279. //
  8280. this.GV6.BackColor = System.Drawing.Color.Transparent;
  8281. this.GV6.Image = ((System.Drawing.Image)(resources.GetObject("GV6.Image")));
  8282. this.GV6.Location = new System.Drawing.Point(88, -2);
  8283. this.GV6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8284. this.GV6.Name = "GV6";
  8285. this.GV6.Size = new System.Drawing.Size(35, 32);
  8286. this.GV6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8287. this.GV6.TabIndex = 65;
  8288. this.GV6.TabStop = false;
  8289. this.GV6.Tag = "1";
  8290. //
  8291. // pictureBox20
  8292. //
  8293. this.pictureBox20.BackColor = System.Drawing.Color.Transparent;
  8294. this.pictureBox20.Location = new System.Drawing.Point(87, -2);
  8295. this.pictureBox20.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8296. this.pictureBox20.Name = "pictureBox20";
  8297. this.pictureBox20.Size = new System.Drawing.Size(35, 32);
  8298. this.pictureBox20.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8299. this.pictureBox20.TabIndex = 5;
  8300. this.pictureBox20.TabStop = false;
  8301. //
  8302. // myPanel8
  8303. //
  8304. this.myPanel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel8.BackgroundImage")));
  8305. this.myPanel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8306. this.myPanel8.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8307. this.myPanel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8308. this.myPanel8.Controls.Add(this.label169);
  8309. this.myPanel8.Controls.Add(this.label170);
  8310. this.myPanel8.Controls.Add(this.label171);
  8311. this.myPanel8.Controls.Add(this.rgvOptType5);
  8312. this.myPanel8.Controls.Add(this.label174);
  8313. this.myPanel8.Controls.Add(this.label175);
  8314. this.myPanel8.Controls.Add(this.rgvPosCurr5);
  8315. this.myPanel8.Controls.Add(this.rgvMode5);
  8316. this.myPanel8.Controls.Add(this.rgvOrdId5);
  8317. this.myPanel8.Controls.Add(this.label179);
  8318. this.myPanel8.Controls.Add(this.rgvPosTo5);
  8319. this.myPanel8.Controls.Add(this.label182);
  8320. this.myPanel8.Controls.Add(this.rgvPosFrom5);
  8321. this.myPanel8.Controls.Add(this.rgvStatus5);
  8322. this.myPanel8.Controls.Add(this.label186);
  8323. this.myPanel8.Controls.Add(this.lblrgv5);
  8324. this.myPanel8.Controls.Add(this.GV5);
  8325. this.myPanel8.Controls.Add(this.pictureBox18);
  8326. this.myPanel8.Location = new System.Drawing.Point(2660, 2);
  8327. this.myPanel8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8328. this.myPanel8.Name = "myPanel8";
  8329. this.myPanel8.Size = new System.Drawing.Size(217, 312);
  8330. this.myPanel8.TabIndex = 132;
  8331. //
  8332. // label169
  8333. //
  8334. this.label169.AutoSize = true;
  8335. this.label169.BackColor = System.Drawing.Color.Transparent;
  8336. this.label169.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8337. this.label169.Location = new System.Drawing.Point(4, 241);
  8338. this.label169.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8339. this.label169.Name = "label169";
  8340. this.label169.Size = new System.Drawing.Size(82, 15);
  8341. this.label169.TabIndex = 106;
  8342. this.label169.Text = "光电状态:";
  8343. //
  8344. // label170
  8345. //
  8346. this.label170.AutoSize = true;
  8347. this.label170.BackColor = System.Drawing.Color.Transparent;
  8348. this.label170.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8349. this.label170.Location = new System.Drawing.Point(3, 189);
  8350. this.label170.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8351. this.label170.Name = "label170";
  8352. this.label170.Size = new System.Drawing.Size(82, 15);
  8353. this.label170.TabIndex = 105;
  8354. this.label170.Text = "起始地址:";
  8355. //
  8356. // label171
  8357. //
  8358. this.label171.AutoSize = true;
  8359. this.label171.BackColor = System.Drawing.Color.Transparent;
  8360. this.label171.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8361. this.label171.ForeColor = System.Drawing.SystemColors.ControlText;
  8362. this.label171.Location = new System.Drawing.Point(3, 214);
  8363. this.label171.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8364. this.label171.Name = "label171";
  8365. this.label171.Size = new System.Drawing.Size(82, 15);
  8366. this.label171.TabIndex = 104;
  8367. this.label171.Text = "目标地址:";
  8368. //
  8369. // rgvOptType5
  8370. //
  8371. this.rgvOptType5.AutoSize = true;
  8372. this.rgvOptType5.BackColor = System.Drawing.Color.Transparent;
  8373. this.rgvOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8374. this.rgvOptType5.ForeColor = System.Drawing.Color.Blue;
  8375. this.rgvOptType5.Location = new System.Drawing.Point(96, 166);
  8376. this.rgvOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8377. this.rgvOptType5.Name = "rgvOptType5";
  8378. this.rgvOptType5.Size = new System.Drawing.Size(31, 15);
  8379. this.rgvOptType5.TabIndex = 101;
  8380. this.rgvOptType5.Text = "---";
  8381. //
  8382. // label174
  8383. //
  8384. this.label174.AutoSize = true;
  8385. this.label174.BackColor = System.Drawing.Color.Transparent;
  8386. this.label174.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8387. this.label174.Location = new System.Drawing.Point(3, 166);
  8388. this.label174.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8389. this.label174.Name = "label174";
  8390. this.label174.Size = new System.Drawing.Size(82, 15);
  8391. this.label174.TabIndex = 100;
  8392. this.label174.Text = "作业类型:";
  8393. //
  8394. // label175
  8395. //
  8396. this.label175.BackColor = System.Drawing.Color.Transparent;
  8397. this.label175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8398. this.label175.ForeColor = System.Drawing.Color.Red;
  8399. this.label175.Location = new System.Drawing.Point(7, 58);
  8400. this.label175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8401. this.label175.Name = "label175";
  8402. this.label175.Size = new System.Drawing.Size(201, 30);
  8403. this.label175.TabIndex = 92;
  8404. //
  8405. // rgvPosCurr5
  8406. //
  8407. this.rgvPosCurr5.AutoSize = true;
  8408. this.rgvPosCurr5.BackColor = System.Drawing.Color.Transparent;
  8409. this.rgvPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8410. this.rgvPosCurr5.ForeColor = System.Drawing.Color.Blue;
  8411. this.rgvPosCurr5.Location = new System.Drawing.Point(99, 242);
  8412. this.rgvPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8413. this.rgvPosCurr5.Name = "rgvPosCurr5";
  8414. this.rgvPosCurr5.Size = new System.Drawing.Size(31, 15);
  8415. this.rgvPosCurr5.TabIndex = 72;
  8416. this.rgvPosCurr5.Text = "---";
  8417. //
  8418. // rgvMode5
  8419. //
  8420. this.rgvMode5.AutoSize = true;
  8421. this.rgvMode5.BackColor = System.Drawing.Color.Transparent;
  8422. this.rgvMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8423. this.rgvMode5.ForeColor = System.Drawing.Color.Blue;
  8424. this.rgvMode5.Location = new System.Drawing.Point(96, 92);
  8425. this.rgvMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8426. this.rgvMode5.Name = "rgvMode5";
  8427. this.rgvMode5.Size = new System.Drawing.Size(31, 15);
  8428. this.rgvMode5.TabIndex = 12;
  8429. this.rgvMode5.Text = "---";
  8430. //
  8431. // rgvOrdId5
  8432. //
  8433. this.rgvOrdId5.AutoSize = true;
  8434. this.rgvOrdId5.BackColor = System.Drawing.Color.Transparent;
  8435. this.rgvOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8436. this.rgvOrdId5.ForeColor = System.Drawing.Color.Blue;
  8437. this.rgvOrdId5.Location = new System.Drawing.Point(96, 142);
  8438. this.rgvOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8439. this.rgvOrdId5.Name = "rgvOrdId5";
  8440. this.rgvOrdId5.Size = new System.Drawing.Size(31, 15);
  8441. this.rgvOrdId5.TabIndex = 64;
  8442. this.rgvOrdId5.Text = "---";
  8443. //
  8444. // label179
  8445. //
  8446. this.label179.AutoSize = true;
  8447. this.label179.BackColor = System.Drawing.Color.Transparent;
  8448. this.label179.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8449. this.label179.Location = new System.Drawing.Point(3, 142);
  8450. this.label179.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8451. this.label179.Name = "label179";
  8452. this.label179.Size = new System.Drawing.Size(82, 15);
  8453. this.label179.TabIndex = 63;
  8454. this.label179.Text = "工作指令:";
  8455. //
  8456. // rgvPosTo5
  8457. //
  8458. this.rgvPosTo5.AutoSize = true;
  8459. this.rgvPosTo5.BackColor = System.Drawing.Color.Transparent;
  8460. this.rgvPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8461. this.rgvPosTo5.ForeColor = System.Drawing.Color.Blue;
  8462. this.rgvPosTo5.Location = new System.Drawing.Point(97, 215);
  8463. this.rgvPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8464. this.rgvPosTo5.Name = "rgvPosTo5";
  8465. this.rgvPosTo5.Size = new System.Drawing.Size(31, 15);
  8466. this.rgvPosTo5.TabIndex = 16;
  8467. this.rgvPosTo5.Text = "---";
  8468. //
  8469. // label182
  8470. //
  8471. this.label182.AutoSize = true;
  8472. this.label182.BackColor = System.Drawing.Color.Transparent;
  8473. this.label182.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8474. this.label182.Location = new System.Drawing.Point(3, 92);
  8475. this.label182.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8476. this.label182.Name = "label182";
  8477. this.label182.Size = new System.Drawing.Size(82, 15);
  8478. this.label182.TabIndex = 15;
  8479. this.label182.Text = "工作模式:";
  8480. //
  8481. // rgvPosFrom5
  8482. //
  8483. this.rgvPosFrom5.AutoSize = true;
  8484. this.rgvPosFrom5.BackColor = System.Drawing.Color.Transparent;
  8485. this.rgvPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8486. this.rgvPosFrom5.ForeColor = System.Drawing.Color.Blue;
  8487. this.rgvPosFrom5.Location = new System.Drawing.Point(97, 190);
  8488. this.rgvPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8489. this.rgvPosFrom5.Name = "rgvPosFrom5";
  8490. this.rgvPosFrom5.Size = new System.Drawing.Size(31, 15);
  8491. this.rgvPosFrom5.TabIndex = 14;
  8492. this.rgvPosFrom5.Text = "---";
  8493. //
  8494. // rgvStatus5
  8495. //
  8496. this.rgvStatus5.AutoSize = true;
  8497. this.rgvStatus5.BackColor = System.Drawing.Color.Transparent;
  8498. this.rgvStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8499. this.rgvStatus5.ForeColor = System.Drawing.Color.Blue;
  8500. this.rgvStatus5.Location = new System.Drawing.Point(96, 115);
  8501. this.rgvStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8502. this.rgvStatus5.Name = "rgvStatus5";
  8503. this.rgvStatus5.Size = new System.Drawing.Size(31, 15);
  8504. this.rgvStatus5.TabIndex = 10;
  8505. this.rgvStatus5.Text = "---";
  8506. //
  8507. // label186
  8508. //
  8509. this.label186.AutoSize = true;
  8510. this.label186.BackColor = System.Drawing.Color.Transparent;
  8511. this.label186.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8512. this.label186.Location = new System.Drawing.Point(3, 115);
  8513. this.label186.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8514. this.label186.Name = "label186";
  8515. this.label186.Size = new System.Drawing.Size(82, 15);
  8516. this.label186.TabIndex = 6;
  8517. this.label186.Text = "工作状态:";
  8518. //
  8519. // lblrgv5
  8520. //
  8521. this.lblrgv5.AutoSize = true;
  8522. this.lblrgv5.BackColor = System.Drawing.Color.Transparent;
  8523. this.lblrgv5.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8524. this.lblrgv5.Location = new System.Drawing.Point(59, 32);
  8525. this.lblrgv5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8526. this.lblrgv5.Name = "lblrgv5";
  8527. this.lblrgv5.Size = new System.Drawing.Size(53, 20);
  8528. this.lblrgv5.TabIndex = 0;
  8529. this.lblrgv5.Text = "RGV5";
  8530. //
  8531. // GV5
  8532. //
  8533. this.GV5.BackColor = System.Drawing.Color.Transparent;
  8534. this.GV5.Image = ((System.Drawing.Image)(resources.GetObject("GV5.Image")));
  8535. this.GV5.Location = new System.Drawing.Point(88, -2);
  8536. this.GV5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8537. this.GV5.Name = "GV5";
  8538. this.GV5.Size = new System.Drawing.Size(35, 32);
  8539. this.GV5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8540. this.GV5.TabIndex = 65;
  8541. this.GV5.TabStop = false;
  8542. this.GV5.Tag = "1";
  8543. //
  8544. // pictureBox18
  8545. //
  8546. this.pictureBox18.BackColor = System.Drawing.Color.Transparent;
  8547. this.pictureBox18.Location = new System.Drawing.Point(87, -2);
  8548. this.pictureBox18.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8549. this.pictureBox18.Name = "pictureBox18";
  8550. this.pictureBox18.Size = new System.Drawing.Size(35, 32);
  8551. this.pictureBox18.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8552. this.pictureBox18.TabIndex = 5;
  8553. this.pictureBox18.TabStop = false;
  8554. //
  8555. // myPanel7
  8556. //
  8557. this.myPanel7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel7.BackgroundImage")));
  8558. this.myPanel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8559. this.myPanel7.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8560. this.myPanel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8561. this.myPanel7.Controls.Add(this.lblInStatus8);
  8562. this.myPanel7.Controls.Add(this.lblOutStatus8);
  8563. this.myPanel7.Controls.Add(this.label149);
  8564. this.myPanel7.Controls.Add(this.ddjPosTo8);
  8565. this.myPanel7.Controls.Add(this.ddjPosFrom8);
  8566. this.myPanel7.Controls.Add(this.label152);
  8567. this.myPanel7.Controls.Add(this.label153);
  8568. this.myPanel7.Controls.Add(this.ddjMode8);
  8569. this.myPanel7.Controls.Add(this.ddjOrdId8);
  8570. this.myPanel7.Controls.Add(this.label156);
  8571. this.myPanel7.Controls.Add(this.ddjOptType8);
  8572. this.myPanel7.Controls.Add(this.label158);
  8573. this.myPanel7.Controls.Add(this.ddjTotal_KM8);
  8574. this.myPanel7.Controls.Add(this.label160);
  8575. this.myPanel7.Controls.Add(this.ddjWorkTime8);
  8576. this.myPanel7.Controls.Add(this.label162);
  8577. this.myPanel7.Controls.Add(this.ddjStatus8);
  8578. this.myPanel7.Controls.Add(this.ddjPosCurr8);
  8579. this.myPanel7.Controls.Add(this.label165);
  8580. this.myPanel7.Controls.Add(this.label166);
  8581. this.myPanel7.Controls.Add(this.label167);
  8582. this.myPanel7.Controls.Add(this.lblsrm08);
  8583. this.myPanel7.Controls.Add(this.G8);
  8584. this.myPanel7.Controls.Add(this.pictureBox15);
  8585. this.myPanel7.Location = new System.Drawing.Point(1563, 4);
  8586. this.myPanel7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8587. this.myPanel7.Name = "myPanel7";
  8588. this.myPanel7.Size = new System.Drawing.Size(217, 312);
  8589. this.myPanel7.TabIndex = 131;
  8590. //
  8591. // lblInStatus8
  8592. //
  8593. this.lblInStatus8.BackColor = System.Drawing.Color.DarkGray;
  8594. this.lblInStatus8.Location = new System.Drawing.Point(7, 2);
  8595. this.lblInStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8596. this.lblInStatus8.Name = "lblInStatus8";
  8597. this.lblInStatus8.Size = new System.Drawing.Size(37, 30);
  8598. this.lblInStatus8.TabIndex = 97;
  8599. this.lblInStatus8.Tag = "4";
  8600. this.lblInStatus8.Text = "入";
  8601. this.lblInStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8602. //
  8603. // lblOutStatus8
  8604. //
  8605. this.lblOutStatus8.BackColor = System.Drawing.Color.DarkGray;
  8606. this.lblOutStatus8.Location = new System.Drawing.Point(165, 2);
  8607. this.lblOutStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8608. this.lblOutStatus8.Name = "lblOutStatus8";
  8609. this.lblOutStatus8.Size = new System.Drawing.Size(37, 30);
  8610. this.lblOutStatus8.TabIndex = 94;
  8611. this.lblOutStatus8.Text = "出";
  8612. this.lblOutStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8613. //
  8614. // label149
  8615. //
  8616. this.label149.BackColor = System.Drawing.Color.Transparent;
  8617. this.label149.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8618. this.label149.ForeColor = System.Drawing.Color.Red;
  8619. this.label149.Location = new System.Drawing.Point(7, 58);
  8620. this.label149.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8621. this.label149.Name = "label149";
  8622. this.label149.Size = new System.Drawing.Size(201, 30);
  8623. this.label149.TabIndex = 92;
  8624. //
  8625. // ddjPosTo8
  8626. //
  8627. this.ddjPosTo8.AutoSize = true;
  8628. this.ddjPosTo8.BackColor = System.Drawing.Color.Transparent;
  8629. this.ddjPosTo8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8630. this.ddjPosTo8.ForeColor = System.Drawing.Color.Blue;
  8631. this.ddjPosTo8.Location = new System.Drawing.Point(119, 292);
  8632. this.ddjPosTo8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8633. this.ddjPosTo8.Name = "ddjPosTo8";
  8634. this.ddjPosTo8.Size = new System.Drawing.Size(31, 15);
  8635. this.ddjPosTo8.TabIndex = 73;
  8636. this.ddjPosTo8.Text = "---";
  8637. //
  8638. // ddjPosFrom8
  8639. //
  8640. this.ddjPosFrom8.AutoSize = true;
  8641. this.ddjPosFrom8.BackColor = System.Drawing.Color.Transparent;
  8642. this.ddjPosFrom8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8643. this.ddjPosFrom8.ForeColor = System.Drawing.Color.Blue;
  8644. this.ddjPosFrom8.Location = new System.Drawing.Point(119, 265);
  8645. this.ddjPosFrom8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8646. this.ddjPosFrom8.Name = "ddjPosFrom8";
  8647. this.ddjPosFrom8.Size = new System.Drawing.Size(31, 15);
  8648. this.ddjPosFrom8.TabIndex = 72;
  8649. this.ddjPosFrom8.Text = "---";
  8650. //
  8651. // label152
  8652. //
  8653. this.label152.AutoSize = true;
  8654. this.label152.BackColor = System.Drawing.Color.Transparent;
  8655. this.label152.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8656. this.label152.Location = new System.Drawing.Point(4, 265);
  8657. this.label152.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8658. this.label152.Name = "label152";
  8659. this.label152.Size = new System.Drawing.Size(82, 15);
  8660. this.label152.TabIndex = 71;
  8661. this.label152.Text = "起始位置:";
  8662. //
  8663. // label153
  8664. //
  8665. this.label153.AutoSize = true;
  8666. this.label153.BackColor = System.Drawing.Color.Transparent;
  8667. this.label153.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8668. this.label153.Location = new System.Drawing.Point(4, 292);
  8669. this.label153.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8670. this.label153.Name = "label153";
  8671. this.label153.Size = new System.Drawing.Size(82, 15);
  8672. this.label153.TabIndex = 70;
  8673. this.label153.Text = "目标位置:";
  8674. //
  8675. // ddjMode8
  8676. //
  8677. this.ddjMode8.AutoSize = true;
  8678. this.ddjMode8.BackColor = System.Drawing.Color.Transparent;
  8679. this.ddjMode8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8680. this.ddjMode8.ForeColor = System.Drawing.Color.Blue;
  8681. this.ddjMode8.Location = new System.Drawing.Point(116, 92);
  8682. this.ddjMode8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8683. this.ddjMode8.Name = "ddjMode8";
  8684. this.ddjMode8.Size = new System.Drawing.Size(31, 15);
  8685. this.ddjMode8.TabIndex = 12;
  8686. this.ddjMode8.Text = "---";
  8687. //
  8688. // ddjOrdId8
  8689. //
  8690. this.ddjOrdId8.AutoSize = true;
  8691. this.ddjOrdId8.BackColor = System.Drawing.Color.Transparent;
  8692. this.ddjOrdId8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8693. this.ddjOrdId8.ForeColor = System.Drawing.Color.Blue;
  8694. this.ddjOrdId8.Location = new System.Drawing.Point(116, 142);
  8695. this.ddjOrdId8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8696. this.ddjOrdId8.Name = "ddjOrdId8";
  8697. this.ddjOrdId8.Size = new System.Drawing.Size(31, 15);
  8698. this.ddjOrdId8.TabIndex = 64;
  8699. this.ddjOrdId8.Text = "---";
  8700. //
  8701. // label156
  8702. //
  8703. this.label156.AutoSize = true;
  8704. this.label156.BackColor = System.Drawing.Color.Transparent;
  8705. this.label156.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8706. this.label156.Location = new System.Drawing.Point(3, 142);
  8707. this.label156.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8708. this.label156.Name = "label156";
  8709. this.label156.Size = new System.Drawing.Size(82, 15);
  8710. this.label156.TabIndex = 63;
  8711. this.label156.Text = "工作指令:";
  8712. //
  8713. // ddjOptType8
  8714. //
  8715. this.ddjOptType8.AutoSize = true;
  8716. this.ddjOptType8.BackColor = System.Drawing.Color.Transparent;
  8717. this.ddjOptType8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8718. this.ddjOptType8.ForeColor = System.Drawing.Color.Blue;
  8719. this.ddjOptType8.Location = new System.Drawing.Point(116, 162);
  8720. this.ddjOptType8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8721. this.ddjOptType8.Name = "ddjOptType8";
  8722. this.ddjOptType8.Size = new System.Drawing.Size(31, 15);
  8723. this.ddjOptType8.TabIndex = 62;
  8724. this.ddjOptType8.Text = "---";
  8725. //
  8726. // label158
  8727. //
  8728. this.label158.AutoSize = true;
  8729. this.label158.BackColor = System.Drawing.Color.Transparent;
  8730. this.label158.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8731. this.label158.Location = new System.Drawing.Point(3, 162);
  8732. this.label158.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8733. this.label158.Name = "label158";
  8734. this.label158.Size = new System.Drawing.Size(82, 15);
  8735. this.label158.TabIndex = 61;
  8736. this.label158.Text = "作业类型:";
  8737. //
  8738. // ddjTotal_KM8
  8739. //
  8740. this.ddjTotal_KM8.AutoSize = true;
  8741. this.ddjTotal_KM8.BackColor = System.Drawing.Color.Transparent;
  8742. this.ddjTotal_KM8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8743. this.ddjTotal_KM8.ForeColor = System.Drawing.SystemColors.ControlText;
  8744. this.ddjTotal_KM8.Location = new System.Drawing.Point(117, 238);
  8745. this.ddjTotal_KM8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8746. this.ddjTotal_KM8.Name = "ddjTotal_KM8";
  8747. this.ddjTotal_KM8.Size = new System.Drawing.Size(31, 15);
  8748. this.ddjTotal_KM8.TabIndex = 16;
  8749. this.ddjTotal_KM8.Text = "---";
  8750. //
  8751. // label160
  8752. //
  8753. this.label160.AutoSize = true;
  8754. this.label160.BackColor = System.Drawing.Color.Transparent;
  8755. this.label160.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8756. this.label160.Location = new System.Drawing.Point(3, 92);
  8757. this.label160.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8758. this.label160.Name = "label160";
  8759. this.label160.Size = new System.Drawing.Size(82, 15);
  8760. this.label160.TabIndex = 15;
  8761. this.label160.Text = "工作模式:";
  8762. //
  8763. // ddjWorkTime8
  8764. //
  8765. this.ddjWorkTime8.AutoSize = true;
  8766. this.ddjWorkTime8.BackColor = System.Drawing.Color.Transparent;
  8767. this.ddjWorkTime8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8768. this.ddjWorkTime8.ForeColor = System.Drawing.Color.Red;
  8769. this.ddjWorkTime8.Location = new System.Drawing.Point(117, 212);
  8770. this.ddjWorkTime8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8771. this.ddjWorkTime8.Name = "ddjWorkTime8";
  8772. this.ddjWorkTime8.Size = new System.Drawing.Size(31, 15);
  8773. this.ddjWorkTime8.TabIndex = 14;
  8774. this.ddjWorkTime8.Text = "---";
  8775. //
  8776. // label162
  8777. //
  8778. this.label162.AutoSize = true;
  8779. this.label162.BackColor = System.Drawing.Color.Transparent;
  8780. this.label162.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8781. this.label162.Location = new System.Drawing.Point(3, 212);
  8782. this.label162.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8783. this.label162.Name = "label162";
  8784. this.label162.Size = new System.Drawing.Size(82, 15);
  8785. this.label162.TabIndex = 13;
  8786. this.label162.Text = "运行时长:";
  8787. //
  8788. // ddjStatus8
  8789. //
  8790. this.ddjStatus8.AutoSize = true;
  8791. this.ddjStatus8.BackColor = System.Drawing.Color.Transparent;
  8792. this.ddjStatus8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8793. this.ddjStatus8.ForeColor = System.Drawing.Color.Blue;
  8794. this.ddjStatus8.Location = new System.Drawing.Point(116, 115);
  8795. this.ddjStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8796. this.ddjStatus8.Name = "ddjStatus8";
  8797. this.ddjStatus8.Size = new System.Drawing.Size(31, 15);
  8798. this.ddjStatus8.TabIndex = 10;
  8799. this.ddjStatus8.Text = "---";
  8800. //
  8801. // ddjPosCurr8
  8802. //
  8803. this.ddjPosCurr8.AutoSize = true;
  8804. this.ddjPosCurr8.BackColor = System.Drawing.Color.Transparent;
  8805. this.ddjPosCurr8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8806. this.ddjPosCurr8.ForeColor = System.Drawing.Color.Blue;
  8807. this.ddjPosCurr8.Location = new System.Drawing.Point(117, 188);
  8808. this.ddjPosCurr8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8809. this.ddjPosCurr8.Name = "ddjPosCurr8";
  8810. this.ddjPosCurr8.Size = new System.Drawing.Size(15, 15);
  8811. this.ddjPosCurr8.TabIndex = 9;
  8812. this.ddjPosCurr8.Text = "8";
  8813. //
  8814. // label165
  8815. //
  8816. this.label165.AutoSize = true;
  8817. this.label165.BackColor = System.Drawing.Color.Transparent;
  8818. this.label165.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8819. this.label165.ForeColor = System.Drawing.SystemColors.ControlText;
  8820. this.label165.Location = new System.Drawing.Point(3, 238);
  8821. this.label165.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8822. this.label165.Name = "label165";
  8823. this.label165.Size = new System.Drawing.Size(83, 15);
  8824. this.label165.TabIndex = 8;
  8825. this.label165.Text = "里 程 数:";
  8826. //
  8827. // label166
  8828. //
  8829. this.label166.AutoSize = true;
  8830. this.label166.BackColor = System.Drawing.Color.Transparent;
  8831. this.label166.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8832. this.label166.Location = new System.Drawing.Point(3, 115);
  8833. this.label166.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8834. this.label166.Name = "label166";
  8835. this.label166.Size = new System.Drawing.Size(82, 15);
  8836. this.label166.TabIndex = 6;
  8837. this.label166.Text = "工作状态:";
  8838. //
  8839. // label167
  8840. //
  8841. this.label167.AutoSize = true;
  8842. this.label167.BackColor = System.Drawing.Color.Transparent;
  8843. this.label167.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8844. this.label167.Location = new System.Drawing.Point(3, 188);
  8845. this.label167.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8846. this.label167.Name = "label167";
  8847. this.label167.Size = new System.Drawing.Size(82, 15);
  8848. this.label167.TabIndex = 1;
  8849. this.label167.Text = "当前巷道:";
  8850. //
  8851. // lblsrm08
  8852. //
  8853. this.lblsrm08.AutoSize = true;
  8854. this.lblsrm08.BackColor = System.Drawing.Color.Transparent;
  8855. this.lblsrm08.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8856. this.lblsrm08.Location = new System.Drawing.Point(40, 32);
  8857. this.lblsrm08.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8858. this.lblsrm08.Name = "lblsrm08";
  8859. this.lblsrm08.Size = new System.Drawing.Size(115, 20);
  8860. this.lblsrm08.TabIndex = 0;
  8861. this.lblsrm08.Text = "8号 堆垛机";
  8862. //
  8863. // G8
  8864. //
  8865. this.G8.BackColor = System.Drawing.Color.Transparent;
  8866. this.G8.Image = ((System.Drawing.Image)(resources.GetObject("G8.Image")));
  8867. this.G8.Location = new System.Drawing.Point(88, -2);
  8868. this.G8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8869. this.G8.Name = "G8";
  8870. this.G8.Size = new System.Drawing.Size(35, 32);
  8871. this.G8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8872. this.G8.TabIndex = 65;
  8873. this.G8.TabStop = false;
  8874. this.G8.Tag = "1";
  8875. //
  8876. // pictureBox15
  8877. //
  8878. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  8879. this.pictureBox15.Location = new System.Drawing.Point(87, -2);
  8880. this.pictureBox15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8881. this.pictureBox15.Name = "pictureBox15";
  8882. this.pictureBox15.Size = new System.Drawing.Size(35, 32);
  8883. this.pictureBox15.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8884. this.pictureBox15.TabIndex = 5;
  8885. this.pictureBox15.TabStop = false;
  8886. //
  8887. // myPanel6
  8888. //
  8889. this.myPanel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel6.BackgroundImage")));
  8890. this.myPanel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8891. this.myPanel6.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8892. this.myPanel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8893. this.myPanel6.Controls.Add(this.lblInStatus7);
  8894. this.myPanel6.Controls.Add(this.lblOutStatus7);
  8895. this.myPanel6.Controls.Add(this.label103);
  8896. this.myPanel6.Controls.Add(this.ddjPosTo7);
  8897. this.myPanel6.Controls.Add(this.ddjPosFrom7);
  8898. this.myPanel6.Controls.Add(this.label106);
  8899. this.myPanel6.Controls.Add(this.label107);
  8900. this.myPanel6.Controls.Add(this.ddjMode7);
  8901. this.myPanel6.Controls.Add(this.ddjOrdId7);
  8902. this.myPanel6.Controls.Add(this.label110);
  8903. this.myPanel6.Controls.Add(this.ddjOptType7);
  8904. this.myPanel6.Controls.Add(this.label112);
  8905. this.myPanel6.Controls.Add(this.ddjTotal_KM7);
  8906. this.myPanel6.Controls.Add(this.label114);
  8907. this.myPanel6.Controls.Add(this.ddjWorkTime7);
  8908. this.myPanel6.Controls.Add(this.label116);
  8909. this.myPanel6.Controls.Add(this.ddjStatus7);
  8910. this.myPanel6.Controls.Add(this.ddjPosCurr7);
  8911. this.myPanel6.Controls.Add(this.label119);
  8912. this.myPanel6.Controls.Add(this.label120);
  8913. this.myPanel6.Controls.Add(this.label121);
  8914. this.myPanel6.Controls.Add(this.lblsrm07);
  8915. this.myPanel6.Controls.Add(this.G7);
  8916. this.myPanel6.Controls.Add(this.pictureBox9);
  8917. this.myPanel6.Location = new System.Drawing.Point(1344, 4);
  8918. this.myPanel6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8919. this.myPanel6.Name = "myPanel6";
  8920. this.myPanel6.Size = new System.Drawing.Size(217, 312);
  8921. this.myPanel6.TabIndex = 130;
  8922. //
  8923. // lblInStatus7
  8924. //
  8925. this.lblInStatus7.BackColor = System.Drawing.Color.DarkGray;
  8926. this.lblInStatus7.Location = new System.Drawing.Point(7, 2);
  8927. this.lblInStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8928. this.lblInStatus7.Name = "lblInStatus7";
  8929. this.lblInStatus7.Size = new System.Drawing.Size(37, 30);
  8930. this.lblInStatus7.TabIndex = 97;
  8931. this.lblInStatus7.Tag = "4";
  8932. this.lblInStatus7.Text = "入";
  8933. this.lblInStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8934. //
  8935. // lblOutStatus7
  8936. //
  8937. this.lblOutStatus7.BackColor = System.Drawing.Color.DarkGray;
  8938. this.lblOutStatus7.Location = new System.Drawing.Point(165, 2);
  8939. this.lblOutStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8940. this.lblOutStatus7.Name = "lblOutStatus7";
  8941. this.lblOutStatus7.Size = new System.Drawing.Size(37, 30);
  8942. this.lblOutStatus7.TabIndex = 94;
  8943. this.lblOutStatus7.Text = "出";
  8944. this.lblOutStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8945. //
  8946. // label103
  8947. //
  8948. this.label103.BackColor = System.Drawing.Color.Transparent;
  8949. this.label103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8950. this.label103.ForeColor = System.Drawing.Color.Red;
  8951. this.label103.Location = new System.Drawing.Point(7, 58);
  8952. this.label103.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8953. this.label103.Name = "label103";
  8954. this.label103.Size = new System.Drawing.Size(201, 30);
  8955. this.label103.TabIndex = 92;
  8956. //
  8957. // ddjPosTo7
  8958. //
  8959. this.ddjPosTo7.AutoSize = true;
  8960. this.ddjPosTo7.BackColor = System.Drawing.Color.Transparent;
  8961. this.ddjPosTo7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8962. this.ddjPosTo7.ForeColor = System.Drawing.Color.Blue;
  8963. this.ddjPosTo7.Location = new System.Drawing.Point(119, 292);
  8964. this.ddjPosTo7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8965. this.ddjPosTo7.Name = "ddjPosTo7";
  8966. this.ddjPosTo7.Size = new System.Drawing.Size(31, 15);
  8967. this.ddjPosTo7.TabIndex = 73;
  8968. this.ddjPosTo7.Text = "---";
  8969. //
  8970. // ddjPosFrom7
  8971. //
  8972. this.ddjPosFrom7.AutoSize = true;
  8973. this.ddjPosFrom7.BackColor = System.Drawing.Color.Transparent;
  8974. this.ddjPosFrom7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8975. this.ddjPosFrom7.ForeColor = System.Drawing.Color.Blue;
  8976. this.ddjPosFrom7.Location = new System.Drawing.Point(119, 265);
  8977. this.ddjPosFrom7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8978. this.ddjPosFrom7.Name = "ddjPosFrom7";
  8979. this.ddjPosFrom7.Size = new System.Drawing.Size(31, 15);
  8980. this.ddjPosFrom7.TabIndex = 72;
  8981. this.ddjPosFrom7.Text = "---";
  8982. //
  8983. // label106
  8984. //
  8985. this.label106.AutoSize = true;
  8986. this.label106.BackColor = System.Drawing.Color.Transparent;
  8987. this.label106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8988. this.label106.Location = new System.Drawing.Point(4, 265);
  8989. this.label106.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8990. this.label106.Name = "label106";
  8991. this.label106.Size = new System.Drawing.Size(82, 15);
  8992. this.label106.TabIndex = 71;
  8993. this.label106.Text = "起始位置:";
  8994. //
  8995. // label107
  8996. //
  8997. this.label107.AutoSize = true;
  8998. this.label107.BackColor = System.Drawing.Color.Transparent;
  8999. this.label107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9000. this.label107.Location = new System.Drawing.Point(4, 292);
  9001. this.label107.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9002. this.label107.Name = "label107";
  9003. this.label107.Size = new System.Drawing.Size(82, 15);
  9004. this.label107.TabIndex = 70;
  9005. this.label107.Text = "目标位置:";
  9006. //
  9007. // ddjMode7
  9008. //
  9009. this.ddjMode7.AutoSize = true;
  9010. this.ddjMode7.BackColor = System.Drawing.Color.Transparent;
  9011. this.ddjMode7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9012. this.ddjMode7.ForeColor = System.Drawing.Color.Blue;
  9013. this.ddjMode7.Location = new System.Drawing.Point(116, 92);
  9014. this.ddjMode7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9015. this.ddjMode7.Name = "ddjMode7";
  9016. this.ddjMode7.Size = new System.Drawing.Size(31, 15);
  9017. this.ddjMode7.TabIndex = 12;
  9018. this.ddjMode7.Text = "---";
  9019. //
  9020. // ddjOrdId7
  9021. //
  9022. this.ddjOrdId7.AutoSize = true;
  9023. this.ddjOrdId7.BackColor = System.Drawing.Color.Transparent;
  9024. this.ddjOrdId7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9025. this.ddjOrdId7.ForeColor = System.Drawing.Color.Blue;
  9026. this.ddjOrdId7.Location = new System.Drawing.Point(116, 142);
  9027. this.ddjOrdId7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9028. this.ddjOrdId7.Name = "ddjOrdId7";
  9029. this.ddjOrdId7.Size = new System.Drawing.Size(31, 15);
  9030. this.ddjOrdId7.TabIndex = 64;
  9031. this.ddjOrdId7.Text = "---";
  9032. //
  9033. // label110
  9034. //
  9035. this.label110.AutoSize = true;
  9036. this.label110.BackColor = System.Drawing.Color.Transparent;
  9037. this.label110.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9038. this.label110.Location = new System.Drawing.Point(3, 142);
  9039. this.label110.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9040. this.label110.Name = "label110";
  9041. this.label110.Size = new System.Drawing.Size(82, 15);
  9042. this.label110.TabIndex = 63;
  9043. this.label110.Text = "工作指令:";
  9044. //
  9045. // ddjOptType7
  9046. //
  9047. this.ddjOptType7.AutoSize = true;
  9048. this.ddjOptType7.BackColor = System.Drawing.Color.Transparent;
  9049. this.ddjOptType7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9050. this.ddjOptType7.ForeColor = System.Drawing.Color.Blue;
  9051. this.ddjOptType7.Location = new System.Drawing.Point(116, 162);
  9052. this.ddjOptType7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9053. this.ddjOptType7.Name = "ddjOptType7";
  9054. this.ddjOptType7.Size = new System.Drawing.Size(31, 15);
  9055. this.ddjOptType7.TabIndex = 62;
  9056. this.ddjOptType7.Text = "---";
  9057. //
  9058. // label112
  9059. //
  9060. this.label112.AutoSize = true;
  9061. this.label112.BackColor = System.Drawing.Color.Transparent;
  9062. this.label112.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9063. this.label112.Location = new System.Drawing.Point(3, 162);
  9064. this.label112.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9065. this.label112.Name = "label112";
  9066. this.label112.Size = new System.Drawing.Size(82, 15);
  9067. this.label112.TabIndex = 61;
  9068. this.label112.Text = "作业类型:";
  9069. //
  9070. // ddjTotal_KM7
  9071. //
  9072. this.ddjTotal_KM7.AutoSize = true;
  9073. this.ddjTotal_KM7.BackColor = System.Drawing.Color.Transparent;
  9074. this.ddjTotal_KM7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9075. this.ddjTotal_KM7.ForeColor = System.Drawing.SystemColors.ControlText;
  9076. this.ddjTotal_KM7.Location = new System.Drawing.Point(117, 238);
  9077. this.ddjTotal_KM7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9078. this.ddjTotal_KM7.Name = "ddjTotal_KM7";
  9079. this.ddjTotal_KM7.Size = new System.Drawing.Size(31, 15);
  9080. this.ddjTotal_KM7.TabIndex = 16;
  9081. this.ddjTotal_KM7.Text = "---";
  9082. //
  9083. // label114
  9084. //
  9085. this.label114.AutoSize = true;
  9086. this.label114.BackColor = System.Drawing.Color.Transparent;
  9087. this.label114.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9088. this.label114.Location = new System.Drawing.Point(3, 92);
  9089. this.label114.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9090. this.label114.Name = "label114";
  9091. this.label114.Size = new System.Drawing.Size(82, 15);
  9092. this.label114.TabIndex = 15;
  9093. this.label114.Text = "工作模式:";
  9094. //
  9095. // ddjWorkTime7
  9096. //
  9097. this.ddjWorkTime7.AutoSize = true;
  9098. this.ddjWorkTime7.BackColor = System.Drawing.Color.Transparent;
  9099. this.ddjWorkTime7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9100. this.ddjWorkTime7.ForeColor = System.Drawing.Color.Red;
  9101. this.ddjWorkTime7.Location = new System.Drawing.Point(117, 212);
  9102. this.ddjWorkTime7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9103. this.ddjWorkTime7.Name = "ddjWorkTime7";
  9104. this.ddjWorkTime7.Size = new System.Drawing.Size(31, 15);
  9105. this.ddjWorkTime7.TabIndex = 14;
  9106. this.ddjWorkTime7.Text = "---";
  9107. //
  9108. // label116
  9109. //
  9110. this.label116.AutoSize = true;
  9111. this.label116.BackColor = System.Drawing.Color.Transparent;
  9112. this.label116.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9113. this.label116.Location = new System.Drawing.Point(3, 212);
  9114. this.label116.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9115. this.label116.Name = "label116";
  9116. this.label116.Size = new System.Drawing.Size(82, 15);
  9117. this.label116.TabIndex = 13;
  9118. this.label116.Text = "运行时长:";
  9119. //
  9120. // ddjStatus7
  9121. //
  9122. this.ddjStatus7.AutoSize = true;
  9123. this.ddjStatus7.BackColor = System.Drawing.Color.Transparent;
  9124. this.ddjStatus7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9125. this.ddjStatus7.ForeColor = System.Drawing.Color.Blue;
  9126. this.ddjStatus7.Location = new System.Drawing.Point(116, 115);
  9127. this.ddjStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9128. this.ddjStatus7.Name = "ddjStatus7";
  9129. this.ddjStatus7.Size = new System.Drawing.Size(31, 15);
  9130. this.ddjStatus7.TabIndex = 10;
  9131. this.ddjStatus7.Text = "---";
  9132. //
  9133. // ddjPosCurr7
  9134. //
  9135. this.ddjPosCurr7.AutoSize = true;
  9136. this.ddjPosCurr7.BackColor = System.Drawing.Color.Transparent;
  9137. this.ddjPosCurr7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9138. this.ddjPosCurr7.ForeColor = System.Drawing.Color.Blue;
  9139. this.ddjPosCurr7.Location = new System.Drawing.Point(117, 188);
  9140. this.ddjPosCurr7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9141. this.ddjPosCurr7.Name = "ddjPosCurr7";
  9142. this.ddjPosCurr7.Size = new System.Drawing.Size(15, 15);
  9143. this.ddjPosCurr7.TabIndex = 9;
  9144. this.ddjPosCurr7.Text = "7";
  9145. //
  9146. // label119
  9147. //
  9148. this.label119.AutoSize = true;
  9149. this.label119.BackColor = System.Drawing.Color.Transparent;
  9150. this.label119.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9151. this.label119.ForeColor = System.Drawing.SystemColors.ControlText;
  9152. this.label119.Location = new System.Drawing.Point(3, 238);
  9153. this.label119.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9154. this.label119.Name = "label119";
  9155. this.label119.Size = new System.Drawing.Size(83, 15);
  9156. this.label119.TabIndex = 8;
  9157. this.label119.Text = "里 程 数:";
  9158. //
  9159. // label120
  9160. //
  9161. this.label120.AutoSize = true;
  9162. this.label120.BackColor = System.Drawing.Color.Transparent;
  9163. this.label120.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9164. this.label120.Location = new System.Drawing.Point(3, 115);
  9165. this.label120.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9166. this.label120.Name = "label120";
  9167. this.label120.Size = new System.Drawing.Size(82, 15);
  9168. this.label120.TabIndex = 6;
  9169. this.label120.Text = "工作状态:";
  9170. //
  9171. // label121
  9172. //
  9173. this.label121.AutoSize = true;
  9174. this.label121.BackColor = System.Drawing.Color.Transparent;
  9175. this.label121.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9176. this.label121.Location = new System.Drawing.Point(3, 188);
  9177. this.label121.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9178. this.label121.Name = "label121";
  9179. this.label121.Size = new System.Drawing.Size(82, 15);
  9180. this.label121.TabIndex = 1;
  9181. this.label121.Text = "当前巷道:";
  9182. //
  9183. // lblsrm07
  9184. //
  9185. this.lblsrm07.AutoSize = true;
  9186. this.lblsrm07.BackColor = System.Drawing.Color.Transparent;
  9187. this.lblsrm07.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9188. this.lblsrm07.Location = new System.Drawing.Point(40, 32);
  9189. this.lblsrm07.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9190. this.lblsrm07.Name = "lblsrm07";
  9191. this.lblsrm07.Size = new System.Drawing.Size(115, 20);
  9192. this.lblsrm07.TabIndex = 0;
  9193. this.lblsrm07.Text = "7号 堆垛机";
  9194. //
  9195. // G7
  9196. //
  9197. this.G7.BackColor = System.Drawing.Color.Transparent;
  9198. this.G7.Image = ((System.Drawing.Image)(resources.GetObject("G7.Image")));
  9199. this.G7.Location = new System.Drawing.Point(88, -2);
  9200. this.G7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9201. this.G7.Name = "G7";
  9202. this.G7.Size = new System.Drawing.Size(35, 32);
  9203. this.G7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9204. this.G7.TabIndex = 65;
  9205. this.G7.TabStop = false;
  9206. this.G7.Tag = "1";
  9207. //
  9208. // pictureBox9
  9209. //
  9210. this.pictureBox9.BackColor = System.Drawing.Color.Transparent;
  9211. this.pictureBox9.Location = new System.Drawing.Point(87, -2);
  9212. this.pictureBox9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9213. this.pictureBox9.Name = "pictureBox9";
  9214. this.pictureBox9.Size = new System.Drawing.Size(35, 32);
  9215. this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9216. this.pictureBox9.TabIndex = 5;
  9217. this.pictureBox9.TabStop = false;
  9218. //
  9219. // myPanel3
  9220. //
  9221. this.myPanel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel3.BackgroundImage")));
  9222. this.myPanel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9223. this.myPanel3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9224. this.myPanel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9225. this.myPanel3.Controls.Add(this.lblInStatus6);
  9226. this.myPanel3.Controls.Add(this.lblOutStatus6);
  9227. this.myPanel3.Controls.Add(this.label47);
  9228. this.myPanel3.Controls.Add(this.ddjPosTo6);
  9229. this.myPanel3.Controls.Add(this.ddjPosFrom6);
  9230. this.myPanel3.Controls.Add(this.label52);
  9231. this.myPanel3.Controls.Add(this.label54);
  9232. this.myPanel3.Controls.Add(this.ddjMode6);
  9233. this.myPanel3.Controls.Add(this.ddjOrdId6);
  9234. this.myPanel3.Controls.Add(this.label62);
  9235. this.myPanel3.Controls.Add(this.ddjOptType6);
  9236. this.myPanel3.Controls.Add(this.label68);
  9237. this.myPanel3.Controls.Add(this.ddjTotal_KM6);
  9238. this.myPanel3.Controls.Add(this.label76);
  9239. this.myPanel3.Controls.Add(this.ddjWorkTime6);
  9240. this.myPanel3.Controls.Add(this.label82);
  9241. this.myPanel3.Controls.Add(this.ddjStatus6);
  9242. this.myPanel3.Controls.Add(this.ddjPosCurr6);
  9243. this.myPanel3.Controls.Add(this.label95);
  9244. this.myPanel3.Controls.Add(this.label97);
  9245. this.myPanel3.Controls.Add(this.label98);
  9246. this.myPanel3.Controls.Add(this.lblsrm06);
  9247. this.myPanel3.Controls.Add(this.G6);
  9248. this.myPanel3.Controls.Add(this.pictureBox2);
  9249. this.myPanel3.Location = new System.Drawing.Point(1119, 2);
  9250. this.myPanel3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9251. this.myPanel3.Name = "myPanel3";
  9252. this.myPanel3.Size = new System.Drawing.Size(217, 312);
  9253. this.myPanel3.TabIndex = 129;
  9254. //
  9255. // lblInStatus6
  9256. //
  9257. this.lblInStatus6.BackColor = System.Drawing.Color.DarkGray;
  9258. this.lblInStatus6.Location = new System.Drawing.Point(7, 2);
  9259. this.lblInStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9260. this.lblInStatus6.Name = "lblInStatus6";
  9261. this.lblInStatus6.Size = new System.Drawing.Size(37, 30);
  9262. this.lblInStatus6.TabIndex = 97;
  9263. this.lblInStatus6.Tag = "4";
  9264. this.lblInStatus6.Text = "入";
  9265. this.lblInStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9266. //
  9267. // lblOutStatus6
  9268. //
  9269. this.lblOutStatus6.BackColor = System.Drawing.Color.DarkGray;
  9270. this.lblOutStatus6.Location = new System.Drawing.Point(165, 2);
  9271. this.lblOutStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9272. this.lblOutStatus6.Name = "lblOutStatus6";
  9273. this.lblOutStatus6.Size = new System.Drawing.Size(37, 30);
  9274. this.lblOutStatus6.TabIndex = 94;
  9275. this.lblOutStatus6.Text = "出";
  9276. this.lblOutStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9277. //
  9278. // label47
  9279. //
  9280. this.label47.BackColor = System.Drawing.Color.Transparent;
  9281. this.label47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9282. this.label47.ForeColor = System.Drawing.Color.Red;
  9283. this.label47.Location = new System.Drawing.Point(7, 58);
  9284. this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9285. this.label47.Name = "label47";
  9286. this.label47.Size = new System.Drawing.Size(201, 30);
  9287. this.label47.TabIndex = 92;
  9288. //
  9289. // ddjPosTo6
  9290. //
  9291. this.ddjPosTo6.AutoSize = true;
  9292. this.ddjPosTo6.BackColor = System.Drawing.Color.Transparent;
  9293. this.ddjPosTo6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9294. this.ddjPosTo6.ForeColor = System.Drawing.Color.Blue;
  9295. this.ddjPosTo6.Location = new System.Drawing.Point(119, 292);
  9296. this.ddjPosTo6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9297. this.ddjPosTo6.Name = "ddjPosTo6";
  9298. this.ddjPosTo6.Size = new System.Drawing.Size(31, 15);
  9299. this.ddjPosTo6.TabIndex = 73;
  9300. this.ddjPosTo6.Text = "---";
  9301. //
  9302. // ddjPosFrom6
  9303. //
  9304. this.ddjPosFrom6.AutoSize = true;
  9305. this.ddjPosFrom6.BackColor = System.Drawing.Color.Transparent;
  9306. this.ddjPosFrom6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9307. this.ddjPosFrom6.ForeColor = System.Drawing.Color.Blue;
  9308. this.ddjPosFrom6.Location = new System.Drawing.Point(119, 265);
  9309. this.ddjPosFrom6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9310. this.ddjPosFrom6.Name = "ddjPosFrom6";
  9311. this.ddjPosFrom6.Size = new System.Drawing.Size(31, 15);
  9312. this.ddjPosFrom6.TabIndex = 72;
  9313. this.ddjPosFrom6.Text = "---";
  9314. //
  9315. // label52
  9316. //
  9317. this.label52.AutoSize = true;
  9318. this.label52.BackColor = System.Drawing.Color.Transparent;
  9319. this.label52.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9320. this.label52.Location = new System.Drawing.Point(4, 265);
  9321. this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9322. this.label52.Name = "label52";
  9323. this.label52.Size = new System.Drawing.Size(82, 15);
  9324. this.label52.TabIndex = 71;
  9325. this.label52.Text = "起始位置:";
  9326. //
  9327. // label54
  9328. //
  9329. this.label54.AutoSize = true;
  9330. this.label54.BackColor = System.Drawing.Color.Transparent;
  9331. this.label54.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9332. this.label54.Location = new System.Drawing.Point(4, 292);
  9333. this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9334. this.label54.Name = "label54";
  9335. this.label54.Size = new System.Drawing.Size(82, 15);
  9336. this.label54.TabIndex = 70;
  9337. this.label54.Text = "目标位置:";
  9338. //
  9339. // ddjMode6
  9340. //
  9341. this.ddjMode6.AutoSize = true;
  9342. this.ddjMode6.BackColor = System.Drawing.Color.Transparent;
  9343. this.ddjMode6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9344. this.ddjMode6.ForeColor = System.Drawing.Color.Blue;
  9345. this.ddjMode6.Location = new System.Drawing.Point(116, 92);
  9346. this.ddjMode6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9347. this.ddjMode6.Name = "ddjMode6";
  9348. this.ddjMode6.Size = new System.Drawing.Size(31, 15);
  9349. this.ddjMode6.TabIndex = 12;
  9350. this.ddjMode6.Text = "---";
  9351. //
  9352. // ddjOrdId6
  9353. //
  9354. this.ddjOrdId6.AutoSize = true;
  9355. this.ddjOrdId6.BackColor = System.Drawing.Color.Transparent;
  9356. this.ddjOrdId6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9357. this.ddjOrdId6.ForeColor = System.Drawing.Color.Blue;
  9358. this.ddjOrdId6.Location = new System.Drawing.Point(116, 142);
  9359. this.ddjOrdId6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9360. this.ddjOrdId6.Name = "ddjOrdId6";
  9361. this.ddjOrdId6.Size = new System.Drawing.Size(31, 15);
  9362. this.ddjOrdId6.TabIndex = 64;
  9363. this.ddjOrdId6.Text = "---";
  9364. //
  9365. // label62
  9366. //
  9367. this.label62.AutoSize = true;
  9368. this.label62.BackColor = System.Drawing.Color.Transparent;
  9369. this.label62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9370. this.label62.Location = new System.Drawing.Point(3, 142);
  9371. this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9372. this.label62.Name = "label62";
  9373. this.label62.Size = new System.Drawing.Size(82, 15);
  9374. this.label62.TabIndex = 63;
  9375. this.label62.Text = "工作指令:";
  9376. //
  9377. // ddjOptType6
  9378. //
  9379. this.ddjOptType6.AutoSize = true;
  9380. this.ddjOptType6.BackColor = System.Drawing.Color.Transparent;
  9381. this.ddjOptType6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9382. this.ddjOptType6.ForeColor = System.Drawing.Color.Blue;
  9383. this.ddjOptType6.Location = new System.Drawing.Point(116, 162);
  9384. this.ddjOptType6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9385. this.ddjOptType6.Name = "ddjOptType6";
  9386. this.ddjOptType6.Size = new System.Drawing.Size(31, 15);
  9387. this.ddjOptType6.TabIndex = 62;
  9388. this.ddjOptType6.Text = "---";
  9389. //
  9390. // label68
  9391. //
  9392. this.label68.AutoSize = true;
  9393. this.label68.BackColor = System.Drawing.Color.Transparent;
  9394. this.label68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9395. this.label68.Location = new System.Drawing.Point(3, 162);
  9396. this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9397. this.label68.Name = "label68";
  9398. this.label68.Size = new System.Drawing.Size(82, 15);
  9399. this.label68.TabIndex = 61;
  9400. this.label68.Text = "作业类型:";
  9401. //
  9402. // ddjTotal_KM6
  9403. //
  9404. this.ddjTotal_KM6.AutoSize = true;
  9405. this.ddjTotal_KM6.BackColor = System.Drawing.Color.Transparent;
  9406. this.ddjTotal_KM6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9407. this.ddjTotal_KM6.ForeColor = System.Drawing.SystemColors.ControlText;
  9408. this.ddjTotal_KM6.Location = new System.Drawing.Point(117, 238);
  9409. this.ddjTotal_KM6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9410. this.ddjTotal_KM6.Name = "ddjTotal_KM6";
  9411. this.ddjTotal_KM6.Size = new System.Drawing.Size(31, 15);
  9412. this.ddjTotal_KM6.TabIndex = 16;
  9413. this.ddjTotal_KM6.Text = "---";
  9414. //
  9415. // label76
  9416. //
  9417. this.label76.AutoSize = true;
  9418. this.label76.BackColor = System.Drawing.Color.Transparent;
  9419. this.label76.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9420. this.label76.Location = new System.Drawing.Point(3, 92);
  9421. this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9422. this.label76.Name = "label76";
  9423. this.label76.Size = new System.Drawing.Size(82, 15);
  9424. this.label76.TabIndex = 15;
  9425. this.label76.Text = "工作模式:";
  9426. //
  9427. // ddjWorkTime6
  9428. //
  9429. this.ddjWorkTime6.AutoSize = true;
  9430. this.ddjWorkTime6.BackColor = System.Drawing.Color.Transparent;
  9431. this.ddjWorkTime6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9432. this.ddjWorkTime6.ForeColor = System.Drawing.Color.Red;
  9433. this.ddjWorkTime6.Location = new System.Drawing.Point(117, 212);
  9434. this.ddjWorkTime6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9435. this.ddjWorkTime6.Name = "ddjWorkTime6";
  9436. this.ddjWorkTime6.Size = new System.Drawing.Size(31, 15);
  9437. this.ddjWorkTime6.TabIndex = 14;
  9438. this.ddjWorkTime6.Text = "---";
  9439. //
  9440. // label82
  9441. //
  9442. this.label82.AutoSize = true;
  9443. this.label82.BackColor = System.Drawing.Color.Transparent;
  9444. this.label82.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9445. this.label82.Location = new System.Drawing.Point(3, 212);
  9446. this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9447. this.label82.Name = "label82";
  9448. this.label82.Size = new System.Drawing.Size(82, 15);
  9449. this.label82.TabIndex = 13;
  9450. this.label82.Text = "运行时长:";
  9451. //
  9452. // ddjStatus6
  9453. //
  9454. this.ddjStatus6.AutoSize = true;
  9455. this.ddjStatus6.BackColor = System.Drawing.Color.Transparent;
  9456. this.ddjStatus6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9457. this.ddjStatus6.ForeColor = System.Drawing.Color.Blue;
  9458. this.ddjStatus6.Location = new System.Drawing.Point(116, 115);
  9459. this.ddjStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9460. this.ddjStatus6.Name = "ddjStatus6";
  9461. this.ddjStatus6.Size = new System.Drawing.Size(31, 15);
  9462. this.ddjStatus6.TabIndex = 10;
  9463. this.ddjStatus6.Text = "---";
  9464. //
  9465. // ddjPosCurr6
  9466. //
  9467. this.ddjPosCurr6.AutoSize = true;
  9468. this.ddjPosCurr6.BackColor = System.Drawing.Color.Transparent;
  9469. this.ddjPosCurr6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9470. this.ddjPosCurr6.ForeColor = System.Drawing.Color.Blue;
  9471. this.ddjPosCurr6.Location = new System.Drawing.Point(117, 188);
  9472. this.ddjPosCurr6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9473. this.ddjPosCurr6.Name = "ddjPosCurr6";
  9474. this.ddjPosCurr6.Size = new System.Drawing.Size(15, 15);
  9475. this.ddjPosCurr6.TabIndex = 9;
  9476. this.ddjPosCurr6.Text = "6";
  9477. //
  9478. // label95
  9479. //
  9480. this.label95.AutoSize = true;
  9481. this.label95.BackColor = System.Drawing.Color.Transparent;
  9482. this.label95.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9483. this.label95.ForeColor = System.Drawing.SystemColors.ControlText;
  9484. this.label95.Location = new System.Drawing.Point(3, 238);
  9485. this.label95.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9486. this.label95.Name = "label95";
  9487. this.label95.Size = new System.Drawing.Size(83, 15);
  9488. this.label95.TabIndex = 8;
  9489. this.label95.Text = "里 程 数:";
  9490. //
  9491. // label97
  9492. //
  9493. this.label97.AutoSize = true;
  9494. this.label97.BackColor = System.Drawing.Color.Transparent;
  9495. this.label97.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9496. this.label97.Location = new System.Drawing.Point(3, 115);
  9497. this.label97.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9498. this.label97.Name = "label97";
  9499. this.label97.Size = new System.Drawing.Size(82, 15);
  9500. this.label97.TabIndex = 6;
  9501. this.label97.Text = "工作状态:";
  9502. //
  9503. // label98
  9504. //
  9505. this.label98.AutoSize = true;
  9506. this.label98.BackColor = System.Drawing.Color.Transparent;
  9507. this.label98.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9508. this.label98.Location = new System.Drawing.Point(3, 188);
  9509. this.label98.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9510. this.label98.Name = "label98";
  9511. this.label98.Size = new System.Drawing.Size(82, 15);
  9512. this.label98.TabIndex = 1;
  9513. this.label98.Text = "当前巷道:";
  9514. //
  9515. // lblsrm06
  9516. //
  9517. this.lblsrm06.AutoSize = true;
  9518. this.lblsrm06.BackColor = System.Drawing.Color.Transparent;
  9519. this.lblsrm06.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9520. this.lblsrm06.Location = new System.Drawing.Point(40, 32);
  9521. this.lblsrm06.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9522. this.lblsrm06.Name = "lblsrm06";
  9523. this.lblsrm06.Size = new System.Drawing.Size(115, 20);
  9524. this.lblsrm06.TabIndex = 0;
  9525. this.lblsrm06.Text = "6号 堆垛机";
  9526. //
  9527. // G6
  9528. //
  9529. this.G6.BackColor = System.Drawing.Color.Transparent;
  9530. this.G6.Image = ((System.Drawing.Image)(resources.GetObject("G6.Image")));
  9531. this.G6.Location = new System.Drawing.Point(88, -2);
  9532. this.G6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9533. this.G6.Name = "G6";
  9534. this.G6.Size = new System.Drawing.Size(35, 32);
  9535. this.G6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9536. this.G6.TabIndex = 65;
  9537. this.G6.TabStop = false;
  9538. this.G6.Tag = "1";
  9539. //
  9540. // pictureBox2
  9541. //
  9542. this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
  9543. this.pictureBox2.Location = new System.Drawing.Point(87, -2);
  9544. this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9545. this.pictureBox2.Name = "pictureBox2";
  9546. this.pictureBox2.Size = new System.Drawing.Size(35, 32);
  9547. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9548. this.pictureBox2.TabIndex = 5;
  9549. this.pictureBox2.TabStop = false;
  9550. //
  9551. // pnlRGV1089
  9552. //
  9553. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  9554. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9555. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9556. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9557. this.pnlRGV1089.Controls.Add(this.label7);
  9558. this.pnlRGV1089.Controls.Add(this.label8);
  9559. this.pnlRGV1089.Controls.Add(this.label9);
  9560. this.pnlRGV1089.Controls.Add(this.rgvOptType3);
  9561. this.pnlRGV1089.Controls.Add(this.label31);
  9562. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  9563. this.pnlRGV1089.Controls.Add(this.rgvPosCurr3);
  9564. this.pnlRGV1089.Controls.Add(this.rgvMode3);
  9565. this.pnlRGV1089.Controls.Add(this.rgvOrdId3);
  9566. this.pnlRGV1089.Controls.Add(this.label50);
  9567. this.pnlRGV1089.Controls.Add(this.rgvPosTo3);
  9568. this.pnlRGV1089.Controls.Add(this.label53);
  9569. this.pnlRGV1089.Controls.Add(this.rgvPosFrom3);
  9570. this.pnlRGV1089.Controls.Add(this.rgvStatus3);
  9571. this.pnlRGV1089.Controls.Add(this.label63);
  9572. this.pnlRGV1089.Controls.Add(this.lblrgv3);
  9573. this.pnlRGV1089.Controls.Add(this.GV3);
  9574. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  9575. this.pnlRGV1089.Location = new System.Drawing.Point(2222, 3);
  9576. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9577. this.pnlRGV1089.Name = "pnlRGV1089";
  9578. this.pnlRGV1089.Size = new System.Drawing.Size(217, 312);
  9579. this.pnlRGV1089.TabIndex = 128;
  9580. //
  9581. // label7
  9582. //
  9583. this.label7.AutoSize = true;
  9584. this.label7.BackColor = System.Drawing.Color.Transparent;
  9585. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9586. this.label7.Location = new System.Drawing.Point(5, 244);
  9587. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9588. this.label7.Name = "label7";
  9589. this.label7.Size = new System.Drawing.Size(82, 15);
  9590. this.label7.TabIndex = 106;
  9591. this.label7.Text = "光电状态:";
  9592. //
  9593. // label8
  9594. //
  9595. this.label8.AutoSize = true;
  9596. this.label8.BackColor = System.Drawing.Color.Transparent;
  9597. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9598. this.label8.Location = new System.Drawing.Point(4, 191);
  9599. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9600. this.label8.Name = "label8";
  9601. this.label8.Size = new System.Drawing.Size(82, 15);
  9602. this.label8.TabIndex = 105;
  9603. this.label8.Text = "起始地址:";
  9604. //
  9605. // label9
  9606. //
  9607. this.label9.AutoSize = true;
  9608. this.label9.BackColor = System.Drawing.Color.Transparent;
  9609. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9610. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  9611. this.label9.Location = new System.Drawing.Point(4, 216);
  9612. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9613. this.label9.Name = "label9";
  9614. this.label9.Size = new System.Drawing.Size(82, 15);
  9615. this.label9.TabIndex = 104;
  9616. this.label9.Text = "目标地址:";
  9617. //
  9618. // rgvOptType3
  9619. //
  9620. this.rgvOptType3.AutoSize = true;
  9621. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  9622. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9623. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  9624. this.rgvOptType3.Location = new System.Drawing.Point(96, 166);
  9625. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9626. this.rgvOptType3.Name = "rgvOptType3";
  9627. this.rgvOptType3.Size = new System.Drawing.Size(31, 15);
  9628. this.rgvOptType3.TabIndex = 101;
  9629. this.rgvOptType3.Text = "---";
  9630. //
  9631. // label31
  9632. //
  9633. this.label31.AutoSize = true;
  9634. this.label31.BackColor = System.Drawing.Color.Transparent;
  9635. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9636. this.label31.Location = new System.Drawing.Point(3, 166);
  9637. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9638. this.label31.Name = "label31";
  9639. this.label31.Size = new System.Drawing.Size(82, 15);
  9640. this.label31.TabIndex = 100;
  9641. this.label31.Text = "作业类型:";
  9642. //
  9643. // lblRGVWarning1089
  9644. //
  9645. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  9646. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9647. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  9648. this.lblRGVWarning1089.Location = new System.Drawing.Point(7, 58);
  9649. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9650. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  9651. this.lblRGVWarning1089.Size = new System.Drawing.Size(201, 30);
  9652. this.lblRGVWarning1089.TabIndex = 92;
  9653. //
  9654. // rgvPosCurr3
  9655. //
  9656. this.rgvPosCurr3.AutoSize = true;
  9657. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  9658. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9659. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  9660. this.rgvPosCurr3.Location = new System.Drawing.Point(95, 244);
  9661. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9662. this.rgvPosCurr3.Name = "rgvPosCurr3";
  9663. this.rgvPosCurr3.Size = new System.Drawing.Size(31, 15);
  9664. this.rgvPosCurr3.TabIndex = 72;
  9665. this.rgvPosCurr3.Text = "---";
  9666. //
  9667. // rgvMode3
  9668. //
  9669. this.rgvMode3.AutoSize = true;
  9670. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  9671. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9672. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  9673. this.rgvMode3.Location = new System.Drawing.Point(96, 92);
  9674. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9675. this.rgvMode3.Name = "rgvMode3";
  9676. this.rgvMode3.Size = new System.Drawing.Size(31, 15);
  9677. this.rgvMode3.TabIndex = 12;
  9678. this.rgvMode3.Text = "---";
  9679. //
  9680. // rgvOrdId3
  9681. //
  9682. this.rgvOrdId3.AutoSize = true;
  9683. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  9684. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9685. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  9686. this.rgvOrdId3.Location = new System.Drawing.Point(96, 142);
  9687. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9688. this.rgvOrdId3.Name = "rgvOrdId3";
  9689. this.rgvOrdId3.Size = new System.Drawing.Size(31, 15);
  9690. this.rgvOrdId3.TabIndex = 64;
  9691. this.rgvOrdId3.Text = "---";
  9692. //
  9693. // label50
  9694. //
  9695. this.label50.AutoSize = true;
  9696. this.label50.BackColor = System.Drawing.Color.Transparent;
  9697. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9698. this.label50.Location = new System.Drawing.Point(3, 142);
  9699. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9700. this.label50.Name = "label50";
  9701. this.label50.Size = new System.Drawing.Size(82, 15);
  9702. this.label50.TabIndex = 63;
  9703. this.label50.Text = "工作指令:";
  9704. //
  9705. // rgvPosTo3
  9706. //
  9707. this.rgvPosTo3.AutoSize = true;
  9708. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  9709. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9710. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  9711. this.rgvPosTo3.Location = new System.Drawing.Point(93, 216);
  9712. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9713. this.rgvPosTo3.Name = "rgvPosTo3";
  9714. this.rgvPosTo3.Size = new System.Drawing.Size(31, 15);
  9715. this.rgvPosTo3.TabIndex = 16;
  9716. this.rgvPosTo3.Text = "---";
  9717. //
  9718. // label53
  9719. //
  9720. this.label53.AutoSize = true;
  9721. this.label53.BackColor = System.Drawing.Color.Transparent;
  9722. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9723. this.label53.Location = new System.Drawing.Point(3, 92);
  9724. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9725. this.label53.Name = "label53";
  9726. this.label53.Size = new System.Drawing.Size(82, 15);
  9727. this.label53.TabIndex = 15;
  9728. this.label53.Text = "工作模式:";
  9729. //
  9730. // rgvPosFrom3
  9731. //
  9732. this.rgvPosFrom3.AutoSize = true;
  9733. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  9734. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9735. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  9736. this.rgvPosFrom3.Location = new System.Drawing.Point(93, 191);
  9737. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9738. this.rgvPosFrom3.Name = "rgvPosFrom3";
  9739. this.rgvPosFrom3.Size = new System.Drawing.Size(31, 15);
  9740. this.rgvPosFrom3.TabIndex = 14;
  9741. this.rgvPosFrom3.Text = "---";
  9742. //
  9743. // rgvStatus3
  9744. //
  9745. this.rgvStatus3.AutoSize = true;
  9746. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  9747. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9748. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  9749. this.rgvStatus3.Location = new System.Drawing.Point(96, 115);
  9750. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9751. this.rgvStatus3.Name = "rgvStatus3";
  9752. this.rgvStatus3.Size = new System.Drawing.Size(31, 15);
  9753. this.rgvStatus3.TabIndex = 10;
  9754. this.rgvStatus3.Text = "---";
  9755. //
  9756. // label63
  9757. //
  9758. this.label63.AutoSize = true;
  9759. this.label63.BackColor = System.Drawing.Color.Transparent;
  9760. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9761. this.label63.Location = new System.Drawing.Point(3, 115);
  9762. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9763. this.label63.Name = "label63";
  9764. this.label63.Size = new System.Drawing.Size(82, 15);
  9765. this.label63.TabIndex = 6;
  9766. this.label63.Text = "工作状态:";
  9767. //
  9768. // lblrgv3
  9769. //
  9770. this.lblrgv3.AutoSize = true;
  9771. this.lblrgv3.BackColor = System.Drawing.Color.Transparent;
  9772. this.lblrgv3.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9773. this.lblrgv3.Location = new System.Drawing.Point(59, 32);
  9774. this.lblrgv3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9775. this.lblrgv3.Name = "lblrgv3";
  9776. this.lblrgv3.Size = new System.Drawing.Size(53, 20);
  9777. this.lblrgv3.TabIndex = 0;
  9778. this.lblrgv3.Text = "RGV3";
  9779. //
  9780. // GV3
  9781. //
  9782. this.GV3.BackColor = System.Drawing.Color.Transparent;
  9783. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  9784. this.GV3.Location = new System.Drawing.Point(88, -2);
  9785. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9786. this.GV3.Name = "GV3";
  9787. this.GV3.Size = new System.Drawing.Size(35, 32);
  9788. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9789. this.GV3.TabIndex = 65;
  9790. this.GV3.TabStop = false;
  9791. this.GV3.Tag = "1";
  9792. //
  9793. // pictureBox4
  9794. //
  9795. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  9796. this.pictureBox4.Location = new System.Drawing.Point(87, -2);
  9797. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9798. this.pictureBox4.Name = "pictureBox4";
  9799. this.pictureBox4.Size = new System.Drawing.Size(35, 32);
  9800. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9801. this.pictureBox4.TabIndex = 5;
  9802. this.pictureBox4.TabStop = false;
  9803. //
  9804. // myPanel2
  9805. //
  9806. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  9807. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9808. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9809. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9810. this.myPanel2.Controls.Add(this.myPanel4);
  9811. this.myPanel2.Controls.Add(this.rgvOptType2);
  9812. this.myPanel2.Controls.Add(this.label23);
  9813. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  9814. this.myPanel2.Controls.Add(this.rgvPosCurr2);
  9815. this.myPanel2.Controls.Add(this.label45);
  9816. this.myPanel2.Controls.Add(this.rgvMode2);
  9817. this.myPanel2.Controls.Add(this.rgvOrdId2);
  9818. this.myPanel2.Controls.Add(this.label58);
  9819. this.myPanel2.Controls.Add(this.rgvPosTo2);
  9820. this.myPanel2.Controls.Add(this.label69);
  9821. this.myPanel2.Controls.Add(this.rgvPosFrom2);
  9822. this.myPanel2.Controls.Add(this.label73);
  9823. this.myPanel2.Controls.Add(this.rgvStatus2);
  9824. this.myPanel2.Controls.Add(this.label80);
  9825. this.myPanel2.Controls.Add(this.label92);
  9826. this.myPanel2.Controls.Add(this.lblrgv2);
  9827. this.myPanel2.Controls.Add(this.GV2);
  9828. this.myPanel2.Controls.Add(this.pictureBox5);
  9829. this.myPanel2.Location = new System.Drawing.Point(1999, 4);
  9830. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9831. this.myPanel2.Name = "myPanel2";
  9832. this.myPanel2.Size = new System.Drawing.Size(217, 312);
  9833. this.myPanel2.TabIndex = 114;
  9834. //
  9835. // myPanel4
  9836. //
  9837. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  9838. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9839. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9840. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9841. this.myPanel4.Controls.Add(this.label124);
  9842. this.myPanel4.Controls.Add(this.label125);
  9843. this.myPanel4.Controls.Add(this.label126);
  9844. this.myPanel4.Controls.Add(this.label127);
  9845. this.myPanel4.Controls.Add(this.label128);
  9846. this.myPanel4.Controls.Add(this.label129);
  9847. this.myPanel4.Controls.Add(this.label130);
  9848. this.myPanel4.Controls.Add(this.label131);
  9849. this.myPanel4.Controls.Add(this.label132);
  9850. this.myPanel4.Controls.Add(this.label133);
  9851. this.myPanel4.Controls.Add(this.label134);
  9852. this.myPanel4.Controls.Add(this.label135);
  9853. this.myPanel4.Controls.Add(this.label136);
  9854. this.myPanel4.Controls.Add(this.label138);
  9855. this.myPanel4.Controls.Add(this.label140);
  9856. this.myPanel4.Controls.Add(this.label141);
  9857. this.myPanel4.Controls.Add(this.label142);
  9858. this.myPanel4.Controls.Add(this.label143);
  9859. this.myPanel4.Controls.Add(this.label144);
  9860. this.myPanel4.Controls.Add(this.label145);
  9861. this.myPanel4.Controls.Add(this.label146);
  9862. this.myPanel4.Controls.Add(this.label147);
  9863. this.myPanel4.Controls.Add(this.pictureBox11);
  9864. this.myPanel4.Controls.Add(this.pictureBox12);
  9865. this.myPanel4.Location = new System.Drawing.Point(252, -2);
  9866. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9867. this.myPanel4.Name = "myPanel4";
  9868. this.myPanel4.Size = new System.Drawing.Size(244, 324);
  9869. this.myPanel4.TabIndex = 106;
  9870. //
  9871. // label124
  9872. //
  9873. this.label124.BackColor = System.Drawing.Color.DarkGray;
  9874. this.label124.Location = new System.Drawing.Point(163, 4);
  9875. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9876. this.label124.Name = "label124";
  9877. this.label124.Size = new System.Drawing.Size(37, 30);
  9878. this.label124.TabIndex = 103;
  9879. this.label124.Text = "出";
  9880. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9881. //
  9882. // label125
  9883. //
  9884. this.label125.BackColor = System.Drawing.Color.DarkGray;
  9885. this.label125.Location = new System.Drawing.Point(8, 4);
  9886. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9887. this.label125.Name = "label125";
  9888. this.label125.Size = new System.Drawing.Size(37, 30);
  9889. this.label125.TabIndex = 102;
  9890. this.label125.Tag = "4";
  9891. this.label125.Text = "入";
  9892. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9893. //
  9894. // label126
  9895. //
  9896. this.label126.AutoSize = true;
  9897. this.label126.BackColor = System.Drawing.Color.Transparent;
  9898. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9899. this.label126.ForeColor = System.Drawing.Color.Blue;
  9900. this.label126.Location = new System.Drawing.Point(116, 166);
  9901. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9902. this.label126.Name = "label126";
  9903. this.label126.Size = new System.Drawing.Size(31, 15);
  9904. this.label126.TabIndex = 101;
  9905. this.label126.Text = "---";
  9906. //
  9907. // label127
  9908. //
  9909. this.label127.AutoSize = true;
  9910. this.label127.BackColor = System.Drawing.Color.Transparent;
  9911. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9912. this.label127.Location = new System.Drawing.Point(3, 166);
  9913. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9914. this.label127.Name = "label127";
  9915. this.label127.Size = new System.Drawing.Size(82, 15);
  9916. this.label127.TabIndex = 100;
  9917. this.label127.Text = "作业类型:";
  9918. //
  9919. // label128
  9920. //
  9921. this.label128.BackColor = System.Drawing.Color.Transparent;
  9922. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9923. this.label128.ForeColor = System.Drawing.Color.Red;
  9924. this.label128.Location = new System.Drawing.Point(7, 58);
  9925. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9926. this.label128.Name = "label128";
  9927. this.label128.Size = new System.Drawing.Size(201, 30);
  9928. this.label128.TabIndex = 92;
  9929. //
  9930. // label129
  9931. //
  9932. this.label129.AutoSize = true;
  9933. this.label129.BackColor = System.Drawing.Color.Transparent;
  9934. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9935. this.label129.ForeColor = System.Drawing.Color.Blue;
  9936. this.label129.Location = new System.Drawing.Point(119, 295);
  9937. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9938. this.label129.Name = "label129";
  9939. this.label129.Size = new System.Drawing.Size(31, 15);
  9940. this.label129.TabIndex = 73;
  9941. this.label129.Text = "---";
  9942. //
  9943. // label130
  9944. //
  9945. this.label130.AutoSize = true;
  9946. this.label130.BackColor = System.Drawing.Color.Transparent;
  9947. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9948. this.label130.ForeColor = System.Drawing.Color.Blue;
  9949. this.label130.Location = new System.Drawing.Point(119, 268);
  9950. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9951. this.label130.Name = "label130";
  9952. this.label130.Size = new System.Drawing.Size(31, 15);
  9953. this.label130.TabIndex = 72;
  9954. this.label130.Text = "---";
  9955. //
  9956. // label131
  9957. //
  9958. this.label131.AutoSize = true;
  9959. this.label131.BackColor = System.Drawing.Color.Transparent;
  9960. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9961. this.label131.Location = new System.Drawing.Point(4, 268);
  9962. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9963. this.label131.Name = "label131";
  9964. this.label131.Size = new System.Drawing.Size(82, 15);
  9965. this.label131.TabIndex = 71;
  9966. this.label131.Text = "起始位置:";
  9967. //
  9968. // label132
  9969. //
  9970. this.label132.AutoSize = true;
  9971. this.label132.BackColor = System.Drawing.Color.Transparent;
  9972. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9973. this.label132.Location = new System.Drawing.Point(4, 295);
  9974. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9975. this.label132.Name = "label132";
  9976. this.label132.Size = new System.Drawing.Size(82, 15);
  9977. this.label132.TabIndex = 70;
  9978. this.label132.Text = "目标位置:";
  9979. //
  9980. // label133
  9981. //
  9982. this.label133.AutoSize = true;
  9983. this.label133.BackColor = System.Drawing.Color.Transparent;
  9984. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9985. this.label133.ForeColor = System.Drawing.Color.Blue;
  9986. this.label133.Location = new System.Drawing.Point(116, 92);
  9987. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9988. this.label133.Name = "label133";
  9989. this.label133.Size = new System.Drawing.Size(31, 15);
  9990. this.label133.TabIndex = 12;
  9991. this.label133.Text = "---";
  9992. //
  9993. // label134
  9994. //
  9995. this.label134.AutoSize = true;
  9996. this.label134.BackColor = System.Drawing.Color.Transparent;
  9997. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9998. this.label134.ForeColor = System.Drawing.Color.Blue;
  9999. this.label134.Location = new System.Drawing.Point(116, 142);
  10000. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10001. this.label134.Name = "label134";
  10002. this.label134.Size = new System.Drawing.Size(31, 15);
  10003. this.label134.TabIndex = 64;
  10004. this.label134.Text = "---";
  10005. //
  10006. // label135
  10007. //
  10008. this.label135.AutoSize = true;
  10009. this.label135.BackColor = System.Drawing.Color.Transparent;
  10010. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10011. this.label135.Location = new System.Drawing.Point(3, 142);
  10012. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10013. this.label135.Name = "label135";
  10014. this.label135.Size = new System.Drawing.Size(82, 15);
  10015. this.label135.TabIndex = 63;
  10016. this.label135.Text = "工作指令:";
  10017. //
  10018. // label136
  10019. //
  10020. this.label136.AutoSize = true;
  10021. this.label136.BackColor = System.Drawing.Color.Transparent;
  10022. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10023. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  10024. this.label136.Location = new System.Drawing.Point(117, 240);
  10025. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10026. this.label136.Name = "label136";
  10027. this.label136.Size = new System.Drawing.Size(31, 15);
  10028. this.label136.TabIndex = 16;
  10029. this.label136.Text = "---";
  10030. //
  10031. // label138
  10032. //
  10033. this.label138.AutoSize = true;
  10034. this.label138.BackColor = System.Drawing.Color.Transparent;
  10035. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10036. this.label138.Location = new System.Drawing.Point(3, 92);
  10037. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10038. this.label138.Name = "label138";
  10039. this.label138.Size = new System.Drawing.Size(82, 15);
  10040. this.label138.TabIndex = 15;
  10041. this.label138.Text = "工作模式:";
  10042. //
  10043. // label140
  10044. //
  10045. this.label140.AutoSize = true;
  10046. this.label140.BackColor = System.Drawing.Color.Transparent;
  10047. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10048. this.label140.ForeColor = System.Drawing.Color.Red;
  10049. this.label140.Location = new System.Drawing.Point(117, 215);
  10050. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10051. this.label140.Name = "label140";
  10052. this.label140.Size = new System.Drawing.Size(31, 15);
  10053. this.label140.TabIndex = 14;
  10054. this.label140.Text = "---";
  10055. //
  10056. // label141
  10057. //
  10058. this.label141.AutoSize = true;
  10059. this.label141.BackColor = System.Drawing.Color.Transparent;
  10060. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10061. this.label141.Location = new System.Drawing.Point(3, 215);
  10062. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10063. this.label141.Name = "label141";
  10064. this.label141.Size = new System.Drawing.Size(82, 15);
  10065. this.label141.TabIndex = 13;
  10066. this.label141.Text = "运行时长:";
  10067. //
  10068. // label142
  10069. //
  10070. this.label142.AutoSize = true;
  10071. this.label142.BackColor = System.Drawing.Color.Transparent;
  10072. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10073. this.label142.ForeColor = System.Drawing.Color.Blue;
  10074. this.label142.Location = new System.Drawing.Point(116, 115);
  10075. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10076. this.label142.Name = "label142";
  10077. this.label142.Size = new System.Drawing.Size(31, 15);
  10078. this.label142.TabIndex = 10;
  10079. this.label142.Text = "---";
  10080. //
  10081. // label143
  10082. //
  10083. this.label143.AutoSize = true;
  10084. this.label143.BackColor = System.Drawing.Color.Transparent;
  10085. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10086. this.label143.ForeColor = System.Drawing.Color.Blue;
  10087. this.label143.Location = new System.Drawing.Point(117, 190);
  10088. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10089. this.label143.Name = "label143";
  10090. this.label143.Size = new System.Drawing.Size(31, 15);
  10091. this.label143.TabIndex = 9;
  10092. this.label143.Text = "---";
  10093. //
  10094. // label144
  10095. //
  10096. this.label144.AutoSize = true;
  10097. this.label144.BackColor = System.Drawing.Color.Transparent;
  10098. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10099. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  10100. this.label144.Location = new System.Drawing.Point(3, 240);
  10101. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10102. this.label144.Name = "label144";
  10103. this.label144.Size = new System.Drawing.Size(83, 15);
  10104. this.label144.TabIndex = 8;
  10105. this.label144.Text = "里 程 数:";
  10106. //
  10107. // label145
  10108. //
  10109. this.label145.AutoSize = true;
  10110. this.label145.BackColor = System.Drawing.Color.Transparent;
  10111. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10112. this.label145.Location = new System.Drawing.Point(3, 115);
  10113. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10114. this.label145.Name = "label145";
  10115. this.label145.Size = new System.Drawing.Size(82, 15);
  10116. this.label145.TabIndex = 6;
  10117. this.label145.Text = "工作状态:";
  10118. //
  10119. // label146
  10120. //
  10121. this.label146.AutoSize = true;
  10122. this.label146.BackColor = System.Drawing.Color.Transparent;
  10123. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10124. this.label146.Location = new System.Drawing.Point(3, 190);
  10125. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10126. this.label146.Name = "label146";
  10127. this.label146.Size = new System.Drawing.Size(82, 15);
  10128. this.label146.TabIndex = 1;
  10129. this.label146.Text = "当前位置:";
  10130. //
  10131. // label147
  10132. //
  10133. this.label147.AutoSize = true;
  10134. this.label147.BackColor = System.Drawing.Color.Transparent;
  10135. 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)));
  10136. this.label147.Location = new System.Drawing.Point(59, 32);
  10137. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10138. this.label147.Name = "label147";
  10139. this.label147.Size = new System.Drawing.Size(86, 20);
  10140. this.label147.TabIndex = 0;
  10141. this.label147.Text = "RGV1091";
  10142. //
  10143. // pictureBox11
  10144. //
  10145. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  10146. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  10147. this.pictureBox11.Location = new System.Drawing.Point(88, -2);
  10148. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  10149. this.pictureBox11.Name = "pictureBox11";
  10150. this.pictureBox11.Size = new System.Drawing.Size(35, 32);
  10151. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  10152. this.pictureBox11.TabIndex = 65;
  10153. this.pictureBox11.TabStop = false;
  10154. this.pictureBox11.Tag = "1";
  10155. //
  10156. // pictureBox12
  10157. //
  10158. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  10159. this.pictureBox12.Location = new System.Drawing.Point(87, -2);
  10160. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  10161. this.pictureBox12.Name = "pictureBox12";
  10162. this.pictureBox12.Size = new System.Drawing.Size(35, 32);
  10163. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  10164. this.pictureBox12.TabIndex = 5;
  10165. this.pictureBox12.TabStop = false;
  10166. //
  10167. // rgvOptType2
  10168. //
  10169. this.rgvOptType2.AutoSize = true;
  10170. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  10171. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10172. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  10173. this.rgvOptType2.Location = new System.Drawing.Point(96, 166);
  10174. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10175. this.rgvOptType2.Name = "rgvOptType2";
  10176. this.rgvOptType2.Size = new System.Drawing.Size(31, 15);
  10177. this.rgvOptType2.TabIndex = 101;
  10178. this.rgvOptType2.Text = "---";
  10179. //
  10180. // label23
  10181. //
  10182. this.label23.AutoSize = true;
  10183. this.label23.BackColor = System.Drawing.Color.Transparent;
  10184. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10185. this.label23.Location = new System.Drawing.Point(3, 166);
  10186. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10187. this.label23.Name = "label23";
  10188. this.label23.Size = new System.Drawing.Size(82, 15);
  10189. this.label23.TabIndex = 100;
  10190. this.label23.Text = "作业类型:";
  10191. //
  10192. // lblRGVWarning1444
  10193. //
  10194. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  10195. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10196. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  10197. this.lblRGVWarning1444.Location = new System.Drawing.Point(7, 58);
  10198. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10199. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  10200. this.lblRGVWarning1444.Size = new System.Drawing.Size(201, 30);
  10201. this.lblRGVWarning1444.TabIndex = 92;
  10202. //
  10203. // rgvPosCurr2
  10204. //
  10205. this.rgvPosCurr2.AutoSize = true;
  10206. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  10207. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10208. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  10209. this.rgvPosCurr2.Location = new System.Drawing.Point(99, 242);
  10210. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10211. this.rgvPosCurr2.Name = "rgvPosCurr2";
  10212. this.rgvPosCurr2.Size = new System.Drawing.Size(31, 15);
  10213. this.rgvPosCurr2.TabIndex = 72;
  10214. this.rgvPosCurr2.Text = "---";
  10215. //
  10216. // label45
  10217. //
  10218. this.label45.AutoSize = true;
  10219. this.label45.BackColor = System.Drawing.Color.Transparent;
  10220. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10221. this.label45.Location = new System.Drawing.Point(4, 242);
  10222. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10223. this.label45.Name = "label45";
  10224. this.label45.Size = new System.Drawing.Size(82, 15);
  10225. this.label45.TabIndex = 71;
  10226. this.label45.Text = "光电状态:";
  10227. //
  10228. // rgvMode2
  10229. //
  10230. this.rgvMode2.AutoSize = true;
  10231. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  10232. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10233. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  10234. this.rgvMode2.Location = new System.Drawing.Point(96, 92);
  10235. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10236. this.rgvMode2.Name = "rgvMode2";
  10237. this.rgvMode2.Size = new System.Drawing.Size(31, 15);
  10238. this.rgvMode2.TabIndex = 12;
  10239. this.rgvMode2.Text = "---";
  10240. //
  10241. // rgvOrdId2
  10242. //
  10243. this.rgvOrdId2.AutoSize = true;
  10244. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  10245. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10246. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  10247. this.rgvOrdId2.Location = new System.Drawing.Point(96, 142);
  10248. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10249. this.rgvOrdId2.Name = "rgvOrdId2";
  10250. this.rgvOrdId2.Size = new System.Drawing.Size(31, 15);
  10251. this.rgvOrdId2.TabIndex = 64;
  10252. this.rgvOrdId2.Text = "---";
  10253. //
  10254. // label58
  10255. //
  10256. this.label58.AutoSize = true;
  10257. this.label58.BackColor = System.Drawing.Color.Transparent;
  10258. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10259. this.label58.Location = new System.Drawing.Point(3, 142);
  10260. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10261. this.label58.Name = "label58";
  10262. this.label58.Size = new System.Drawing.Size(82, 15);
  10263. this.label58.TabIndex = 63;
  10264. this.label58.Text = "工作指令:";
  10265. //
  10266. // rgvPosTo2
  10267. //
  10268. this.rgvPosTo2.AutoSize = true;
  10269. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  10270. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10271. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  10272. this.rgvPosTo2.Location = new System.Drawing.Point(97, 215);
  10273. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10274. this.rgvPosTo2.Name = "rgvPosTo2";
  10275. this.rgvPosTo2.Size = new System.Drawing.Size(31, 15);
  10276. this.rgvPosTo2.TabIndex = 16;
  10277. this.rgvPosTo2.Text = "---";
  10278. //
  10279. // label69
  10280. //
  10281. this.label69.AutoSize = true;
  10282. this.label69.BackColor = System.Drawing.Color.Transparent;
  10283. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10284. this.label69.Location = new System.Drawing.Point(3, 92);
  10285. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10286. this.label69.Name = "label69";
  10287. this.label69.Size = new System.Drawing.Size(82, 15);
  10288. this.label69.TabIndex = 15;
  10289. this.label69.Text = "工作模式:";
  10290. //
  10291. // rgvPosFrom2
  10292. //
  10293. this.rgvPosFrom2.AutoSize = true;
  10294. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  10295. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10296. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  10297. this.rgvPosFrom2.Location = new System.Drawing.Point(97, 190);
  10298. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10299. this.rgvPosFrom2.Name = "rgvPosFrom2";
  10300. this.rgvPosFrom2.Size = new System.Drawing.Size(31, 15);
  10301. this.rgvPosFrom2.TabIndex = 14;
  10302. this.rgvPosFrom2.Text = "---";
  10303. //
  10304. // label73
  10305. //
  10306. this.label73.AutoSize = true;
  10307. this.label73.BackColor = System.Drawing.Color.Transparent;
  10308. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10309. this.label73.Location = new System.Drawing.Point(3, 190);
  10310. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10311. this.label73.Name = "label73";
  10312. this.label73.Size = new System.Drawing.Size(82, 15);
  10313. this.label73.TabIndex = 13;
  10314. this.label73.Text = "起始地址:";
  10315. //
  10316. // rgvStatus2
  10317. //
  10318. this.rgvStatus2.AutoSize = true;
  10319. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  10320. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10321. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  10322. this.rgvStatus2.Location = new System.Drawing.Point(96, 115);
  10323. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10324. this.rgvStatus2.Name = "rgvStatus2";
  10325. this.rgvStatus2.Size = new System.Drawing.Size(31, 15);
  10326. this.rgvStatus2.TabIndex = 10;
  10327. this.rgvStatus2.Text = "---";
  10328. //
  10329. // label80
  10330. //
  10331. this.label80.AutoSize = true;
  10332. this.label80.BackColor = System.Drawing.Color.Transparent;
  10333. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10334. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  10335. this.label80.Location = new System.Drawing.Point(3, 215);
  10336. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10337. this.label80.Name = "label80";
  10338. this.label80.Size = new System.Drawing.Size(82, 15);
  10339. this.label80.TabIndex = 8;
  10340. this.label80.Text = "目标地址:";
  10341. //
  10342. // label92
  10343. //
  10344. this.label92.AutoSize = true;
  10345. this.label92.BackColor = System.Drawing.Color.Transparent;
  10346. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10347. this.label92.Location = new System.Drawing.Point(3, 115);
  10348. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10349. this.label92.Name = "label92";
  10350. this.label92.Size = new System.Drawing.Size(82, 15);
  10351. this.label92.TabIndex = 6;
  10352. this.label92.Text = "工作状态:";
  10353. //
  10354. // lblrgv2
  10355. //
  10356. this.lblrgv2.AutoSize = true;
  10357. this.lblrgv2.BackColor = System.Drawing.Color.Transparent;
  10358. this.lblrgv2.Font = new System.Drawing.Font("宋体", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  10359. this.lblrgv2.Location = new System.Drawing.Point(59, 32);
  10360. this.lblrgv2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  10361. this.lblrgv2.Name = "lblrgv2";
  10362. this.lblrgv2.Size = new System.Drawing.Size(53, 20);
  10363. this.lblrgv2.TabIndex = 0;
  10364. this.lblrgv2.Text = "RGV2";
  10365. //
  10366. // GV2
  10367. //
  10368. this.GV2.BackColor = System.Drawing.Color.Transparent;
  10369. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  10370. this.GV2.Location = new System.Drawing.Point(88, -2);
  10371. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  10372. this.GV2.Name = "GV2";
  10373. this.GV2.Size = new System.Drawing.Size(35, 32);
  10374. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  10375. this.GV2.TabIndex = 65;
  10376. this.GV2.TabStop = false;
  10377. this.GV2.Tag = "1";
  10378. //
  10379. // pictureBox5
  10380. //
  10381. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  10382. this.pictureBox5.Location = new System.Drawing.Point(87, -2);
  10383. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  10384. this.pictureBox5.Name = "pictureBox5";
  10385. this.pictureBox5.Size = new System.Drawing.Size(35, 32);
  10386. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  10387. this.pictureBox5.TabIndex = 5;
  10388. this.pictureBox5.TabStop = false;
  10389. //
  10390. // tableLayoutPanel1
  10391. //
  10392. this.tableLayoutPanel1.AutoScroll = true;
  10393. this.tableLayoutPanel1.ColumnCount = 1;
  10394. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  10395. this.tableLayoutPanel1.Controls.Add(this.tabControl1, 0, 0);
  10396. this.tableLayoutPanel1.Controls.Add(this.pnlBottom, 0, 1);
  10397. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  10398. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  10399. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  10400. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  10401. this.tableLayoutPanel1.RowCount = 2;
  10402. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
  10403. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
  10404. this.tableLayoutPanel1.Size = new System.Drawing.Size(1710, 879);
  10405. this.tableLayoutPanel1.TabIndex = 127;
  10406. //
  10407. // Frm_YongGuanMontior
  10408. //
  10409. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  10410. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  10411. this.ClientSize = new System.Drawing.Size(1710, 879);
  10412. this.Controls.Add(this.tableLayoutPanel1);
  10413. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  10414. this.Name = "Frm_YongGuanMontior";
  10415. this.Text = "Frm_YongGuanMontior";
  10416. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  10417. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  10418. this.tabControl1.ResumeLayout(false);
  10419. this.tabPage1.ResumeLayout(false);
  10420. this.myTableLayoutPanel1.ResumeLayout(false);
  10421. this.myTableLayoutPanel1.PerformLayout();
  10422. this.pnlDDJ1.ResumeLayout(false);
  10423. this.pnlDDJ1.PerformLayout();
  10424. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  10425. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  10426. this.pnlDDJ2.ResumeLayout(false);
  10427. this.pnlDDJ2.PerformLayout();
  10428. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  10429. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  10430. this.pnlDDJ3.ResumeLayout(false);
  10431. this.pnlDDJ3.PerformLayout();
  10432. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  10433. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  10434. this.pnlDDJ4.ResumeLayout(false);
  10435. this.pnlDDJ4.PerformLayout();
  10436. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  10437. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  10438. this.myPanel1.ResumeLayout(false);
  10439. this.myPanel1.PerformLayout();
  10440. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  10441. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  10442. this.RGV4000.ResumeLayout(false);
  10443. this.RGV4000.PerformLayout();
  10444. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  10445. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  10446. this.myPanel5.ResumeLayout(false);
  10447. this.myPanel5.PerformLayout();
  10448. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  10449. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  10450. this.pnlBottom.ResumeLayout(false);
  10451. this.myPanel17.ResumeLayout(false);
  10452. this.myPanel17.PerformLayout();
  10453. ((System.ComponentModel.ISupportInitialize)(this.GV13)).EndInit();
  10454. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).EndInit();
  10455. this.myPanel11.ResumeLayout(false);
  10456. this.myPanel11.PerformLayout();
  10457. ((System.ComponentModel.ISupportInitialize)(this.GV12)).EndInit();
  10458. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).EndInit();
  10459. this.myPanel16.ResumeLayout(false);
  10460. this.myPanel16.PerformLayout();
  10461. ((System.ComponentModel.ISupportInitialize)(this.GV14)).EndInit();
  10462. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).EndInit();
  10463. this.myPanel15.ResumeLayout(false);
  10464. this.myPanel15.PerformLayout();
  10465. ((System.ComponentModel.ISupportInitialize)(this.GV11)).EndInit();
  10466. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).EndInit();
  10467. this.myPanel14.ResumeLayout(false);
  10468. this.myPanel14.PerformLayout();
  10469. ((System.ComponentModel.ISupportInitialize)(this.GV10)).EndInit();
  10470. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).EndInit();
  10471. this.myPanel13.ResumeLayout(false);
  10472. this.myPanel13.PerformLayout();
  10473. ((System.ComponentModel.ISupportInitialize)(this.GV9)).EndInit();
  10474. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).EndInit();
  10475. this.myPanel12.ResumeLayout(false);
  10476. this.myPanel12.PerformLayout();
  10477. ((System.ComponentModel.ISupportInitialize)(this.GV7)).EndInit();
  10478. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).EndInit();
  10479. this.myPanel10.ResumeLayout(false);
  10480. this.myPanel10.PerformLayout();
  10481. ((System.ComponentModel.ISupportInitialize)(this.GV8)).EndInit();
  10482. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).EndInit();
  10483. this.myPanel9.ResumeLayout(false);
  10484. this.myPanel9.PerformLayout();
  10485. ((System.ComponentModel.ISupportInitialize)(this.GV6)).EndInit();
  10486. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).EndInit();
  10487. this.myPanel8.ResumeLayout(false);
  10488. this.myPanel8.PerformLayout();
  10489. ((System.ComponentModel.ISupportInitialize)(this.GV5)).EndInit();
  10490. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit();
  10491. this.myPanel7.ResumeLayout(false);
  10492. this.myPanel7.PerformLayout();
  10493. ((System.ComponentModel.ISupportInitialize)(this.G8)).EndInit();
  10494. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  10495. this.myPanel6.ResumeLayout(false);
  10496. this.myPanel6.PerformLayout();
  10497. ((System.ComponentModel.ISupportInitialize)(this.G7)).EndInit();
  10498. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  10499. this.myPanel3.ResumeLayout(false);
  10500. this.myPanel3.PerformLayout();
  10501. ((System.ComponentModel.ISupportInitialize)(this.G6)).EndInit();
  10502. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  10503. this.pnlRGV1089.ResumeLayout(false);
  10504. this.pnlRGV1089.PerformLayout();
  10505. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  10506. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  10507. this.myPanel2.ResumeLayout(false);
  10508. this.myPanel2.PerformLayout();
  10509. this.myPanel4.ResumeLayout(false);
  10510. this.myPanel4.PerformLayout();
  10511. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  10512. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  10513. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  10514. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  10515. this.tableLayoutPanel1.ResumeLayout(false);
  10516. this.ResumeLayout(false);
  10517. }
  10518. #endregion
  10519. private System.Windows.Forms.TabControl tabControl1;
  10520. private System.Windows.Forms.TabPage tabPage1;
  10521. private MyConrols.MyPanel pnlDDJ1;
  10522. private System.Windows.Forms.Label lblInStatus1;
  10523. private System.Windows.Forms.Label lblOutStatus1;
  10524. private System.Windows.Forms.Label lblDDJWarning1;
  10525. public System.Windows.Forms.Label ddjPosTo1;
  10526. public System.Windows.Forms.Label ddjPosFrom1;
  10527. private System.Windows.Forms.Label label84;
  10528. private System.Windows.Forms.Label label85;
  10529. public System.Windows.Forms.Label ddjMode1;
  10530. public System.Windows.Forms.Label ddjOrdId1;
  10531. private System.Windows.Forms.Label label137;
  10532. public System.Windows.Forms.Label ddjOptType1;
  10533. private System.Windows.Forms.Label label139;
  10534. public System.Windows.Forms.Label ddjTotal_KM1;
  10535. private System.Windows.Forms.Label label13;
  10536. public System.Windows.Forms.Label ddjWorkTime1;
  10537. private System.Windows.Forms.Label label10;
  10538. public System.Windows.Forms.Label ddjStatus1;
  10539. public System.Windows.Forms.Label ddjPosCurr1;
  10540. private System.Windows.Forms.Label label5;
  10541. private System.Windows.Forms.Label label3;
  10542. private System.Windows.Forms.Label label2;
  10543. private System.Windows.Forms.Label lblsrm01;
  10544. public System.Windows.Forms.PictureBox G1;
  10545. public System.Windows.Forms.PictureBox R1;
  10546. private MyConrols.MyPanel pnlDDJ2;
  10547. private System.Windows.Forms.Label lblInStatus2;
  10548. private System.Windows.Forms.Label lblOutStatus2;
  10549. private System.Windows.Forms.Label lblDDJWarning2;
  10550. public System.Windows.Forms.Label ddjPosTo2;
  10551. public System.Windows.Forms.Label ddjPosFrom2;
  10552. private System.Windows.Forms.Label label15;
  10553. private System.Windows.Forms.Label label16;
  10554. public System.Windows.Forms.Label ddjMode2;
  10555. public System.Windows.Forms.Label ddjOrdId2;
  10556. private System.Windows.Forms.Label label22;
  10557. public System.Windows.Forms.Label ddjOptType2;
  10558. private System.Windows.Forms.Label label26;
  10559. public System.Windows.Forms.Label ddjTotal_KM2;
  10560. private System.Windows.Forms.Label label29;
  10561. public System.Windows.Forms.Label ddjWorkTime2;
  10562. private System.Windows.Forms.Label label32;
  10563. public System.Windows.Forms.Label ddjStatus2;
  10564. public System.Windows.Forms.Label ddjPosCurr2;
  10565. private System.Windows.Forms.Label label83;
  10566. private System.Windows.Forms.Label label86;
  10567. private System.Windows.Forms.Label label87;
  10568. private System.Windows.Forms.Label lblsrm02;
  10569. public System.Windows.Forms.PictureBox G2;
  10570. public System.Windows.Forms.PictureBox pictureBox6;
  10571. private MyConrols.MyPanel pnlDDJ3;
  10572. private System.Windows.Forms.Label lblInStatus3;
  10573. private System.Windows.Forms.Label lblOutStatus3;
  10574. private System.Windows.Forms.Label lblDDJWarning3;
  10575. public System.Windows.Forms.Label ddjPosTo3;
  10576. public System.Windows.Forms.Label ddjPosFrom3;
  10577. private System.Windows.Forms.Label label43;
  10578. private System.Windows.Forms.Label label51;
  10579. public System.Windows.Forms.Label ddjMode3;
  10580. public System.Windows.Forms.Label ddjOrdId3;
  10581. private System.Windows.Forms.Label label55;
  10582. public System.Windows.Forms.Label ddjOptType3;
  10583. private System.Windows.Forms.Label label57;
  10584. public System.Windows.Forms.Label ddjTotal_KM3;
  10585. private System.Windows.Forms.Label label59;
  10586. public System.Windows.Forms.Label ddjWorkTime3;
  10587. private System.Windows.Forms.Label label61;
  10588. public System.Windows.Forms.Label ddjStatus3;
  10589. public System.Windows.Forms.Label ddjPosCurr3;
  10590. private System.Windows.Forms.Label label64;
  10591. private System.Windows.Forms.Label label65;
  10592. private System.Windows.Forms.Label label66;
  10593. private System.Windows.Forms.Label lblsrm03;
  10594. public System.Windows.Forms.PictureBox G3;
  10595. public System.Windows.Forms.PictureBox pictureBox10;
  10596. private MyConrols.MyPanel pnlDDJ4;
  10597. private System.Windows.Forms.Label lblInStatus4;
  10598. private System.Windows.Forms.Label lblOutStatus4;
  10599. private System.Windows.Forms.Label lblDDJWarning4;
  10600. public System.Windows.Forms.Label ddjPosTo4;
  10601. public System.Windows.Forms.Label ddjPosFrom4;
  10602. private System.Windows.Forms.Label label71;
  10603. private System.Windows.Forms.Label label72;
  10604. public System.Windows.Forms.Label ddjMode4;
  10605. public System.Windows.Forms.Label ddjOrdId4;
  10606. private System.Windows.Forms.Label label75;
  10607. public System.Windows.Forms.Label ddjOptType4;
  10608. private System.Windows.Forms.Label label77;
  10609. public System.Windows.Forms.Label ddjTotal_KM4;
  10610. private System.Windows.Forms.Label label79;
  10611. public System.Windows.Forms.Label ddjWorkTime4;
  10612. private System.Windows.Forms.Label label81;
  10613. public System.Windows.Forms.Label ddjStatus4;
  10614. public System.Windows.Forms.Label ddjPosCurr4;
  10615. private System.Windows.Forms.Label label89;
  10616. private System.Windows.Forms.Label label90;
  10617. private System.Windows.Forms.Label label91;
  10618. private System.Windows.Forms.Label lblsrm04;
  10619. public System.Windows.Forms.PictureBox G4;
  10620. public System.Windows.Forms.PictureBox pictureBox14;
  10621. private MyConrols.MyPanel myPanel1;
  10622. private System.Windows.Forms.Label lblInStatus5;
  10623. private System.Windows.Forms.Label lblOutStatus5;
  10624. private System.Windows.Forms.Label label11;
  10625. public System.Windows.Forms.Label ddjPosTo5;
  10626. public System.Windows.Forms.Label ddjPosFrom5;
  10627. private System.Windows.Forms.Label label17;
  10628. private System.Windows.Forms.Label label18;
  10629. public System.Windows.Forms.Label ddjMode5;
  10630. public System.Windows.Forms.Label ddjOrdId5;
  10631. private System.Windows.Forms.Label label21;
  10632. public System.Windows.Forms.Label ddjOptType5;
  10633. private System.Windows.Forms.Label label24;
  10634. public System.Windows.Forms.Label ddjTotal_KM5;
  10635. private System.Windows.Forms.Label label27;
  10636. public System.Windows.Forms.Label ddjWorkTime5;
  10637. private System.Windows.Forms.Label label30;
  10638. public System.Windows.Forms.Label ddjStatus5;
  10639. public System.Windows.Forms.Label ddjPosCurr5;
  10640. private System.Windows.Forms.Label label36;
  10641. private System.Windows.Forms.Label label37;
  10642. private System.Windows.Forms.Label label38;
  10643. private System.Windows.Forms.Label lblsrm05;
  10644. public System.Windows.Forms.PictureBox G5;
  10645. public System.Windows.Forms.PictureBox pictureBox3;
  10646. private MyConrols.MyPanel RGV4000;
  10647. private System.Windows.Forms.Label label14;
  10648. private System.Windows.Forms.Label label19;
  10649. private System.Windows.Forms.Label label20;
  10650. public System.Windows.Forms.Label rgvOptType4;
  10651. private System.Windows.Forms.Label label74;
  10652. private System.Windows.Forms.Label lblRGVWarning1091;
  10653. public System.Windows.Forms.Label rgvPosCurr4;
  10654. public System.Windows.Forms.Label rgvMode4;
  10655. public System.Windows.Forms.Label rgvOrdId4;
  10656. private System.Windows.Forms.Label label94;
  10657. public System.Windows.Forms.Label rgvPosTo4;
  10658. private System.Windows.Forms.Label label96;
  10659. public System.Windows.Forms.Label rgvPosFrom4;
  10660. public System.Windows.Forms.Label rgvStatus4;
  10661. private System.Windows.Forms.Label label102;
  10662. private System.Windows.Forms.Label lblrgv4;
  10663. public System.Windows.Forms.PictureBox GV4;
  10664. public System.Windows.Forms.PictureBox pictureBox7;
  10665. private MyConrols.MyPanel myPanel5;
  10666. private System.Windows.Forms.Label label25;
  10667. private System.Windows.Forms.Label label35;
  10668. private System.Windows.Forms.Label label39;
  10669. public System.Windows.Forms.Label rgvOptType1;
  10670. private System.Windows.Forms.Label label173;
  10671. private System.Windows.Forms.Label lblRGVWarning1007;
  10672. public System.Windows.Forms.Label rgvPosCurr1;
  10673. public System.Windows.Forms.Label rgvMode1;
  10674. public System.Windows.Forms.Label rgvOrdId1;
  10675. private System.Windows.Forms.Label label181;
  10676. public System.Windows.Forms.Label rgvPosTo1;
  10677. private System.Windows.Forms.Label label183;
  10678. public System.Windows.Forms.Label rgvPosFrom1;
  10679. public System.Windows.Forms.Label rgvStatus1;
  10680. private System.Windows.Forms.Label label189;
  10681. private System.Windows.Forms.Label lblrgv1;
  10682. public System.Windows.Forms.PictureBox GV1;
  10683. public System.Windows.Forms.PictureBox pictureBox17;
  10684. private MyConrols.MyPanel pnlBottom;
  10685. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  10686. private MyConrols.MyPanel myPanel17;
  10687. private System.Windows.Forms.Label label314;
  10688. private System.Windows.Forms.Label label315;
  10689. private System.Windows.Forms.Label label316;
  10690. public System.Windows.Forms.Label rgvOptType13;
  10691. private System.Windows.Forms.Label label318;
  10692. private System.Windows.Forms.Label label319;
  10693. public System.Windows.Forms.Label rgvPosCurr13;
  10694. public System.Windows.Forms.Label rgvMode13;
  10695. public System.Windows.Forms.Label rgvOrdId13;
  10696. private System.Windows.Forms.Label label323;
  10697. public System.Windows.Forms.Label rgvPosTo13;
  10698. private System.Windows.Forms.Label label325;
  10699. public System.Windows.Forms.Label rgvPosFrom13;
  10700. public System.Windows.Forms.Label rgvStatus13;
  10701. private System.Windows.Forms.Label label328;
  10702. private System.Windows.Forms.Label lblrgv13;
  10703. public System.Windows.Forms.PictureBox GV13;
  10704. public System.Windows.Forms.PictureBox pictureBox36;
  10705. private MyConrols.MyPanel myPanel11;
  10706. private System.Windows.Forms.Label label40;
  10707. private System.Windows.Forms.Label label41;
  10708. private System.Windows.Forms.Label label42;
  10709. public System.Windows.Forms.Label rgvOptType12;
  10710. private System.Windows.Forms.Label label302;
  10711. private System.Windows.Forms.Label label303;
  10712. public System.Windows.Forms.Label rgvPosCurr12;
  10713. public System.Windows.Forms.Label rgvMode12;
  10714. public System.Windows.Forms.Label rgvOrdId12;
  10715. private System.Windows.Forms.Label label307;
  10716. public System.Windows.Forms.Label rgvPosTo12;
  10717. private System.Windows.Forms.Label label309;
  10718. public System.Windows.Forms.Label rgvPosFrom12;
  10719. public System.Windows.Forms.Label rgvStatus12;
  10720. private System.Windows.Forms.Label label312;
  10721. private System.Windows.Forms.Label lblrgv12;
  10722. public System.Windows.Forms.PictureBox GV12;
  10723. public System.Windows.Forms.PictureBox pictureBox34;
  10724. private MyConrols.MyPanel myPanel16;
  10725. private System.Windows.Forms.Label label285;
  10726. private System.Windows.Forms.Label label286;
  10727. private System.Windows.Forms.Label label287;
  10728. public System.Windows.Forms.Label rgvOptType14;
  10729. private System.Windows.Forms.Label label289;
  10730. private System.Windows.Forms.Label label290;
  10731. public System.Windows.Forms.Label rgvPosCurr14;
  10732. public System.Windows.Forms.Label rgvMode14;
  10733. public System.Windows.Forms.Label rgvOrdId14;
  10734. private System.Windows.Forms.Label label294;
  10735. public System.Windows.Forms.Label rgvPosTo14;
  10736. private System.Windows.Forms.Label label296;
  10737. public System.Windows.Forms.Label rgvPosFrom14;
  10738. public System.Windows.Forms.Label rgvStatus14;
  10739. private System.Windows.Forms.Label label299;
  10740. private System.Windows.Forms.Label lblrgv14;
  10741. public System.Windows.Forms.PictureBox GV14;
  10742. public System.Windows.Forms.PictureBox pictureBox33;
  10743. private MyConrols.MyPanel myPanel15;
  10744. private System.Windows.Forms.Label label269;
  10745. private System.Windows.Forms.Label label270;
  10746. private System.Windows.Forms.Label label271;
  10747. public System.Windows.Forms.Label rgvOptType11;
  10748. private System.Windows.Forms.Label label273;
  10749. private System.Windows.Forms.Label label274;
  10750. public System.Windows.Forms.Label rgvPosCurr11;
  10751. public System.Windows.Forms.Label rgvMode11;
  10752. public System.Windows.Forms.Label rgvOrdId11;
  10753. private System.Windows.Forms.Label label278;
  10754. public System.Windows.Forms.Label rgvPosTo11;
  10755. private System.Windows.Forms.Label label280;
  10756. public System.Windows.Forms.Label rgvPosFrom11;
  10757. public System.Windows.Forms.Label rgvStatus11;
  10758. private System.Windows.Forms.Label label283;
  10759. private System.Windows.Forms.Label lblrgv11;
  10760. public System.Windows.Forms.PictureBox GV11;
  10761. public System.Windows.Forms.PictureBox pictureBox31;
  10762. private MyConrols.MyPanel myPanel14;
  10763. private System.Windows.Forms.Label label253;
  10764. private System.Windows.Forms.Label label254;
  10765. private System.Windows.Forms.Label label255;
  10766. public System.Windows.Forms.Label rgvOptType10;
  10767. private System.Windows.Forms.Label label257;
  10768. private System.Windows.Forms.Label label258;
  10769. public System.Windows.Forms.Label rgvPosCurr10;
  10770. public System.Windows.Forms.Label rgvMode10;
  10771. public System.Windows.Forms.Label rgvOrdId10;
  10772. private System.Windows.Forms.Label label262;
  10773. public System.Windows.Forms.Label rgvPosTo10;
  10774. private System.Windows.Forms.Label label264;
  10775. public System.Windows.Forms.Label rgvPosFrom10;
  10776. public System.Windows.Forms.Label rgvStatus10;
  10777. private System.Windows.Forms.Label label267;
  10778. private System.Windows.Forms.Label lblrgv10;
  10779. public System.Windows.Forms.PictureBox GV10;
  10780. public System.Windows.Forms.PictureBox pictureBox28;
  10781. private MyConrols.MyPanel myPanel13;
  10782. private System.Windows.Forms.Label label237;
  10783. private System.Windows.Forms.Label label238;
  10784. private System.Windows.Forms.Label label239;
  10785. public System.Windows.Forms.Label rgvOptType9;
  10786. private System.Windows.Forms.Label label241;
  10787. private System.Windows.Forms.Label label242;
  10788. public System.Windows.Forms.Label rgvPosCurr9;
  10789. public System.Windows.Forms.Label rgvMode9;
  10790. public System.Windows.Forms.Label rgvOrdId9;
  10791. private System.Windows.Forms.Label label246;
  10792. public System.Windows.Forms.Label rgvPosTo9;
  10793. private System.Windows.Forms.Label label248;
  10794. public System.Windows.Forms.Label rgvPosFrom9;
  10795. public System.Windows.Forms.Label rgvStatus9;
  10796. private System.Windows.Forms.Label label251;
  10797. private System.Windows.Forms.Label lblrgv9;
  10798. public System.Windows.Forms.PictureBox GV9;
  10799. public System.Windows.Forms.PictureBox pictureBox26;
  10800. private MyConrols.MyPanel myPanel12;
  10801. private System.Windows.Forms.Label label221;
  10802. private System.Windows.Forms.Label label222;
  10803. private System.Windows.Forms.Label label223;
  10804. public System.Windows.Forms.Label rgvOptType7;
  10805. private System.Windows.Forms.Label label225;
  10806. private System.Windows.Forms.Label label226;
  10807. public System.Windows.Forms.Label rgvPosCurr7;
  10808. public System.Windows.Forms.Label rgvMode7;
  10809. public System.Windows.Forms.Label rgvOrdId7;
  10810. private System.Windows.Forms.Label label230;
  10811. public System.Windows.Forms.Label rgvPosTo7;
  10812. private System.Windows.Forms.Label label232;
  10813. public System.Windows.Forms.Label rgvPosFrom7;
  10814. public System.Windows.Forms.Label rgvStatus7;
  10815. private System.Windows.Forms.Label label235;
  10816. private System.Windows.Forms.Label lblrgv7;
  10817. public System.Windows.Forms.PictureBox GV7;
  10818. public System.Windows.Forms.PictureBox pictureBox24;
  10819. private MyConrols.MyPanel myPanel10;
  10820. private System.Windows.Forms.Label label205;
  10821. private System.Windows.Forms.Label label206;
  10822. private System.Windows.Forms.Label label207;
  10823. public System.Windows.Forms.Label rgvOptType8;
  10824. private System.Windows.Forms.Label label209;
  10825. private System.Windows.Forms.Label label210;
  10826. public System.Windows.Forms.Label rgvPosCurr8;
  10827. public System.Windows.Forms.Label rgvMode8;
  10828. public System.Windows.Forms.Label rgvOrdId8;
  10829. private System.Windows.Forms.Label label214;
  10830. public System.Windows.Forms.Label rgvPosTo8;
  10831. private System.Windows.Forms.Label label216;
  10832. public System.Windows.Forms.Label rgvPosFrom8;
  10833. public System.Windows.Forms.Label rgvStatus8;
  10834. private System.Windows.Forms.Label label219;
  10835. private System.Windows.Forms.Label lblrgv8;
  10836. public System.Windows.Forms.PictureBox GV8;
  10837. public System.Windows.Forms.PictureBox pictureBox22;
  10838. private MyConrols.MyPanel myPanel9;
  10839. private System.Windows.Forms.Label label188;
  10840. private System.Windows.Forms.Label label190;
  10841. private System.Windows.Forms.Label label191;
  10842. public System.Windows.Forms.Label rgvOptType6;
  10843. private System.Windows.Forms.Label label193;
  10844. private System.Windows.Forms.Label label194;
  10845. public System.Windows.Forms.Label rgvPosCurr6;
  10846. public System.Windows.Forms.Label rgvMode6;
  10847. public System.Windows.Forms.Label rgvOrdId6;
  10848. private System.Windows.Forms.Label label198;
  10849. public System.Windows.Forms.Label rgvPosTo6;
  10850. private System.Windows.Forms.Label label200;
  10851. public System.Windows.Forms.Label rgvPosFrom6;
  10852. public System.Windows.Forms.Label rgvStatus6;
  10853. private System.Windows.Forms.Label label203;
  10854. private System.Windows.Forms.Label lblrgv6;
  10855. public System.Windows.Forms.PictureBox GV6;
  10856. public System.Windows.Forms.PictureBox pictureBox20;
  10857. private MyConrols.MyPanel myPanel8;
  10858. private System.Windows.Forms.Label label169;
  10859. private System.Windows.Forms.Label label170;
  10860. private System.Windows.Forms.Label label171;
  10861. public System.Windows.Forms.Label rgvOptType5;
  10862. private System.Windows.Forms.Label label174;
  10863. private System.Windows.Forms.Label label175;
  10864. public System.Windows.Forms.Label rgvPosCurr5;
  10865. public System.Windows.Forms.Label rgvMode5;
  10866. public System.Windows.Forms.Label rgvOrdId5;
  10867. private System.Windows.Forms.Label label179;
  10868. public System.Windows.Forms.Label rgvPosTo5;
  10869. private System.Windows.Forms.Label label182;
  10870. public System.Windows.Forms.Label rgvPosFrom5;
  10871. public System.Windows.Forms.Label rgvStatus5;
  10872. private System.Windows.Forms.Label label186;
  10873. private System.Windows.Forms.Label lblrgv5;
  10874. public System.Windows.Forms.PictureBox GV5;
  10875. public System.Windows.Forms.PictureBox pictureBox18;
  10876. private MyConrols.MyPanel myPanel7;
  10877. private System.Windows.Forms.Label lblInStatus8;
  10878. private System.Windows.Forms.Label lblOutStatus8;
  10879. private System.Windows.Forms.Label label149;
  10880. public System.Windows.Forms.Label ddjPosTo8;
  10881. public System.Windows.Forms.Label ddjPosFrom8;
  10882. private System.Windows.Forms.Label label152;
  10883. private System.Windows.Forms.Label label153;
  10884. public System.Windows.Forms.Label ddjMode8;
  10885. public System.Windows.Forms.Label ddjOrdId8;
  10886. private System.Windows.Forms.Label label156;
  10887. public System.Windows.Forms.Label ddjOptType8;
  10888. private System.Windows.Forms.Label label158;
  10889. public System.Windows.Forms.Label ddjTotal_KM8;
  10890. private System.Windows.Forms.Label label160;
  10891. public System.Windows.Forms.Label ddjWorkTime8;
  10892. private System.Windows.Forms.Label label162;
  10893. public System.Windows.Forms.Label ddjStatus8;
  10894. public System.Windows.Forms.Label ddjPosCurr8;
  10895. private System.Windows.Forms.Label label165;
  10896. private System.Windows.Forms.Label label166;
  10897. private System.Windows.Forms.Label label167;
  10898. private System.Windows.Forms.Label lblsrm08;
  10899. public System.Windows.Forms.PictureBox G8;
  10900. public System.Windows.Forms.PictureBox pictureBox15;
  10901. private MyConrols.MyPanel myPanel6;
  10902. private System.Windows.Forms.Label lblInStatus7;
  10903. private System.Windows.Forms.Label lblOutStatus7;
  10904. private System.Windows.Forms.Label label103;
  10905. public System.Windows.Forms.Label ddjPosTo7;
  10906. public System.Windows.Forms.Label ddjPosFrom7;
  10907. private System.Windows.Forms.Label label106;
  10908. private System.Windows.Forms.Label label107;
  10909. public System.Windows.Forms.Label ddjMode7;
  10910. public System.Windows.Forms.Label ddjOrdId7;
  10911. private System.Windows.Forms.Label label110;
  10912. public System.Windows.Forms.Label ddjOptType7;
  10913. private System.Windows.Forms.Label label112;
  10914. public System.Windows.Forms.Label ddjTotal_KM7;
  10915. private System.Windows.Forms.Label label114;
  10916. public System.Windows.Forms.Label ddjWorkTime7;
  10917. private System.Windows.Forms.Label label116;
  10918. public System.Windows.Forms.Label ddjStatus7;
  10919. public System.Windows.Forms.Label ddjPosCurr7;
  10920. private System.Windows.Forms.Label label119;
  10921. private System.Windows.Forms.Label label120;
  10922. private System.Windows.Forms.Label label121;
  10923. private System.Windows.Forms.Label lblsrm07;
  10924. public System.Windows.Forms.PictureBox G7;
  10925. public System.Windows.Forms.PictureBox pictureBox9;
  10926. private MyConrols.MyPanel myPanel3;
  10927. private System.Windows.Forms.Label lblInStatus6;
  10928. private System.Windows.Forms.Label lblOutStatus6;
  10929. private System.Windows.Forms.Label label47;
  10930. public System.Windows.Forms.Label ddjPosTo6;
  10931. public System.Windows.Forms.Label ddjPosFrom6;
  10932. private System.Windows.Forms.Label label52;
  10933. private System.Windows.Forms.Label label54;
  10934. public System.Windows.Forms.Label ddjMode6;
  10935. public System.Windows.Forms.Label ddjOrdId6;
  10936. private System.Windows.Forms.Label label62;
  10937. public System.Windows.Forms.Label ddjOptType6;
  10938. private System.Windows.Forms.Label label68;
  10939. public System.Windows.Forms.Label ddjTotal_KM6;
  10940. private System.Windows.Forms.Label label76;
  10941. public System.Windows.Forms.Label ddjWorkTime6;
  10942. private System.Windows.Forms.Label label82;
  10943. public System.Windows.Forms.Label ddjStatus6;
  10944. public System.Windows.Forms.Label ddjPosCurr6;
  10945. private System.Windows.Forms.Label label95;
  10946. private System.Windows.Forms.Label label97;
  10947. private System.Windows.Forms.Label label98;
  10948. private System.Windows.Forms.Label lblsrm06;
  10949. public System.Windows.Forms.PictureBox G6;
  10950. public System.Windows.Forms.PictureBox pictureBox2;
  10951. private MyConrols.MyPanel pnlRGV1089;
  10952. private System.Windows.Forms.Label label7;
  10953. private System.Windows.Forms.Label label8;
  10954. private System.Windows.Forms.Label label9;
  10955. public System.Windows.Forms.Label rgvOptType3;
  10956. private System.Windows.Forms.Label label31;
  10957. private System.Windows.Forms.Label lblRGVWarning1089;
  10958. public System.Windows.Forms.Label rgvPosCurr3;
  10959. public System.Windows.Forms.Label rgvMode3;
  10960. public System.Windows.Forms.Label rgvOrdId3;
  10961. private System.Windows.Forms.Label label50;
  10962. public System.Windows.Forms.Label rgvPosTo3;
  10963. private System.Windows.Forms.Label label53;
  10964. public System.Windows.Forms.Label rgvPosFrom3;
  10965. public System.Windows.Forms.Label rgvStatus3;
  10966. private System.Windows.Forms.Label label63;
  10967. private System.Windows.Forms.Label lblrgv3;
  10968. public System.Windows.Forms.PictureBox GV3;
  10969. public System.Windows.Forms.PictureBox pictureBox4;
  10970. private MyConrols.MyPanel myPanel2;
  10971. private MyConrols.MyPanel myPanel4;
  10972. private System.Windows.Forms.Label label124;
  10973. private System.Windows.Forms.Label label125;
  10974. public System.Windows.Forms.Label label126;
  10975. private System.Windows.Forms.Label label127;
  10976. private System.Windows.Forms.Label label128;
  10977. public System.Windows.Forms.Label label129;
  10978. public System.Windows.Forms.Label label130;
  10979. private System.Windows.Forms.Label label131;
  10980. private System.Windows.Forms.Label label132;
  10981. public System.Windows.Forms.Label label133;
  10982. public System.Windows.Forms.Label label134;
  10983. private System.Windows.Forms.Label label135;
  10984. public System.Windows.Forms.Label label136;
  10985. private System.Windows.Forms.Label label138;
  10986. public System.Windows.Forms.Label label140;
  10987. private System.Windows.Forms.Label label141;
  10988. public System.Windows.Forms.Label label142;
  10989. public System.Windows.Forms.Label label143;
  10990. private System.Windows.Forms.Label label144;
  10991. private System.Windows.Forms.Label label145;
  10992. private System.Windows.Forms.Label label146;
  10993. private System.Windows.Forms.Label label147;
  10994. public System.Windows.Forms.PictureBox pictureBox11;
  10995. public System.Windows.Forms.PictureBox pictureBox12;
  10996. public System.Windows.Forms.Label rgvOptType2;
  10997. private System.Windows.Forms.Label label23;
  10998. private System.Windows.Forms.Label lblRGVWarning1444;
  10999. public System.Windows.Forms.Label rgvPosCurr2;
  11000. private System.Windows.Forms.Label label45;
  11001. public System.Windows.Forms.Label rgvMode2;
  11002. public System.Windows.Forms.Label rgvOrdId2;
  11003. private System.Windows.Forms.Label label58;
  11004. public System.Windows.Forms.Label rgvPosTo2;
  11005. private System.Windows.Forms.Label label69;
  11006. public System.Windows.Forms.Label rgvPosFrom2;
  11007. private System.Windows.Forms.Label label73;
  11008. public System.Windows.Forms.Label rgvStatus2;
  11009. private System.Windows.Forms.Label label80;
  11010. private System.Windows.Forms.Label label92;
  11011. private System.Windows.Forms.Label lblrgv2;
  11012. public System.Windows.Forms.PictureBox GV2;
  11013. public System.Windows.Forms.PictureBox pictureBox5;
  11014. private From.MyTableLayoutPanel myTableLayoutPanel1;
  11015. private From.From_Montior.Conveyor_R con1067;
  11016. private From.From_Montior.Conveyor_R con1455;
  11017. private From.From_Montior.Conveyor_R con1482;
  11018. private From.From_Montior.Conveyor_R con1484;
  11019. private From.From_Montior.Conveyor_R con1486;
  11020. private From.From_Montior.Conveyor_R con1580;
  11021. private From.From_Montior.Conveyor_R con1524;
  11022. private From.From_Montior.Conveyor_R con1527;
  11023. private From.From_Montior.Conveyor_R con1545;
  11024. private From.From_Montior.Conveyor_R con1540;
  11025. private From.From_Montior.Conveyor_R con1544;
  11026. private From.TableCellLabel tableCellLabel1;
  11027. private From.TableCellLabel tableCellLabel3;
  11028. private From.From_Montior.Conveyor_R con1025;
  11029. private From.From_Montior.Conveyor_R con1023;
  11030. private From.From_Montior.Conveyor_R con1028;
  11031. private From.From_Montior.Conveyor_R con1018;
  11032. private From.From_Montior.Conveyor_R con1020;
  11033. private From.From_Montior.Conveyor_R con1053;
  11034. private From.From_Montior.Conveyor_R con1477;
  11035. private From.From_Montior.Conveyor_R con1473;
  11036. private From.From_Montior.Conveyor_R con1474;
  11037. private From.From_Montior.Conveyor_R con1471;
  11038. private From.From_Montior.Conveyor_R con1556;
  11039. private From.From_Montior.Conveyor_R con1587;
  11040. private From.From_Montior.Conveyor_R con1589;
  11041. private From.From_Montior.Conveyor_R con1480;
  11042. private From.From_Montior.Conveyor_R con1505;
  11043. private From.From_Montior.Conveyor_R con1568;
  11044. private From.From_Montior.Conveyor_R con1534;
  11045. private From.From_Montior.Conveyor_R con1573;
  11046. private From.From_Montior.Conveyor_R con1529;
  11047. private From.From_Montior.Conveyor_R con1538;
  11048. private From.From_Montior.Conveyor_R con1537;
  11049. private From.From_Montior.Conveyor_R con1574;
  11050. private From.From_Montior.Conveyor_R con1508;
  11051. private From.From_Montior.Conveyor_R con1553;
  11052. private From.From_Montior.Conveyor_R con1509;
  11053. private From.From_Montior.Conveyor_R con1532;
  11054. private From.From_Montior.Conveyor_R con1579;
  11055. private From.From_Montior.Conveyor_R con1500;
  11056. private From.From_Montior.Conveyor_R con1582;
  11057. private From.From_Montior.Conveyor_R con1584;
  11058. private From.From_Montior.Conveyor_R con1511;
  11059. private From.From_Montior.Conveyor_R con1513;
  11060. private From.From_Montior.Conveyor_R con1503;
  11061. private From.From_Montior.Conveyor_R con1551;
  11062. private From.From_Montior.Conveyor_R con1548;
  11063. private From.From_Montior.Conveyor_R con1515;
  11064. private From.From_Montior.Conveyor_R con1570;
  11065. private From.From_Montior.Conveyor_R con1565;
  11066. private From.From_Montior.Conveyor_R con1576;
  11067. private From.From_Montior.LocationPos locationPos37;
  11068. private From.From_Montior.Conveyor_R con1065;
  11069. private From.From_Montior.Conveyor_L con1010;
  11070. private From.From_Montior.Conveyor_L con1013;
  11071. private From.From_Montior.Conveyor_L con1008;
  11072. private System.Windows.Forms.Label label33;
  11073. private From.TableCellLabel tableCellLabel31;
  11074. private From.From_Montior.LocationPos locationPos38;
  11075. private From.From_Montior.LocationPos locationPos49;
  11076. private From.From_Montior.LocationPos locationPos53;
  11077. private From.From_Montior.srm srm15;
  11078. private From.From_Montior.LocationPos locationPos55;
  11079. private From.From_Montior.Conveyor_R con1062;
  11080. private From.From_Montior.Conveyor_R con1563;
  11081. private From.From_Montior.Conveyor_R con1520;
  11082. private From.From_Montior.srm srm14;
  11083. private From.From_Montior.LocationPos locationPos48;
  11084. private From.From_Montior.LocationPos locationPos36;
  11085. private From.From_Montior.Conveyor_R con1522;
  11086. private From.From_Montior.Conveyor_R con1518;
  11087. private From.TableCellLabel tableCellLabel30;
  11088. private From.From_Montior.LocationPos locationPos47;
  11089. private From.From_Montior.Conveyor_R con1558;
  11090. private From.From_Montior.Conveyor_R con1498;
  11091. private From.From_Montior.Conveyor_R con1491;
  11092. private From.From_Montior.LocationPos locationPos45;
  11093. private From.From_Montior.Conveyor_R con1597;
  11094. private From.From_Montior.srm srm13;
  11095. private From.From_Montior.LocationPos locationPos46;
  11096. private From.From_Montior.Conveyor_R con1598;
  11097. private From.From_Montior.Conveyor_R con1489;
  11098. private From.From_Montior.LocationPos locationPos42;
  11099. private From.From_Montior.Conveyor_R con1493;
  11100. private From.From_Montior.Conveyor_R con1040;
  11101. private From.TableCellLabel tableCellLabel29;
  11102. private From.From_Montior.LocationPos locationPos54;
  11103. private From.From_Montior.Conveyor_R con1495;
  11104. private From.From_Montior.Conveyor_R con1051;
  11105. private From.From_Montior.Conveyor_R con1049;
  11106. private From.From_Montior.Conveyor_L con1047;
  11107. private From.From_Montior.Conveyor_L con1058;
  11108. private From.From_Montior.Conveyor_L con1060;
  11109. private From.From_Montior.Conveyor_L con1056;
  11110. private From.TableCellLabel tableCellLabel2;
  11111. private From.From_Montior.Conveyor_R con1015;
  11112. private From.From_Montior.Conveyor_R RGV8;
  11113. private From.From_Montior.LocationPos locationPos1;
  11114. private From.From_Montior.LocationPos locationPos2;
  11115. private From.From_Montior.LocationPos locationPos3;
  11116. private From.From_Montior.LocationPos locationPos4;
  11117. private From.TableCellLabel tableCellLabel5;
  11118. private From.TableCellLabel tableCellLabel6;
  11119. private From.From_Montior.Conveyor_L con1422;
  11120. private From.From_Montior.Conveyor_R con1424;
  11121. private From.From_Montior.Conveyor_R con1308;
  11122. private From.From_Montior.Conveyor_L con1431;
  11123. private From.From_Montior.Conveyor3_B con1386;
  11124. private From.From_Montior.Conveyor3_B con1389;
  11125. private From.From_Montior.Conveyor3_B con1391;
  11126. private From.From_Montior.Conveyor3_B con1394;
  11127. private From.From_Montior.Conveyor3_B con1397;
  11128. private From.From_Montior.Conveyor3_B con1399;
  11129. private System.Windows.Forms.Label label1;
  11130. private From.From_Montior.Conveyor3_B con1335;
  11131. private From.From_Montior.Conveyor3_B con1337;
  11132. private From.From_Montior.Conveyor3_B con1340;
  11133. private System.Windows.Forms.Label label4;
  11134. private From.From_Montior.Conveyor3_B con1387;
  11135. private From.From_Montior.Conveyor3_B con1390;
  11136. private From.From_Montior.Conveyor3_B con1392;
  11137. private From.From_Montior.Conveyor3_B con1395;
  11138. private From.From_Montior.Conveyor3_B con1398;
  11139. private From.From_Montior.Conveyor3_B con1400;
  11140. private From.From_Montior.Conveyor3_B con1334;
  11141. private From.From_Montior.Conveyor3_B con1338;
  11142. private From.From_Montior.Conveyor3_B con1341;
  11143. private From.From_Montior.Conveyor3_B con1343;
  11144. private From.From_Montior.Conveyor3_B con1344;
  11145. private From.From_Montior.Conveyor_R con1281;
  11146. private From.From_Montior.Conveyor_R con1283;
  11147. private From.From_Montior.Conveyor_R con1044;
  11148. private From.From_Montior.Conveyor_R con1035;
  11149. private From.From_Montior.Conveyor_R con1030;
  11150. private From.From_Montior.Conveyor_R con1285;
  11151. private From.From_Montior.Conveyor_R con1406;
  11152. private From.From_Montior.Conveyor_R con1404;
  11153. private From.From_Montior.Conveyor_R con1408;
  11154. private From.From_Montior.Conveyor_R con1401;
  11155. private From.From_Montior.Conveyor_R con1290;
  11156. private From.From_Montior.Conveyor_R con1288;
  11157. private From.From_Montior.Conveyor_R con1292;
  11158. private From.From_Montior.Conveyor_R con1294;
  11159. private From.From_Montior.Conveyor_R con1415;
  11160. private From.From_Montior.Conveyor_R con1413;
  11161. private From.From_Montior.Conveyor_R con1410;
  11162. private From.From_Montior.Conveyor_R con1299;
  11163. private From.From_Montior.Conveyor_R con1297;
  11164. private From.From_Montior.Conveyor_R con1301;
  11165. private From.From_Montior.Conveyor_R con1417;
  11166. private From.From_Montior.Conveyor_R con1303;
  11167. private From.From_Montior.Conveyor_R con1306;
  11168. private From.From_Montior.Conveyor_R con1310;
  11169. private From.From_Montior.Conveyor_R con1312;
  11170. private From.From_Montior.Conveyor_R con1426;
  11171. private From.From_Montior.Conveyor_R con1420;
  11172. private From.From_Montior.Conveyor_R con1429;
  11173. private From.From_Montior.Conveyor_R con1038;
  11174. private From.From_Montior.Conveyor_R con1042;
  11175. private From.From_Montior.Conveyor_R RGV9;
  11176. private From.From_Montior.Conveyor_R RGV10;
  11177. private From.From_Montior.Conveyor_R RGV11;
  11178. private From.From_Montior.Conveyor_R RGV12;
  11179. private From.From_Montior.Conveyor_R RGV13;
  11180. private From.From_Montior.Conveyor_R RGV14;
  11181. private From.From_Montior.TableCellLabel2 tableCellLabel21;
  11182. private From.From_Montior.TableCellLabel2 tableCellLabel22;
  11183. private From.From_Montior.TableCellLabel2 tableCellLabel23;
  11184. private From.From_Montior.TableCellLabel2 tableCellLabel25;
  11185. private From.From_Montior.TableCellLabel2 tableCellLabel26;
  11186. private From.From_Montior.TableCellLabel2 tableCellLabel27;
  11187. private From.From_Montior.TableCellLabel2 tableCellLabel210;
  11188. private From.From_Montior.TableCellLabel2 tableCellLabel211;
  11189. private From.From_Montior.TableCellLabel2 tableCellLabel213;
  11190. private From.From_Montior.TableCellLabel2 tableCellLabel214;
  11191. private From.From_Montior.TableCellLabel2 tableCellLabel215;
  11192. private From.From_Montior.Conveyor_R con1458;
  11193. private From.From_Montior.Conveyor_R con1460;
  11194. private From.From_Montior.Conveyor_R con1462;
  11195. private From.From_Montior.Conveyor_R con1464;
  11196. private From.From_Montior.Conveyor_R con1466;
  11197. private From.From_Montior.Conveyor_R con1468;
  11198. private From.From_Montior.Conveyor_R con1496;
  11199. private System.Windows.Forms.Label label6;
  11200. private System.Windows.Forms.Label label12;
  11201. private From.From_Montior.Conveyor_R RGV1;
  11202. private From.From_Montior.Conveyor_R RGV2;
  11203. private From.From_Montior.Conveyor_R RGV3;
  11204. private From.From_Montior.Conveyor_R RGV4;
  11205. private From.From_Montior.Conveyor_R RGV5;
  11206. private From.From_Montior.Conveyor_R RGV6;
  11207. private From.From_Montior.Conveyor_R RGV7;
  11208. private From.From_Montior.TableCellLabel2 tableCellLabel24;
  11209. private From.From_Montior.TableCellLabel2 tableCellLabel28;
  11210. private From.From_Montior.TableCellLabel2 tableCellLabel212;
  11211. private From.From_Montior.TableCellLabel2 tableCellLabel216;
  11212. private From.From_Montior.TableCellLabel2 tableCellLabel217;
  11213. private From.From_Montior.TableCellLabel2 tableCellLabel218;
  11214. private From.From_Montior.TableCellLabel2 tableCellLabel219;
  11215. private From.From_Montior.TableCellLabel2 tableCellLabel220;
  11216. private From.From_Montior.TableCellLabel2 tableCellLabel221;
  11217. private From.TableCellLabel tableCellLabel4;
  11218. private From.TableCellLabel tableCellLabel7;
  11219. private From.From_Montior.Conveyor3_B con1435;
  11220. private From.From_Montior.Conveyor3_B con1436;
  11221. }
  11222. }