Frm_YongGuanMontior.Designer.cs 614 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585
  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.con1596 = new WCS_Client.From.From_Montior.Conveyor3_A();
  46. this.con1025 = new WCS_Client.From.From_Montior.Conveyor_R();
  47. this.con1023 = new WCS_Client.From.From_Montior.Conveyor_R();
  48. this.con1028 = new WCS_Client.From.From_Montior.Conveyor_R();
  49. this.con1018 = new WCS_Client.From.From_Montior.Conveyor_R();
  50. this.con1020 = new WCS_Client.From.From_Montior.Conveyor_R();
  51. this.con1030 = new WCS_Client.From.From_Montior.Conveyor_R();
  52. this.con1053 = new WCS_Client.From.From_Montior.Conveyor_R();
  53. this.con1477 = new WCS_Client.From.From_Montior.Conveyor_R();
  54. this.con1473 = new WCS_Client.From.From_Montior.Conveyor_R();
  55. this.con1474 = new WCS_Client.From.From_Montior.Conveyor_R();
  56. this.con1471 = new WCS_Client.From.From_Montior.Conveyor_R();
  57. this.con1556 = new WCS_Client.From.From_Montior.Conveyor_R();
  58. this.con1587 = new WCS_Client.From.From_Montior.Conveyor_R();
  59. this.con1589 = new WCS_Client.From.From_Montior.Conveyor_R();
  60. this.con1480 = new WCS_Client.From.From_Montior.Conveyor_R();
  61. this.con1505 = new WCS_Client.From.From_Montior.Conveyor_R();
  62. this.con1568 = new WCS_Client.From.From_Montior.Conveyor_R();
  63. this.con1534 = new WCS_Client.From.From_Montior.Conveyor_R();
  64. this.con1573 = new WCS_Client.From.From_Montior.Conveyor_R();
  65. this.con1529 = new WCS_Client.From.From_Montior.Conveyor_R();
  66. this.con1538 = new WCS_Client.From.From_Montior.Conveyor_R();
  67. this.con1537 = new WCS_Client.From.From_Montior.Conveyor_R();
  68. this.con1574 = new WCS_Client.From.From_Montior.Conveyor_R();
  69. this.con1508 = new WCS_Client.From.From_Montior.Conveyor_R();
  70. this.con1553 = new WCS_Client.From.From_Montior.Conveyor_R();
  71. this.con1509 = new WCS_Client.From.From_Montior.Conveyor_R();
  72. this.con1532 = new WCS_Client.From.From_Montior.Conveyor_R();
  73. this.con1579 = new WCS_Client.From.From_Montior.Conveyor_R();
  74. this.con1500 = new WCS_Client.From.From_Montior.Conveyor_R();
  75. this.con1582 = new WCS_Client.From.From_Montior.Conveyor_R();
  76. this.con1584 = new WCS_Client.From.From_Montior.Conveyor_R();
  77. this.con1511 = new WCS_Client.From.From_Montior.Conveyor_R();
  78. this.con1513 = new WCS_Client.From.From_Montior.Conveyor_R();
  79. this.con1503 = new WCS_Client.From.From_Montior.Conveyor_R();
  80. this.con1551 = new WCS_Client.From.From_Montior.Conveyor_R();
  81. this.con1548 = new WCS_Client.From.From_Montior.Conveyor_R();
  82. this.con1515 = new WCS_Client.From.From_Montior.Conveyor_R();
  83. this.con1570 = new WCS_Client.From.From_Montior.Conveyor_R();
  84. this.con1565 = new WCS_Client.From.From_Montior.Conveyor_R();
  85. this.con1576 = new WCS_Client.From.From_Montior.Conveyor_R();
  86. this.locationPos37 = new WCS_Client.From.From_Montior.LocationPos();
  87. this.con1065 = new WCS_Client.From.From_Montior.Conveyor_R();
  88. this.con1010 = new WCS_Client.From.From_Montior.Conveyor_L();
  89. this.con1013 = new WCS_Client.From.From_Montior.Conveyor_L();
  90. this.con1008 = new WCS_Client.From.From_Montior.Conveyor_L();
  91. this.label33 = new System.Windows.Forms.Label();
  92. this.tableCellLabel31 = new WCS_Client.From.TableCellLabel();
  93. this.locationPos38 = new WCS_Client.From.From_Montior.LocationPos();
  94. this.locationPos49 = new WCS_Client.From.From_Montior.LocationPos();
  95. this.locationPos53 = new WCS_Client.From.From_Montior.LocationPos();
  96. this.srm15 = new WCS_Client.From.From_Montior.srm();
  97. this.locationPos55 = new WCS_Client.From.From_Montior.LocationPos();
  98. this.con1062 = new WCS_Client.From.From_Montior.Conveyor_R();
  99. this.con1563 = new WCS_Client.From.From_Montior.Conveyor_R();
  100. this.con1520 = new WCS_Client.From.From_Montior.Conveyor_R();
  101. this.srm14 = new WCS_Client.From.From_Montior.srm();
  102. this.locationPos48 = new WCS_Client.From.From_Montior.LocationPos();
  103. this.locationPos36 = new WCS_Client.From.From_Montior.LocationPos();
  104. this.con1522 = new WCS_Client.From.From_Montior.Conveyor_R();
  105. this.con1518 = new WCS_Client.From.From_Montior.Conveyor_R();
  106. this.tableCellLabel30 = new WCS_Client.From.TableCellLabel();
  107. this.locationPos47 = new WCS_Client.From.From_Montior.LocationPos();
  108. this.con1558 = new WCS_Client.From.From_Montior.Conveyor_R();
  109. this.con1498 = new WCS_Client.From.From_Montior.Conveyor_R();
  110. this.con1491 = new WCS_Client.From.From_Montior.Conveyor_R();
  111. this.locationPos45 = new WCS_Client.From.From_Montior.LocationPos();
  112. this.con1597 = new WCS_Client.From.From_Montior.Conveyor_R();
  113. this.srm13 = new WCS_Client.From.From_Montior.srm();
  114. this.locationPos46 = new WCS_Client.From.From_Montior.LocationPos();
  115. this.con1598 = new WCS_Client.From.From_Montior.Conveyor_R();
  116. this.con1489 = new WCS_Client.From.From_Montior.Conveyor_R();
  117. this.locationPos42 = new WCS_Client.From.From_Montior.LocationPos();
  118. this.con1493 = new WCS_Client.From.From_Montior.Conveyor_R();
  119. this.con1040 = new WCS_Client.From.From_Montior.Conveyor_R();
  120. this.tableCellLabel29 = new WCS_Client.From.TableCellLabel();
  121. this.locationPos54 = new WCS_Client.From.From_Montior.LocationPos();
  122. this.con1495 = new WCS_Client.From.From_Montior.Conveyor_R();
  123. this.con1044 = new WCS_Client.From.From_Montior.Conveyor3_A();
  124. this.con1595 = new WCS_Client.From.From_Montior.Conveyor3_A();
  125. this.con1051 = new WCS_Client.From.From_Montior.Conveyor_R();
  126. this.con1049 = new WCS_Client.From.From_Montior.Conveyor_R();
  127. this.con1035 = new WCS_Client.From.From_Montior.Conveyor3_A();
  128. this.con1042 = new WCS_Client.From.From_Montior.Conveyor();
  129. this.con1038 = new WCS_Client.From.From_Montior.Conveyor();
  130. this.con1047 = new WCS_Client.From.From_Montior.Conveyor_L();
  131. this.con1058 = new WCS_Client.From.From_Montior.Conveyor_L();
  132. this.con1060 = new WCS_Client.From.From_Montior.Conveyor_L();
  133. this.con1056 = new WCS_Client.From.From_Montior.Conveyor_L();
  134. this.tableCellLabel2 = new WCS_Client.From.TableCellLabel();
  135. this.con1015 = new WCS_Client.From.From_Montior.Conveyor_R();
  136. this.rgv8 = new WCS_Client.From.From_Montior.Conveyor_R();
  137. this.con1466 = new WCS_Client.From.From_Montior.Conveyor3_B();
  138. this.con1464 = new WCS_Client.From.From_Montior.Conveyor3_B();
  139. this.con1462 = new WCS_Client.From.From_Montior.Conveyor3_B();
  140. this.con1460 = new WCS_Client.From.From_Montior.Conveyor3_B();
  141. this.con1458 = new WCS_Client.From.From_Montior.Conveyor3_B();
  142. this.locationPos1 = new WCS_Client.From.From_Montior.LocationPos();
  143. this.locationPos2 = new WCS_Client.From.From_Montior.LocationPos();
  144. this.locationPos3 = new WCS_Client.From.From_Montior.LocationPos();
  145. this.locationPos4 = new WCS_Client.From.From_Montior.LocationPos();
  146. this.tableCellLabel5 = new WCS_Client.From.TableCellLabel();
  147. this.tableCellLabel6 = new WCS_Client.From.TableCellLabel();
  148. this.con1281 = new WCS_Client.From.From_Montior.Conveyor();
  149. this.con1283 = new WCS_Client.From.From_Montior.Conveyor_L();
  150. this.con1285 = new WCS_Client.From.From_Montior.Conveyor();
  151. this.con1406 = new WCS_Client.From.From_Montior.Conveyor_L();
  152. this.con1404 = new WCS_Client.From.From_Montior.Conveyor();
  153. this.con1408 = new WCS_Client.From.From_Montior.Conveyor_R();
  154. this.con1401 = new WCS_Client.From.From_Montior.Conveyor3_A();
  155. this.con1290 = new WCS_Client.From.From_Montior.Conveyor_R();
  156. this.con1288 = new WCS_Client.From.From_Montior.Conveyor();
  157. this.con1292 = new WCS_Client.From.From_Montior.Conveyor_L();
  158. this.con1294 = new WCS_Client.From.From_Montior.Conveyor3_B();
  159. this.con1415 = new WCS_Client.From.From_Montior.Conveyor_L();
  160. this.con1413 = new WCS_Client.From.From_Montior.Conveyor();
  161. this.con1410 = new WCS_Client.From.From_Montior.Conveyor3_A();
  162. this.con1299 = new WCS_Client.From.From_Montior.Conveyor_R();
  163. this.con1297 = new WCS_Client.From.From_Montior.Conveyor();
  164. this.con1301 = new WCS_Client.From.From_Montior.Conveyor_L();
  165. this.con1303 = new WCS_Client.From.From_Montior.Conveyor3_B();
  166. this.con1422 = new WCS_Client.From.From_Montior.Conveyor_L();
  167. this.con1420 = new WCS_Client.From.From_Montior.Conveyor();
  168. this.con1424 = new WCS_Client.From.From_Montior.Conveyor_R();
  169. this.con1417 = new WCS_Client.From.From_Montior.Conveyor3_A();
  170. this.con1308 = new WCS_Client.From.From_Montior.Conveyor_R();
  171. this.con1306 = new WCS_Client.From.From_Montior.Conveyor();
  172. this.con1310 = new WCS_Client.From.From_Montior.Conveyor_L();
  173. this.con1312 = new WCS_Client.From.From_Montior.Conveyor3_B();
  174. this.con1431 = new WCS_Client.From.From_Montior.Conveyor_L();
  175. this.con1429 = new WCS_Client.From.From_Montior.Conveyor();
  176. this.con1426 = new WCS_Client.From.From_Montior.Conveyor3_A();
  177. this.con1386 = new WCS_Client.From.From_Montior.Conveyor3_B();
  178. this.con1389 = new WCS_Client.From.From_Montior.Conveyor3_B();
  179. this.con1391 = new WCS_Client.From.From_Montior.Conveyor3_B();
  180. this.con1394 = new WCS_Client.From.From_Montior.Conveyor3_B();
  181. this.con1397 = new WCS_Client.From.From_Montior.Conveyor3_B();
  182. this.con1399 = new WCS_Client.From.From_Montior.Conveyor3_B();
  183. this.label1 = new System.Windows.Forms.Label();
  184. this.con1335 = new WCS_Client.From.From_Montior.Conveyor3_B();
  185. this.con1337 = new WCS_Client.From.From_Montior.Conveyor3_B();
  186. this.con1340 = new WCS_Client.From.From_Montior.Conveyor3_B();
  187. this.label4 = new System.Windows.Forms.Label();
  188. this.con1387 = new WCS_Client.From.From_Montior.Conveyor3_B();
  189. this.con1390 = new WCS_Client.From.From_Montior.Conveyor3_B();
  190. this.con1392 = new WCS_Client.From.From_Montior.Conveyor3_B();
  191. this.con1395 = new WCS_Client.From.From_Montior.Conveyor3_B();
  192. this.con1398 = new WCS_Client.From.From_Montior.Conveyor3_B();
  193. this.con1400 = new WCS_Client.From.From_Montior.Conveyor3_B();
  194. this.con1334 = new WCS_Client.From.From_Montior.Conveyor3_B();
  195. this.con1338 = new WCS_Client.From.From_Montior.Conveyor3_B();
  196. this.con1341 = new WCS_Client.From.From_Montior.Conveyor3_B();
  197. this.con1343 = new WCS_Client.From.From_Montior.Conveyor3_B();
  198. this.con1344 = new WCS_Client.From.From_Montior.Conveyor3_B();
  199. this.pnlDDJ1 = new MyConrols.MyPanel();
  200. this.lblInStatus1 = new System.Windows.Forms.Label();
  201. this.lblOutStatus1 = new System.Windows.Forms.Label();
  202. this.lblDDJWarning1 = new System.Windows.Forms.Label();
  203. this.ddjPosTo1 = new System.Windows.Forms.Label();
  204. this.ddjPosFrom1 = new System.Windows.Forms.Label();
  205. this.label84 = new System.Windows.Forms.Label();
  206. this.label85 = new System.Windows.Forms.Label();
  207. this.ddjMode1 = new System.Windows.Forms.Label();
  208. this.ddjOrdId1 = new System.Windows.Forms.Label();
  209. this.label137 = new System.Windows.Forms.Label();
  210. this.ddjOptType1 = new System.Windows.Forms.Label();
  211. this.label139 = new System.Windows.Forms.Label();
  212. this.ddjTotal_KM1 = new System.Windows.Forms.Label();
  213. this.label13 = new System.Windows.Forms.Label();
  214. this.ddjWorkTime1 = new System.Windows.Forms.Label();
  215. this.label10 = new System.Windows.Forms.Label();
  216. this.ddjStatus1 = new System.Windows.Forms.Label();
  217. this.ddjPosCurr1 = new System.Windows.Forms.Label();
  218. this.label5 = new System.Windows.Forms.Label();
  219. this.label3 = new System.Windows.Forms.Label();
  220. this.label2 = new System.Windows.Forms.Label();
  221. this.lblsrm01 = new System.Windows.Forms.Label();
  222. this.G1 = new System.Windows.Forms.PictureBox();
  223. this.R1 = new System.Windows.Forms.PictureBox();
  224. this.pnlDDJ2 = new MyConrols.MyPanel();
  225. this.lblInStatus2 = new System.Windows.Forms.Label();
  226. this.lblOutStatus2 = new System.Windows.Forms.Label();
  227. this.lblDDJWarning2 = new System.Windows.Forms.Label();
  228. this.ddjPosTo2 = new System.Windows.Forms.Label();
  229. this.ddjPosFrom2 = new System.Windows.Forms.Label();
  230. this.label15 = new System.Windows.Forms.Label();
  231. this.label16 = new System.Windows.Forms.Label();
  232. this.ddjMode2 = new System.Windows.Forms.Label();
  233. this.ddjOrdId2 = new System.Windows.Forms.Label();
  234. this.label22 = new System.Windows.Forms.Label();
  235. this.ddjOptType2 = new System.Windows.Forms.Label();
  236. this.label26 = new System.Windows.Forms.Label();
  237. this.ddjTotal_KM2 = new System.Windows.Forms.Label();
  238. this.label29 = new System.Windows.Forms.Label();
  239. this.ddjWorkTime2 = new System.Windows.Forms.Label();
  240. this.label32 = new System.Windows.Forms.Label();
  241. this.ddjStatus2 = new System.Windows.Forms.Label();
  242. this.ddjPosCurr2 = new System.Windows.Forms.Label();
  243. this.label83 = new System.Windows.Forms.Label();
  244. this.label86 = new System.Windows.Forms.Label();
  245. this.label87 = new System.Windows.Forms.Label();
  246. this.lblsrm02 = new System.Windows.Forms.Label();
  247. this.G2 = new System.Windows.Forms.PictureBox();
  248. this.pictureBox6 = new System.Windows.Forms.PictureBox();
  249. this.pnlDDJ3 = new MyConrols.MyPanel();
  250. this.lblInStatus3 = new System.Windows.Forms.Label();
  251. this.lblOutStatus3 = new System.Windows.Forms.Label();
  252. this.lblDDJWarning3 = new System.Windows.Forms.Label();
  253. this.ddjPosTo3 = new System.Windows.Forms.Label();
  254. this.ddjPosFrom3 = new System.Windows.Forms.Label();
  255. this.label43 = new System.Windows.Forms.Label();
  256. this.label51 = new System.Windows.Forms.Label();
  257. this.ddjMode3 = new System.Windows.Forms.Label();
  258. this.ddjOrdId3 = new System.Windows.Forms.Label();
  259. this.label55 = new System.Windows.Forms.Label();
  260. this.ddjOptType3 = new System.Windows.Forms.Label();
  261. this.label57 = new System.Windows.Forms.Label();
  262. this.ddjTotal_KM3 = new System.Windows.Forms.Label();
  263. this.label59 = new System.Windows.Forms.Label();
  264. this.ddjWorkTime3 = new System.Windows.Forms.Label();
  265. this.label61 = new System.Windows.Forms.Label();
  266. this.ddjStatus3 = new System.Windows.Forms.Label();
  267. this.ddjPosCurr3 = new System.Windows.Forms.Label();
  268. this.label64 = new System.Windows.Forms.Label();
  269. this.label65 = new System.Windows.Forms.Label();
  270. this.label66 = new System.Windows.Forms.Label();
  271. this.lblsrm03 = new System.Windows.Forms.Label();
  272. this.G3 = new System.Windows.Forms.PictureBox();
  273. this.pictureBox10 = new System.Windows.Forms.PictureBox();
  274. this.pnlDDJ4 = new MyConrols.MyPanel();
  275. this.lblInStatus4 = new System.Windows.Forms.Label();
  276. this.lblOutStatus4 = new System.Windows.Forms.Label();
  277. this.lblDDJWarning4 = new System.Windows.Forms.Label();
  278. this.ddjPosTo4 = new System.Windows.Forms.Label();
  279. this.ddjPosFrom4 = new System.Windows.Forms.Label();
  280. this.label71 = new System.Windows.Forms.Label();
  281. this.label72 = new System.Windows.Forms.Label();
  282. this.ddjMode4 = new System.Windows.Forms.Label();
  283. this.ddjOrdId4 = new System.Windows.Forms.Label();
  284. this.label75 = new System.Windows.Forms.Label();
  285. this.ddjOptType4 = new System.Windows.Forms.Label();
  286. this.label77 = new System.Windows.Forms.Label();
  287. this.ddjTotal_KM4 = new System.Windows.Forms.Label();
  288. this.label79 = new System.Windows.Forms.Label();
  289. this.ddjWorkTime4 = new System.Windows.Forms.Label();
  290. this.label81 = new System.Windows.Forms.Label();
  291. this.ddjStatus4 = new System.Windows.Forms.Label();
  292. this.ddjPosCurr4 = new System.Windows.Forms.Label();
  293. this.label89 = new System.Windows.Forms.Label();
  294. this.label90 = new System.Windows.Forms.Label();
  295. this.label91 = new System.Windows.Forms.Label();
  296. this.lblsrm04 = new System.Windows.Forms.Label();
  297. this.G4 = new System.Windows.Forms.PictureBox();
  298. this.pictureBox14 = new System.Windows.Forms.PictureBox();
  299. this.myPanel1 = new MyConrols.MyPanel();
  300. this.lblInStatus5 = new System.Windows.Forms.Label();
  301. this.lblOutStatus5 = new System.Windows.Forms.Label();
  302. this.label11 = new System.Windows.Forms.Label();
  303. this.ddjPosTo5 = new System.Windows.Forms.Label();
  304. this.ddjPosFrom5 = new System.Windows.Forms.Label();
  305. this.label17 = new System.Windows.Forms.Label();
  306. this.label18 = new System.Windows.Forms.Label();
  307. this.ddjMode5 = new System.Windows.Forms.Label();
  308. this.ddjOrdId5 = new System.Windows.Forms.Label();
  309. this.label21 = new System.Windows.Forms.Label();
  310. this.ddjOptType5 = new System.Windows.Forms.Label();
  311. this.label24 = new System.Windows.Forms.Label();
  312. this.ddjTotal_KM5 = new System.Windows.Forms.Label();
  313. this.label27 = new System.Windows.Forms.Label();
  314. this.ddjWorkTime5 = new System.Windows.Forms.Label();
  315. this.label30 = new System.Windows.Forms.Label();
  316. this.ddjStatus5 = new System.Windows.Forms.Label();
  317. this.ddjPosCurr5 = new System.Windows.Forms.Label();
  318. this.label36 = new System.Windows.Forms.Label();
  319. this.label37 = new System.Windows.Forms.Label();
  320. this.label38 = new System.Windows.Forms.Label();
  321. this.lblsrm05 = new System.Windows.Forms.Label();
  322. this.G5 = new System.Windows.Forms.PictureBox();
  323. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  324. this.RGV4 = new MyConrols.MyPanel();
  325. this.label14 = new System.Windows.Forms.Label();
  326. this.label19 = new System.Windows.Forms.Label();
  327. this.label20 = new System.Windows.Forms.Label();
  328. this.rgvOptType4 = new System.Windows.Forms.Label();
  329. this.label74 = new System.Windows.Forms.Label();
  330. this.lblRGVWarning1091 = new System.Windows.Forms.Label();
  331. this.rgvPosCurr3 = new System.Windows.Forms.Label();
  332. this.rgvMode4 = new System.Windows.Forms.Label();
  333. this.rgvOrdId4 = new System.Windows.Forms.Label();
  334. this.label94 = new System.Windows.Forms.Label();
  335. this.rgvPosTo4 = new System.Windows.Forms.Label();
  336. this.label96 = new System.Windows.Forms.Label();
  337. this.rgvPosFrom4 = new System.Windows.Forms.Label();
  338. this.rgvStatus4 = new System.Windows.Forms.Label();
  339. this.label102 = new System.Windows.Forms.Label();
  340. this.lblrgv4 = new System.Windows.Forms.Label();
  341. this.GV4 = new System.Windows.Forms.PictureBox();
  342. this.pictureBox7 = new System.Windows.Forms.PictureBox();
  343. this.myPanel5 = new MyConrols.MyPanel();
  344. this.label25 = new System.Windows.Forms.Label();
  345. this.label35 = new System.Windows.Forms.Label();
  346. this.label39 = new System.Windows.Forms.Label();
  347. this.rgvOptType1 = new System.Windows.Forms.Label();
  348. this.label173 = new System.Windows.Forms.Label();
  349. this.lblRGVWarning1007 = new System.Windows.Forms.Label();
  350. this.rgvPosCurr4 = new System.Windows.Forms.Label();
  351. this.rgvMode1 = new System.Windows.Forms.Label();
  352. this.rgvOrdId1 = new System.Windows.Forms.Label();
  353. this.label181 = new System.Windows.Forms.Label();
  354. this.rgvPosTo1 = new System.Windows.Forms.Label();
  355. this.label183 = new System.Windows.Forms.Label();
  356. this.rgvPosFrom1 = new System.Windows.Forms.Label();
  357. this.rgvStatus1 = new System.Windows.Forms.Label();
  358. this.label189 = new System.Windows.Forms.Label();
  359. this.lblrgv1 = new System.Windows.Forms.Label();
  360. this.GV1 = new System.Windows.Forms.PictureBox();
  361. this.pictureBox17 = new System.Windows.Forms.PictureBox();
  362. this.pnlBottom = new MyConrols.MyPanel();
  363. this.myPanel17 = new MyConrols.MyPanel();
  364. this.label314 = new System.Windows.Forms.Label();
  365. this.label315 = new System.Windows.Forms.Label();
  366. this.label316 = new System.Windows.Forms.Label();
  367. this.rgvOptType13 = new System.Windows.Forms.Label();
  368. this.label318 = new System.Windows.Forms.Label();
  369. this.label319 = new System.Windows.Forms.Label();
  370. this.label320 = new System.Windows.Forms.Label();
  371. this.rgvMode13 = new System.Windows.Forms.Label();
  372. this.label322 = new System.Windows.Forms.Label();
  373. this.label323 = new System.Windows.Forms.Label();
  374. this.rgvPosTo13 = new System.Windows.Forms.Label();
  375. this.label325 = new System.Windows.Forms.Label();
  376. this.rgvPosFrom13 = new System.Windows.Forms.Label();
  377. this.rgvStatus13 = new System.Windows.Forms.Label();
  378. this.label328 = new System.Windows.Forms.Label();
  379. this.lblrgv13 = new System.Windows.Forms.Label();
  380. this.GV13 = new System.Windows.Forms.PictureBox();
  381. this.pictureBox36 = new System.Windows.Forms.PictureBox();
  382. this.myPanel11 = new MyConrols.MyPanel();
  383. this.label40 = new System.Windows.Forms.Label();
  384. this.label41 = new System.Windows.Forms.Label();
  385. this.label42 = new System.Windows.Forms.Label();
  386. this.rgvOptType12 = new System.Windows.Forms.Label();
  387. this.label302 = new System.Windows.Forms.Label();
  388. this.label303 = new System.Windows.Forms.Label();
  389. this.label304 = new System.Windows.Forms.Label();
  390. this.rgvMode12 = new System.Windows.Forms.Label();
  391. this.rgvOrdId12 = new System.Windows.Forms.Label();
  392. this.label307 = new System.Windows.Forms.Label();
  393. this.rgvPosTo12 = new System.Windows.Forms.Label();
  394. this.label309 = new System.Windows.Forms.Label();
  395. this.rgvPosFrom12 = new System.Windows.Forms.Label();
  396. this.rgvStatus12 = new System.Windows.Forms.Label();
  397. this.label312 = new System.Windows.Forms.Label();
  398. this.lblrgv12 = new System.Windows.Forms.Label();
  399. this.GV12 = new System.Windows.Forms.PictureBox();
  400. this.pictureBox34 = new System.Windows.Forms.PictureBox();
  401. this.myPanel16 = new MyConrols.MyPanel();
  402. this.label285 = new System.Windows.Forms.Label();
  403. this.label286 = new System.Windows.Forms.Label();
  404. this.label287 = new System.Windows.Forms.Label();
  405. this.rgvOptType14 = new System.Windows.Forms.Label();
  406. this.label289 = new System.Windows.Forms.Label();
  407. this.label290 = new System.Windows.Forms.Label();
  408. this.label291 = new System.Windows.Forms.Label();
  409. this.rgvMode14 = new System.Windows.Forms.Label();
  410. this.rgvOrdId14 = new System.Windows.Forms.Label();
  411. this.label294 = new System.Windows.Forms.Label();
  412. this.rgvPosTo14 = new System.Windows.Forms.Label();
  413. this.label296 = new System.Windows.Forms.Label();
  414. this.rgvPosFrom14 = new System.Windows.Forms.Label();
  415. this.rgvStatus14 = new System.Windows.Forms.Label();
  416. this.label299 = new System.Windows.Forms.Label();
  417. this.lblrgv14 = new System.Windows.Forms.Label();
  418. this.GV14 = new System.Windows.Forms.PictureBox();
  419. this.pictureBox33 = new System.Windows.Forms.PictureBox();
  420. this.myPanel15 = new MyConrols.MyPanel();
  421. this.label269 = new System.Windows.Forms.Label();
  422. this.label270 = new System.Windows.Forms.Label();
  423. this.label271 = new System.Windows.Forms.Label();
  424. this.rgvOptType11 = new System.Windows.Forms.Label();
  425. this.label273 = new System.Windows.Forms.Label();
  426. this.label274 = new System.Windows.Forms.Label();
  427. this.label275 = new System.Windows.Forms.Label();
  428. this.rgvMode11 = new System.Windows.Forms.Label();
  429. this.rgvOrdId11 = new System.Windows.Forms.Label();
  430. this.label278 = new System.Windows.Forms.Label();
  431. this.rgvPosTo11 = new System.Windows.Forms.Label();
  432. this.label280 = new System.Windows.Forms.Label();
  433. this.rgvPosFrom11 = new System.Windows.Forms.Label();
  434. this.rgvStatus11 = new System.Windows.Forms.Label();
  435. this.label283 = new System.Windows.Forms.Label();
  436. this.lblrgv11 = new System.Windows.Forms.Label();
  437. this.GV11 = new System.Windows.Forms.PictureBox();
  438. this.pictureBox31 = new System.Windows.Forms.PictureBox();
  439. this.myPanel14 = new MyConrols.MyPanel();
  440. this.label253 = new System.Windows.Forms.Label();
  441. this.label254 = new System.Windows.Forms.Label();
  442. this.label255 = new System.Windows.Forms.Label();
  443. this.rgvOptType10 = new System.Windows.Forms.Label();
  444. this.label257 = new System.Windows.Forms.Label();
  445. this.label258 = new System.Windows.Forms.Label();
  446. this.label259 = new System.Windows.Forms.Label();
  447. this.rgvMode10 = new System.Windows.Forms.Label();
  448. this.rgvOrdId10 = new System.Windows.Forms.Label();
  449. this.label262 = new System.Windows.Forms.Label();
  450. this.rgvPosTo10 = new System.Windows.Forms.Label();
  451. this.label264 = new System.Windows.Forms.Label();
  452. this.rgvPosFrom10 = new System.Windows.Forms.Label();
  453. this.rgvStatus10 = new System.Windows.Forms.Label();
  454. this.label267 = new System.Windows.Forms.Label();
  455. this.lblrgv10 = new System.Windows.Forms.Label();
  456. this.GV10 = new System.Windows.Forms.PictureBox();
  457. this.pictureBox28 = new System.Windows.Forms.PictureBox();
  458. this.myPanel13 = new MyConrols.MyPanel();
  459. this.label237 = new System.Windows.Forms.Label();
  460. this.label238 = new System.Windows.Forms.Label();
  461. this.label239 = new System.Windows.Forms.Label();
  462. this.rgvOptType9 = new System.Windows.Forms.Label();
  463. this.label241 = new System.Windows.Forms.Label();
  464. this.label242 = new System.Windows.Forms.Label();
  465. this.label243 = new System.Windows.Forms.Label();
  466. this.rgvMode9 = new System.Windows.Forms.Label();
  467. this.rgvOrdId9 = new System.Windows.Forms.Label();
  468. this.label246 = new System.Windows.Forms.Label();
  469. this.rgvPosTo9 = new System.Windows.Forms.Label();
  470. this.label248 = new System.Windows.Forms.Label();
  471. this.rgvPosFrom9 = new System.Windows.Forms.Label();
  472. this.rgvStatus9 = new System.Windows.Forms.Label();
  473. this.label251 = new System.Windows.Forms.Label();
  474. this.lblrgv9 = new System.Windows.Forms.Label();
  475. this.GV9 = new System.Windows.Forms.PictureBox();
  476. this.pictureBox26 = new System.Windows.Forms.PictureBox();
  477. this.myPanel12 = new MyConrols.MyPanel();
  478. this.label221 = new System.Windows.Forms.Label();
  479. this.label222 = new System.Windows.Forms.Label();
  480. this.label223 = new System.Windows.Forms.Label();
  481. this.rgvOptType7 = new System.Windows.Forms.Label();
  482. this.label225 = new System.Windows.Forms.Label();
  483. this.label226 = new System.Windows.Forms.Label();
  484. this.label227 = new System.Windows.Forms.Label();
  485. this.rgvMode7 = new System.Windows.Forms.Label();
  486. this.rgvOrdId7 = new System.Windows.Forms.Label();
  487. this.label230 = new System.Windows.Forms.Label();
  488. this.rgvPosTo7 = new System.Windows.Forms.Label();
  489. this.label232 = new System.Windows.Forms.Label();
  490. this.rgvPosFrom7 = new System.Windows.Forms.Label();
  491. this.rgvStatus7 = new System.Windows.Forms.Label();
  492. this.label235 = new System.Windows.Forms.Label();
  493. this.lblrgv7 = new System.Windows.Forms.Label();
  494. this.GV7 = new System.Windows.Forms.PictureBox();
  495. this.pictureBox24 = new System.Windows.Forms.PictureBox();
  496. this.myPanel10 = new MyConrols.MyPanel();
  497. this.label205 = new System.Windows.Forms.Label();
  498. this.label206 = new System.Windows.Forms.Label();
  499. this.label207 = new System.Windows.Forms.Label();
  500. this.rgvOptType8 = new System.Windows.Forms.Label();
  501. this.label209 = new System.Windows.Forms.Label();
  502. this.label210 = new System.Windows.Forms.Label();
  503. this.label211 = new System.Windows.Forms.Label();
  504. this.rgvMode8 = new System.Windows.Forms.Label();
  505. this.rgvOrdId8 = new System.Windows.Forms.Label();
  506. this.label214 = new System.Windows.Forms.Label();
  507. this.rgvPosTo8 = new System.Windows.Forms.Label();
  508. this.label216 = new System.Windows.Forms.Label();
  509. this.rgvPosFrom8 = new System.Windows.Forms.Label();
  510. this.rgvStatus8 = new System.Windows.Forms.Label();
  511. this.label219 = new System.Windows.Forms.Label();
  512. this.lblrgv8 = new System.Windows.Forms.Label();
  513. this.GV8 = new System.Windows.Forms.PictureBox();
  514. this.pictureBox22 = new System.Windows.Forms.PictureBox();
  515. this.myPanel9 = new MyConrols.MyPanel();
  516. this.label188 = new System.Windows.Forms.Label();
  517. this.label190 = new System.Windows.Forms.Label();
  518. this.label191 = new System.Windows.Forms.Label();
  519. this.rgvOptType6 = new System.Windows.Forms.Label();
  520. this.label193 = new System.Windows.Forms.Label();
  521. this.label194 = new System.Windows.Forms.Label();
  522. this.label195 = new System.Windows.Forms.Label();
  523. this.rgvMode6 = new System.Windows.Forms.Label();
  524. this.rgvOrdId6 = new System.Windows.Forms.Label();
  525. this.label198 = new System.Windows.Forms.Label();
  526. this.rgvPosTo6 = new System.Windows.Forms.Label();
  527. this.label200 = new System.Windows.Forms.Label();
  528. this.rgvPosFrom6 = new System.Windows.Forms.Label();
  529. this.rgvStatus6 = new System.Windows.Forms.Label();
  530. this.label203 = new System.Windows.Forms.Label();
  531. this.lblrgv6 = new System.Windows.Forms.Label();
  532. this.GV6 = new System.Windows.Forms.PictureBox();
  533. this.pictureBox20 = new System.Windows.Forms.PictureBox();
  534. this.myPanel8 = new MyConrols.MyPanel();
  535. this.label169 = new System.Windows.Forms.Label();
  536. this.label170 = new System.Windows.Forms.Label();
  537. this.label171 = new System.Windows.Forms.Label();
  538. this.rgvOptType5 = new System.Windows.Forms.Label();
  539. this.label174 = new System.Windows.Forms.Label();
  540. this.label175 = new System.Windows.Forms.Label();
  541. this.label176 = new System.Windows.Forms.Label();
  542. this.rgvMode5 = new System.Windows.Forms.Label();
  543. this.rgvOrdId5 = new System.Windows.Forms.Label();
  544. this.label179 = new System.Windows.Forms.Label();
  545. this.rgvPosTo5 = new System.Windows.Forms.Label();
  546. this.label182 = new System.Windows.Forms.Label();
  547. this.rgvPosFrom5 = new System.Windows.Forms.Label();
  548. this.rgvStatus5 = new System.Windows.Forms.Label();
  549. this.label186 = new System.Windows.Forms.Label();
  550. this.lblrgv5 = new System.Windows.Forms.Label();
  551. this.GV5 = new System.Windows.Forms.PictureBox();
  552. this.pictureBox18 = new System.Windows.Forms.PictureBox();
  553. this.myPanel7 = new MyConrols.MyPanel();
  554. this.lblInStatus8 = new System.Windows.Forms.Label();
  555. this.lblOutStatus8 = new System.Windows.Forms.Label();
  556. this.label149 = new System.Windows.Forms.Label();
  557. this.ddjPosTo8 = new System.Windows.Forms.Label();
  558. this.ddjPosFrom8 = new System.Windows.Forms.Label();
  559. this.label152 = new System.Windows.Forms.Label();
  560. this.label153 = new System.Windows.Forms.Label();
  561. this.ddjMode8 = new System.Windows.Forms.Label();
  562. this.ddjOrdId8 = new System.Windows.Forms.Label();
  563. this.label156 = new System.Windows.Forms.Label();
  564. this.ddjOptType8 = new System.Windows.Forms.Label();
  565. this.label158 = new System.Windows.Forms.Label();
  566. this.ddjTotal_KM8 = new System.Windows.Forms.Label();
  567. this.label160 = new System.Windows.Forms.Label();
  568. this.ddjWorkTime8 = new System.Windows.Forms.Label();
  569. this.label162 = new System.Windows.Forms.Label();
  570. this.ddjStatus8 = new System.Windows.Forms.Label();
  571. this.ddjPosCurr8 = new System.Windows.Forms.Label();
  572. this.label165 = new System.Windows.Forms.Label();
  573. this.label166 = new System.Windows.Forms.Label();
  574. this.label167 = new System.Windows.Forms.Label();
  575. this.lblsrm08 = new System.Windows.Forms.Label();
  576. this.G8 = new System.Windows.Forms.PictureBox();
  577. this.pictureBox15 = new System.Windows.Forms.PictureBox();
  578. this.myPanel6 = new MyConrols.MyPanel();
  579. this.lblInStatus7 = new System.Windows.Forms.Label();
  580. this.lblOutStatus7 = new System.Windows.Forms.Label();
  581. this.label103 = new System.Windows.Forms.Label();
  582. this.ddjPosTo7 = new System.Windows.Forms.Label();
  583. this.ddjPosFrom7 = new System.Windows.Forms.Label();
  584. this.label106 = new System.Windows.Forms.Label();
  585. this.label107 = new System.Windows.Forms.Label();
  586. this.ddjMode7 = new System.Windows.Forms.Label();
  587. this.ddjOrdId7 = new System.Windows.Forms.Label();
  588. this.label110 = new System.Windows.Forms.Label();
  589. this.ddjOptType7 = new System.Windows.Forms.Label();
  590. this.label112 = new System.Windows.Forms.Label();
  591. this.ddjTotal_KM7 = new System.Windows.Forms.Label();
  592. this.label114 = new System.Windows.Forms.Label();
  593. this.ddjWorkTime7 = new System.Windows.Forms.Label();
  594. this.label116 = new System.Windows.Forms.Label();
  595. this.ddjStatus7 = new System.Windows.Forms.Label();
  596. this.ddjPosCurr7 = new System.Windows.Forms.Label();
  597. this.label119 = new System.Windows.Forms.Label();
  598. this.label120 = new System.Windows.Forms.Label();
  599. this.label121 = new System.Windows.Forms.Label();
  600. this.lblsrm07 = new System.Windows.Forms.Label();
  601. this.G7 = new System.Windows.Forms.PictureBox();
  602. this.pictureBox9 = new System.Windows.Forms.PictureBox();
  603. this.myPanel3 = new MyConrols.MyPanel();
  604. this.lblInStatus6 = new System.Windows.Forms.Label();
  605. this.lblOutStatus6 = new System.Windows.Forms.Label();
  606. this.label47 = new System.Windows.Forms.Label();
  607. this.ddjPosTo6 = new System.Windows.Forms.Label();
  608. this.ddjPosFrom6 = new System.Windows.Forms.Label();
  609. this.label52 = new System.Windows.Forms.Label();
  610. this.label54 = new System.Windows.Forms.Label();
  611. this.ddjMode6 = new System.Windows.Forms.Label();
  612. this.ddjOrdId6 = new System.Windows.Forms.Label();
  613. this.label62 = new System.Windows.Forms.Label();
  614. this.ddjOptType6 = new System.Windows.Forms.Label();
  615. this.label68 = new System.Windows.Forms.Label();
  616. this.ddjTotal_KM6 = new System.Windows.Forms.Label();
  617. this.label76 = new System.Windows.Forms.Label();
  618. this.ddjWorkTime6 = new System.Windows.Forms.Label();
  619. this.label82 = new System.Windows.Forms.Label();
  620. this.ddjStatus6 = new System.Windows.Forms.Label();
  621. this.ddjPosCurr6 = new System.Windows.Forms.Label();
  622. this.label95 = new System.Windows.Forms.Label();
  623. this.label97 = new System.Windows.Forms.Label();
  624. this.label98 = new System.Windows.Forms.Label();
  625. this.lblsrm06 = new System.Windows.Forms.Label();
  626. this.G6 = new System.Windows.Forms.PictureBox();
  627. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  628. this.pnlRGV1089 = new MyConrols.MyPanel();
  629. this.label7 = new System.Windows.Forms.Label();
  630. this.label8 = new System.Windows.Forms.Label();
  631. this.label9 = new System.Windows.Forms.Label();
  632. this.rgvOptType3 = new System.Windows.Forms.Label();
  633. this.label31 = new System.Windows.Forms.Label();
  634. this.lblRGVWarning1089 = new System.Windows.Forms.Label();
  635. this.rgvPosCurr2 = new System.Windows.Forms.Label();
  636. this.rgvMode3 = new System.Windows.Forms.Label();
  637. this.rgvOrdId3 = new System.Windows.Forms.Label();
  638. this.label50 = new System.Windows.Forms.Label();
  639. this.rgvPosTo3 = new System.Windows.Forms.Label();
  640. this.label53 = new System.Windows.Forms.Label();
  641. this.rgvPosFrom3 = new System.Windows.Forms.Label();
  642. this.rgvStatus3 = new System.Windows.Forms.Label();
  643. this.label63 = new System.Windows.Forms.Label();
  644. this.lblrgv3 = new System.Windows.Forms.Label();
  645. this.GV3 = new System.Windows.Forms.PictureBox();
  646. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  647. this.myPanel2 = new MyConrols.MyPanel();
  648. this.myPanel4 = new MyConrols.MyPanel();
  649. this.label124 = new System.Windows.Forms.Label();
  650. this.label125 = new System.Windows.Forms.Label();
  651. this.label126 = new System.Windows.Forms.Label();
  652. this.label127 = new System.Windows.Forms.Label();
  653. this.label128 = new System.Windows.Forms.Label();
  654. this.label129 = new System.Windows.Forms.Label();
  655. this.label130 = new System.Windows.Forms.Label();
  656. this.label131 = new System.Windows.Forms.Label();
  657. this.label132 = new System.Windows.Forms.Label();
  658. this.label133 = new System.Windows.Forms.Label();
  659. this.label134 = new System.Windows.Forms.Label();
  660. this.label135 = new System.Windows.Forms.Label();
  661. this.label136 = new System.Windows.Forms.Label();
  662. this.label138 = new System.Windows.Forms.Label();
  663. this.label140 = new System.Windows.Forms.Label();
  664. this.label141 = new System.Windows.Forms.Label();
  665. this.label142 = new System.Windows.Forms.Label();
  666. this.label143 = new System.Windows.Forms.Label();
  667. this.label144 = new System.Windows.Forms.Label();
  668. this.label145 = new System.Windows.Forms.Label();
  669. this.label146 = new System.Windows.Forms.Label();
  670. this.label147 = new System.Windows.Forms.Label();
  671. this.pictureBox11 = new System.Windows.Forms.PictureBox();
  672. this.pictureBox12 = new System.Windows.Forms.PictureBox();
  673. this.rgvOptType2 = new System.Windows.Forms.Label();
  674. this.label23 = new System.Windows.Forms.Label();
  675. this.lblRGVWarning1444 = new System.Windows.Forms.Label();
  676. this.rgvPosCurr1 = new System.Windows.Forms.Label();
  677. this.label45 = new System.Windows.Forms.Label();
  678. this.rgvMode2 = new System.Windows.Forms.Label();
  679. this.rgvOrdId2 = new System.Windows.Forms.Label();
  680. this.label58 = new System.Windows.Forms.Label();
  681. this.rgvPosTo2 = new System.Windows.Forms.Label();
  682. this.label69 = new System.Windows.Forms.Label();
  683. this.rgvPosFrom2 = new System.Windows.Forms.Label();
  684. this.label73 = new System.Windows.Forms.Label();
  685. this.rgvStatus2 = new System.Windows.Forms.Label();
  686. this.label80 = new System.Windows.Forms.Label();
  687. this.label92 = new System.Windows.Forms.Label();
  688. this.lblrgv2 = new System.Windows.Forms.Label();
  689. this.GV2 = new System.Windows.Forms.PictureBox();
  690. this.pictureBox5 = new System.Windows.Forms.PictureBox();
  691. this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
  692. this.tabControl1.SuspendLayout();
  693. this.tabPage1.SuspendLayout();
  694. this.myTableLayoutPanel1.SuspendLayout();
  695. this.pnlDDJ1.SuspendLayout();
  696. ((System.ComponentModel.ISupportInitialize)(this.G1)).BeginInit();
  697. ((System.ComponentModel.ISupportInitialize)(this.R1)).BeginInit();
  698. this.pnlDDJ2.SuspendLayout();
  699. ((System.ComponentModel.ISupportInitialize)(this.G2)).BeginInit();
  700. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
  701. this.pnlDDJ3.SuspendLayout();
  702. ((System.ComponentModel.ISupportInitialize)(this.G3)).BeginInit();
  703. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit();
  704. this.pnlDDJ4.SuspendLayout();
  705. ((System.ComponentModel.ISupportInitialize)(this.G4)).BeginInit();
  706. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
  707. this.myPanel1.SuspendLayout();
  708. ((System.ComponentModel.ISupportInitialize)(this.G5)).BeginInit();
  709. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  710. this.RGV4.SuspendLayout();
  711. ((System.ComponentModel.ISupportInitialize)(this.GV4)).BeginInit();
  712. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit();
  713. this.myPanel5.SuspendLayout();
  714. ((System.ComponentModel.ISupportInitialize)(this.GV1)).BeginInit();
  715. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).BeginInit();
  716. this.pnlBottom.SuspendLayout();
  717. this.myPanel17.SuspendLayout();
  718. ((System.ComponentModel.ISupportInitialize)(this.GV13)).BeginInit();
  719. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).BeginInit();
  720. this.myPanel11.SuspendLayout();
  721. ((System.ComponentModel.ISupportInitialize)(this.GV12)).BeginInit();
  722. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).BeginInit();
  723. this.myPanel16.SuspendLayout();
  724. ((System.ComponentModel.ISupportInitialize)(this.GV14)).BeginInit();
  725. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).BeginInit();
  726. this.myPanel15.SuspendLayout();
  727. ((System.ComponentModel.ISupportInitialize)(this.GV11)).BeginInit();
  728. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).BeginInit();
  729. this.myPanel14.SuspendLayout();
  730. ((System.ComponentModel.ISupportInitialize)(this.GV10)).BeginInit();
  731. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).BeginInit();
  732. this.myPanel13.SuspendLayout();
  733. ((System.ComponentModel.ISupportInitialize)(this.GV9)).BeginInit();
  734. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).BeginInit();
  735. this.myPanel12.SuspendLayout();
  736. ((System.ComponentModel.ISupportInitialize)(this.GV7)).BeginInit();
  737. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).BeginInit();
  738. this.myPanel10.SuspendLayout();
  739. ((System.ComponentModel.ISupportInitialize)(this.GV8)).BeginInit();
  740. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).BeginInit();
  741. this.myPanel9.SuspendLayout();
  742. ((System.ComponentModel.ISupportInitialize)(this.GV6)).BeginInit();
  743. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).BeginInit();
  744. this.myPanel8.SuspendLayout();
  745. ((System.ComponentModel.ISupportInitialize)(this.GV5)).BeginInit();
  746. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).BeginInit();
  747. this.myPanel7.SuspendLayout();
  748. ((System.ComponentModel.ISupportInitialize)(this.G8)).BeginInit();
  749. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
  750. this.myPanel6.SuspendLayout();
  751. ((System.ComponentModel.ISupportInitialize)(this.G7)).BeginInit();
  752. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit();
  753. this.myPanel3.SuspendLayout();
  754. ((System.ComponentModel.ISupportInitialize)(this.G6)).BeginInit();
  755. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  756. this.pnlRGV1089.SuspendLayout();
  757. ((System.ComponentModel.ISupportInitialize)(this.GV3)).BeginInit();
  758. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  759. this.myPanel2.SuspendLayout();
  760. this.myPanel4.SuspendLayout();
  761. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).BeginInit();
  762. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).BeginInit();
  763. ((System.ComponentModel.ISupportInitialize)(this.GV2)).BeginInit();
  764. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
  765. this.tableLayoutPanel1.SuspendLayout();
  766. this.SuspendLayout();
  767. //
  768. // tabControl1
  769. //
  770. this.tabControl1.Controls.Add(this.tabPage1);
  771. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  772. this.tabControl1.ItemSize = new System.Drawing.Size(120, 21);
  773. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  774. this.tabControl1.Margin = new System.Windows.Forms.Padding(0);
  775. this.tabControl1.Name = "tabControl1";
  776. this.tabControl1.SelectedIndex = 0;
  777. this.tabControl1.Size = new System.Drawing.Size(1710, 615);
  778. this.tabControl1.TabIndex = 125;
  779. //
  780. // tabPage1
  781. //
  782. this.tabPage1.AutoScroll = true;
  783. this.tabPage1.BackColor = System.Drawing.Color.White;
  784. this.tabPage1.Controls.Add(this.myTableLayoutPanel1);
  785. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  786. this.tabPage1.Margin = new System.Windows.Forms.Padding(0);
  787. this.tabPage1.Name = "tabPage1";
  788. this.tabPage1.Size = new System.Drawing.Size(1702, 586);
  789. this.tabPage1.TabIndex = 0;
  790. this.tabPage1.Text = "OPP立体库";
  791. //
  792. // myTableLayoutPanel1
  793. //
  794. this.myTableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(144)))), ((int)(((byte)(154)))));
  795. this.myTableLayoutPanel1.ColumnCount = 127;
  796. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  797. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  798. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  799. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  800. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  801. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  802. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  803. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  804. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  805. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  806. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  807. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  808. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  809. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  810. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  811. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  812. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  813. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  814. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  815. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  816. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  817. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  818. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  819. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  820. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  821. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  822. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  823. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  824. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  825. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  826. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  827. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  828. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  829. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  830. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  831. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  832. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  833. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  834. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  835. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  836. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  837. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  838. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  839. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  840. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  841. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  842. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  843. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  844. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  845. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.8297583F));
  846. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7260384F));
  847. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  848. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  849. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  850. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  851. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  852. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  853. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  854. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  855. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  856. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  857. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  858. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  859. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  860. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  861. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  862. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  863. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  864. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  865. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  866. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  867. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  868. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  869. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  870. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  871. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  872. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  873. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  874. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  875. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  876. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  877. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  878. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  879. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  880. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  881. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  882. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  883. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  884. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  885. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  886. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  887. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  888. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  889. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  890. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  891. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  892. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  893. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  894. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  895. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  896. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  897. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  898. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  899. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  900. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  901. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  902. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7880845F));
  903. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  904. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  905. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  906. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  907. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  908. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  909. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  910. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  911. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  912. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  913. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  914. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  915. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  916. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  917. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7840342F));
  918. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.787735F));
  919. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.787735F));
  920. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.787735F));
  921. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.787735F));
  922. this.myTableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 0.7838073F));
  923. this.myTableLayoutPanel1.Controls.Add(this.con1067, 12, 18);
  924. this.myTableLayoutPanel1.Controls.Add(this.con1455, 6, 40);
  925. this.myTableLayoutPanel1.Controls.Add(this.con1482, 52, 44);
  926. this.myTableLayoutPanel1.Controls.Add(this.con1484, 48, 44);
  927. this.myTableLayoutPanel1.Controls.Add(this.con1486, 44, 44);
  928. this.myTableLayoutPanel1.Controls.Add(this.con1580, 44, 48);
  929. this.myTableLayoutPanel1.Controls.Add(this.con1524, 25, 42);
  930. this.myTableLayoutPanel1.Controls.Add(this.con1527, 25, 44);
  931. this.myTableLayoutPanel1.Controls.Add(this.con1545, 13, 40);
  932. this.myTableLayoutPanel1.Controls.Add(this.con1540, 21, 44);
  933. this.myTableLayoutPanel1.Controls.Add(this.con1544, 16, 40);
  934. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel1, 3, 14);
  935. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel3, 49, 14);
  936. this.myTableLayoutPanel1.Controls.Add(this.con1596, 7, 54);
  937. this.myTableLayoutPanel1.Controls.Add(this.con1025, 57, 10);
  938. this.myTableLayoutPanel1.Controls.Add(this.con1023, 60, 10);
  939. this.myTableLayoutPanel1.Controls.Add(this.con1028, 52, 10);
  940. this.myTableLayoutPanel1.Controls.Add(this.con1018, 61, 6);
  941. this.myTableLayoutPanel1.Controls.Add(this.con1020, 61, 8);
  942. this.myTableLayoutPanel1.Controls.Add(this.con1030, 53, 12);
  943. this.myTableLayoutPanel1.Controls.Add(this.con1053, 25, 16);
  944. this.myTableLayoutPanel1.Controls.Add(this.con1477, 56, 42);
  945. this.myTableLayoutPanel1.Controls.Add(this.con1473, 60, 40);
  946. this.myTableLayoutPanel1.Controls.Add(this.con1474, 52, 40);
  947. this.myTableLayoutPanel1.Controls.Add(this.con1471, 55, 40);
  948. this.myTableLayoutPanel1.Controls.Add(this.con1556, 16, 48);
  949. this.myTableLayoutPanel1.Controls.Add(this.con1587, 56, 48);
  950. this.myTableLayoutPanel1.Controls.Add(this.con1589, 56, 46);
  951. this.myTableLayoutPanel1.Controls.Add(this.con1480, 56, 44);
  952. this.myTableLayoutPanel1.Controls.Add(this.con1505, 40, 50);
  953. this.myTableLayoutPanel1.Controls.Add(this.con1568, 31, 48);
  954. this.myTableLayoutPanel1.Controls.Add(this.con1534, 25, 50);
  955. this.myTableLayoutPanel1.Controls.Add(this.con1573, 32, 52);
  956. this.myTableLayoutPanel1.Controls.Add(this.con1529, 25, 46);
  957. this.myTableLayoutPanel1.Controls.Add(this.con1538, 25, 54);
  958. this.myTableLayoutPanel1.Controls.Add(this.con1537, 25, 52);
  959. this.myTableLayoutPanel1.Controls.Add(this.con1574, 32, 54);
  960. this.myTableLayoutPanel1.Controls.Add(this.con1508, 40, 52);
  961. this.myTableLayoutPanel1.Controls.Add(this.con1553, 17, 46);
  962. this.myTableLayoutPanel1.Controls.Add(this.con1509, 40, 54);
  963. this.myTableLayoutPanel1.Controls.Add(this.con1532, 24, 48);
  964. this.myTableLayoutPanel1.Controls.Add(this.con1579, 37, 48);
  965. this.myTableLayoutPanel1.Controls.Add(this.con1500, 40, 46);
  966. this.myTableLayoutPanel1.Controls.Add(this.con1582, 48, 48);
  967. this.myTableLayoutPanel1.Controls.Add(this.con1584, 52, 48);
  968. this.myTableLayoutPanel1.Controls.Add(this.con1511, 36, 44);
  969. this.myTableLayoutPanel1.Controls.Add(this.con1513, 33, 44);
  970. this.myTableLayoutPanel1.Controls.Add(this.con1503, 39, 48);
  971. this.myTableLayoutPanel1.Controls.Add(this.con1551, 16, 44);
  972. this.myTableLayoutPanel1.Controls.Add(this.con1548, 17, 42);
  973. this.myTableLayoutPanel1.Controls.Add(this.con1515, 30, 44);
  974. this.myTableLayoutPanel1.Controls.Add(this.con1570, 32, 50);
  975. this.myTableLayoutPanel1.Controls.Add(this.con1565, 29, 48);
  976. this.myTableLayoutPanel1.Controls.Add(this.con1576, 35, 48);
  977. this.myTableLayoutPanel1.Controls.Add(this.locationPos37, 15, 20);
  978. this.myTableLayoutPanel1.Controls.Add(this.con1065, 15, 18);
  979. this.myTableLayoutPanel1.Controls.Add(this.con1010, 45, 8);
  980. this.myTableLayoutPanel1.Controls.Add(this.con1013, 44, 10);
  981. this.myTableLayoutPanel1.Controls.Add(this.con1008, 45, 6);
  982. this.myTableLayoutPanel1.Controls.Add(this.label33, 100, 29);
  983. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel31, 14, 20);
  984. this.myTableLayoutPanel1.Controls.Add(this.locationPos38, 19, 20);
  985. this.myTableLayoutPanel1.Controls.Add(this.locationPos49, 11, 20);
  986. this.myTableLayoutPanel1.Controls.Add(this.locationPos53, 7, 20);
  987. this.myTableLayoutPanel1.Controls.Add(this.srm15, 6, 20);
  988. this.myTableLayoutPanel1.Controls.Add(this.locationPos55, 3, 20);
  989. this.myTableLayoutPanel1.Controls.Add(this.con1062, 15, 16);
  990. this.myTableLayoutPanel1.Controls.Add(this.con1563, 21, 48);
  991. this.myTableLayoutPanel1.Controls.Add(this.con1520, 21, 40);
  992. this.myTableLayoutPanel1.Controls.Add(this.srm14, 22, 20);
  993. this.myTableLayoutPanel1.Controls.Add(this.locationPos48, 23, 20);
  994. this.myTableLayoutPanel1.Controls.Add(this.locationPos36, 27, 20);
  995. this.myTableLayoutPanel1.Controls.Add(this.con1522, 29, 40);
  996. this.myTableLayoutPanel1.Controls.Add(this.con1518, 24, 40);
  997. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel30, 30, 20);
  998. this.myTableLayoutPanel1.Controls.Add(this.locationPos47, 31, 20);
  999. this.myTableLayoutPanel1.Controls.Add(this.con1558, 17, 50);
  1000. this.myTableLayoutPanel1.Controls.Add(this.con1498, 39, 44);
  1001. this.myTableLayoutPanel1.Controls.Add(this.con1491, 36, 40);
  1002. this.myTableLayoutPanel1.Controls.Add(this.locationPos45, 34, 20);
  1003. this.myTableLayoutPanel1.Controls.Add(this.con1597, 17, 52);
  1004. this.myTableLayoutPanel1.Controls.Add(this.srm13, 37, 20);
  1005. this.myTableLayoutPanel1.Controls.Add(this.locationPos46, 38, 20);
  1006. this.myTableLayoutPanel1.Controls.Add(this.con1598, 17, 54);
  1007. this.myTableLayoutPanel1.Controls.Add(this.con1489, 38, 40);
  1008. this.myTableLayoutPanel1.Controls.Add(this.locationPos42, 42, 20);
  1009. this.myTableLayoutPanel1.Controls.Add(this.con1493, 44, 40);
  1010. this.myTableLayoutPanel1.Controls.Add(this.con1040, 52, 18);
  1011. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel29, 45, 20);
  1012. this.myTableLayoutPanel1.Controls.Add(this.locationPos54, 46, 20);
  1013. this.myTableLayoutPanel1.Controls.Add(this.con1495, 40, 42);
  1014. this.myTableLayoutPanel1.Controls.Add(this.con1044, 40, 16);
  1015. this.myTableLayoutPanel1.Controls.Add(this.con1595, 7, 52);
  1016. this.myTableLayoutPanel1.Controls.Add(this.con1051, 44, 18);
  1017. this.myTableLayoutPanel1.Controls.Add(this.con1049, 36, 18);
  1018. this.myTableLayoutPanel1.Controls.Add(this.con1035, 56, 16);
  1019. this.myTableLayoutPanel1.Controls.Add(this.con1042, 60, 18);
  1020. this.myTableLayoutPanel1.Controls.Add(this.con1038, 55, 18);
  1021. this.myTableLayoutPanel1.Controls.Add(this.con1047, 38, 18);
  1022. this.myTableLayoutPanel1.Controls.Add(this.con1058, 21, 18);
  1023. this.myTableLayoutPanel1.Controls.Add(this.con1060, 29, 18);
  1024. this.myTableLayoutPanel1.Controls.Add(this.con1056, 24, 18);
  1025. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel2, 33, 14);
  1026. this.myTableLayoutPanel1.Controls.Add(this.con1015, 49, 10);
  1027. this.myTableLayoutPanel1.Controls.Add(this.rgv8, 46, 14);
  1028. this.myTableLayoutPanel1.Controls.Add(this.con1466, 7, 50);
  1029. this.myTableLayoutPanel1.Controls.Add(this.con1464, 7, 48);
  1030. this.myTableLayoutPanel1.Controls.Add(this.con1462, 7, 46);
  1031. this.myTableLayoutPanel1.Controls.Add(this.con1460, 7, 44);
  1032. this.myTableLayoutPanel1.Controls.Add(this.con1458, 7, 42);
  1033. this.myTableLayoutPanel1.Controls.Add(this.locationPos1, 50, 20);
  1034. this.myTableLayoutPanel1.Controls.Add(this.locationPos2, 54, 20);
  1035. this.myTableLayoutPanel1.Controls.Add(this.locationPos3, 58, 20);
  1036. this.myTableLayoutPanel1.Controls.Add(this.locationPos4, 62, 20);
  1037. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel5, 53, 20);
  1038. this.myTableLayoutPanel1.Controls.Add(this.tableCellLabel6, 61, 20);
  1039. this.myTableLayoutPanel1.Controls.Add(this.con1281, 67, 40);
  1040. this.myTableLayoutPanel1.Controls.Add(this.con1283, 70, 40);
  1041. this.myTableLayoutPanel1.Controls.Add(this.con1285, 67, 42);
  1042. this.myTableLayoutPanel1.Controls.Add(this.con1406, 73, 40);
  1043. this.myTableLayoutPanel1.Controls.Add(this.con1404, 75, 40);
  1044. this.myTableLayoutPanel1.Controls.Add(this.con1408, 78, 40);
  1045. this.myTableLayoutPanel1.Controls.Add(this.con1401, 75, 42);
  1046. this.myTableLayoutPanel1.Controls.Add(this.con1290, 81, 40);
  1047. this.myTableLayoutPanel1.Controls.Add(this.con1288, 83, 40);
  1048. this.myTableLayoutPanel1.Controls.Add(this.con1292, 86, 40);
  1049. this.myTableLayoutPanel1.Controls.Add(this.con1294, 83, 42);
  1050. this.myTableLayoutPanel1.Controls.Add(this.con1415, 89, 40);
  1051. this.myTableLayoutPanel1.Controls.Add(this.con1413, 91, 40);
  1052. this.myTableLayoutPanel1.Controls.Add(this.con1410, 91, 42);
  1053. this.myTableLayoutPanel1.Controls.Add(this.con1299, 95, 40);
  1054. this.myTableLayoutPanel1.Controls.Add(this.con1297, 97, 40);
  1055. this.myTableLayoutPanel1.Controls.Add(this.con1301, 100, 40);
  1056. this.myTableLayoutPanel1.Controls.Add(this.con1303, 97, 42);
  1057. this.myTableLayoutPanel1.Controls.Add(this.con1422, 103, 40);
  1058. this.myTableLayoutPanel1.Controls.Add(this.con1420, 105, 40);
  1059. this.myTableLayoutPanel1.Controls.Add(this.con1424, 108, 40);
  1060. this.myTableLayoutPanel1.Controls.Add(this.con1417, 105, 42);
  1061. this.myTableLayoutPanel1.Controls.Add(this.con1308, 111, 40);
  1062. this.myTableLayoutPanel1.Controls.Add(this.con1306, 113, 40);
  1063. this.myTableLayoutPanel1.Controls.Add(this.con1310, 116, 40);
  1064. this.myTableLayoutPanel1.Controls.Add(this.con1312, 113, 42);
  1065. this.myTableLayoutPanel1.Controls.Add(this.con1431, 119, 40);
  1066. this.myTableLayoutPanel1.Controls.Add(this.con1429, 121, 40);
  1067. this.myTableLayoutPanel1.Controls.Add(this.con1426, 121, 42);
  1068. this.myTableLayoutPanel1.Controls.Add(this.con1386, 104, 29);
  1069. this.myTableLayoutPanel1.Controls.Add(this.con1389, 104, 31);
  1070. this.myTableLayoutPanel1.Controls.Add(this.con1391, 104, 33);
  1071. this.myTableLayoutPanel1.Controls.Add(this.con1394, 115, 29);
  1072. this.myTableLayoutPanel1.Controls.Add(this.con1397, 115, 31);
  1073. this.myTableLayoutPanel1.Controls.Add(this.con1399, 115, 33);
  1074. this.myTableLayoutPanel1.Controls.Add(this.label1, 111, 29);
  1075. this.myTableLayoutPanel1.Controls.Add(this.con1335, 112, 49);
  1076. this.myTableLayoutPanel1.Controls.Add(this.con1337, 112, 51);
  1077. this.myTableLayoutPanel1.Controls.Add(this.con1340, 112, 53);
  1078. this.myTableLayoutPanel1.Controls.Add(this.label4, 109, 49);
  1079. this.myTableLayoutPanel1.Controls.Add(this.con1387, 107, 29);
  1080. this.myTableLayoutPanel1.Controls.Add(this.con1390, 107, 31);
  1081. this.myTableLayoutPanel1.Controls.Add(this.con1392, 107, 33);
  1082. this.myTableLayoutPanel1.Controls.Add(this.con1395, 118, 29);
  1083. this.myTableLayoutPanel1.Controls.Add(this.con1398, 118, 31);
  1084. this.myTableLayoutPanel1.Controls.Add(this.con1400, 118, 33);
  1085. this.myTableLayoutPanel1.Controls.Add(this.con1334, 115, 49);
  1086. this.myTableLayoutPanel1.Controls.Add(this.con1338, 115, 51);
  1087. this.myTableLayoutPanel1.Controls.Add(this.con1341, 115, 53);
  1088. this.myTableLayoutPanel1.Controls.Add(this.con1343, 112, 55);
  1089. this.myTableLayoutPanel1.Controls.Add(this.con1344, 115, 55);
  1090. this.myTableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1091. this.myTableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  1092. this.myTableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  1093. this.myTableLayoutPanel1.Name = "myTableLayoutPanel1";
  1094. this.myTableLayoutPanel1.RowCount = 59;
  1095. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678244F));
  1096. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1097. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1098. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1099. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1100. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1101. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1102. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1103. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.91204F));
  1104. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1105. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1106. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1107. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1108. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1109. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1110. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1111. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1112. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1113. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1114. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1115. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1116. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1117. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1118. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1119. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1120. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1121. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1122. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1123. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1124. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1125. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1126. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1127. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1128. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1129. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1130. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1131. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1132. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1133. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.678243F));
  1134. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1135. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1136. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1137. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1138. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1139. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1140. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1141. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1142. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1143. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.717027F));
  1144. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1145. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1146. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1147. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1148. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1149. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1150. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1151. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1152. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1153. this.myTableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 1.714441F));
  1154. this.myTableLayoutPanel1.Size = new System.Drawing.Size(1702, 586);
  1155. this.myTableLayoutPanel1.TabIndex = 2;
  1156. this.myTableLayoutPanel1.Tag = "";
  1157. //
  1158. // con1067
  1159. //
  1160. this.con1067.BackColor = System.Drawing.Color.Transparent;
  1161. this.myTableLayoutPanel1.SetColumnSpan(this.con1067, 3);
  1162. this.con1067.Dock = System.Windows.Forms.DockStyle.Fill;
  1163. this.con1067.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1164. this.con1067.Location = new System.Drawing.Point(156, 164);
  1165. this.con1067.Margin = new System.Windows.Forms.Padding(0);
  1166. this.con1067.Name = "con1067";
  1167. this.myTableLayoutPanel1.SetRowSpan(this.con1067, 2);
  1168. this.con1067.Size = new System.Drawing.Size(39, 18);
  1169. this.con1067.TabIndex = 869;
  1170. //
  1171. // con1455
  1172. //
  1173. this.con1455.BackColor = System.Drawing.Color.Transparent;
  1174. this.myTableLayoutPanel1.SetColumnSpan(this.con1455, 5);
  1175. this.con1455.Dock = System.Windows.Forms.DockStyle.Fill;
  1176. this.con1455.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1177. this.con1455.Location = new System.Drawing.Point(78, 363);
  1178. this.con1455.Margin = new System.Windows.Forms.Padding(0);
  1179. this.con1455.Name = "con1455";
  1180. this.myTableLayoutPanel1.SetRowSpan(this.con1455, 2);
  1181. this.con1455.Size = new System.Drawing.Size(65, 20);
  1182. this.con1455.TabIndex = 858;
  1183. //
  1184. // con1482
  1185. //
  1186. this.con1482.BackColor = System.Drawing.Color.Transparent;
  1187. this.myTableLayoutPanel1.SetColumnSpan(this.con1482, 4);
  1188. this.con1482.Dock = System.Windows.Forms.DockStyle.Fill;
  1189. this.con1482.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1190. this.con1482.Location = new System.Drawing.Point(676, 403);
  1191. this.con1482.Margin = new System.Windows.Forms.Padding(0);
  1192. this.con1482.Name = "con1482";
  1193. this.myTableLayoutPanel1.SetRowSpan(this.con1482, 2);
  1194. this.con1482.Size = new System.Drawing.Size(52, 20);
  1195. this.con1482.TabIndex = 854;
  1196. //
  1197. // con1484
  1198. //
  1199. this.con1484.BackColor = System.Drawing.Color.Transparent;
  1200. this.myTableLayoutPanel1.SetColumnSpan(this.con1484, 4);
  1201. this.con1484.Dock = System.Windows.Forms.DockStyle.Fill;
  1202. this.con1484.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1203. this.con1484.Location = new System.Drawing.Point(624, 403);
  1204. this.con1484.Margin = new System.Windows.Forms.Padding(0);
  1205. this.con1484.Name = "con1484";
  1206. this.myTableLayoutPanel1.SetRowSpan(this.con1484, 2);
  1207. this.con1484.Size = new System.Drawing.Size(52, 20);
  1208. this.con1484.TabIndex = 853;
  1209. //
  1210. // con1486
  1211. //
  1212. this.con1486.BackColor = System.Drawing.Color.Transparent;
  1213. this.myTableLayoutPanel1.SetColumnSpan(this.con1486, 4);
  1214. this.con1486.Dock = System.Windows.Forms.DockStyle.Fill;
  1215. this.con1486.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1216. this.con1486.Location = new System.Drawing.Point(572, 403);
  1217. this.con1486.Margin = new System.Windows.Forms.Padding(0);
  1218. this.con1486.Name = "con1486";
  1219. this.myTableLayoutPanel1.SetRowSpan(this.con1486, 2);
  1220. this.con1486.Size = new System.Drawing.Size(52, 20);
  1221. this.con1486.TabIndex = 847;
  1222. //
  1223. // con1580
  1224. //
  1225. this.con1580.BackColor = System.Drawing.Color.Transparent;
  1226. this.myTableLayoutPanel1.SetColumnSpan(this.con1580, 4);
  1227. this.con1580.Dock = System.Windows.Forms.DockStyle.Fill;
  1228. this.con1580.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1229. this.con1580.Location = new System.Drawing.Point(572, 443);
  1230. this.con1580.Margin = new System.Windows.Forms.Padding(0);
  1231. this.con1580.Name = "con1580";
  1232. this.myTableLayoutPanel1.SetRowSpan(this.con1580, 2);
  1233. this.con1580.Size = new System.Drawing.Size(52, 20);
  1234. this.con1580.TabIndex = 840;
  1235. //
  1236. // con1524
  1237. //
  1238. this.con1524.BackColor = System.Drawing.Color.Transparent;
  1239. this.myTableLayoutPanel1.SetColumnSpan(this.con1524, 3);
  1240. this.con1524.Dock = System.Windows.Forms.DockStyle.Fill;
  1241. this.con1524.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1242. this.con1524.Location = new System.Drawing.Point(325, 383);
  1243. this.con1524.Margin = new System.Windows.Forms.Padding(0);
  1244. this.con1524.Name = "con1524";
  1245. this.myTableLayoutPanel1.SetRowSpan(this.con1524, 2);
  1246. this.con1524.Size = new System.Drawing.Size(39, 20);
  1247. this.con1524.TabIndex = 834;
  1248. //
  1249. // con1527
  1250. //
  1251. this.con1527.BackColor = System.Drawing.Color.Transparent;
  1252. this.myTableLayoutPanel1.SetColumnSpan(this.con1527, 5);
  1253. this.con1527.Dock = System.Windows.Forms.DockStyle.Fill;
  1254. this.con1527.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1255. this.con1527.Location = new System.Drawing.Point(325, 403);
  1256. this.con1527.Margin = new System.Windows.Forms.Padding(0);
  1257. this.con1527.Name = "con1527";
  1258. this.myTableLayoutPanel1.SetRowSpan(this.con1527, 2);
  1259. this.con1527.Size = new System.Drawing.Size(65, 20);
  1260. this.con1527.TabIndex = 833;
  1261. //
  1262. // con1545
  1263. //
  1264. this.con1545.BackColor = System.Drawing.Color.Transparent;
  1265. this.myTableLayoutPanel1.SetColumnSpan(this.con1545, 3);
  1266. this.con1545.Dock = System.Windows.Forms.DockStyle.Fill;
  1267. this.con1545.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1268. this.con1545.Location = new System.Drawing.Point(169, 363);
  1269. this.con1545.Margin = new System.Windows.Forms.Padding(0);
  1270. this.con1545.Name = "con1545";
  1271. this.myTableLayoutPanel1.SetRowSpan(this.con1545, 2);
  1272. this.con1545.Size = new System.Drawing.Size(39, 20);
  1273. this.con1545.TabIndex = 829;
  1274. //
  1275. // con1540
  1276. //
  1277. this.con1540.BackColor = System.Drawing.Color.Transparent;
  1278. this.myTableLayoutPanel1.SetColumnSpan(this.con1540, 4);
  1279. this.con1540.Dock = System.Windows.Forms.DockStyle.Fill;
  1280. this.con1540.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1281. this.con1540.Location = new System.Drawing.Point(273, 403);
  1282. this.con1540.Margin = new System.Windows.Forms.Padding(0);
  1283. this.con1540.Name = "con1540";
  1284. this.myTableLayoutPanel1.SetRowSpan(this.con1540, 2);
  1285. this.con1540.Size = new System.Drawing.Size(52, 20);
  1286. this.con1540.TabIndex = 828;
  1287. //
  1288. // con1544
  1289. //
  1290. this.con1544.BackColor = System.Drawing.Color.Transparent;
  1291. this.myTableLayoutPanel1.SetColumnSpan(this.con1544, 4);
  1292. this.con1544.Dock = System.Windows.Forms.DockStyle.Fill;
  1293. this.con1544.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1294. this.con1544.Location = new System.Drawing.Point(208, 363);
  1295. this.con1544.Margin = new System.Windows.Forms.Padding(0);
  1296. this.con1544.Name = "con1544";
  1297. this.myTableLayoutPanel1.SetRowSpan(this.con1544, 2);
  1298. this.con1544.Size = new System.Drawing.Size(52, 20);
  1299. this.con1544.TabIndex = 827;
  1300. //
  1301. // tableCellLabel1
  1302. //
  1303. this.tableCellLabel1.BackColor = System.Drawing.Color.Transparent;
  1304. this.tableCellLabel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel1.BackgroundImage")));
  1305. this.tableCellLabel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1306. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel1, 30);
  1307. this.tableCellLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
  1308. this.tableCellLabel1.Location = new System.Drawing.Point(39, 128);
  1309. this.tableCellLabel1.Margin = new System.Windows.Forms.Padding(0);
  1310. this.tableCellLabel1.Name = "tableCellLabel1";
  1311. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel1, 2);
  1312. this.tableCellLabel1.Size = new System.Drawing.Size(390, 18);
  1313. this.tableCellLabel1.TabIndex = 791;
  1314. //
  1315. // tableCellLabel3
  1316. //
  1317. this.tableCellLabel3.BackColor = System.Drawing.Color.Transparent;
  1318. this.tableCellLabel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel3.BackgroundImage")));
  1319. this.tableCellLabel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1320. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel3, 16);
  1321. this.tableCellLabel3.Dock = System.Windows.Forms.DockStyle.Fill;
  1322. this.tableCellLabel3.Location = new System.Drawing.Point(637, 128);
  1323. this.tableCellLabel3.Margin = new System.Windows.Forms.Padding(0);
  1324. this.tableCellLabel3.Name = "tableCellLabel3";
  1325. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel3, 2);
  1326. this.tableCellLabel3.Size = new System.Drawing.Size(208, 18);
  1327. this.tableCellLabel3.TabIndex = 780;
  1328. //
  1329. // con1596
  1330. //
  1331. this.myTableLayoutPanel1.SetColumnSpan(this.con1596, 3);
  1332. this.con1596.Dock = System.Windows.Forms.DockStyle.Fill;
  1333. this.con1596.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1334. this.con1596.Location = new System.Drawing.Point(91, 503);
  1335. this.con1596.Margin = new System.Windows.Forms.Padding(0);
  1336. this.con1596.Name = "con1596";
  1337. this.myTableLayoutPanel1.SetRowSpan(this.con1596, 2);
  1338. this.con1596.Size = new System.Drawing.Size(39, 20);
  1339. this.con1596.TabIndex = 775;
  1340. //
  1341. // con1025
  1342. //
  1343. this.con1025.BackColor = System.Drawing.Color.Transparent;
  1344. this.myTableLayoutPanel1.SetColumnSpan(this.con1025, 3);
  1345. this.con1025.Dock = System.Windows.Forms.DockStyle.Fill;
  1346. this.con1025.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1347. this.con1025.Location = new System.Drawing.Point(741, 92);
  1348. this.con1025.Margin = new System.Windows.Forms.Padding(0);
  1349. this.con1025.Name = "con1025";
  1350. this.myTableLayoutPanel1.SetRowSpan(this.con1025, 2);
  1351. this.con1025.Size = new System.Drawing.Size(39, 18);
  1352. this.con1025.TabIndex = 768;
  1353. //
  1354. // con1023
  1355. //
  1356. this.con1023.BackColor = System.Drawing.Color.Transparent;
  1357. this.myTableLayoutPanel1.SetColumnSpan(this.con1023, 5);
  1358. this.con1023.Dock = System.Windows.Forms.DockStyle.Fill;
  1359. this.con1023.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1360. this.con1023.Location = new System.Drawing.Point(780, 92);
  1361. this.con1023.Margin = new System.Windows.Forms.Padding(0);
  1362. this.con1023.Name = "con1023";
  1363. this.myTableLayoutPanel1.SetRowSpan(this.con1023, 2);
  1364. this.con1023.Size = new System.Drawing.Size(65, 18);
  1365. this.con1023.TabIndex = 769;
  1366. //
  1367. // con1028
  1368. //
  1369. this.con1028.BackColor = System.Drawing.Color.Transparent;
  1370. this.myTableLayoutPanel1.SetColumnSpan(this.con1028, 5);
  1371. this.con1028.Dock = System.Windows.Forms.DockStyle.Fill;
  1372. this.con1028.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1373. this.con1028.Location = new System.Drawing.Point(676, 92);
  1374. this.con1028.Margin = new System.Windows.Forms.Padding(0);
  1375. this.con1028.Name = "con1028";
  1376. this.myTableLayoutPanel1.SetRowSpan(this.con1028, 2);
  1377. this.con1028.Size = new System.Drawing.Size(65, 18);
  1378. this.con1028.TabIndex = 770;
  1379. //
  1380. // con1018
  1381. //
  1382. this.con1018.BackColor = System.Drawing.Color.Transparent;
  1383. this.myTableLayoutPanel1.SetColumnSpan(this.con1018, 3);
  1384. this.con1018.Dock = System.Windows.Forms.DockStyle.Fill;
  1385. this.con1018.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1386. this.con1018.Location = new System.Drawing.Point(793, 54);
  1387. this.con1018.Margin = new System.Windows.Forms.Padding(0);
  1388. this.con1018.Name = "con1018";
  1389. this.myTableLayoutPanel1.SetRowSpan(this.con1018, 2);
  1390. this.con1018.Size = new System.Drawing.Size(39, 18);
  1391. this.con1018.TabIndex = 765;
  1392. //
  1393. // con1020
  1394. //
  1395. this.con1020.BackColor = System.Drawing.Color.Transparent;
  1396. this.myTableLayoutPanel1.SetColumnSpan(this.con1020, 3);
  1397. this.con1020.Dock = System.Windows.Forms.DockStyle.Fill;
  1398. this.con1020.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1399. this.con1020.Location = new System.Drawing.Point(793, 72);
  1400. this.con1020.Margin = new System.Windows.Forms.Padding(0);
  1401. this.con1020.Name = "con1020";
  1402. this.myTableLayoutPanel1.SetRowSpan(this.con1020, 2);
  1403. this.con1020.Size = new System.Drawing.Size(39, 20);
  1404. this.con1020.TabIndex = 766;
  1405. //
  1406. // con1030
  1407. //
  1408. this.con1030.BackColor = System.Drawing.Color.Transparent;
  1409. this.myTableLayoutPanel1.SetColumnSpan(this.con1030, 3);
  1410. this.con1030.Dock = System.Windows.Forms.DockStyle.Fill;
  1411. this.con1030.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1412. this.con1030.Location = new System.Drawing.Point(689, 110);
  1413. this.con1030.Margin = new System.Windows.Forms.Padding(0);
  1414. this.con1030.Name = "con1030";
  1415. this.myTableLayoutPanel1.SetRowSpan(this.con1030, 2);
  1416. this.con1030.Size = new System.Drawing.Size(39, 18);
  1417. this.con1030.TabIndex = 767;
  1418. //
  1419. // con1053
  1420. //
  1421. this.con1053.BackColor = System.Drawing.Color.Transparent;
  1422. this.myTableLayoutPanel1.SetColumnSpan(this.con1053, 3);
  1423. this.con1053.Dock = System.Windows.Forms.DockStyle.Fill;
  1424. this.con1053.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1425. this.con1053.Location = new System.Drawing.Point(325, 146);
  1426. this.con1053.Margin = new System.Windows.Forms.Padding(0);
  1427. this.con1053.Name = "con1053";
  1428. this.myTableLayoutPanel1.SetRowSpan(this.con1053, 2);
  1429. this.con1053.Size = new System.Drawing.Size(39, 18);
  1430. this.con1053.TabIndex = 764;
  1431. //
  1432. // con1477
  1433. //
  1434. this.con1477.BackColor = System.Drawing.Color.Transparent;
  1435. this.myTableLayoutPanel1.SetColumnSpan(this.con1477, 3);
  1436. this.con1477.Dock = System.Windows.Forms.DockStyle.Fill;
  1437. this.con1477.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1438. this.con1477.Location = new System.Drawing.Point(728, 383);
  1439. this.con1477.Margin = new System.Windows.Forms.Padding(0);
  1440. this.con1477.Name = "con1477";
  1441. this.myTableLayoutPanel1.SetRowSpan(this.con1477, 2);
  1442. this.con1477.Size = new System.Drawing.Size(39, 20);
  1443. this.con1477.TabIndex = 716;
  1444. //
  1445. // con1473
  1446. //
  1447. this.con1473.BackColor = System.Drawing.Color.Transparent;
  1448. this.myTableLayoutPanel1.SetColumnSpan(this.con1473, 3);
  1449. this.con1473.Dock = System.Windows.Forms.DockStyle.Fill;
  1450. this.con1473.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1451. this.con1473.Location = new System.Drawing.Point(780, 363);
  1452. this.con1473.Margin = new System.Windows.Forms.Padding(0);
  1453. this.con1473.Name = "con1473";
  1454. this.myTableLayoutPanel1.SetRowSpan(this.con1473, 2);
  1455. this.con1473.Size = new System.Drawing.Size(39, 20);
  1456. this.con1473.TabIndex = 715;
  1457. //
  1458. // con1474
  1459. //
  1460. this.con1474.BackColor = System.Drawing.Color.Transparent;
  1461. this.myTableLayoutPanel1.SetColumnSpan(this.con1474, 3);
  1462. this.con1474.Dock = System.Windows.Forms.DockStyle.Fill;
  1463. this.con1474.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1464. this.con1474.Location = new System.Drawing.Point(676, 363);
  1465. this.con1474.Margin = new System.Windows.Forms.Padding(0);
  1466. this.con1474.Name = "con1474";
  1467. this.myTableLayoutPanel1.SetRowSpan(this.con1474, 2);
  1468. this.con1474.Size = new System.Drawing.Size(39, 20);
  1469. this.con1474.TabIndex = 714;
  1470. //
  1471. // con1471
  1472. //
  1473. this.con1471.BackColor = System.Drawing.Color.Transparent;
  1474. this.myTableLayoutPanel1.SetColumnSpan(this.con1471, 5);
  1475. this.con1471.Dock = System.Windows.Forms.DockStyle.Fill;
  1476. this.con1471.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1477. this.con1471.Location = new System.Drawing.Point(715, 363);
  1478. this.con1471.Margin = new System.Windows.Forms.Padding(0);
  1479. this.con1471.Name = "con1471";
  1480. this.myTableLayoutPanel1.SetRowSpan(this.con1471, 2);
  1481. this.con1471.Size = new System.Drawing.Size(65, 20);
  1482. this.con1471.TabIndex = 712;
  1483. //
  1484. // con1556
  1485. //
  1486. this.con1556.BackColor = System.Drawing.Color.Transparent;
  1487. this.myTableLayoutPanel1.SetColumnSpan(this.con1556, 5);
  1488. this.con1556.Dock = System.Windows.Forms.DockStyle.Fill;
  1489. this.con1556.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1490. this.con1556.Location = new System.Drawing.Point(208, 443);
  1491. this.con1556.Margin = new System.Windows.Forms.Padding(0);
  1492. this.con1556.Name = "con1556";
  1493. this.myTableLayoutPanel1.SetRowSpan(this.con1556, 2);
  1494. this.con1556.Size = new System.Drawing.Size(65, 20);
  1495. this.con1556.TabIndex = 713;
  1496. //
  1497. // con1587
  1498. //
  1499. this.con1587.BackColor = System.Drawing.Color.Transparent;
  1500. this.myTableLayoutPanel1.SetColumnSpan(this.con1587, 5);
  1501. this.con1587.Dock = System.Windows.Forms.DockStyle.Fill;
  1502. this.con1587.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1503. this.con1587.Location = new System.Drawing.Point(728, 443);
  1504. this.con1587.Margin = new System.Windows.Forms.Padding(0);
  1505. this.con1587.Name = "con1587";
  1506. this.myTableLayoutPanel1.SetRowSpan(this.con1587, 2);
  1507. this.con1587.Size = new System.Drawing.Size(65, 20);
  1508. this.con1587.TabIndex = 710;
  1509. //
  1510. // con1589
  1511. //
  1512. this.con1589.BackColor = System.Drawing.Color.Transparent;
  1513. this.myTableLayoutPanel1.SetColumnSpan(this.con1589, 3);
  1514. this.con1589.Dock = System.Windows.Forms.DockStyle.Fill;
  1515. this.con1589.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1516. this.con1589.Location = new System.Drawing.Point(728, 423);
  1517. this.con1589.Margin = new System.Windows.Forms.Padding(0);
  1518. this.con1589.Name = "con1589";
  1519. this.myTableLayoutPanel1.SetRowSpan(this.con1589, 2);
  1520. this.con1589.Size = new System.Drawing.Size(39, 20);
  1521. this.con1589.TabIndex = 711;
  1522. //
  1523. // con1480
  1524. //
  1525. this.con1480.BackColor = System.Drawing.Color.Transparent;
  1526. this.myTableLayoutPanel1.SetColumnSpan(this.con1480, 5);
  1527. this.con1480.Dock = System.Windows.Forms.DockStyle.Fill;
  1528. this.con1480.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1529. this.con1480.Location = new System.Drawing.Point(728, 403);
  1530. this.con1480.Margin = new System.Windows.Forms.Padding(0);
  1531. this.con1480.Name = "con1480";
  1532. this.myTableLayoutPanel1.SetRowSpan(this.con1480, 2);
  1533. this.con1480.Size = new System.Drawing.Size(65, 20);
  1534. this.con1480.TabIndex = 709;
  1535. //
  1536. // con1505
  1537. //
  1538. this.con1505.BackColor = System.Drawing.Color.Transparent;
  1539. this.myTableLayoutPanel1.SetColumnSpan(this.con1505, 3);
  1540. this.con1505.Dock = System.Windows.Forms.DockStyle.Fill;
  1541. this.con1505.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1542. this.con1505.Location = new System.Drawing.Point(520, 463);
  1543. this.con1505.Margin = new System.Windows.Forms.Padding(0);
  1544. this.con1505.Name = "con1505";
  1545. this.myTableLayoutPanel1.SetRowSpan(this.con1505, 2);
  1546. this.con1505.Size = new System.Drawing.Size(39, 20);
  1547. this.con1505.TabIndex = 708;
  1548. //
  1549. // con1568
  1550. //
  1551. this.con1568.BackColor = System.Drawing.Color.Transparent;
  1552. this.myTableLayoutPanel1.SetColumnSpan(this.con1568, 4);
  1553. this.con1568.Dock = System.Windows.Forms.DockStyle.Fill;
  1554. this.con1568.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1555. this.con1568.Location = new System.Drawing.Point(403, 443);
  1556. this.con1568.Margin = new System.Windows.Forms.Padding(0);
  1557. this.con1568.Name = "con1568";
  1558. this.myTableLayoutPanel1.SetRowSpan(this.con1568, 2);
  1559. this.con1568.Size = new System.Drawing.Size(52, 20);
  1560. this.con1568.TabIndex = 705;
  1561. //
  1562. // con1534
  1563. //
  1564. this.con1534.BackColor = System.Drawing.Color.Transparent;
  1565. this.myTableLayoutPanel1.SetColumnSpan(this.con1534, 3);
  1566. this.con1534.Dock = System.Windows.Forms.DockStyle.Fill;
  1567. this.con1534.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1568. this.con1534.Location = new System.Drawing.Point(325, 463);
  1569. this.con1534.Margin = new System.Windows.Forms.Padding(0);
  1570. this.con1534.Name = "con1534";
  1571. this.myTableLayoutPanel1.SetRowSpan(this.con1534, 2);
  1572. this.con1534.Size = new System.Drawing.Size(39, 20);
  1573. this.con1534.TabIndex = 706;
  1574. //
  1575. // con1573
  1576. //
  1577. this.con1573.BackColor = System.Drawing.Color.Transparent;
  1578. this.myTableLayoutPanel1.SetColumnSpan(this.con1573, 3);
  1579. this.con1573.Dock = System.Windows.Forms.DockStyle.Fill;
  1580. this.con1573.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1581. this.con1573.Location = new System.Drawing.Point(416, 483);
  1582. this.con1573.Margin = new System.Windows.Forms.Padding(0);
  1583. this.con1573.Name = "con1573";
  1584. this.myTableLayoutPanel1.SetRowSpan(this.con1573, 2);
  1585. this.con1573.Size = new System.Drawing.Size(39, 20);
  1586. this.con1573.TabIndex = 707;
  1587. //
  1588. // con1529
  1589. //
  1590. this.con1529.BackColor = System.Drawing.Color.Transparent;
  1591. this.myTableLayoutPanel1.SetColumnSpan(this.con1529, 3);
  1592. this.con1529.Dock = System.Windows.Forms.DockStyle.Fill;
  1593. this.con1529.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1594. this.con1529.Location = new System.Drawing.Point(325, 423);
  1595. this.con1529.Margin = new System.Windows.Forms.Padding(0);
  1596. this.con1529.Name = "con1529";
  1597. this.myTableLayoutPanel1.SetRowSpan(this.con1529, 2);
  1598. this.con1529.Size = new System.Drawing.Size(39, 20);
  1599. this.con1529.TabIndex = 702;
  1600. //
  1601. // con1538
  1602. //
  1603. this.con1538.BackColor = System.Drawing.Color.Transparent;
  1604. this.myTableLayoutPanel1.SetColumnSpan(this.con1538, 3);
  1605. this.con1538.Dock = System.Windows.Forms.DockStyle.Fill;
  1606. this.con1538.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1607. this.con1538.Location = new System.Drawing.Point(325, 503);
  1608. this.con1538.Margin = new System.Windows.Forms.Padding(0);
  1609. this.con1538.Name = "con1538";
  1610. this.myTableLayoutPanel1.SetRowSpan(this.con1538, 2);
  1611. this.con1538.Size = new System.Drawing.Size(39, 20);
  1612. this.con1538.TabIndex = 703;
  1613. //
  1614. // con1537
  1615. //
  1616. this.con1537.BackColor = System.Drawing.Color.Transparent;
  1617. this.myTableLayoutPanel1.SetColumnSpan(this.con1537, 3);
  1618. this.con1537.Dock = System.Windows.Forms.DockStyle.Fill;
  1619. this.con1537.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1620. this.con1537.Location = new System.Drawing.Point(325, 483);
  1621. this.con1537.Margin = new System.Windows.Forms.Padding(0);
  1622. this.con1537.Name = "con1537";
  1623. this.myTableLayoutPanel1.SetRowSpan(this.con1537, 2);
  1624. this.con1537.Size = new System.Drawing.Size(39, 20);
  1625. this.con1537.TabIndex = 704;
  1626. //
  1627. // con1574
  1628. //
  1629. this.con1574.BackColor = System.Drawing.Color.Transparent;
  1630. this.myTableLayoutPanel1.SetColumnSpan(this.con1574, 3);
  1631. this.con1574.Dock = System.Windows.Forms.DockStyle.Fill;
  1632. this.con1574.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1633. this.con1574.Location = new System.Drawing.Point(416, 503);
  1634. this.con1574.Margin = new System.Windows.Forms.Padding(0);
  1635. this.con1574.Name = "con1574";
  1636. this.myTableLayoutPanel1.SetRowSpan(this.con1574, 2);
  1637. this.con1574.Size = new System.Drawing.Size(39, 20);
  1638. this.con1574.TabIndex = 699;
  1639. //
  1640. // con1508
  1641. //
  1642. this.con1508.BackColor = System.Drawing.Color.Transparent;
  1643. this.myTableLayoutPanel1.SetColumnSpan(this.con1508, 3);
  1644. this.con1508.Dock = System.Windows.Forms.DockStyle.Fill;
  1645. this.con1508.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1646. this.con1508.Location = new System.Drawing.Point(520, 483);
  1647. this.con1508.Margin = new System.Windows.Forms.Padding(0);
  1648. this.con1508.Name = "con1508";
  1649. this.myTableLayoutPanel1.SetRowSpan(this.con1508, 2);
  1650. this.con1508.Size = new System.Drawing.Size(39, 20);
  1651. this.con1508.TabIndex = 700;
  1652. //
  1653. // con1553
  1654. //
  1655. this.con1553.BackColor = System.Drawing.Color.Transparent;
  1656. this.myTableLayoutPanel1.SetColumnSpan(this.con1553, 3);
  1657. this.con1553.Dock = System.Windows.Forms.DockStyle.Fill;
  1658. this.con1553.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1659. this.con1553.Location = new System.Drawing.Point(221, 423);
  1660. this.con1553.Margin = new System.Windows.Forms.Padding(0);
  1661. this.con1553.Name = "con1553";
  1662. this.myTableLayoutPanel1.SetRowSpan(this.con1553, 2);
  1663. this.con1553.Size = new System.Drawing.Size(39, 20);
  1664. this.con1553.TabIndex = 701;
  1665. //
  1666. // con1509
  1667. //
  1668. this.con1509.BackColor = System.Drawing.Color.Transparent;
  1669. this.myTableLayoutPanel1.SetColumnSpan(this.con1509, 3);
  1670. this.con1509.Dock = System.Windows.Forms.DockStyle.Fill;
  1671. this.con1509.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1672. this.con1509.Location = new System.Drawing.Point(520, 503);
  1673. this.con1509.Margin = new System.Windows.Forms.Padding(0);
  1674. this.con1509.Name = "con1509";
  1675. this.myTableLayoutPanel1.SetRowSpan(this.con1509, 2);
  1676. this.con1509.Size = new System.Drawing.Size(39, 20);
  1677. this.con1509.TabIndex = 696;
  1678. //
  1679. // con1532
  1680. //
  1681. this.con1532.BackColor = System.Drawing.Color.Transparent;
  1682. this.myTableLayoutPanel1.SetColumnSpan(this.con1532, 5);
  1683. this.con1532.Dock = System.Windows.Forms.DockStyle.Fill;
  1684. this.con1532.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1685. this.con1532.Location = new System.Drawing.Point(312, 443);
  1686. this.con1532.Margin = new System.Windows.Forms.Padding(0);
  1687. this.con1532.Name = "con1532";
  1688. this.myTableLayoutPanel1.SetRowSpan(this.con1532, 2);
  1689. this.con1532.Size = new System.Drawing.Size(65, 20);
  1690. this.con1532.TabIndex = 697;
  1691. //
  1692. // con1579
  1693. //
  1694. this.con1579.BackColor = System.Drawing.Color.Transparent;
  1695. this.myTableLayoutPanel1.SetColumnSpan(this.con1579, 2);
  1696. this.con1579.Dock = System.Windows.Forms.DockStyle.Fill;
  1697. this.con1579.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1698. this.con1579.Location = new System.Drawing.Point(481, 443);
  1699. this.con1579.Margin = new System.Windows.Forms.Padding(0);
  1700. this.con1579.Name = "con1579";
  1701. this.myTableLayoutPanel1.SetRowSpan(this.con1579, 2);
  1702. this.con1579.Size = new System.Drawing.Size(26, 20);
  1703. this.con1579.TabIndex = 698;
  1704. //
  1705. // con1500
  1706. //
  1707. this.con1500.BackColor = System.Drawing.Color.Transparent;
  1708. this.myTableLayoutPanel1.SetColumnSpan(this.con1500, 3);
  1709. this.con1500.Dock = System.Windows.Forms.DockStyle.Fill;
  1710. this.con1500.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1711. this.con1500.Location = new System.Drawing.Point(520, 423);
  1712. this.con1500.Margin = new System.Windows.Forms.Padding(0);
  1713. this.con1500.Name = "con1500";
  1714. this.myTableLayoutPanel1.SetRowSpan(this.con1500, 2);
  1715. this.con1500.Size = new System.Drawing.Size(39, 20);
  1716. this.con1500.TabIndex = 693;
  1717. //
  1718. // con1582
  1719. //
  1720. this.con1582.BackColor = System.Drawing.Color.Transparent;
  1721. this.myTableLayoutPanel1.SetColumnSpan(this.con1582, 4);
  1722. this.con1582.Dock = System.Windows.Forms.DockStyle.Fill;
  1723. this.con1582.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1724. this.con1582.Location = new System.Drawing.Point(624, 443);
  1725. this.con1582.Margin = new System.Windows.Forms.Padding(0);
  1726. this.con1582.Name = "con1582";
  1727. this.myTableLayoutPanel1.SetRowSpan(this.con1582, 2);
  1728. this.con1582.Size = new System.Drawing.Size(52, 20);
  1729. this.con1582.TabIndex = 694;
  1730. //
  1731. // con1584
  1732. //
  1733. this.con1584.BackColor = System.Drawing.Color.Transparent;
  1734. this.myTableLayoutPanel1.SetColumnSpan(this.con1584, 4);
  1735. this.con1584.Dock = System.Windows.Forms.DockStyle.Fill;
  1736. this.con1584.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1737. this.con1584.Location = new System.Drawing.Point(676, 443);
  1738. this.con1584.Margin = new System.Windows.Forms.Padding(0);
  1739. this.con1584.Name = "con1584";
  1740. this.myTableLayoutPanel1.SetRowSpan(this.con1584, 2);
  1741. this.con1584.Size = new System.Drawing.Size(52, 20);
  1742. this.con1584.TabIndex = 695;
  1743. //
  1744. // con1511
  1745. //
  1746. this.con1511.BackColor = System.Drawing.Color.Transparent;
  1747. this.myTableLayoutPanel1.SetColumnSpan(this.con1511, 3);
  1748. this.con1511.Dock = System.Windows.Forms.DockStyle.Fill;
  1749. this.con1511.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1750. this.con1511.Location = new System.Drawing.Point(468, 403);
  1751. this.con1511.Margin = new System.Windows.Forms.Padding(0);
  1752. this.con1511.Name = "con1511";
  1753. this.myTableLayoutPanel1.SetRowSpan(this.con1511, 2);
  1754. this.con1511.Size = new System.Drawing.Size(39, 20);
  1755. this.con1511.TabIndex = 690;
  1756. //
  1757. // con1513
  1758. //
  1759. this.con1513.BackColor = System.Drawing.Color.Transparent;
  1760. this.myTableLayoutPanel1.SetColumnSpan(this.con1513, 3);
  1761. this.con1513.Dock = System.Windows.Forms.DockStyle.Fill;
  1762. this.con1513.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1763. this.con1513.Location = new System.Drawing.Point(429, 403);
  1764. this.con1513.Margin = new System.Windows.Forms.Padding(0);
  1765. this.con1513.Name = "con1513";
  1766. this.myTableLayoutPanel1.SetRowSpan(this.con1513, 2);
  1767. this.con1513.Size = new System.Drawing.Size(39, 20);
  1768. this.con1513.TabIndex = 691;
  1769. //
  1770. // con1503
  1771. //
  1772. this.con1503.BackColor = System.Drawing.Color.Transparent;
  1773. this.myTableLayoutPanel1.SetColumnSpan(this.con1503, 5);
  1774. this.con1503.Dock = System.Windows.Forms.DockStyle.Fill;
  1775. this.con1503.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1776. this.con1503.Location = new System.Drawing.Point(507, 443);
  1777. this.con1503.Margin = new System.Windows.Forms.Padding(0);
  1778. this.con1503.Name = "con1503";
  1779. this.myTableLayoutPanel1.SetRowSpan(this.con1503, 2);
  1780. this.con1503.Size = new System.Drawing.Size(65, 20);
  1781. this.con1503.TabIndex = 692;
  1782. //
  1783. // con1551
  1784. //
  1785. this.con1551.BackColor = System.Drawing.Color.Transparent;
  1786. this.myTableLayoutPanel1.SetColumnSpan(this.con1551, 5);
  1787. this.con1551.Dock = System.Windows.Forms.DockStyle.Fill;
  1788. this.con1551.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1789. this.con1551.Location = new System.Drawing.Point(208, 403);
  1790. this.con1551.Margin = new System.Windows.Forms.Padding(0);
  1791. this.con1551.Name = "con1551";
  1792. this.myTableLayoutPanel1.SetRowSpan(this.con1551, 2);
  1793. this.con1551.Size = new System.Drawing.Size(65, 20);
  1794. this.con1551.TabIndex = 687;
  1795. //
  1796. // con1548
  1797. //
  1798. this.con1548.BackColor = System.Drawing.Color.Transparent;
  1799. this.myTableLayoutPanel1.SetColumnSpan(this.con1548, 3);
  1800. this.con1548.Dock = System.Windows.Forms.DockStyle.Fill;
  1801. this.con1548.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1802. this.con1548.Location = new System.Drawing.Point(221, 383);
  1803. this.con1548.Margin = new System.Windows.Forms.Padding(0);
  1804. this.con1548.Name = "con1548";
  1805. this.myTableLayoutPanel1.SetRowSpan(this.con1548, 2);
  1806. this.con1548.Size = new System.Drawing.Size(39, 20);
  1807. this.con1548.TabIndex = 688;
  1808. //
  1809. // con1515
  1810. //
  1811. this.con1515.BackColor = System.Drawing.Color.Transparent;
  1812. this.myTableLayoutPanel1.SetColumnSpan(this.con1515, 3);
  1813. this.con1515.Dock = System.Windows.Forms.DockStyle.Fill;
  1814. this.con1515.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1815. this.con1515.Location = new System.Drawing.Point(390, 403);
  1816. this.con1515.Margin = new System.Windows.Forms.Padding(0);
  1817. this.con1515.Name = "con1515";
  1818. this.myTableLayoutPanel1.SetRowSpan(this.con1515, 2);
  1819. this.con1515.Size = new System.Drawing.Size(39, 20);
  1820. this.con1515.TabIndex = 689;
  1821. //
  1822. // con1570
  1823. //
  1824. this.con1570.BackColor = System.Drawing.Color.Transparent;
  1825. this.myTableLayoutPanel1.SetColumnSpan(this.con1570, 3);
  1826. this.con1570.Dock = System.Windows.Forms.DockStyle.Fill;
  1827. this.con1570.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1828. this.con1570.Location = new System.Drawing.Point(416, 463);
  1829. this.con1570.Margin = new System.Windows.Forms.Padding(0);
  1830. this.con1570.Name = "con1570";
  1831. this.myTableLayoutPanel1.SetRowSpan(this.con1570, 2);
  1832. this.con1570.Size = new System.Drawing.Size(39, 20);
  1833. this.con1570.TabIndex = 684;
  1834. //
  1835. // con1565
  1836. //
  1837. this.con1565.BackColor = System.Drawing.Color.Transparent;
  1838. this.myTableLayoutPanel1.SetColumnSpan(this.con1565, 2);
  1839. this.con1565.Dock = System.Windows.Forms.DockStyle.Fill;
  1840. this.con1565.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1841. this.con1565.Location = new System.Drawing.Point(377, 443);
  1842. this.con1565.Margin = new System.Windows.Forms.Padding(0);
  1843. this.con1565.Name = "con1565";
  1844. this.myTableLayoutPanel1.SetRowSpan(this.con1565, 2);
  1845. this.con1565.Size = new System.Drawing.Size(26, 20);
  1846. this.con1565.TabIndex = 685;
  1847. //
  1848. // con1576
  1849. //
  1850. this.con1576.BackColor = System.Drawing.Color.Transparent;
  1851. this.myTableLayoutPanel1.SetColumnSpan(this.con1576, 2);
  1852. this.con1576.Dock = System.Windows.Forms.DockStyle.Fill;
  1853. this.con1576.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1854. this.con1576.Location = new System.Drawing.Point(455, 443);
  1855. this.con1576.Margin = new System.Windows.Forms.Padding(0);
  1856. this.con1576.Name = "con1576";
  1857. this.myTableLayoutPanel1.SetRowSpan(this.con1576, 2);
  1858. this.con1576.Size = new System.Drawing.Size(26, 20);
  1859. this.con1576.TabIndex = 686;
  1860. //
  1861. // locationPos37
  1862. //
  1863. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos37, 3);
  1864. this.locationPos37.Dock = System.Windows.Forms.DockStyle.Fill;
  1865. this.locationPos37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1866. this.locationPos37.Location = new System.Drawing.Point(195, 182);
  1867. this.locationPos37.Margin = new System.Windows.Forms.Padding(0);
  1868. this.locationPos37.Name = "locationPos37";
  1869. this.myTableLayoutPanel1.SetRowSpan(this.locationPos37, 20);
  1870. this.locationPos37.Size = new System.Drawing.Size(39, 181);
  1871. this.locationPos37.TabIndex = 678;
  1872. //
  1873. // con1065
  1874. //
  1875. this.con1065.BackColor = System.Drawing.Color.Transparent;
  1876. this.myTableLayoutPanel1.SetColumnSpan(this.con1065, 5);
  1877. this.con1065.Dock = System.Windows.Forms.DockStyle.Fill;
  1878. this.con1065.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1879. this.con1065.Location = new System.Drawing.Point(195, 164);
  1880. this.con1065.Margin = new System.Windows.Forms.Padding(0);
  1881. this.con1065.Name = "con1065";
  1882. this.myTableLayoutPanel1.SetRowSpan(this.con1065, 2);
  1883. this.con1065.Size = new System.Drawing.Size(65, 18);
  1884. this.con1065.TabIndex = 652;
  1885. //
  1886. // con1010
  1887. //
  1888. this.con1010.BackColor = System.Drawing.Color.Transparent;
  1889. this.myTableLayoutPanel1.SetColumnSpan(this.con1010, 3);
  1890. this.con1010.Dock = System.Windows.Forms.DockStyle.Fill;
  1891. this.con1010.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1892. this.con1010.Location = new System.Drawing.Point(585, 72);
  1893. this.con1010.Margin = new System.Windows.Forms.Padding(0);
  1894. this.con1010.Name = "con1010";
  1895. this.myTableLayoutPanel1.SetRowSpan(this.con1010, 2);
  1896. this.con1010.Size = new System.Drawing.Size(39, 20);
  1897. this.con1010.TabIndex = 634;
  1898. //
  1899. // con1013
  1900. //
  1901. this.con1013.BackColor = System.Drawing.Color.Transparent;
  1902. this.myTableLayoutPanel1.SetColumnSpan(this.con1013, 5);
  1903. this.con1013.Dock = System.Windows.Forms.DockStyle.Fill;
  1904. this.con1013.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1905. this.con1013.Location = new System.Drawing.Point(572, 92);
  1906. this.con1013.Margin = new System.Windows.Forms.Padding(0);
  1907. this.con1013.Name = "con1013";
  1908. this.myTableLayoutPanel1.SetRowSpan(this.con1013, 2);
  1909. this.con1013.Size = new System.Drawing.Size(65, 18);
  1910. this.con1013.TabIndex = 635;
  1911. //
  1912. // con1008
  1913. //
  1914. this.con1008.BackColor = System.Drawing.Color.Transparent;
  1915. this.myTableLayoutPanel1.SetColumnSpan(this.con1008, 3);
  1916. this.con1008.Dock = System.Windows.Forms.DockStyle.Fill;
  1917. this.con1008.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1918. this.con1008.Location = new System.Drawing.Point(585, 54);
  1919. this.con1008.Margin = new System.Windows.Forms.Padding(0);
  1920. this.con1008.Name = "con1008";
  1921. this.myTableLayoutPanel1.SetRowSpan(this.con1008, 2);
  1922. this.con1008.Size = new System.Drawing.Size(39, 18);
  1923. this.con1008.TabIndex = 636;
  1924. //
  1925. // label33
  1926. //
  1927. this.label33.AutoSize = true;
  1928. this.label33.BackColor = System.Drawing.Color.Lime;
  1929. this.myTableLayoutPanel1.SetColumnSpan(this.label33, 3);
  1930. this.label33.Dock = System.Windows.Forms.DockStyle.Fill;
  1931. this.label33.Location = new System.Drawing.Point(1304, 263);
  1932. this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  1933. this.label33.Name = "label33";
  1934. this.myTableLayoutPanel1.SetRowSpan(this.label33, 2);
  1935. this.label33.Size = new System.Drawing.Size(31, 18);
  1936. this.label33.TabIndex = 633;
  1937. this.label33.Text = "入";
  1938. this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1939. //
  1940. // tableCellLabel31
  1941. //
  1942. this.tableCellLabel31.BackColor = System.Drawing.Color.Transparent;
  1943. this.tableCellLabel31.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel31.BackgroundImage")));
  1944. this.tableCellLabel31.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1945. this.tableCellLabel31.Dock = System.Windows.Forms.DockStyle.Fill;
  1946. this.tableCellLabel31.Location = new System.Drawing.Point(182, 182);
  1947. this.tableCellLabel31.Margin = new System.Windows.Forms.Padding(0);
  1948. this.tableCellLabel31.Name = "tableCellLabel31";
  1949. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel31, 20);
  1950. this.tableCellLabel31.Size = new System.Drawing.Size(13, 181);
  1951. this.tableCellLabel31.TabIndex = 436;
  1952. //
  1953. // locationPos38
  1954. //
  1955. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos38, 3);
  1956. this.locationPos38.Dock = System.Windows.Forms.DockStyle.Fill;
  1957. this.locationPos38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1958. this.locationPos38.Location = new System.Drawing.Point(247, 182);
  1959. this.locationPos38.Margin = new System.Windows.Forms.Padding(0);
  1960. this.locationPos38.Name = "locationPos38";
  1961. this.myTableLayoutPanel1.SetRowSpan(this.locationPos38, 20);
  1962. this.locationPos38.Size = new System.Drawing.Size(39, 181);
  1963. this.locationPos38.TabIndex = 18;
  1964. //
  1965. // locationPos49
  1966. //
  1967. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos49, 3);
  1968. this.locationPos49.Dock = System.Windows.Forms.DockStyle.Fill;
  1969. this.locationPos49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1970. this.locationPos49.Location = new System.Drawing.Point(143, 182);
  1971. this.locationPos49.Margin = new System.Windows.Forms.Padding(0);
  1972. this.locationPos49.Name = "locationPos49";
  1973. this.myTableLayoutPanel1.SetRowSpan(this.locationPos49, 20);
  1974. this.locationPos49.Size = new System.Drawing.Size(39, 181);
  1975. this.locationPos49.TabIndex = 474;
  1976. //
  1977. // locationPos53
  1978. //
  1979. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos53, 3);
  1980. this.locationPos53.Dock = System.Windows.Forms.DockStyle.Fill;
  1981. this.locationPos53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1982. this.locationPos53.Location = new System.Drawing.Point(91, 182);
  1983. this.locationPos53.Margin = new System.Windows.Forms.Padding(0);
  1984. this.locationPos53.Name = "locationPos53";
  1985. this.myTableLayoutPanel1.SetRowSpan(this.locationPos53, 20);
  1986. this.locationPos53.Size = new System.Drawing.Size(39, 181);
  1987. this.locationPos53.TabIndex = 476;
  1988. //
  1989. // srm15
  1990. //
  1991. this.srm15.BackColor = System.Drawing.Color.Transparent;
  1992. this.srm15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm15.BackgroundImage")));
  1993. this.srm15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  1994. this.srm15.Dock = System.Windows.Forms.DockStyle.Fill;
  1995. this.srm15.Location = new System.Drawing.Point(78, 182);
  1996. this.srm15.Margin = new System.Windows.Forms.Padding(0);
  1997. this.srm15.Name = "srm15";
  1998. this.myTableLayoutPanel1.SetRowSpan(this.srm15, 20);
  1999. this.srm15.Size = new System.Drawing.Size(13, 181);
  2000. this.srm15.TabIndex = 478;
  2001. //
  2002. // locationPos55
  2003. //
  2004. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos55, 3);
  2005. this.locationPos55.Dock = System.Windows.Forms.DockStyle.Fill;
  2006. this.locationPos55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2007. this.locationPos55.Location = new System.Drawing.Point(39, 182);
  2008. this.locationPos55.Margin = new System.Windows.Forms.Padding(0);
  2009. this.locationPos55.Name = "locationPos55";
  2010. this.myTableLayoutPanel1.SetRowSpan(this.locationPos55, 20);
  2011. this.locationPos55.Size = new System.Drawing.Size(39, 181);
  2012. this.locationPos55.TabIndex = 479;
  2013. //
  2014. // con1062
  2015. //
  2016. this.con1062.BackColor = System.Drawing.Color.Transparent;
  2017. this.myTableLayoutPanel1.SetColumnSpan(this.con1062, 5);
  2018. this.con1062.Dock = System.Windows.Forms.DockStyle.Fill;
  2019. this.con1062.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2020. this.con1062.Location = new System.Drawing.Point(195, 146);
  2021. this.con1062.Margin = new System.Windows.Forms.Padding(0);
  2022. this.con1062.Name = "con1062";
  2023. this.myTableLayoutPanel1.SetRowSpan(this.con1062, 2);
  2024. this.con1062.Size = new System.Drawing.Size(65, 18);
  2025. this.con1062.TabIndex = 630;
  2026. //
  2027. // con1563
  2028. //
  2029. this.con1563.BackColor = System.Drawing.Color.Transparent;
  2030. this.myTableLayoutPanel1.SetColumnSpan(this.con1563, 3);
  2031. this.con1563.Dock = System.Windows.Forms.DockStyle.Fill;
  2032. this.con1563.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2033. this.con1563.Location = new System.Drawing.Point(273, 443);
  2034. this.con1563.Margin = new System.Windows.Forms.Padding(0);
  2035. this.con1563.Name = "con1563";
  2036. this.myTableLayoutPanel1.SetRowSpan(this.con1563, 2);
  2037. this.con1563.Size = new System.Drawing.Size(39, 20);
  2038. this.con1563.TabIndex = 857;
  2039. //
  2040. // con1520
  2041. //
  2042. this.con1520.BackColor = System.Drawing.Color.Transparent;
  2043. this.myTableLayoutPanel1.SetColumnSpan(this.con1520, 3);
  2044. this.con1520.Dock = System.Windows.Forms.DockStyle.Fill;
  2045. this.con1520.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2046. this.con1520.Location = new System.Drawing.Point(273, 363);
  2047. this.con1520.Margin = new System.Windows.Forms.Padding(0);
  2048. this.con1520.Name = "con1520";
  2049. this.myTableLayoutPanel1.SetRowSpan(this.con1520, 2);
  2050. this.con1520.Size = new System.Drawing.Size(39, 20);
  2051. this.con1520.TabIndex = 838;
  2052. this.con1520.Load += new System.EventHandler(this.con2035_Load);
  2053. //
  2054. // srm14
  2055. //
  2056. this.srm14.BackColor = System.Drawing.Color.Transparent;
  2057. this.srm14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm14.BackgroundImage")));
  2058. this.srm14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2059. this.srm14.Dock = System.Windows.Forms.DockStyle.Fill;
  2060. this.srm14.Location = new System.Drawing.Point(286, 182);
  2061. this.srm14.Margin = new System.Windows.Forms.Padding(0);
  2062. this.srm14.Name = "srm14";
  2063. this.myTableLayoutPanel1.SetRowSpan(this.srm14, 20);
  2064. this.srm14.Size = new System.Drawing.Size(13, 181);
  2065. this.srm14.TabIndex = 475;
  2066. //
  2067. // locationPos48
  2068. //
  2069. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos48, 3);
  2070. this.locationPos48.Dock = System.Windows.Forms.DockStyle.Fill;
  2071. this.locationPos48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2072. this.locationPos48.Location = new System.Drawing.Point(299, 182);
  2073. this.locationPos48.Margin = new System.Windows.Forms.Padding(0);
  2074. this.locationPos48.Name = "locationPos48";
  2075. this.myTableLayoutPanel1.SetRowSpan(this.locationPos48, 20);
  2076. this.locationPos48.Size = new System.Drawing.Size(39, 181);
  2077. this.locationPos48.TabIndex = 473;
  2078. //
  2079. // locationPos36
  2080. //
  2081. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos36, 3);
  2082. this.locationPos36.Dock = System.Windows.Forms.DockStyle.Fill;
  2083. this.locationPos36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2084. this.locationPos36.Location = new System.Drawing.Point(351, 182);
  2085. this.locationPos36.Margin = new System.Windows.Forms.Padding(0);
  2086. this.locationPos36.Name = "locationPos36";
  2087. this.myTableLayoutPanel1.SetRowSpan(this.locationPos36, 20);
  2088. this.locationPos36.Size = new System.Drawing.Size(39, 181);
  2089. this.locationPos36.TabIndex = 679;
  2090. //
  2091. // con1522
  2092. //
  2093. this.con1522.BackColor = System.Drawing.Color.Transparent;
  2094. this.myTableLayoutPanel1.SetColumnSpan(this.con1522, 3);
  2095. this.con1522.Dock = System.Windows.Forms.DockStyle.Fill;
  2096. this.con1522.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2097. this.con1522.Location = new System.Drawing.Point(377, 363);
  2098. this.con1522.Margin = new System.Windows.Forms.Padding(0);
  2099. this.con1522.Name = "con1522";
  2100. this.myTableLayoutPanel1.SetRowSpan(this.con1522, 2);
  2101. this.con1522.Size = new System.Drawing.Size(39, 20);
  2102. this.con1522.TabIndex = 839;
  2103. //
  2104. // con1518
  2105. //
  2106. this.con1518.BackColor = System.Drawing.Color.Transparent;
  2107. this.myTableLayoutPanel1.SetColumnSpan(this.con1518, 5);
  2108. this.con1518.Dock = System.Windows.Forms.DockStyle.Fill;
  2109. this.con1518.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2110. this.con1518.Location = new System.Drawing.Point(312, 363);
  2111. this.con1518.Margin = new System.Windows.Forms.Padding(0);
  2112. this.con1518.Name = "con1518";
  2113. this.myTableLayoutPanel1.SetRowSpan(this.con1518, 2);
  2114. this.con1518.Size = new System.Drawing.Size(65, 20);
  2115. this.con1518.TabIndex = 841;
  2116. //
  2117. // tableCellLabel30
  2118. //
  2119. this.tableCellLabel30.BackColor = System.Drawing.Color.Transparent;
  2120. this.tableCellLabel30.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel30.BackgroundImage")));
  2121. this.tableCellLabel30.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2122. this.tableCellLabel30.Dock = System.Windows.Forms.DockStyle.Fill;
  2123. this.tableCellLabel30.Location = new System.Drawing.Point(390, 182);
  2124. this.tableCellLabel30.Margin = new System.Windows.Forms.Padding(0);
  2125. this.tableCellLabel30.Name = "tableCellLabel30";
  2126. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel30, 20);
  2127. this.tableCellLabel30.Size = new System.Drawing.Size(13, 181);
  2128. this.tableCellLabel30.TabIndex = 680;
  2129. //
  2130. // locationPos47
  2131. //
  2132. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos47, 3);
  2133. this.locationPos47.Dock = System.Windows.Forms.DockStyle.Fill;
  2134. this.locationPos47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2135. this.locationPos47.Location = new System.Drawing.Point(403, 182);
  2136. this.locationPos47.Margin = new System.Windows.Forms.Padding(0);
  2137. this.locationPos47.Name = "locationPos47";
  2138. this.myTableLayoutPanel1.SetRowSpan(this.locationPos47, 20);
  2139. this.locationPos47.Size = new System.Drawing.Size(39, 181);
  2140. this.locationPos47.TabIndex = 471;
  2141. //
  2142. // con1558
  2143. //
  2144. this.con1558.BackColor = System.Drawing.Color.Transparent;
  2145. this.myTableLayoutPanel1.SetColumnSpan(this.con1558, 3);
  2146. this.con1558.Dock = System.Windows.Forms.DockStyle.Fill;
  2147. this.con1558.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2148. this.con1558.Location = new System.Drawing.Point(221, 463);
  2149. this.con1558.Margin = new System.Windows.Forms.Padding(0);
  2150. this.con1558.Name = "con1558";
  2151. this.myTableLayoutPanel1.SetRowSpan(this.con1558, 2);
  2152. this.con1558.Size = new System.Drawing.Size(39, 20);
  2153. this.con1558.TabIndex = 860;
  2154. //
  2155. // con1498
  2156. //
  2157. this.con1498.BackColor = System.Drawing.Color.Transparent;
  2158. this.myTableLayoutPanel1.SetColumnSpan(this.con1498, 5);
  2159. this.con1498.Dock = System.Windows.Forms.DockStyle.Fill;
  2160. this.con1498.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2161. this.con1498.Location = new System.Drawing.Point(507, 403);
  2162. this.con1498.Margin = new System.Windows.Forms.Padding(0);
  2163. this.con1498.Name = "con1498";
  2164. this.myTableLayoutPanel1.SetRowSpan(this.con1498, 2);
  2165. this.con1498.Size = new System.Drawing.Size(65, 20);
  2166. this.con1498.TabIndex = 842;
  2167. //
  2168. // con1491
  2169. //
  2170. this.con1491.BackColor = System.Drawing.Color.Transparent;
  2171. this.myTableLayoutPanel1.SetColumnSpan(this.con1491, 3);
  2172. this.con1491.Dock = System.Windows.Forms.DockStyle.Fill;
  2173. this.con1491.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2174. this.con1491.Location = new System.Drawing.Point(468, 363);
  2175. this.con1491.Margin = new System.Windows.Forms.Padding(0);
  2176. this.con1491.Name = "con1491";
  2177. this.myTableLayoutPanel1.SetRowSpan(this.con1491, 2);
  2178. this.con1491.Size = new System.Drawing.Size(39, 20);
  2179. this.con1491.TabIndex = 846;
  2180. //
  2181. // locationPos45
  2182. //
  2183. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos45, 3);
  2184. this.locationPos45.Dock = System.Windows.Forms.DockStyle.Fill;
  2185. this.locationPos45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2186. this.locationPos45.Location = new System.Drawing.Point(442, 182);
  2187. this.locationPos45.Margin = new System.Windows.Forms.Padding(0);
  2188. this.locationPos45.Name = "locationPos45";
  2189. this.myTableLayoutPanel1.SetRowSpan(this.locationPos45, 20);
  2190. this.locationPos45.Size = new System.Drawing.Size(39, 181);
  2191. this.locationPos45.TabIndex = 468;
  2192. //
  2193. // con1597
  2194. //
  2195. this.con1597.BackColor = System.Drawing.Color.Transparent;
  2196. this.myTableLayoutPanel1.SetColumnSpan(this.con1597, 3);
  2197. this.con1597.Dock = System.Windows.Forms.DockStyle.Fill;
  2198. this.con1597.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2199. this.con1597.Location = new System.Drawing.Point(221, 483);
  2200. this.con1597.Margin = new System.Windows.Forms.Padding(0);
  2201. this.con1597.Name = "con1597";
  2202. this.myTableLayoutPanel1.SetRowSpan(this.con1597, 2);
  2203. this.con1597.Size = new System.Drawing.Size(39, 20);
  2204. this.con1597.TabIndex = 870;
  2205. //
  2206. // srm13
  2207. //
  2208. this.srm13.BackColor = System.Drawing.Color.Transparent;
  2209. this.srm13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("srm13.BackgroundImage")));
  2210. this.srm13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2211. this.srm13.Dock = System.Windows.Forms.DockStyle.Fill;
  2212. this.srm13.Location = new System.Drawing.Point(481, 182);
  2213. this.srm13.Margin = new System.Windows.Forms.Padding(0);
  2214. this.srm13.Name = "srm13";
  2215. this.myTableLayoutPanel1.SetRowSpan(this.srm13, 20);
  2216. this.srm13.Size = new System.Drawing.Size(13, 181);
  2217. this.srm13.TabIndex = 472;
  2218. //
  2219. // locationPos46
  2220. //
  2221. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos46, 3);
  2222. this.locationPos46.Dock = System.Windows.Forms.DockStyle.Fill;
  2223. this.locationPos46.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2224. this.locationPos46.Location = new System.Drawing.Point(494, 182);
  2225. this.locationPos46.Margin = new System.Windows.Forms.Padding(0);
  2226. this.locationPos46.Name = "locationPos46";
  2227. this.myTableLayoutPanel1.SetRowSpan(this.locationPos46, 20);
  2228. this.locationPos46.Size = new System.Drawing.Size(39, 181);
  2229. this.locationPos46.TabIndex = 470;
  2230. //
  2231. // con1598
  2232. //
  2233. this.con1598.BackColor = System.Drawing.Color.Transparent;
  2234. this.myTableLayoutPanel1.SetColumnSpan(this.con1598, 3);
  2235. this.con1598.Dock = System.Windows.Forms.DockStyle.Fill;
  2236. this.con1598.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2237. this.con1598.Location = new System.Drawing.Point(221, 503);
  2238. this.con1598.Margin = new System.Windows.Forms.Padding(0);
  2239. this.con1598.Name = "con1598";
  2240. this.myTableLayoutPanel1.SetRowSpan(this.con1598, 2);
  2241. this.con1598.Size = new System.Drawing.Size(39, 20);
  2242. this.con1598.TabIndex = 861;
  2243. //
  2244. // con1489
  2245. //
  2246. this.con1489.BackColor = System.Drawing.Color.Transparent;
  2247. this.myTableLayoutPanel1.SetColumnSpan(this.con1489, 5);
  2248. this.con1489.Dock = System.Windows.Forms.DockStyle.Fill;
  2249. this.con1489.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2250. this.con1489.Location = new System.Drawing.Point(507, 363);
  2251. this.con1489.Margin = new System.Windows.Forms.Padding(0);
  2252. this.con1489.Name = "con1489";
  2253. this.myTableLayoutPanel1.SetRowSpan(this.con1489, 2);
  2254. this.con1489.Size = new System.Drawing.Size(65, 20);
  2255. this.con1489.TabIndex = 848;
  2256. //
  2257. // locationPos42
  2258. //
  2259. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos42, 3);
  2260. this.locationPos42.Dock = System.Windows.Forms.DockStyle.Fill;
  2261. this.locationPos42.Location = new System.Drawing.Point(546, 182);
  2262. this.locationPos42.Margin = new System.Windows.Forms.Padding(0);
  2263. this.locationPos42.Name = "locationPos42";
  2264. this.myTableLayoutPanel1.SetRowSpan(this.locationPos42, 20);
  2265. this.locationPos42.Size = new System.Drawing.Size(39, 181);
  2266. this.locationPos42.TabIndex = 464;
  2267. //
  2268. // con1493
  2269. //
  2270. this.con1493.BackColor = System.Drawing.Color.Transparent;
  2271. this.myTableLayoutPanel1.SetColumnSpan(this.con1493, 3);
  2272. this.con1493.Dock = System.Windows.Forms.DockStyle.Fill;
  2273. this.con1493.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2274. this.con1493.Location = new System.Drawing.Point(572, 363);
  2275. this.con1493.Margin = new System.Windows.Forms.Padding(0);
  2276. this.con1493.Name = "con1493";
  2277. this.myTableLayoutPanel1.SetRowSpan(this.con1493, 2);
  2278. this.con1493.Size = new System.Drawing.Size(39, 20);
  2279. this.con1493.TabIndex = 852;
  2280. //
  2281. // con1040
  2282. //
  2283. this.con1040.BackColor = System.Drawing.Color.Transparent;
  2284. this.myTableLayoutPanel1.SetColumnSpan(this.con1040, 3);
  2285. this.con1040.Dock = System.Windows.Forms.DockStyle.Fill;
  2286. this.con1040.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2287. this.con1040.Location = new System.Drawing.Point(676, 164);
  2288. this.con1040.Margin = new System.Windows.Forms.Padding(0);
  2289. this.con1040.Name = "con1040";
  2290. this.myTableLayoutPanel1.SetRowSpan(this.con1040, 2);
  2291. this.con1040.Size = new System.Drawing.Size(39, 18);
  2292. this.con1040.TabIndex = 862;
  2293. //
  2294. // tableCellLabel29
  2295. //
  2296. this.tableCellLabel29.BackColor = System.Drawing.Color.Transparent;
  2297. this.tableCellLabel29.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel29.BackgroundImage")));
  2298. this.tableCellLabel29.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2299. this.tableCellLabel29.Dock = System.Windows.Forms.DockStyle.Fill;
  2300. this.tableCellLabel29.Location = new System.Drawing.Point(585, 182);
  2301. this.tableCellLabel29.Margin = new System.Windows.Forms.Padding(0);
  2302. this.tableCellLabel29.Name = "tableCellLabel29";
  2303. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel29, 20);
  2304. this.tableCellLabel29.Size = new System.Drawing.Size(13, 181);
  2305. this.tableCellLabel29.TabIndex = 681;
  2306. //
  2307. // locationPos54
  2308. //
  2309. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos54, 3);
  2310. this.locationPos54.Dock = System.Windows.Forms.DockStyle.Fill;
  2311. this.locationPos54.Location = new System.Drawing.Point(598, 182);
  2312. this.locationPos54.Margin = new System.Windows.Forms.Padding(0);
  2313. this.locationPos54.Name = "locationPos54";
  2314. this.myTableLayoutPanel1.SetRowSpan(this.locationPos54, 20);
  2315. this.locationPos54.Size = new System.Drawing.Size(39, 181);
  2316. this.locationPos54.TabIndex = 477;
  2317. //
  2318. // con1495
  2319. //
  2320. this.con1495.BackColor = System.Drawing.Color.Transparent;
  2321. this.myTableLayoutPanel1.SetColumnSpan(this.con1495, 3);
  2322. this.con1495.Dock = System.Windows.Forms.DockStyle.Fill;
  2323. this.con1495.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2324. this.con1495.Location = new System.Drawing.Point(520, 383);
  2325. this.con1495.Margin = new System.Windows.Forms.Padding(0);
  2326. this.con1495.Name = "con1495";
  2327. this.myTableLayoutPanel1.SetRowSpan(this.con1495, 2);
  2328. this.con1495.Size = new System.Drawing.Size(39, 20);
  2329. this.con1495.TabIndex = 855;
  2330. //
  2331. // con1044
  2332. //
  2333. this.myTableLayoutPanel1.SetColumnSpan(this.con1044, 3);
  2334. this.con1044.Dock = System.Windows.Forms.DockStyle.Fill;
  2335. this.con1044.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2336. this.con1044.Location = new System.Drawing.Point(520, 146);
  2337. this.con1044.Margin = new System.Windows.Forms.Padding(0);
  2338. this.con1044.Name = "con1044";
  2339. this.myTableLayoutPanel1.SetRowSpan(this.con1044, 2);
  2340. this.con1044.Size = new System.Drawing.Size(39, 18);
  2341. this.con1044.TabIndex = 819;
  2342. //
  2343. // con1595
  2344. //
  2345. this.myTableLayoutPanel1.SetColumnSpan(this.con1595, 3);
  2346. this.con1595.Dock = System.Windows.Forms.DockStyle.Fill;
  2347. this.con1595.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2348. this.con1595.Location = new System.Drawing.Point(91, 483);
  2349. this.con1595.Margin = new System.Windows.Forms.Padding(0);
  2350. this.con1595.Name = "con1595";
  2351. this.myTableLayoutPanel1.SetRowSpan(this.con1595, 2);
  2352. this.con1595.Size = new System.Drawing.Size(39, 20);
  2353. this.con1595.TabIndex = 801;
  2354. //
  2355. // con1051
  2356. //
  2357. this.con1051.BackColor = System.Drawing.Color.Transparent;
  2358. this.myTableLayoutPanel1.SetColumnSpan(this.con1051, 3);
  2359. this.con1051.Dock = System.Windows.Forms.DockStyle.Fill;
  2360. this.con1051.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2361. this.con1051.Location = new System.Drawing.Point(572, 164);
  2362. this.con1051.Margin = new System.Windows.Forms.Padding(0);
  2363. this.con1051.Name = "con1051";
  2364. this.myTableLayoutPanel1.SetRowSpan(this.con1051, 2);
  2365. this.con1051.Size = new System.Drawing.Size(39, 18);
  2366. this.con1051.TabIndex = 723;
  2367. //
  2368. // con1049
  2369. //
  2370. this.con1049.BackColor = System.Drawing.Color.Transparent;
  2371. this.myTableLayoutPanel1.SetColumnSpan(this.con1049, 3);
  2372. this.con1049.Dock = System.Windows.Forms.DockStyle.Fill;
  2373. this.con1049.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2374. this.con1049.Location = new System.Drawing.Point(468, 164);
  2375. this.con1049.Margin = new System.Windows.Forms.Padding(0);
  2376. this.con1049.Name = "con1049";
  2377. this.myTableLayoutPanel1.SetRowSpan(this.con1049, 2);
  2378. this.con1049.Size = new System.Drawing.Size(39, 18);
  2379. this.con1049.TabIndex = 722;
  2380. //
  2381. // con1035
  2382. //
  2383. this.myTableLayoutPanel1.SetColumnSpan(this.con1035, 3);
  2384. this.con1035.Dock = System.Windows.Forms.DockStyle.Fill;
  2385. this.con1035.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2386. this.con1035.Location = new System.Drawing.Point(728, 146);
  2387. this.con1035.Margin = new System.Windows.Forms.Padding(0);
  2388. this.con1035.Name = "con1035";
  2389. this.myTableLayoutPanel1.SetRowSpan(this.con1035, 2);
  2390. this.con1035.Size = new System.Drawing.Size(39, 18);
  2391. this.con1035.TabIndex = 520;
  2392. //
  2393. // con1042
  2394. //
  2395. this.myTableLayoutPanel1.SetColumnSpan(this.con1042, 3);
  2396. this.con1042.Dock = System.Windows.Forms.DockStyle.Fill;
  2397. this.con1042.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2398. this.con1042.Location = new System.Drawing.Point(780, 164);
  2399. this.con1042.Margin = new System.Windows.Forms.Padding(0);
  2400. this.con1042.Name = "con1042";
  2401. this.myTableLayoutPanel1.SetRowSpan(this.con1042, 2);
  2402. this.con1042.Size = new System.Drawing.Size(39, 18);
  2403. this.con1042.TabIndex = 512;
  2404. //
  2405. // con1038
  2406. //
  2407. this.myTableLayoutPanel1.SetColumnSpan(this.con1038, 5);
  2408. this.con1038.Dock = System.Windows.Forms.DockStyle.Fill;
  2409. this.con1038.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2410. this.con1038.Location = new System.Drawing.Point(715, 164);
  2411. this.con1038.Margin = new System.Windows.Forms.Padding(0);
  2412. this.con1038.Name = "con1038";
  2413. this.myTableLayoutPanel1.SetRowSpan(this.con1038, 2);
  2414. this.con1038.Size = new System.Drawing.Size(65, 18);
  2415. this.con1038.TabIndex = 751;
  2416. //
  2417. // con1047
  2418. //
  2419. this.con1047.BackColor = System.Drawing.Color.Transparent;
  2420. this.myTableLayoutPanel1.SetColumnSpan(this.con1047, 5);
  2421. this.con1047.Dock = System.Windows.Forms.DockStyle.Fill;
  2422. this.con1047.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2423. this.con1047.Location = new System.Drawing.Point(507, 164);
  2424. this.con1047.Margin = new System.Windows.Forms.Padding(0);
  2425. this.con1047.Name = "con1047";
  2426. this.myTableLayoutPanel1.SetRowSpan(this.con1047, 2);
  2427. this.con1047.Size = new System.Drawing.Size(65, 18);
  2428. this.con1047.TabIndex = 749;
  2429. //
  2430. // con1058
  2431. //
  2432. this.con1058.BackColor = System.Drawing.Color.Transparent;
  2433. this.myTableLayoutPanel1.SetColumnSpan(this.con1058, 3);
  2434. this.con1058.Dock = System.Windows.Forms.DockStyle.Fill;
  2435. this.con1058.Location = new System.Drawing.Point(273, 164);
  2436. this.con1058.Margin = new System.Windows.Forms.Padding(0);
  2437. this.con1058.Name = "con1058";
  2438. this.myTableLayoutPanel1.SetRowSpan(this.con1058, 2);
  2439. this.con1058.Size = new System.Drawing.Size(39, 18);
  2440. this.con1058.TabIndex = 863;
  2441. //
  2442. // con1060
  2443. //
  2444. this.con1060.BackColor = System.Drawing.Color.Transparent;
  2445. this.myTableLayoutPanel1.SetColumnSpan(this.con1060, 3);
  2446. this.con1060.Dock = System.Windows.Forms.DockStyle.Fill;
  2447. this.con1060.Location = new System.Drawing.Point(377, 164);
  2448. this.con1060.Margin = new System.Windows.Forms.Padding(0);
  2449. this.con1060.Name = "con1060";
  2450. this.myTableLayoutPanel1.SetRowSpan(this.con1060, 2);
  2451. this.con1060.Size = new System.Drawing.Size(39, 18);
  2452. this.con1060.TabIndex = 462;
  2453. //
  2454. // con1056
  2455. //
  2456. this.con1056.BackColor = System.Drawing.Color.Transparent;
  2457. this.myTableLayoutPanel1.SetColumnSpan(this.con1056, 5);
  2458. this.con1056.Dock = System.Windows.Forms.DockStyle.Fill;
  2459. this.con1056.Location = new System.Drawing.Point(312, 164);
  2460. this.con1056.Margin = new System.Windows.Forms.Padding(0);
  2461. this.con1056.Name = "con1056";
  2462. this.myTableLayoutPanel1.SetRowSpan(this.con1056, 2);
  2463. this.con1056.Size = new System.Drawing.Size(65, 18);
  2464. this.con1056.TabIndex = 461;
  2465. //
  2466. // tableCellLabel2
  2467. //
  2468. this.tableCellLabel2.BackColor = System.Drawing.Color.Transparent;
  2469. this.tableCellLabel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel2.BackgroundImage")));
  2470. this.tableCellLabel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2471. this.myTableLayoutPanel1.SetColumnSpan(this.tableCellLabel2, 13);
  2472. this.tableCellLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
  2473. this.tableCellLabel2.Location = new System.Drawing.Point(429, 128);
  2474. this.tableCellLabel2.Margin = new System.Windows.Forms.Padding(0);
  2475. this.tableCellLabel2.Name = "tableCellLabel2";
  2476. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel2, 2);
  2477. this.tableCellLabel2.Size = new System.Drawing.Size(169, 18);
  2478. this.tableCellLabel2.TabIndex = 790;
  2479. //
  2480. // con1015
  2481. //
  2482. this.con1015.BackColor = System.Drawing.Color.Transparent;
  2483. this.myTableLayoutPanel1.SetColumnSpan(this.con1015, 3);
  2484. this.con1015.Dock = System.Windows.Forms.DockStyle.Fill;
  2485. this.con1015.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2486. this.con1015.Location = new System.Drawing.Point(637, 92);
  2487. this.con1015.Margin = new System.Windows.Forms.Padding(0);
  2488. this.con1015.Name = "con1015";
  2489. this.myTableLayoutPanel1.SetRowSpan(this.con1015, 2);
  2490. this.con1015.Size = new System.Drawing.Size(39, 18);
  2491. this.con1015.TabIndex = 631;
  2492. //
  2493. // rgv8
  2494. //
  2495. this.rgv8.BackColor = System.Drawing.Color.Transparent;
  2496. this.myTableLayoutPanel1.SetColumnSpan(this.rgv8, 3);
  2497. this.rgv8.Dock = System.Windows.Forms.DockStyle.Fill;
  2498. this.rgv8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2499. this.rgv8.Location = new System.Drawing.Point(598, 128);
  2500. this.rgv8.Margin = new System.Windows.Forms.Padding(0);
  2501. this.rgv8.Name = "rgv8";
  2502. this.myTableLayoutPanel1.SetRowSpan(this.rgv8, 2);
  2503. this.rgv8.Size = new System.Drawing.Size(39, 18);
  2504. this.rgv8.TabIndex = 629;
  2505. //
  2506. // con1466
  2507. //
  2508. this.myTableLayoutPanel1.SetColumnSpan(this.con1466, 4);
  2509. this.con1466.Dock = System.Windows.Forms.DockStyle.Fill;
  2510. this.con1466.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2511. this.con1466.Location = new System.Drawing.Point(91, 463);
  2512. this.con1466.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2513. this.con1466.Name = "con1466";
  2514. this.myTableLayoutPanel1.SetRowSpan(this.con1466, 2);
  2515. this.con1466.Size = new System.Drawing.Size(39, 20);
  2516. this.con1466.TabIndex = 642;
  2517. //
  2518. // con1464
  2519. //
  2520. this.myTableLayoutPanel1.SetColumnSpan(this.con1464, 4);
  2521. this.con1464.Dock = System.Windows.Forms.DockStyle.Fill;
  2522. this.con1464.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2523. this.con1464.Location = new System.Drawing.Point(91, 443);
  2524. this.con1464.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2525. this.con1464.Name = "con1464";
  2526. this.myTableLayoutPanel1.SetRowSpan(this.con1464, 2);
  2527. this.con1464.Size = new System.Drawing.Size(39, 20);
  2528. this.con1464.TabIndex = 641;
  2529. //
  2530. // con1462
  2531. //
  2532. this.myTableLayoutPanel1.SetColumnSpan(this.con1462, 4);
  2533. this.con1462.Dock = System.Windows.Forms.DockStyle.Fill;
  2534. this.con1462.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2535. this.con1462.Location = new System.Drawing.Point(91, 423);
  2536. this.con1462.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2537. this.con1462.Name = "con1462";
  2538. this.myTableLayoutPanel1.SetRowSpan(this.con1462, 2);
  2539. this.con1462.Size = new System.Drawing.Size(39, 20);
  2540. this.con1462.TabIndex = 643;
  2541. //
  2542. // con1460
  2543. //
  2544. this.myTableLayoutPanel1.SetColumnSpan(this.con1460, 4);
  2545. this.con1460.Dock = System.Windows.Forms.DockStyle.Fill;
  2546. this.con1460.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2547. this.con1460.Location = new System.Drawing.Point(91, 403);
  2548. this.con1460.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2549. this.con1460.Name = "con1460";
  2550. this.myTableLayoutPanel1.SetRowSpan(this.con1460, 2);
  2551. this.con1460.Size = new System.Drawing.Size(39, 20);
  2552. this.con1460.TabIndex = 644;
  2553. //
  2554. // con1458
  2555. //
  2556. this.myTableLayoutPanel1.SetColumnSpan(this.con1458, 4);
  2557. this.con1458.Dock = System.Windows.Forms.DockStyle.Fill;
  2558. this.con1458.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2559. this.con1458.Location = new System.Drawing.Point(91, 383);
  2560. this.con1458.Margin = new System.Windows.Forms.Padding(0, 0, 13, 0);
  2561. this.con1458.Name = "con1458";
  2562. this.myTableLayoutPanel1.SetRowSpan(this.con1458, 2);
  2563. this.con1458.Size = new System.Drawing.Size(39, 20);
  2564. this.con1458.TabIndex = 640;
  2565. //
  2566. // locationPos1
  2567. //
  2568. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos1, 3);
  2569. this.locationPos1.Dock = System.Windows.Forms.DockStyle.Fill;
  2570. this.locationPos1.Location = new System.Drawing.Point(651, 182);
  2571. this.locationPos1.Margin = new System.Windows.Forms.Padding(0);
  2572. this.locationPos1.Name = "locationPos1";
  2573. this.myTableLayoutPanel1.SetRowSpan(this.locationPos1, 20);
  2574. this.locationPos1.Size = new System.Drawing.Size(38, 181);
  2575. this.locationPos1.TabIndex = 882;
  2576. //
  2577. // locationPos2
  2578. //
  2579. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos2, 3);
  2580. this.locationPos2.Dock = System.Windows.Forms.DockStyle.Fill;
  2581. this.locationPos2.Location = new System.Drawing.Point(702, 182);
  2582. this.locationPos2.Margin = new System.Windows.Forms.Padding(0);
  2583. this.locationPos2.Name = "locationPos2";
  2584. this.myTableLayoutPanel1.SetRowSpan(this.locationPos2, 20);
  2585. this.locationPos2.Size = new System.Drawing.Size(39, 181);
  2586. this.locationPos2.TabIndex = 883;
  2587. //
  2588. // locationPos3
  2589. //
  2590. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos3, 3);
  2591. this.locationPos3.Dock = System.Windows.Forms.DockStyle.Fill;
  2592. this.locationPos3.Location = new System.Drawing.Point(754, 182);
  2593. this.locationPos3.Margin = new System.Windows.Forms.Padding(0);
  2594. this.locationPos3.Name = "locationPos3";
  2595. this.myTableLayoutPanel1.SetRowSpan(this.locationPos3, 20);
  2596. this.locationPos3.Size = new System.Drawing.Size(39, 181);
  2597. this.locationPos3.TabIndex = 884;
  2598. //
  2599. // locationPos4
  2600. //
  2601. this.myTableLayoutPanel1.SetColumnSpan(this.locationPos4, 3);
  2602. this.locationPos4.Dock = System.Windows.Forms.DockStyle.Fill;
  2603. this.locationPos4.Location = new System.Drawing.Point(806, 182);
  2604. this.locationPos4.Margin = new System.Windows.Forms.Padding(0);
  2605. this.locationPos4.Name = "locationPos4";
  2606. this.myTableLayoutPanel1.SetRowSpan(this.locationPos4, 20);
  2607. this.locationPos4.Size = new System.Drawing.Size(39, 181);
  2608. this.locationPos4.TabIndex = 885;
  2609. //
  2610. // tableCellLabel5
  2611. //
  2612. this.tableCellLabel5.BackColor = System.Drawing.Color.Transparent;
  2613. this.tableCellLabel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel5.BackgroundImage")));
  2614. this.tableCellLabel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2615. this.tableCellLabel5.Dock = System.Windows.Forms.DockStyle.Fill;
  2616. this.tableCellLabel5.Location = new System.Drawing.Point(689, 182);
  2617. this.tableCellLabel5.Margin = new System.Windows.Forms.Padding(0);
  2618. this.tableCellLabel5.Name = "tableCellLabel5";
  2619. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel5, 20);
  2620. this.tableCellLabel5.Size = new System.Drawing.Size(13, 181);
  2621. this.tableCellLabel5.TabIndex = 886;
  2622. //
  2623. // tableCellLabel6
  2624. //
  2625. this.tableCellLabel6.BackColor = System.Drawing.Color.Transparent;
  2626. this.tableCellLabel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tableCellLabel6.BackgroundImage")));
  2627. this.tableCellLabel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  2628. this.tableCellLabel6.Dock = System.Windows.Forms.DockStyle.Fill;
  2629. this.tableCellLabel6.Location = new System.Drawing.Point(793, 182);
  2630. this.tableCellLabel6.Margin = new System.Windows.Forms.Padding(0);
  2631. this.tableCellLabel6.Name = "tableCellLabel6";
  2632. this.myTableLayoutPanel1.SetRowSpan(this.tableCellLabel6, 20);
  2633. this.tableCellLabel6.Size = new System.Drawing.Size(13, 181);
  2634. this.tableCellLabel6.TabIndex = 887;
  2635. //
  2636. // con1281
  2637. //
  2638. this.myTableLayoutPanel1.SetColumnSpan(this.con1281, 3);
  2639. this.con1281.Dock = System.Windows.Forms.DockStyle.Fill;
  2640. this.con1281.Location = new System.Drawing.Point(871, 363);
  2641. this.con1281.Margin = new System.Windows.Forms.Padding(0);
  2642. this.con1281.Name = "con1281";
  2643. this.myTableLayoutPanel1.SetRowSpan(this.con1281, 2);
  2644. this.con1281.Size = new System.Drawing.Size(39, 20);
  2645. this.con1281.TabIndex = 888;
  2646. //
  2647. // con1283
  2648. //
  2649. this.con1283.BackColor = System.Drawing.Color.Transparent;
  2650. this.myTableLayoutPanel1.SetColumnSpan(this.con1283, 2);
  2651. this.con1283.Dock = System.Windows.Forms.DockStyle.Fill;
  2652. this.con1283.Location = new System.Drawing.Point(910, 363);
  2653. this.con1283.Margin = new System.Windows.Forms.Padding(0);
  2654. this.con1283.Name = "con1283";
  2655. this.myTableLayoutPanel1.SetRowSpan(this.con1283, 2);
  2656. this.con1283.Size = new System.Drawing.Size(26, 20);
  2657. this.con1283.TabIndex = 889;
  2658. //
  2659. // con1285
  2660. //
  2661. this.myTableLayoutPanel1.SetColumnSpan(this.con1285, 3);
  2662. this.con1285.Dock = System.Windows.Forms.DockStyle.Fill;
  2663. this.con1285.Location = new System.Drawing.Point(871, 383);
  2664. this.con1285.Margin = new System.Windows.Forms.Padding(0);
  2665. this.con1285.Name = "con1285";
  2666. this.myTableLayoutPanel1.SetRowSpan(this.con1285, 2);
  2667. this.con1285.Size = new System.Drawing.Size(39, 20);
  2668. this.con1285.TabIndex = 890;
  2669. //
  2670. // con1406
  2671. //
  2672. this.con1406.BackColor = System.Drawing.Color.Transparent;
  2673. this.myTableLayoutPanel1.SetColumnSpan(this.con1406, 2);
  2674. this.con1406.Dock = System.Windows.Forms.DockStyle.Fill;
  2675. this.con1406.Location = new System.Drawing.Point(949, 363);
  2676. this.con1406.Margin = new System.Windows.Forms.Padding(0);
  2677. this.con1406.Name = "con1406";
  2678. this.myTableLayoutPanel1.SetRowSpan(this.con1406, 2);
  2679. this.con1406.Size = new System.Drawing.Size(26, 20);
  2680. this.con1406.TabIndex = 891;
  2681. //
  2682. // con1404
  2683. //
  2684. this.myTableLayoutPanel1.SetColumnSpan(this.con1404, 3);
  2685. this.con1404.Dock = System.Windows.Forms.DockStyle.Fill;
  2686. this.con1404.Location = new System.Drawing.Point(975, 363);
  2687. this.con1404.Margin = new System.Windows.Forms.Padding(0);
  2688. this.con1404.Name = "con1404";
  2689. this.myTableLayoutPanel1.SetRowSpan(this.con1404, 2);
  2690. this.con1404.Size = new System.Drawing.Size(39, 20);
  2691. this.con1404.TabIndex = 892;
  2692. //
  2693. // con1408
  2694. //
  2695. this.con1408.BackColor = System.Drawing.Color.Transparent;
  2696. this.myTableLayoutPanel1.SetColumnSpan(this.con1408, 2);
  2697. this.con1408.Dock = System.Windows.Forms.DockStyle.Fill;
  2698. this.con1408.Location = new System.Drawing.Point(1014, 363);
  2699. this.con1408.Margin = new System.Windows.Forms.Padding(0);
  2700. this.con1408.Name = "con1408";
  2701. this.myTableLayoutPanel1.SetRowSpan(this.con1408, 2);
  2702. this.con1408.Size = new System.Drawing.Size(26, 20);
  2703. this.con1408.TabIndex = 893;
  2704. //
  2705. // con1401
  2706. //
  2707. this.myTableLayoutPanel1.SetColumnSpan(this.con1401, 3);
  2708. this.con1401.Dock = System.Windows.Forms.DockStyle.Fill;
  2709. this.con1401.Location = new System.Drawing.Point(975, 383);
  2710. this.con1401.Margin = new System.Windows.Forms.Padding(0);
  2711. this.con1401.Name = "con1401";
  2712. this.myTableLayoutPanel1.SetRowSpan(this.con1401, 2);
  2713. this.con1401.Size = new System.Drawing.Size(39, 20);
  2714. this.con1401.TabIndex = 894;
  2715. //
  2716. // con1290
  2717. //
  2718. this.con1290.BackColor = System.Drawing.Color.Transparent;
  2719. this.myTableLayoutPanel1.SetColumnSpan(this.con1290, 2);
  2720. this.con1290.Dock = System.Windows.Forms.DockStyle.Fill;
  2721. this.con1290.Location = new System.Drawing.Point(1053, 363);
  2722. this.con1290.Margin = new System.Windows.Forms.Padding(0);
  2723. this.con1290.Name = "con1290";
  2724. this.myTableLayoutPanel1.SetRowSpan(this.con1290, 2);
  2725. this.con1290.Size = new System.Drawing.Size(26, 20);
  2726. this.con1290.TabIndex = 895;
  2727. //
  2728. // con1288
  2729. //
  2730. this.myTableLayoutPanel1.SetColumnSpan(this.con1288, 3);
  2731. this.con1288.Dock = System.Windows.Forms.DockStyle.Fill;
  2732. this.con1288.Location = new System.Drawing.Point(1079, 363);
  2733. this.con1288.Margin = new System.Windows.Forms.Padding(0);
  2734. this.con1288.Name = "con1288";
  2735. this.myTableLayoutPanel1.SetRowSpan(this.con1288, 2);
  2736. this.con1288.Size = new System.Drawing.Size(39, 20);
  2737. this.con1288.TabIndex = 896;
  2738. //
  2739. // con1292
  2740. //
  2741. this.con1292.BackColor = System.Drawing.Color.Transparent;
  2742. this.myTableLayoutPanel1.SetColumnSpan(this.con1292, 2);
  2743. this.con1292.Dock = System.Windows.Forms.DockStyle.Fill;
  2744. this.con1292.Location = new System.Drawing.Point(1118, 363);
  2745. this.con1292.Margin = new System.Windows.Forms.Padding(0);
  2746. this.con1292.Name = "con1292";
  2747. this.myTableLayoutPanel1.SetRowSpan(this.con1292, 2);
  2748. this.con1292.Size = new System.Drawing.Size(26, 20);
  2749. this.con1292.TabIndex = 897;
  2750. //
  2751. // con1294
  2752. //
  2753. this.myTableLayoutPanel1.SetColumnSpan(this.con1294, 3);
  2754. this.con1294.Dock = System.Windows.Forms.DockStyle.Fill;
  2755. this.con1294.Location = new System.Drawing.Point(1079, 383);
  2756. this.con1294.Margin = new System.Windows.Forms.Padding(0);
  2757. this.con1294.Name = "con1294";
  2758. this.myTableLayoutPanel1.SetRowSpan(this.con1294, 2);
  2759. this.con1294.Size = new System.Drawing.Size(39, 20);
  2760. this.con1294.TabIndex = 898;
  2761. //
  2762. // con1415
  2763. //
  2764. this.con1415.BackColor = System.Drawing.Color.Transparent;
  2765. this.myTableLayoutPanel1.SetColumnSpan(this.con1415, 2);
  2766. this.con1415.Dock = System.Windows.Forms.DockStyle.Fill;
  2767. this.con1415.Location = new System.Drawing.Point(1157, 363);
  2768. this.con1415.Margin = new System.Windows.Forms.Padding(0);
  2769. this.con1415.Name = "con1415";
  2770. this.myTableLayoutPanel1.SetRowSpan(this.con1415, 2);
  2771. this.con1415.Size = new System.Drawing.Size(26, 20);
  2772. this.con1415.TabIndex = 899;
  2773. //
  2774. // con1413
  2775. //
  2776. this.myTableLayoutPanel1.SetColumnSpan(this.con1413, 3);
  2777. this.con1413.Dock = System.Windows.Forms.DockStyle.Fill;
  2778. this.con1413.Location = new System.Drawing.Point(1183, 363);
  2779. this.con1413.Margin = new System.Windows.Forms.Padding(0);
  2780. this.con1413.Name = "con1413";
  2781. this.myTableLayoutPanel1.SetRowSpan(this.con1413, 2);
  2782. this.con1413.Size = new System.Drawing.Size(39, 20);
  2783. this.con1413.TabIndex = 900;
  2784. //
  2785. // con1410
  2786. //
  2787. this.myTableLayoutPanel1.SetColumnSpan(this.con1410, 3);
  2788. this.con1410.Dock = System.Windows.Forms.DockStyle.Fill;
  2789. this.con1410.Location = new System.Drawing.Point(1183, 383);
  2790. this.con1410.Margin = new System.Windows.Forms.Padding(0);
  2791. this.con1410.Name = "con1410";
  2792. this.myTableLayoutPanel1.SetRowSpan(this.con1410, 2);
  2793. this.con1410.Size = new System.Drawing.Size(39, 20);
  2794. this.con1410.TabIndex = 901;
  2795. //
  2796. // con1299
  2797. //
  2798. this.con1299.BackColor = System.Drawing.Color.Transparent;
  2799. this.myTableLayoutPanel1.SetColumnSpan(this.con1299, 2);
  2800. this.con1299.Dock = System.Windows.Forms.DockStyle.Fill;
  2801. this.con1299.Location = new System.Drawing.Point(1235, 363);
  2802. this.con1299.Margin = new System.Windows.Forms.Padding(0);
  2803. this.con1299.Name = "con1299";
  2804. this.myTableLayoutPanel1.SetRowSpan(this.con1299, 2);
  2805. this.con1299.Size = new System.Drawing.Size(26, 20);
  2806. this.con1299.TabIndex = 902;
  2807. //
  2808. // con1297
  2809. //
  2810. this.myTableLayoutPanel1.SetColumnSpan(this.con1297, 3);
  2811. this.con1297.Dock = System.Windows.Forms.DockStyle.Fill;
  2812. this.con1297.Location = new System.Drawing.Point(1261, 363);
  2813. this.con1297.Margin = new System.Windows.Forms.Padding(0);
  2814. this.con1297.Name = "con1297";
  2815. this.myTableLayoutPanel1.SetRowSpan(this.con1297, 2);
  2816. this.con1297.Size = new System.Drawing.Size(39, 20);
  2817. this.con1297.TabIndex = 903;
  2818. //
  2819. // con1301
  2820. //
  2821. this.con1301.BackColor = System.Drawing.Color.Transparent;
  2822. this.myTableLayoutPanel1.SetColumnSpan(this.con1301, 2);
  2823. this.con1301.Dock = System.Windows.Forms.DockStyle.Fill;
  2824. this.con1301.Location = new System.Drawing.Point(1300, 363);
  2825. this.con1301.Margin = new System.Windows.Forms.Padding(0);
  2826. this.con1301.Name = "con1301";
  2827. this.myTableLayoutPanel1.SetRowSpan(this.con1301, 2);
  2828. this.con1301.Size = new System.Drawing.Size(26, 20);
  2829. this.con1301.TabIndex = 904;
  2830. //
  2831. // con1303
  2832. //
  2833. this.myTableLayoutPanel1.SetColumnSpan(this.con1303, 3);
  2834. this.con1303.Dock = System.Windows.Forms.DockStyle.Right;
  2835. this.con1303.Location = new System.Drawing.Point(1261, 383);
  2836. this.con1303.Margin = new System.Windows.Forms.Padding(0);
  2837. this.con1303.Name = "con1303";
  2838. this.myTableLayoutPanel1.SetRowSpan(this.con1303, 2);
  2839. this.con1303.Size = new System.Drawing.Size(39, 20);
  2840. this.con1303.TabIndex = 905;
  2841. //
  2842. // con1422
  2843. //
  2844. this.con1422.BackColor = System.Drawing.Color.Transparent;
  2845. this.myTableLayoutPanel1.SetColumnSpan(this.con1422, 2);
  2846. this.con1422.Dock = System.Windows.Forms.DockStyle.Fill;
  2847. this.con1422.Location = new System.Drawing.Point(1339, 363);
  2848. this.con1422.Margin = new System.Windows.Forms.Padding(0);
  2849. this.con1422.Name = "con1422";
  2850. this.myTableLayoutPanel1.SetRowSpan(this.con1422, 2);
  2851. this.con1422.Size = new System.Drawing.Size(26, 20);
  2852. this.con1422.TabIndex = 906;
  2853. //
  2854. // con1420
  2855. //
  2856. this.myTableLayoutPanel1.SetColumnSpan(this.con1420, 3);
  2857. this.con1420.Dock = System.Windows.Forms.DockStyle.Fill;
  2858. this.con1420.Location = new System.Drawing.Point(1365, 363);
  2859. this.con1420.Margin = new System.Windows.Forms.Padding(0);
  2860. this.con1420.Name = "con1420";
  2861. this.myTableLayoutPanel1.SetRowSpan(this.con1420, 2);
  2862. this.con1420.Size = new System.Drawing.Size(39, 20);
  2863. this.con1420.TabIndex = 907;
  2864. //
  2865. // con1424
  2866. //
  2867. this.con1424.BackColor = System.Drawing.Color.Transparent;
  2868. this.myTableLayoutPanel1.SetColumnSpan(this.con1424, 2);
  2869. this.con1424.Dock = System.Windows.Forms.DockStyle.Fill;
  2870. this.con1424.Location = new System.Drawing.Point(1404, 363);
  2871. this.con1424.Margin = new System.Windows.Forms.Padding(0);
  2872. this.con1424.Name = "con1424";
  2873. this.myTableLayoutPanel1.SetRowSpan(this.con1424, 2);
  2874. this.con1424.Size = new System.Drawing.Size(26, 20);
  2875. this.con1424.TabIndex = 908;
  2876. //
  2877. // con1417
  2878. //
  2879. this.myTableLayoutPanel1.SetColumnSpan(this.con1417, 3);
  2880. this.con1417.Dock = System.Windows.Forms.DockStyle.Fill;
  2881. this.con1417.Location = new System.Drawing.Point(1365, 383);
  2882. this.con1417.Margin = new System.Windows.Forms.Padding(0);
  2883. this.con1417.Name = "con1417";
  2884. this.myTableLayoutPanel1.SetRowSpan(this.con1417, 2);
  2885. this.con1417.Size = new System.Drawing.Size(39, 20);
  2886. this.con1417.TabIndex = 909;
  2887. //
  2888. // con1308
  2889. //
  2890. this.con1308.BackColor = System.Drawing.Color.Transparent;
  2891. this.myTableLayoutPanel1.SetColumnSpan(this.con1308, 2);
  2892. this.con1308.Dock = System.Windows.Forms.DockStyle.Fill;
  2893. this.con1308.Location = new System.Drawing.Point(1443, 363);
  2894. this.con1308.Margin = new System.Windows.Forms.Padding(0);
  2895. this.con1308.Name = "con1308";
  2896. this.myTableLayoutPanel1.SetRowSpan(this.con1308, 2);
  2897. this.con1308.Size = new System.Drawing.Size(26, 20);
  2898. this.con1308.TabIndex = 910;
  2899. //
  2900. // con1306
  2901. //
  2902. this.myTableLayoutPanel1.SetColumnSpan(this.con1306, 3);
  2903. this.con1306.Dock = System.Windows.Forms.DockStyle.Fill;
  2904. this.con1306.Location = new System.Drawing.Point(1469, 363);
  2905. this.con1306.Margin = new System.Windows.Forms.Padding(0);
  2906. this.con1306.Name = "con1306";
  2907. this.myTableLayoutPanel1.SetRowSpan(this.con1306, 2);
  2908. this.con1306.Size = new System.Drawing.Size(39, 20);
  2909. this.con1306.TabIndex = 911;
  2910. //
  2911. // con1310
  2912. //
  2913. this.con1310.BackColor = System.Drawing.Color.Transparent;
  2914. this.myTableLayoutPanel1.SetColumnSpan(this.con1310, 2);
  2915. this.con1310.Dock = System.Windows.Forms.DockStyle.Fill;
  2916. this.con1310.Location = new System.Drawing.Point(1508, 363);
  2917. this.con1310.Margin = new System.Windows.Forms.Padding(0);
  2918. this.con1310.Name = "con1310";
  2919. this.myTableLayoutPanel1.SetRowSpan(this.con1310, 2);
  2920. this.con1310.Size = new System.Drawing.Size(26, 20);
  2921. this.con1310.TabIndex = 912;
  2922. //
  2923. // con1312
  2924. //
  2925. this.myTableLayoutPanel1.SetColumnSpan(this.con1312, 3);
  2926. this.con1312.Dock = System.Windows.Forms.DockStyle.Fill;
  2927. this.con1312.Location = new System.Drawing.Point(1469, 383);
  2928. this.con1312.Margin = new System.Windows.Forms.Padding(0);
  2929. this.con1312.Name = "con1312";
  2930. this.myTableLayoutPanel1.SetRowSpan(this.con1312, 2);
  2931. this.con1312.Size = new System.Drawing.Size(39, 20);
  2932. this.con1312.TabIndex = 913;
  2933. //
  2934. // con1431
  2935. //
  2936. this.con1431.BackColor = System.Drawing.Color.Transparent;
  2937. this.myTableLayoutPanel1.SetColumnSpan(this.con1431, 2);
  2938. this.con1431.Dock = System.Windows.Forms.DockStyle.Fill;
  2939. this.con1431.Location = new System.Drawing.Point(1547, 363);
  2940. this.con1431.Margin = new System.Windows.Forms.Padding(0);
  2941. this.con1431.Name = "con1431";
  2942. this.myTableLayoutPanel1.SetRowSpan(this.con1431, 2);
  2943. this.con1431.Size = new System.Drawing.Size(26, 20);
  2944. this.con1431.TabIndex = 914;
  2945. //
  2946. // con1429
  2947. //
  2948. this.myTableLayoutPanel1.SetColumnSpan(this.con1429, 3);
  2949. this.con1429.Dock = System.Windows.Forms.DockStyle.Fill;
  2950. this.con1429.Location = new System.Drawing.Point(1573, 363);
  2951. this.con1429.Margin = new System.Windows.Forms.Padding(0);
  2952. this.con1429.Name = "con1429";
  2953. this.myTableLayoutPanel1.SetRowSpan(this.con1429, 2);
  2954. this.con1429.Size = new System.Drawing.Size(39, 20);
  2955. this.con1429.TabIndex = 915;
  2956. //
  2957. // con1426
  2958. //
  2959. this.myTableLayoutPanel1.SetColumnSpan(this.con1426, 3);
  2960. this.con1426.Dock = System.Windows.Forms.DockStyle.Fill;
  2961. this.con1426.Location = new System.Drawing.Point(1573, 383);
  2962. this.con1426.Margin = new System.Windows.Forms.Padding(0);
  2963. this.con1426.Name = "con1426";
  2964. this.myTableLayoutPanel1.SetRowSpan(this.con1426, 2);
  2965. this.con1426.Size = new System.Drawing.Size(39, 20);
  2966. this.con1426.TabIndex = 916;
  2967. //
  2968. // con1386
  2969. //
  2970. this.myTableLayoutPanel1.SetColumnSpan(this.con1386, 3);
  2971. this.con1386.Dock = System.Windows.Forms.DockStyle.Fill;
  2972. this.con1386.Location = new System.Drawing.Point(1352, 263);
  2973. this.con1386.Margin = new System.Windows.Forms.Padding(0);
  2974. this.con1386.Name = "con1386";
  2975. this.myTableLayoutPanel1.SetRowSpan(this.con1386, 2);
  2976. this.con1386.Size = new System.Drawing.Size(39, 18);
  2977. this.con1386.TabIndex = 917;
  2978. this.con1386.Tag = "1386";
  2979. //
  2980. // con1389
  2981. //
  2982. this.myTableLayoutPanel1.SetColumnSpan(this.con1389, 3);
  2983. this.con1389.Dock = System.Windows.Forms.DockStyle.Fill;
  2984. this.con1389.Location = new System.Drawing.Point(1352, 281);
  2985. this.con1389.Margin = new System.Windows.Forms.Padding(0);
  2986. this.con1389.Name = "con1389";
  2987. this.myTableLayoutPanel1.SetRowSpan(this.con1389, 2);
  2988. this.con1389.Size = new System.Drawing.Size(39, 18);
  2989. this.con1389.TabIndex = 918;
  2990. //
  2991. // con1391
  2992. //
  2993. this.myTableLayoutPanel1.SetColumnSpan(this.con1391, 3);
  2994. this.con1391.Dock = System.Windows.Forms.DockStyle.Fill;
  2995. this.con1391.Location = new System.Drawing.Point(1352, 299);
  2996. this.con1391.Margin = new System.Windows.Forms.Padding(0);
  2997. this.con1391.Name = "con1391";
  2998. this.myTableLayoutPanel1.SetRowSpan(this.con1391, 2);
  2999. this.con1391.Size = new System.Drawing.Size(39, 18);
  3000. this.con1391.TabIndex = 919;
  3001. //
  3002. // con1394
  3003. //
  3004. this.myTableLayoutPanel1.SetColumnSpan(this.con1394, 3);
  3005. this.con1394.Dock = System.Windows.Forms.DockStyle.Fill;
  3006. this.con1394.Location = new System.Drawing.Point(1495, 263);
  3007. this.con1394.Margin = new System.Windows.Forms.Padding(0);
  3008. this.con1394.Name = "con1394";
  3009. this.myTableLayoutPanel1.SetRowSpan(this.con1394, 2);
  3010. this.con1394.Size = new System.Drawing.Size(39, 18);
  3011. this.con1394.TabIndex = 920;
  3012. //
  3013. // con1397
  3014. //
  3015. this.myTableLayoutPanel1.SetColumnSpan(this.con1397, 3);
  3016. this.con1397.Dock = System.Windows.Forms.DockStyle.Fill;
  3017. this.con1397.Location = new System.Drawing.Point(1495, 281);
  3018. this.con1397.Margin = new System.Windows.Forms.Padding(0);
  3019. this.con1397.Name = "con1397";
  3020. this.myTableLayoutPanel1.SetRowSpan(this.con1397, 2);
  3021. this.con1397.Size = new System.Drawing.Size(39, 18);
  3022. this.con1397.TabIndex = 921;
  3023. //
  3024. // con1399
  3025. //
  3026. this.myTableLayoutPanel1.SetColumnSpan(this.con1399, 3);
  3027. this.con1399.Dock = System.Windows.Forms.DockStyle.Fill;
  3028. this.con1399.Location = new System.Drawing.Point(1495, 299);
  3029. this.con1399.Margin = new System.Windows.Forms.Padding(0);
  3030. this.con1399.Name = "con1399";
  3031. this.myTableLayoutPanel1.SetRowSpan(this.con1399, 2);
  3032. this.con1399.Size = new System.Drawing.Size(39, 18);
  3033. this.con1399.TabIndex = 922;
  3034. //
  3035. // label1
  3036. //
  3037. this.label1.AutoSize = true;
  3038. this.label1.BackColor = System.Drawing.Color.Lime;
  3039. this.myTableLayoutPanel1.SetColumnSpan(this.label1, 3);
  3040. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  3041. this.label1.Location = new System.Drawing.Point(1446, 263);
  3042. this.label1.Name = "label1";
  3043. this.myTableLayoutPanel1.SetRowSpan(this.label1, 2);
  3044. this.label1.Size = new System.Drawing.Size(33, 18);
  3045. this.label1.TabIndex = 923;
  3046. this.label1.Text = "入";
  3047. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3048. //
  3049. // con1335
  3050. //
  3051. this.myTableLayoutPanel1.SetColumnSpan(this.con1335, 3);
  3052. this.con1335.Dock = System.Windows.Forms.DockStyle.Fill;
  3053. this.con1335.Location = new System.Drawing.Point(1456, 453);
  3054. this.con1335.Margin = new System.Windows.Forms.Padding(0);
  3055. this.con1335.Name = "con1335";
  3056. this.myTableLayoutPanel1.SetRowSpan(this.con1335, 2);
  3057. this.con1335.Size = new System.Drawing.Size(39, 20);
  3058. this.con1335.TabIndex = 924;
  3059. //
  3060. // con1337
  3061. //
  3062. this.myTableLayoutPanel1.SetColumnSpan(this.con1337, 3);
  3063. this.con1337.Dock = System.Windows.Forms.DockStyle.Fill;
  3064. this.con1337.Location = new System.Drawing.Point(1456, 473);
  3065. this.con1337.Margin = new System.Windows.Forms.Padding(0);
  3066. this.con1337.Name = "con1337";
  3067. this.myTableLayoutPanel1.SetRowSpan(this.con1337, 2);
  3068. this.con1337.Size = new System.Drawing.Size(39, 20);
  3069. this.con1337.TabIndex = 925;
  3070. //
  3071. // con1340
  3072. //
  3073. this.myTableLayoutPanel1.SetColumnSpan(this.con1340, 3);
  3074. this.con1340.Dock = System.Windows.Forms.DockStyle.Fill;
  3075. this.con1340.Location = new System.Drawing.Point(1456, 493);
  3076. this.con1340.Margin = new System.Windows.Forms.Padding(0);
  3077. this.con1340.Name = "con1340";
  3078. this.myTableLayoutPanel1.SetRowSpan(this.con1340, 2);
  3079. this.con1340.Size = new System.Drawing.Size(39, 20);
  3080. this.con1340.TabIndex = 926;
  3081. //
  3082. // label4
  3083. //
  3084. this.label4.AutoSize = true;
  3085. this.label4.BackColor = System.Drawing.Color.Lime;
  3086. this.myTableLayoutPanel1.SetColumnSpan(this.label4, 3);
  3087. this.label4.Location = new System.Drawing.Point(1420, 453);
  3088. this.label4.Name = "label4";
  3089. this.myTableLayoutPanel1.SetRowSpan(this.label4, 2);
  3090. this.label4.Size = new System.Drawing.Size(22, 15);
  3091. this.label4.TabIndex = 927;
  3092. this.label4.Text = "出";
  3093. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3094. //
  3095. // con1387
  3096. //
  3097. this.myTableLayoutPanel1.SetColumnSpan(this.con1387, 3);
  3098. this.con1387.Dock = System.Windows.Forms.DockStyle.Fill;
  3099. this.con1387.Location = new System.Drawing.Point(1391, 263);
  3100. this.con1387.Margin = new System.Windows.Forms.Padding(0);
  3101. this.con1387.Name = "con1387";
  3102. this.myTableLayoutPanel1.SetRowSpan(this.con1387, 2);
  3103. this.con1387.Size = new System.Drawing.Size(39, 18);
  3104. this.con1387.TabIndex = 928;
  3105. //
  3106. // con1390
  3107. //
  3108. this.myTableLayoutPanel1.SetColumnSpan(this.con1390, 3);
  3109. this.con1390.Dock = System.Windows.Forms.DockStyle.Fill;
  3110. this.con1390.Location = new System.Drawing.Point(1391, 281);
  3111. this.con1390.Margin = new System.Windows.Forms.Padding(0);
  3112. this.con1390.Name = "con1390";
  3113. this.myTableLayoutPanel1.SetRowSpan(this.con1390, 2);
  3114. this.con1390.Size = new System.Drawing.Size(39, 18);
  3115. this.con1390.TabIndex = 929;
  3116. //
  3117. // con1392
  3118. //
  3119. this.myTableLayoutPanel1.SetColumnSpan(this.con1392, 3);
  3120. this.con1392.Dock = System.Windows.Forms.DockStyle.Fill;
  3121. this.con1392.Location = new System.Drawing.Point(1391, 299);
  3122. this.con1392.Margin = new System.Windows.Forms.Padding(0);
  3123. this.con1392.Name = "con1392";
  3124. this.myTableLayoutPanel1.SetRowSpan(this.con1392, 2);
  3125. this.con1392.Size = new System.Drawing.Size(39, 18);
  3126. this.con1392.TabIndex = 930;
  3127. //
  3128. // con1395
  3129. //
  3130. this.myTableLayoutPanel1.SetColumnSpan(this.con1395, 3);
  3131. this.con1395.Dock = System.Windows.Forms.DockStyle.Fill;
  3132. this.con1395.Location = new System.Drawing.Point(1534, 263);
  3133. this.con1395.Margin = new System.Windows.Forms.Padding(0);
  3134. this.con1395.Name = "con1395";
  3135. this.myTableLayoutPanel1.SetRowSpan(this.con1395, 2);
  3136. this.con1395.Size = new System.Drawing.Size(39, 18);
  3137. this.con1395.TabIndex = 931;
  3138. //
  3139. // con1398
  3140. //
  3141. this.myTableLayoutPanel1.SetColumnSpan(this.con1398, 3);
  3142. this.con1398.Dock = System.Windows.Forms.DockStyle.Fill;
  3143. this.con1398.Location = new System.Drawing.Point(1534, 281);
  3144. this.con1398.Margin = new System.Windows.Forms.Padding(0);
  3145. this.con1398.Name = "con1398";
  3146. this.myTableLayoutPanel1.SetRowSpan(this.con1398, 2);
  3147. this.con1398.Size = new System.Drawing.Size(39, 18);
  3148. this.con1398.TabIndex = 932;
  3149. //
  3150. // con1400
  3151. //
  3152. this.myTableLayoutPanel1.SetColumnSpan(this.con1400, 3);
  3153. this.con1400.Dock = System.Windows.Forms.DockStyle.Fill;
  3154. this.con1400.Location = new System.Drawing.Point(1534, 299);
  3155. this.con1400.Margin = new System.Windows.Forms.Padding(0);
  3156. this.con1400.Name = "con1400";
  3157. this.myTableLayoutPanel1.SetRowSpan(this.con1400, 2);
  3158. this.con1400.Size = new System.Drawing.Size(39, 18);
  3159. this.con1400.TabIndex = 933;
  3160. //
  3161. // con1334
  3162. //
  3163. this.myTableLayoutPanel1.SetColumnSpan(this.con1334, 3);
  3164. this.con1334.Dock = System.Windows.Forms.DockStyle.Fill;
  3165. this.con1334.Location = new System.Drawing.Point(1495, 453);
  3166. this.con1334.Margin = new System.Windows.Forms.Padding(0);
  3167. this.con1334.Name = "con1334";
  3168. this.myTableLayoutPanel1.SetRowSpan(this.con1334, 2);
  3169. this.con1334.Size = new System.Drawing.Size(39, 20);
  3170. this.con1334.TabIndex = 934;
  3171. //
  3172. // con1338
  3173. //
  3174. this.myTableLayoutPanel1.SetColumnSpan(this.con1338, 3);
  3175. this.con1338.Dock = System.Windows.Forms.DockStyle.Fill;
  3176. this.con1338.Location = new System.Drawing.Point(1495, 473);
  3177. this.con1338.Margin = new System.Windows.Forms.Padding(0);
  3178. this.con1338.Name = "con1338";
  3179. this.myTableLayoutPanel1.SetRowSpan(this.con1338, 2);
  3180. this.con1338.Size = new System.Drawing.Size(39, 20);
  3181. this.con1338.TabIndex = 935;
  3182. //
  3183. // con1341
  3184. //
  3185. this.myTableLayoutPanel1.SetColumnSpan(this.con1341, 3);
  3186. this.con1341.Dock = System.Windows.Forms.DockStyle.Fill;
  3187. this.con1341.Location = new System.Drawing.Point(1495, 493);
  3188. this.con1341.Margin = new System.Windows.Forms.Padding(0);
  3189. this.con1341.Name = "con1341";
  3190. this.myTableLayoutPanel1.SetRowSpan(this.con1341, 2);
  3191. this.con1341.Size = new System.Drawing.Size(39, 20);
  3192. this.con1341.TabIndex = 936;
  3193. //
  3194. // con1343
  3195. //
  3196. this.myTableLayoutPanel1.SetColumnSpan(this.con1343, 3);
  3197. this.con1343.Dock = System.Windows.Forms.DockStyle.Fill;
  3198. this.con1343.Location = new System.Drawing.Point(1456, 513);
  3199. this.con1343.Margin = new System.Windows.Forms.Padding(0);
  3200. this.con1343.Name = "con1343";
  3201. this.myTableLayoutPanel1.SetRowSpan(this.con1343, 2);
  3202. this.con1343.Size = new System.Drawing.Size(39, 20);
  3203. this.con1343.TabIndex = 937;
  3204. //
  3205. // con1344
  3206. //
  3207. this.myTableLayoutPanel1.SetColumnSpan(this.con1344, 3);
  3208. this.con1344.Dock = System.Windows.Forms.DockStyle.Fill;
  3209. this.con1344.Location = new System.Drawing.Point(1495, 513);
  3210. this.con1344.Margin = new System.Windows.Forms.Padding(0);
  3211. this.con1344.Name = "con1344";
  3212. this.myTableLayoutPanel1.SetRowSpan(this.con1344, 2);
  3213. this.con1344.Size = new System.Drawing.Size(39, 20);
  3214. this.con1344.TabIndex = 938;
  3215. //
  3216. // pnlDDJ1
  3217. //
  3218. this.pnlDDJ1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ1.BackgroundImage")));
  3219. this.pnlDDJ1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3220. this.pnlDDJ1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3221. this.pnlDDJ1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3222. this.pnlDDJ1.Controls.Add(this.lblInStatus1);
  3223. this.pnlDDJ1.Controls.Add(this.lblOutStatus1);
  3224. this.pnlDDJ1.Controls.Add(this.lblDDJWarning1);
  3225. this.pnlDDJ1.Controls.Add(this.ddjPosTo1);
  3226. this.pnlDDJ1.Controls.Add(this.ddjPosFrom1);
  3227. this.pnlDDJ1.Controls.Add(this.label84);
  3228. this.pnlDDJ1.Controls.Add(this.label85);
  3229. this.pnlDDJ1.Controls.Add(this.ddjMode1);
  3230. this.pnlDDJ1.Controls.Add(this.ddjOrdId1);
  3231. this.pnlDDJ1.Controls.Add(this.label137);
  3232. this.pnlDDJ1.Controls.Add(this.ddjOptType1);
  3233. this.pnlDDJ1.Controls.Add(this.label139);
  3234. this.pnlDDJ1.Controls.Add(this.ddjTotal_KM1);
  3235. this.pnlDDJ1.Controls.Add(this.label13);
  3236. this.pnlDDJ1.Controls.Add(this.ddjWorkTime1);
  3237. this.pnlDDJ1.Controls.Add(this.label10);
  3238. this.pnlDDJ1.Controls.Add(this.ddjStatus1);
  3239. this.pnlDDJ1.Controls.Add(this.ddjPosCurr1);
  3240. this.pnlDDJ1.Controls.Add(this.label5);
  3241. this.pnlDDJ1.Controls.Add(this.label3);
  3242. this.pnlDDJ1.Controls.Add(this.label2);
  3243. this.pnlDDJ1.Controls.Add(this.lblsrm01);
  3244. this.pnlDDJ1.Controls.Add(this.G1);
  3245. this.pnlDDJ1.Controls.Add(this.R1);
  3246. this.pnlDDJ1.Location = new System.Drawing.Point(0, 3);
  3247. this.pnlDDJ1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3248. this.pnlDDJ1.Name = "pnlDDJ1";
  3249. this.pnlDDJ1.Size = new System.Drawing.Size(217, 312);
  3250. this.pnlDDJ1.TabIndex = 25;
  3251. //
  3252. // lblInStatus1
  3253. //
  3254. this.lblInStatus1.BackColor = System.Drawing.Color.DarkGray;
  3255. this.lblInStatus1.Location = new System.Drawing.Point(7, 2);
  3256. this.lblInStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3257. this.lblInStatus1.Name = "lblInStatus1";
  3258. this.lblInStatus1.Size = new System.Drawing.Size(37, 30);
  3259. this.lblInStatus1.TabIndex = 94;
  3260. this.lblInStatus1.Tag = "1";
  3261. this.lblInStatus1.Text = "入";
  3262. this.lblInStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3263. //
  3264. // lblOutStatus1
  3265. //
  3266. this.lblOutStatus1.BackColor = System.Drawing.Color.DarkGray;
  3267. this.lblOutStatus1.Location = new System.Drawing.Point(169, 2);
  3268. this.lblOutStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3269. this.lblOutStatus1.Name = "lblOutStatus1";
  3270. this.lblOutStatus1.Size = new System.Drawing.Size(37, 30);
  3271. this.lblOutStatus1.TabIndex = 93;
  3272. this.lblOutStatus1.Text = "出";
  3273. this.lblOutStatus1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3274. //
  3275. // lblDDJWarning1
  3276. //
  3277. this.lblDDJWarning1.BackColor = System.Drawing.Color.Transparent;
  3278. this.lblDDJWarning1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3279. this.lblDDJWarning1.ForeColor = System.Drawing.Color.Red;
  3280. this.lblDDJWarning1.Location = new System.Drawing.Point(7, 58);
  3281. this.lblDDJWarning1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3282. this.lblDDJWarning1.Name = "lblDDJWarning1";
  3283. this.lblDDJWarning1.Size = new System.Drawing.Size(201, 30);
  3284. this.lblDDJWarning1.TabIndex = 92;
  3285. //
  3286. // ddjPosTo1
  3287. //
  3288. this.ddjPosTo1.AutoSize = true;
  3289. this.ddjPosTo1.BackColor = System.Drawing.Color.Transparent;
  3290. this.ddjPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3291. this.ddjPosTo1.ForeColor = System.Drawing.Color.Blue;
  3292. this.ddjPosTo1.Location = new System.Drawing.Point(119, 292);
  3293. this.ddjPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3294. this.ddjPosTo1.Name = "ddjPosTo1";
  3295. this.ddjPosTo1.Size = new System.Drawing.Size(31, 15);
  3296. this.ddjPosTo1.TabIndex = 73;
  3297. this.ddjPosTo1.Text = "---";
  3298. //
  3299. // ddjPosFrom1
  3300. //
  3301. this.ddjPosFrom1.AutoSize = true;
  3302. this.ddjPosFrom1.BackColor = System.Drawing.Color.Transparent;
  3303. this.ddjPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3304. this.ddjPosFrom1.ForeColor = System.Drawing.Color.Blue;
  3305. this.ddjPosFrom1.Location = new System.Drawing.Point(119, 265);
  3306. this.ddjPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3307. this.ddjPosFrom1.Name = "ddjPosFrom1";
  3308. this.ddjPosFrom1.Size = new System.Drawing.Size(31, 15);
  3309. this.ddjPosFrom1.TabIndex = 72;
  3310. this.ddjPosFrom1.Text = "---";
  3311. //
  3312. // label84
  3313. //
  3314. this.label84.AutoSize = true;
  3315. this.label84.BackColor = System.Drawing.Color.Transparent;
  3316. this.label84.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3317. this.label84.Location = new System.Drawing.Point(4, 265);
  3318. this.label84.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3319. this.label84.Name = "label84";
  3320. this.label84.Size = new System.Drawing.Size(82, 15);
  3321. this.label84.TabIndex = 71;
  3322. this.label84.Text = "起始位置:";
  3323. //
  3324. // label85
  3325. //
  3326. this.label85.AutoSize = true;
  3327. this.label85.BackColor = System.Drawing.Color.Transparent;
  3328. this.label85.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3329. this.label85.Location = new System.Drawing.Point(4, 292);
  3330. this.label85.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3331. this.label85.Name = "label85";
  3332. this.label85.Size = new System.Drawing.Size(82, 15);
  3333. this.label85.TabIndex = 70;
  3334. this.label85.Text = "目标位置:";
  3335. //
  3336. // ddjMode1
  3337. //
  3338. this.ddjMode1.AutoSize = true;
  3339. this.ddjMode1.BackColor = System.Drawing.Color.Transparent;
  3340. this.ddjMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3341. this.ddjMode1.ForeColor = System.Drawing.Color.Blue;
  3342. this.ddjMode1.Location = new System.Drawing.Point(116, 92);
  3343. this.ddjMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3344. this.ddjMode1.Name = "ddjMode1";
  3345. this.ddjMode1.Size = new System.Drawing.Size(31, 15);
  3346. this.ddjMode1.TabIndex = 12;
  3347. this.ddjMode1.Text = "---";
  3348. //
  3349. // ddjOrdId1
  3350. //
  3351. this.ddjOrdId1.AutoSize = true;
  3352. this.ddjOrdId1.BackColor = System.Drawing.Color.Transparent;
  3353. this.ddjOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3354. this.ddjOrdId1.ForeColor = System.Drawing.Color.Blue;
  3355. this.ddjOrdId1.Location = new System.Drawing.Point(116, 142);
  3356. this.ddjOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3357. this.ddjOrdId1.Name = "ddjOrdId1";
  3358. this.ddjOrdId1.Size = new System.Drawing.Size(31, 15);
  3359. this.ddjOrdId1.TabIndex = 64;
  3360. this.ddjOrdId1.Text = "---";
  3361. //
  3362. // label137
  3363. //
  3364. this.label137.AutoSize = true;
  3365. this.label137.BackColor = System.Drawing.Color.Transparent;
  3366. this.label137.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3367. this.label137.Location = new System.Drawing.Point(3, 142);
  3368. this.label137.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3369. this.label137.Name = "label137";
  3370. this.label137.Size = new System.Drawing.Size(82, 15);
  3371. this.label137.TabIndex = 63;
  3372. this.label137.Text = "工作指令:";
  3373. //
  3374. // ddjOptType1
  3375. //
  3376. this.ddjOptType1.AutoSize = true;
  3377. this.ddjOptType1.BackColor = System.Drawing.Color.Transparent;
  3378. this.ddjOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3379. this.ddjOptType1.ForeColor = System.Drawing.Color.Blue;
  3380. this.ddjOptType1.Location = new System.Drawing.Point(116, 162);
  3381. this.ddjOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3382. this.ddjOptType1.Name = "ddjOptType1";
  3383. this.ddjOptType1.Size = new System.Drawing.Size(31, 15);
  3384. this.ddjOptType1.TabIndex = 62;
  3385. this.ddjOptType1.Text = "---";
  3386. //
  3387. // label139
  3388. //
  3389. this.label139.AutoSize = true;
  3390. this.label139.BackColor = System.Drawing.Color.Transparent;
  3391. this.label139.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3392. this.label139.Location = new System.Drawing.Point(3, 162);
  3393. this.label139.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3394. this.label139.Name = "label139";
  3395. this.label139.Size = new System.Drawing.Size(82, 15);
  3396. this.label139.TabIndex = 61;
  3397. this.label139.Text = "作业类型:";
  3398. //
  3399. // ddjTotal_KM1
  3400. //
  3401. this.ddjTotal_KM1.AutoSize = true;
  3402. this.ddjTotal_KM1.BackColor = System.Drawing.Color.Transparent;
  3403. this.ddjTotal_KM1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3404. this.ddjTotal_KM1.ForeColor = System.Drawing.Color.Blue;
  3405. this.ddjTotal_KM1.Location = new System.Drawing.Point(117, 238);
  3406. this.ddjTotal_KM1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3407. this.ddjTotal_KM1.Name = "ddjTotal_KM1";
  3408. this.ddjTotal_KM1.Size = new System.Drawing.Size(31, 15);
  3409. this.ddjTotal_KM1.TabIndex = 16;
  3410. this.ddjTotal_KM1.Text = "---";
  3411. //
  3412. // label13
  3413. //
  3414. this.label13.AutoSize = true;
  3415. this.label13.BackColor = System.Drawing.Color.Transparent;
  3416. this.label13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3417. this.label13.Location = new System.Drawing.Point(3, 92);
  3418. this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3419. this.label13.Name = "label13";
  3420. this.label13.Size = new System.Drawing.Size(82, 15);
  3421. this.label13.TabIndex = 15;
  3422. this.label13.Text = "工作模式:";
  3423. //
  3424. // ddjWorkTime1
  3425. //
  3426. this.ddjWorkTime1.AutoSize = true;
  3427. this.ddjWorkTime1.BackColor = System.Drawing.Color.Transparent;
  3428. this.ddjWorkTime1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3429. this.ddjWorkTime1.ForeColor = System.Drawing.Color.Red;
  3430. this.ddjWorkTime1.Location = new System.Drawing.Point(116, 212);
  3431. this.ddjWorkTime1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3432. this.ddjWorkTime1.Name = "ddjWorkTime1";
  3433. this.ddjWorkTime1.Size = new System.Drawing.Size(31, 15);
  3434. this.ddjWorkTime1.TabIndex = 14;
  3435. this.ddjWorkTime1.Text = "---";
  3436. //
  3437. // label10
  3438. //
  3439. this.label10.AutoSize = true;
  3440. this.label10.BackColor = System.Drawing.Color.Transparent;
  3441. this.label10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3442. this.label10.Location = new System.Drawing.Point(3, 212);
  3443. this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3444. this.label10.Name = "label10";
  3445. this.label10.Size = new System.Drawing.Size(82, 15);
  3446. this.label10.TabIndex = 13;
  3447. this.label10.Text = "运行时长:";
  3448. //
  3449. // ddjStatus1
  3450. //
  3451. this.ddjStatus1.AutoSize = true;
  3452. this.ddjStatus1.BackColor = System.Drawing.Color.Transparent;
  3453. this.ddjStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3454. this.ddjStatus1.ForeColor = System.Drawing.Color.Blue;
  3455. this.ddjStatus1.Location = new System.Drawing.Point(116, 118);
  3456. this.ddjStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3457. this.ddjStatus1.Name = "ddjStatus1";
  3458. this.ddjStatus1.Size = new System.Drawing.Size(31, 15);
  3459. this.ddjStatus1.TabIndex = 10;
  3460. this.ddjStatus1.Text = "---";
  3461. //
  3462. // ddjPosCurr1
  3463. //
  3464. this.ddjPosCurr1.AutoSize = true;
  3465. this.ddjPosCurr1.BackColor = System.Drawing.Color.Transparent;
  3466. this.ddjPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3467. this.ddjPosCurr1.ForeColor = System.Drawing.Color.Blue;
  3468. this.ddjPosCurr1.Location = new System.Drawing.Point(117, 188);
  3469. this.ddjPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3470. this.ddjPosCurr1.Name = "ddjPosCurr1";
  3471. this.ddjPosCurr1.Size = new System.Drawing.Size(31, 15);
  3472. this.ddjPosCurr1.TabIndex = 9;
  3473. this.ddjPosCurr1.Text = "---";
  3474. //
  3475. // label5
  3476. //
  3477. this.label5.AutoSize = true;
  3478. this.label5.BackColor = System.Drawing.Color.Transparent;
  3479. this.label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3480. this.label5.Location = new System.Drawing.Point(3, 238);
  3481. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3482. this.label5.Name = "label5";
  3483. this.label5.Size = new System.Drawing.Size(83, 15);
  3484. this.label5.TabIndex = 8;
  3485. this.label5.Text = "里 程 数:";
  3486. //
  3487. // label3
  3488. //
  3489. this.label3.AutoSize = true;
  3490. this.label3.BackColor = System.Drawing.Color.Transparent;
  3491. this.label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3492. this.label3.Location = new System.Drawing.Point(3, 115);
  3493. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3494. this.label3.Name = "label3";
  3495. this.label3.Size = new System.Drawing.Size(82, 15);
  3496. this.label3.TabIndex = 6;
  3497. this.label3.Text = "工作状态:";
  3498. //
  3499. // label2
  3500. //
  3501. this.label2.AutoSize = true;
  3502. this.label2.BackColor = System.Drawing.Color.Transparent;
  3503. this.label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3504. this.label2.Location = new System.Drawing.Point(3, 188);
  3505. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3506. this.label2.Name = "label2";
  3507. this.label2.Size = new System.Drawing.Size(82, 15);
  3508. this.label2.TabIndex = 1;
  3509. this.label2.Text = "当前位置:";
  3510. //
  3511. // lblsrm01
  3512. //
  3513. this.lblsrm01.AutoSize = true;
  3514. this.lblsrm01.BackColor = System.Drawing.Color.Transparent;
  3515. 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)));
  3516. this.lblsrm01.Location = new System.Drawing.Point(40, 32);
  3517. this.lblsrm01.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3518. this.lblsrm01.Name = "lblsrm01";
  3519. this.lblsrm01.Size = new System.Drawing.Size(115, 20);
  3520. this.lblsrm01.TabIndex = 0;
  3521. this.lblsrm01.Text = "1号 堆垛机";
  3522. this.lblsrm01.Click += new System.EventHandler(this.lblsrm01_Click);
  3523. //
  3524. // G1
  3525. //
  3526. this.G1.BackColor = System.Drawing.Color.Transparent;
  3527. this.G1.Image = ((System.Drawing.Image)(resources.GetObject("G1.Image")));
  3528. this.G1.InitialImage = null;
  3529. this.G1.Location = new System.Drawing.Point(88, -2);
  3530. this.G1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3531. this.G1.Name = "G1";
  3532. this.G1.Size = new System.Drawing.Size(35, 32);
  3533. this.G1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3534. this.G1.TabIndex = 65;
  3535. this.G1.TabStop = false;
  3536. this.G1.Tag = "1";
  3537. //
  3538. // R1
  3539. //
  3540. this.R1.BackColor = System.Drawing.Color.Transparent;
  3541. this.R1.Location = new System.Drawing.Point(87, -2);
  3542. this.R1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3543. this.R1.Name = "R1";
  3544. this.R1.Size = new System.Drawing.Size(35, 32);
  3545. this.R1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3546. this.R1.TabIndex = 5;
  3547. this.R1.TabStop = false;
  3548. //
  3549. // pnlDDJ2
  3550. //
  3551. this.pnlDDJ2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ2.BackgroundImage")));
  3552. this.pnlDDJ2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3553. this.pnlDDJ2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3554. this.pnlDDJ2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3555. this.pnlDDJ2.Controls.Add(this.lblInStatus2);
  3556. this.pnlDDJ2.Controls.Add(this.lblOutStatus2);
  3557. this.pnlDDJ2.Controls.Add(this.lblDDJWarning2);
  3558. this.pnlDDJ2.Controls.Add(this.ddjPosTo2);
  3559. this.pnlDDJ2.Controls.Add(this.ddjPosFrom2);
  3560. this.pnlDDJ2.Controls.Add(this.label15);
  3561. this.pnlDDJ2.Controls.Add(this.label16);
  3562. this.pnlDDJ2.Controls.Add(this.ddjMode2);
  3563. this.pnlDDJ2.Controls.Add(this.ddjOrdId2);
  3564. this.pnlDDJ2.Controls.Add(this.label22);
  3565. this.pnlDDJ2.Controls.Add(this.ddjOptType2);
  3566. this.pnlDDJ2.Controls.Add(this.label26);
  3567. this.pnlDDJ2.Controls.Add(this.ddjTotal_KM2);
  3568. this.pnlDDJ2.Controls.Add(this.label29);
  3569. this.pnlDDJ2.Controls.Add(this.ddjWorkTime2);
  3570. this.pnlDDJ2.Controls.Add(this.label32);
  3571. this.pnlDDJ2.Controls.Add(this.ddjStatus2);
  3572. this.pnlDDJ2.Controls.Add(this.ddjPosCurr2);
  3573. this.pnlDDJ2.Controls.Add(this.label83);
  3574. this.pnlDDJ2.Controls.Add(this.label86);
  3575. this.pnlDDJ2.Controls.Add(this.label87);
  3576. this.pnlDDJ2.Controls.Add(this.lblsrm02);
  3577. this.pnlDDJ2.Controls.Add(this.G2);
  3578. this.pnlDDJ2.Controls.Add(this.pictureBox6);
  3579. this.pnlDDJ2.Location = new System.Drawing.Point(224, 3);
  3580. this.pnlDDJ2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3581. this.pnlDDJ2.Name = "pnlDDJ2";
  3582. this.pnlDDJ2.Size = new System.Drawing.Size(217, 312);
  3583. this.pnlDDJ2.TabIndex = 26;
  3584. //
  3585. // lblInStatus2
  3586. //
  3587. this.lblInStatus2.BackColor = System.Drawing.Color.DarkGray;
  3588. this.lblInStatus2.Location = new System.Drawing.Point(4, 2);
  3589. this.lblInStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3590. this.lblInStatus2.Name = "lblInStatus2";
  3591. this.lblInStatus2.Size = new System.Drawing.Size(37, 30);
  3592. this.lblInStatus2.TabIndex = 95;
  3593. this.lblInStatus2.Tag = "2";
  3594. this.lblInStatus2.Text = "入";
  3595. this.lblInStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3596. //
  3597. // lblOutStatus2
  3598. //
  3599. this.lblOutStatus2.BackColor = System.Drawing.Color.DarkGray;
  3600. this.lblOutStatus2.Location = new System.Drawing.Point(169, 2);
  3601. this.lblOutStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3602. this.lblOutStatus2.Name = "lblOutStatus2";
  3603. this.lblOutStatus2.Size = new System.Drawing.Size(37, 30);
  3604. this.lblOutStatus2.TabIndex = 94;
  3605. this.lblOutStatus2.Text = "出";
  3606. this.lblOutStatus2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3607. //
  3608. // lblDDJWarning2
  3609. //
  3610. this.lblDDJWarning2.BackColor = System.Drawing.Color.Transparent;
  3611. this.lblDDJWarning2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3612. this.lblDDJWarning2.ForeColor = System.Drawing.Color.Red;
  3613. this.lblDDJWarning2.Location = new System.Drawing.Point(5, 58);
  3614. this.lblDDJWarning2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3615. this.lblDDJWarning2.Name = "lblDDJWarning2";
  3616. this.lblDDJWarning2.Size = new System.Drawing.Size(205, 30);
  3617. this.lblDDJWarning2.TabIndex = 93;
  3618. //
  3619. // ddjPosTo2
  3620. //
  3621. this.ddjPosTo2.AutoSize = true;
  3622. this.ddjPosTo2.BackColor = System.Drawing.Color.Transparent;
  3623. this.ddjPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3624. this.ddjPosTo2.ForeColor = System.Drawing.Color.Blue;
  3625. this.ddjPosTo2.Location = new System.Drawing.Point(123, 290);
  3626. this.ddjPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3627. this.ddjPosTo2.Name = "ddjPosTo2";
  3628. this.ddjPosTo2.Size = new System.Drawing.Size(31, 15);
  3629. this.ddjPosTo2.TabIndex = 91;
  3630. this.ddjPosTo2.Text = "---";
  3631. //
  3632. // ddjPosFrom2
  3633. //
  3634. this.ddjPosFrom2.AutoSize = true;
  3635. this.ddjPosFrom2.BackColor = System.Drawing.Color.Transparent;
  3636. this.ddjPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3637. this.ddjPosFrom2.ForeColor = System.Drawing.Color.Blue;
  3638. this.ddjPosFrom2.Location = new System.Drawing.Point(123, 262);
  3639. this.ddjPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3640. this.ddjPosFrom2.Name = "ddjPosFrom2";
  3641. this.ddjPosFrom2.Size = new System.Drawing.Size(31, 15);
  3642. this.ddjPosFrom2.TabIndex = 90;
  3643. this.ddjPosFrom2.Text = "---";
  3644. //
  3645. // label15
  3646. //
  3647. this.label15.AutoSize = true;
  3648. this.label15.BackColor = System.Drawing.Color.Transparent;
  3649. this.label15.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3650. this.label15.Location = new System.Drawing.Point(5, 262);
  3651. this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3652. this.label15.Name = "label15";
  3653. this.label15.Size = new System.Drawing.Size(82, 15);
  3654. this.label15.TabIndex = 89;
  3655. this.label15.Text = "起始位置:";
  3656. //
  3657. // label16
  3658. //
  3659. this.label16.AutoSize = true;
  3660. this.label16.BackColor = System.Drawing.Color.Transparent;
  3661. this.label16.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3662. this.label16.Location = new System.Drawing.Point(5, 290);
  3663. this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3664. this.label16.Name = "label16";
  3665. this.label16.Size = new System.Drawing.Size(82, 15);
  3666. this.label16.TabIndex = 88;
  3667. this.label16.Text = "目标位置:";
  3668. //
  3669. // ddjMode2
  3670. //
  3671. this.ddjMode2.AutoSize = true;
  3672. this.ddjMode2.BackColor = System.Drawing.Color.Transparent;
  3673. this.ddjMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3674. this.ddjMode2.ForeColor = System.Drawing.Color.Blue;
  3675. this.ddjMode2.Location = new System.Drawing.Point(120, 90);
  3676. this.ddjMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3677. this.ddjMode2.Name = "ddjMode2";
  3678. this.ddjMode2.Size = new System.Drawing.Size(31, 15);
  3679. this.ddjMode2.TabIndex = 79;
  3680. this.ddjMode2.Text = "---";
  3681. //
  3682. // ddjOrdId2
  3683. //
  3684. this.ddjOrdId2.AutoSize = true;
  3685. this.ddjOrdId2.BackColor = System.Drawing.Color.Transparent;
  3686. this.ddjOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3687. this.ddjOrdId2.ForeColor = System.Drawing.Color.Blue;
  3688. this.ddjOrdId2.Location = new System.Drawing.Point(120, 140);
  3689. this.ddjOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3690. this.ddjOrdId2.Name = "ddjOrdId2";
  3691. this.ddjOrdId2.Size = new System.Drawing.Size(31, 15);
  3692. this.ddjOrdId2.TabIndex = 87;
  3693. this.ddjOrdId2.Text = "---";
  3694. //
  3695. // label22
  3696. //
  3697. this.label22.AutoSize = true;
  3698. this.label22.BackColor = System.Drawing.Color.Transparent;
  3699. this.label22.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3700. this.label22.Location = new System.Drawing.Point(5, 140);
  3701. this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3702. this.label22.Name = "label22";
  3703. this.label22.Size = new System.Drawing.Size(82, 15);
  3704. this.label22.TabIndex = 86;
  3705. this.label22.Text = "工作指令:";
  3706. //
  3707. // ddjOptType2
  3708. //
  3709. this.ddjOptType2.AutoSize = true;
  3710. this.ddjOptType2.BackColor = System.Drawing.Color.Transparent;
  3711. this.ddjOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3712. this.ddjOptType2.ForeColor = System.Drawing.Color.Blue;
  3713. this.ddjOptType2.Location = new System.Drawing.Point(120, 162);
  3714. this.ddjOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3715. this.ddjOptType2.Name = "ddjOptType2";
  3716. this.ddjOptType2.Size = new System.Drawing.Size(31, 15);
  3717. this.ddjOptType2.TabIndex = 85;
  3718. this.ddjOptType2.Text = "---";
  3719. //
  3720. // label26
  3721. //
  3722. this.label26.AutoSize = true;
  3723. this.label26.BackColor = System.Drawing.Color.Transparent;
  3724. this.label26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3725. this.label26.Location = new System.Drawing.Point(5, 162);
  3726. this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3727. this.label26.Name = "label26";
  3728. this.label26.Size = new System.Drawing.Size(82, 15);
  3729. this.label26.TabIndex = 84;
  3730. this.label26.Text = "作业类型:";
  3731. //
  3732. // ddjTotal_KM2
  3733. //
  3734. this.ddjTotal_KM2.AutoSize = true;
  3735. this.ddjTotal_KM2.BackColor = System.Drawing.Color.Transparent;
  3736. this.ddjTotal_KM2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3737. this.ddjTotal_KM2.ForeColor = System.Drawing.Color.Blue;
  3738. this.ddjTotal_KM2.Location = new System.Drawing.Point(121, 238);
  3739. this.ddjTotal_KM2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3740. this.ddjTotal_KM2.Name = "ddjTotal_KM2";
  3741. this.ddjTotal_KM2.Size = new System.Drawing.Size(31, 15);
  3742. this.ddjTotal_KM2.TabIndex = 83;
  3743. this.ddjTotal_KM2.Text = "---";
  3744. //
  3745. // label29
  3746. //
  3747. this.label29.AutoSize = true;
  3748. this.label29.BackColor = System.Drawing.Color.Transparent;
  3749. this.label29.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3750. this.label29.Location = new System.Drawing.Point(5, 90);
  3751. this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3752. this.label29.Name = "label29";
  3753. this.label29.Size = new System.Drawing.Size(82, 15);
  3754. this.label29.TabIndex = 82;
  3755. this.label29.Text = "工作模式:";
  3756. //
  3757. // ddjWorkTime2
  3758. //
  3759. this.ddjWorkTime2.AutoSize = true;
  3760. this.ddjWorkTime2.BackColor = System.Drawing.Color.Transparent;
  3761. this.ddjWorkTime2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3762. this.ddjWorkTime2.ForeColor = System.Drawing.Color.Red;
  3763. this.ddjWorkTime2.Location = new System.Drawing.Point(121, 212);
  3764. this.ddjWorkTime2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3765. this.ddjWorkTime2.Name = "ddjWorkTime2";
  3766. this.ddjWorkTime2.Size = new System.Drawing.Size(31, 15);
  3767. this.ddjWorkTime2.TabIndex = 81;
  3768. this.ddjWorkTime2.Text = "---";
  3769. //
  3770. // label32
  3771. //
  3772. this.label32.AutoSize = true;
  3773. this.label32.BackColor = System.Drawing.Color.Transparent;
  3774. this.label32.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3775. this.label32.Location = new System.Drawing.Point(5, 212);
  3776. this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3777. this.label32.Name = "label32";
  3778. this.label32.Size = new System.Drawing.Size(82, 15);
  3779. this.label32.TabIndex = 80;
  3780. this.label32.Text = "运行时长:";
  3781. //
  3782. // ddjStatus2
  3783. //
  3784. this.ddjStatus2.AutoSize = true;
  3785. this.ddjStatus2.BackColor = System.Drawing.Color.Transparent;
  3786. this.ddjStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3787. this.ddjStatus2.ForeColor = System.Drawing.Color.Blue;
  3788. this.ddjStatus2.Location = new System.Drawing.Point(120, 112);
  3789. this.ddjStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3790. this.ddjStatus2.Name = "ddjStatus2";
  3791. this.ddjStatus2.Size = new System.Drawing.Size(31, 15);
  3792. this.ddjStatus2.TabIndex = 78;
  3793. this.ddjStatus2.Text = "---";
  3794. //
  3795. // ddjPosCurr2
  3796. //
  3797. this.ddjPosCurr2.AutoSize = true;
  3798. this.ddjPosCurr2.BackColor = System.Drawing.Color.Transparent;
  3799. this.ddjPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3800. this.ddjPosCurr2.ForeColor = System.Drawing.Color.Blue;
  3801. this.ddjPosCurr2.Location = new System.Drawing.Point(121, 185);
  3802. this.ddjPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3803. this.ddjPosCurr2.Name = "ddjPosCurr2";
  3804. this.ddjPosCurr2.Size = new System.Drawing.Size(31, 15);
  3805. this.ddjPosCurr2.TabIndex = 77;
  3806. this.ddjPosCurr2.Text = "---";
  3807. //
  3808. // label83
  3809. //
  3810. this.label83.AutoSize = true;
  3811. this.label83.BackColor = System.Drawing.Color.Transparent;
  3812. this.label83.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3813. this.label83.Location = new System.Drawing.Point(5, 238);
  3814. this.label83.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3815. this.label83.Name = "label83";
  3816. this.label83.Size = new System.Drawing.Size(83, 15);
  3817. this.label83.TabIndex = 76;
  3818. this.label83.Text = "里 程 数:";
  3819. //
  3820. // label86
  3821. //
  3822. this.label86.AutoSize = true;
  3823. this.label86.BackColor = System.Drawing.Color.Transparent;
  3824. this.label86.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3825. this.label86.Location = new System.Drawing.Point(5, 112);
  3826. this.label86.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3827. this.label86.Name = "label86";
  3828. this.label86.Size = new System.Drawing.Size(82, 15);
  3829. this.label86.TabIndex = 75;
  3830. this.label86.Text = "工作状态:";
  3831. //
  3832. // label87
  3833. //
  3834. this.label87.AutoSize = true;
  3835. this.label87.BackColor = System.Drawing.Color.Transparent;
  3836. this.label87.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3837. this.label87.Location = new System.Drawing.Point(5, 185);
  3838. this.label87.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3839. this.label87.Name = "label87";
  3840. this.label87.Size = new System.Drawing.Size(82, 15);
  3841. this.label87.TabIndex = 74;
  3842. this.label87.Text = "当前巷道:";
  3843. //
  3844. // lblsrm02
  3845. //
  3846. this.lblsrm02.AutoSize = true;
  3847. this.lblsrm02.BackColor = System.Drawing.Color.Transparent;
  3848. 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)));
  3849. this.lblsrm02.Location = new System.Drawing.Point(51, 32);
  3850. this.lblsrm02.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3851. this.lblsrm02.Name = "lblsrm02";
  3852. this.lblsrm02.Size = new System.Drawing.Size(115, 20);
  3853. this.lblsrm02.TabIndex = 0;
  3854. this.lblsrm02.Text = "2号 堆垛机";
  3855. this.lblsrm02.Click += new System.EventHandler(this.lblsrm01_Click);
  3856. //
  3857. // G2
  3858. //
  3859. this.G2.BackColor = System.Drawing.Color.Transparent;
  3860. this.G2.Image = ((System.Drawing.Image)(resources.GetObject("G2.Image")));
  3861. this.G2.Location = new System.Drawing.Point(91, -2);
  3862. this.G2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3863. this.G2.Name = "G2";
  3864. this.G2.Size = new System.Drawing.Size(35, 32);
  3865. this.G2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3866. this.G2.TabIndex = 65;
  3867. this.G2.TabStop = false;
  3868. this.G2.Tag = "1";
  3869. //
  3870. // pictureBox6
  3871. //
  3872. this.pictureBox6.BackColor = System.Drawing.Color.Transparent;
  3873. this.pictureBox6.Location = new System.Drawing.Point(91, -2);
  3874. this.pictureBox6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3875. this.pictureBox6.Name = "pictureBox6";
  3876. this.pictureBox6.Size = new System.Drawing.Size(35, 32);
  3877. this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  3878. this.pictureBox6.TabIndex = 5;
  3879. this.pictureBox6.TabStop = false;
  3880. //
  3881. // pnlDDJ3
  3882. //
  3883. this.pnlDDJ3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ3.BackgroundImage")));
  3884. this.pnlDDJ3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  3885. this.pnlDDJ3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  3886. this.pnlDDJ3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3887. this.pnlDDJ3.Controls.Add(this.lblInStatus3);
  3888. this.pnlDDJ3.Controls.Add(this.lblOutStatus3);
  3889. this.pnlDDJ3.Controls.Add(this.lblDDJWarning3);
  3890. this.pnlDDJ3.Controls.Add(this.ddjPosTo3);
  3891. this.pnlDDJ3.Controls.Add(this.ddjPosFrom3);
  3892. this.pnlDDJ3.Controls.Add(this.label43);
  3893. this.pnlDDJ3.Controls.Add(this.label51);
  3894. this.pnlDDJ3.Controls.Add(this.ddjMode3);
  3895. this.pnlDDJ3.Controls.Add(this.ddjOrdId3);
  3896. this.pnlDDJ3.Controls.Add(this.label55);
  3897. this.pnlDDJ3.Controls.Add(this.ddjOptType3);
  3898. this.pnlDDJ3.Controls.Add(this.label57);
  3899. this.pnlDDJ3.Controls.Add(this.ddjTotal_KM3);
  3900. this.pnlDDJ3.Controls.Add(this.label59);
  3901. this.pnlDDJ3.Controls.Add(this.ddjWorkTime3);
  3902. this.pnlDDJ3.Controls.Add(this.label61);
  3903. this.pnlDDJ3.Controls.Add(this.ddjStatus3);
  3904. this.pnlDDJ3.Controls.Add(this.ddjPosCurr3);
  3905. this.pnlDDJ3.Controls.Add(this.label64);
  3906. this.pnlDDJ3.Controls.Add(this.label65);
  3907. this.pnlDDJ3.Controls.Add(this.label66);
  3908. this.pnlDDJ3.Controls.Add(this.lblsrm03);
  3909. this.pnlDDJ3.Controls.Add(this.G3);
  3910. this.pnlDDJ3.Controls.Add(this.pictureBox10);
  3911. this.pnlDDJ3.Location = new System.Drawing.Point(448, 3);
  3912. this.pnlDDJ3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  3913. this.pnlDDJ3.Name = "pnlDDJ3";
  3914. this.pnlDDJ3.Size = new System.Drawing.Size(217, 312);
  3915. this.pnlDDJ3.TabIndex = 28;
  3916. //
  3917. // lblInStatus3
  3918. //
  3919. this.lblInStatus3.BackColor = System.Drawing.Color.DarkGray;
  3920. this.lblInStatus3.Location = new System.Drawing.Point(4, 2);
  3921. this.lblInStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3922. this.lblInStatus3.Name = "lblInStatus3";
  3923. this.lblInStatus3.Size = new System.Drawing.Size(37, 30);
  3924. this.lblInStatus3.TabIndex = 96;
  3925. this.lblInStatus3.Tag = "3";
  3926. this.lblInStatus3.Text = "入";
  3927. this.lblInStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3928. //
  3929. // lblOutStatus3
  3930. //
  3931. this.lblOutStatus3.BackColor = System.Drawing.Color.DarkGray;
  3932. this.lblOutStatus3.Location = new System.Drawing.Point(172, 2);
  3933. this.lblOutStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3934. this.lblOutStatus3.Name = "lblOutStatus3";
  3935. this.lblOutStatus3.Size = new System.Drawing.Size(37, 30);
  3936. this.lblOutStatus3.TabIndex = 94;
  3937. this.lblOutStatus3.Text = "出";
  3938. this.lblOutStatus3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  3939. //
  3940. // lblDDJWarning3
  3941. //
  3942. this.lblDDJWarning3.BackColor = System.Drawing.Color.Transparent;
  3943. this.lblDDJWarning3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3944. this.lblDDJWarning3.ForeColor = System.Drawing.Color.Red;
  3945. this.lblDDJWarning3.Location = new System.Drawing.Point(7, 58);
  3946. this.lblDDJWarning3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3947. this.lblDDJWarning3.Name = "lblDDJWarning3";
  3948. this.lblDDJWarning3.Size = new System.Drawing.Size(201, 30);
  3949. this.lblDDJWarning3.TabIndex = 92;
  3950. //
  3951. // ddjPosTo3
  3952. //
  3953. this.ddjPosTo3.AutoSize = true;
  3954. this.ddjPosTo3.BackColor = System.Drawing.Color.Transparent;
  3955. this.ddjPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3956. this.ddjPosTo3.ForeColor = System.Drawing.Color.Blue;
  3957. this.ddjPosTo3.Location = new System.Drawing.Point(119, 292);
  3958. this.ddjPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3959. this.ddjPosTo3.Name = "ddjPosTo3";
  3960. this.ddjPosTo3.Size = new System.Drawing.Size(31, 15);
  3961. this.ddjPosTo3.TabIndex = 73;
  3962. this.ddjPosTo3.Text = "---";
  3963. //
  3964. // ddjPosFrom3
  3965. //
  3966. this.ddjPosFrom3.AutoSize = true;
  3967. this.ddjPosFrom3.BackColor = System.Drawing.Color.Transparent;
  3968. this.ddjPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3969. this.ddjPosFrom3.ForeColor = System.Drawing.Color.Blue;
  3970. this.ddjPosFrom3.Location = new System.Drawing.Point(119, 265);
  3971. this.ddjPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3972. this.ddjPosFrom3.Name = "ddjPosFrom3";
  3973. this.ddjPosFrom3.Size = new System.Drawing.Size(31, 15);
  3974. this.ddjPosFrom3.TabIndex = 72;
  3975. this.ddjPosFrom3.Text = "---";
  3976. //
  3977. // label43
  3978. //
  3979. this.label43.AutoSize = true;
  3980. this.label43.BackColor = System.Drawing.Color.Transparent;
  3981. this.label43.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3982. this.label43.Location = new System.Drawing.Point(4, 265);
  3983. this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3984. this.label43.Name = "label43";
  3985. this.label43.Size = new System.Drawing.Size(82, 15);
  3986. this.label43.TabIndex = 71;
  3987. this.label43.Text = "起始位置:";
  3988. //
  3989. // label51
  3990. //
  3991. this.label51.AutoSize = true;
  3992. this.label51.BackColor = System.Drawing.Color.Transparent;
  3993. this.label51.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3994. this.label51.Location = new System.Drawing.Point(4, 292);
  3995. this.label51.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  3996. this.label51.Name = "label51";
  3997. this.label51.Size = new System.Drawing.Size(82, 15);
  3998. this.label51.TabIndex = 70;
  3999. this.label51.Text = "目标位置:";
  4000. //
  4001. // ddjMode3
  4002. //
  4003. this.ddjMode3.AutoSize = true;
  4004. this.ddjMode3.BackColor = System.Drawing.Color.Transparent;
  4005. this.ddjMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4006. this.ddjMode3.ForeColor = System.Drawing.Color.Blue;
  4007. this.ddjMode3.Location = new System.Drawing.Point(116, 92);
  4008. this.ddjMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4009. this.ddjMode3.Name = "ddjMode3";
  4010. this.ddjMode3.Size = new System.Drawing.Size(31, 15);
  4011. this.ddjMode3.TabIndex = 12;
  4012. this.ddjMode3.Text = "---";
  4013. //
  4014. // ddjOrdId3
  4015. //
  4016. this.ddjOrdId3.AutoSize = true;
  4017. this.ddjOrdId3.BackColor = System.Drawing.Color.Transparent;
  4018. this.ddjOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4019. this.ddjOrdId3.ForeColor = System.Drawing.Color.Blue;
  4020. this.ddjOrdId3.Location = new System.Drawing.Point(116, 142);
  4021. this.ddjOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4022. this.ddjOrdId3.Name = "ddjOrdId3";
  4023. this.ddjOrdId3.Size = new System.Drawing.Size(31, 15);
  4024. this.ddjOrdId3.TabIndex = 64;
  4025. this.ddjOrdId3.Text = "---";
  4026. //
  4027. // label55
  4028. //
  4029. this.label55.AutoSize = true;
  4030. this.label55.BackColor = System.Drawing.Color.Transparent;
  4031. this.label55.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4032. this.label55.Location = new System.Drawing.Point(3, 142);
  4033. this.label55.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4034. this.label55.Name = "label55";
  4035. this.label55.Size = new System.Drawing.Size(82, 15);
  4036. this.label55.TabIndex = 63;
  4037. this.label55.Text = "工作指令:";
  4038. //
  4039. // ddjOptType3
  4040. //
  4041. this.ddjOptType3.AutoSize = true;
  4042. this.ddjOptType3.BackColor = System.Drawing.Color.Transparent;
  4043. this.ddjOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4044. this.ddjOptType3.ForeColor = System.Drawing.Color.Blue;
  4045. this.ddjOptType3.Location = new System.Drawing.Point(116, 162);
  4046. this.ddjOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4047. this.ddjOptType3.Name = "ddjOptType3";
  4048. this.ddjOptType3.Size = new System.Drawing.Size(31, 15);
  4049. this.ddjOptType3.TabIndex = 62;
  4050. this.ddjOptType3.Text = "---";
  4051. //
  4052. // label57
  4053. //
  4054. this.label57.AutoSize = true;
  4055. this.label57.BackColor = System.Drawing.Color.Transparent;
  4056. this.label57.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4057. this.label57.Location = new System.Drawing.Point(3, 162);
  4058. this.label57.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4059. this.label57.Name = "label57";
  4060. this.label57.Size = new System.Drawing.Size(82, 15);
  4061. this.label57.TabIndex = 61;
  4062. this.label57.Text = "作业类型:";
  4063. //
  4064. // ddjTotal_KM3
  4065. //
  4066. this.ddjTotal_KM3.AutoSize = true;
  4067. this.ddjTotal_KM3.BackColor = System.Drawing.Color.Transparent;
  4068. this.ddjTotal_KM3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4069. this.ddjTotal_KM3.ForeColor = System.Drawing.Color.Blue;
  4070. this.ddjTotal_KM3.Location = new System.Drawing.Point(117, 238);
  4071. this.ddjTotal_KM3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4072. this.ddjTotal_KM3.Name = "ddjTotal_KM3";
  4073. this.ddjTotal_KM3.Size = new System.Drawing.Size(31, 15);
  4074. this.ddjTotal_KM3.TabIndex = 16;
  4075. this.ddjTotal_KM3.Text = "---";
  4076. //
  4077. // label59
  4078. //
  4079. this.label59.AutoSize = true;
  4080. this.label59.BackColor = System.Drawing.Color.Transparent;
  4081. this.label59.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4082. this.label59.Location = new System.Drawing.Point(3, 92);
  4083. this.label59.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4084. this.label59.Name = "label59";
  4085. this.label59.Size = new System.Drawing.Size(82, 15);
  4086. this.label59.TabIndex = 15;
  4087. this.label59.Text = "工作模式:";
  4088. //
  4089. // ddjWorkTime3
  4090. //
  4091. this.ddjWorkTime3.AutoSize = true;
  4092. this.ddjWorkTime3.BackColor = System.Drawing.Color.Transparent;
  4093. this.ddjWorkTime3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4094. this.ddjWorkTime3.ForeColor = System.Drawing.Color.Red;
  4095. this.ddjWorkTime3.Location = new System.Drawing.Point(117, 212);
  4096. this.ddjWorkTime3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4097. this.ddjWorkTime3.Name = "ddjWorkTime3";
  4098. this.ddjWorkTime3.Size = new System.Drawing.Size(31, 15);
  4099. this.ddjWorkTime3.TabIndex = 14;
  4100. this.ddjWorkTime3.Text = "---";
  4101. //
  4102. // label61
  4103. //
  4104. this.label61.AutoSize = true;
  4105. this.label61.BackColor = System.Drawing.Color.Transparent;
  4106. this.label61.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4107. this.label61.Location = new System.Drawing.Point(3, 212);
  4108. this.label61.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4109. this.label61.Name = "label61";
  4110. this.label61.Size = new System.Drawing.Size(82, 15);
  4111. this.label61.TabIndex = 13;
  4112. this.label61.Text = "运行时长:";
  4113. //
  4114. // ddjStatus3
  4115. //
  4116. this.ddjStatus3.AutoSize = true;
  4117. this.ddjStatus3.BackColor = System.Drawing.Color.Transparent;
  4118. this.ddjStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4119. this.ddjStatus3.ForeColor = System.Drawing.Color.Blue;
  4120. this.ddjStatus3.Location = new System.Drawing.Point(116, 118);
  4121. this.ddjStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4122. this.ddjStatus3.Name = "ddjStatus3";
  4123. this.ddjStatus3.Size = new System.Drawing.Size(31, 15);
  4124. this.ddjStatus3.TabIndex = 10;
  4125. this.ddjStatus3.Text = "---";
  4126. //
  4127. // ddjPosCurr3
  4128. //
  4129. this.ddjPosCurr3.AutoSize = true;
  4130. this.ddjPosCurr3.BackColor = System.Drawing.Color.Transparent;
  4131. this.ddjPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4132. this.ddjPosCurr3.ForeColor = System.Drawing.Color.Blue;
  4133. this.ddjPosCurr3.Location = new System.Drawing.Point(117, 188);
  4134. this.ddjPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4135. this.ddjPosCurr3.Name = "ddjPosCurr3";
  4136. this.ddjPosCurr3.Size = new System.Drawing.Size(31, 15);
  4137. this.ddjPosCurr3.TabIndex = 9;
  4138. this.ddjPosCurr3.Text = "---";
  4139. //
  4140. // label64
  4141. //
  4142. this.label64.AutoSize = true;
  4143. this.label64.BackColor = System.Drawing.Color.Transparent;
  4144. this.label64.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4145. this.label64.Location = new System.Drawing.Point(3, 238);
  4146. this.label64.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4147. this.label64.Name = "label64";
  4148. this.label64.Size = new System.Drawing.Size(83, 15);
  4149. this.label64.TabIndex = 8;
  4150. this.label64.Text = "里 程 数:";
  4151. //
  4152. // label65
  4153. //
  4154. this.label65.AutoSize = true;
  4155. this.label65.BackColor = System.Drawing.Color.Transparent;
  4156. this.label65.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4157. this.label65.Location = new System.Drawing.Point(3, 115);
  4158. this.label65.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4159. this.label65.Name = "label65";
  4160. this.label65.Size = new System.Drawing.Size(82, 15);
  4161. this.label65.TabIndex = 6;
  4162. this.label65.Text = "工作状态:";
  4163. //
  4164. // label66
  4165. //
  4166. this.label66.AutoSize = true;
  4167. this.label66.BackColor = System.Drawing.Color.Transparent;
  4168. this.label66.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4169. this.label66.Location = new System.Drawing.Point(3, 188);
  4170. this.label66.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4171. this.label66.Name = "label66";
  4172. this.label66.Size = new System.Drawing.Size(82, 15);
  4173. this.label66.TabIndex = 1;
  4174. this.label66.Text = "当前巷道:";
  4175. //
  4176. // lblsrm03
  4177. //
  4178. this.lblsrm03.AutoSize = true;
  4179. this.lblsrm03.BackColor = System.Drawing.Color.Transparent;
  4180. 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)));
  4181. this.lblsrm03.Location = new System.Drawing.Point(40, 32);
  4182. this.lblsrm03.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4183. this.lblsrm03.Name = "lblsrm03";
  4184. this.lblsrm03.Size = new System.Drawing.Size(115, 20);
  4185. this.lblsrm03.TabIndex = 0;
  4186. this.lblsrm03.Text = "3号 堆垛机";
  4187. this.lblsrm03.Click += new System.EventHandler(this.lblsrm01_Click);
  4188. //
  4189. // G3
  4190. //
  4191. this.G3.BackColor = System.Drawing.Color.Transparent;
  4192. this.G3.Image = ((System.Drawing.Image)(resources.GetObject("G3.Image")));
  4193. this.G3.Location = new System.Drawing.Point(88, -2);
  4194. this.G3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4195. this.G3.Name = "G3";
  4196. this.G3.Size = new System.Drawing.Size(35, 32);
  4197. this.G3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4198. this.G3.TabIndex = 65;
  4199. this.G3.TabStop = false;
  4200. this.G3.Tag = "1";
  4201. //
  4202. // pictureBox10
  4203. //
  4204. this.pictureBox10.BackColor = System.Drawing.Color.Transparent;
  4205. this.pictureBox10.Location = new System.Drawing.Point(87, -2);
  4206. this.pictureBox10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4207. this.pictureBox10.Name = "pictureBox10";
  4208. this.pictureBox10.Size = new System.Drawing.Size(35, 32);
  4209. this.pictureBox10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4210. this.pictureBox10.TabIndex = 5;
  4211. this.pictureBox10.TabStop = false;
  4212. //
  4213. // pnlDDJ4
  4214. //
  4215. this.pnlDDJ4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlDDJ4.BackgroundImage")));
  4216. this.pnlDDJ4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4217. this.pnlDDJ4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4218. this.pnlDDJ4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4219. this.pnlDDJ4.Controls.Add(this.lblInStatus4);
  4220. this.pnlDDJ4.Controls.Add(this.lblOutStatus4);
  4221. this.pnlDDJ4.Controls.Add(this.lblDDJWarning4);
  4222. this.pnlDDJ4.Controls.Add(this.ddjPosTo4);
  4223. this.pnlDDJ4.Controls.Add(this.ddjPosFrom4);
  4224. this.pnlDDJ4.Controls.Add(this.label71);
  4225. this.pnlDDJ4.Controls.Add(this.label72);
  4226. this.pnlDDJ4.Controls.Add(this.ddjMode4);
  4227. this.pnlDDJ4.Controls.Add(this.ddjOrdId4);
  4228. this.pnlDDJ4.Controls.Add(this.label75);
  4229. this.pnlDDJ4.Controls.Add(this.ddjOptType4);
  4230. this.pnlDDJ4.Controls.Add(this.label77);
  4231. this.pnlDDJ4.Controls.Add(this.ddjTotal_KM4);
  4232. this.pnlDDJ4.Controls.Add(this.label79);
  4233. this.pnlDDJ4.Controls.Add(this.ddjWorkTime4);
  4234. this.pnlDDJ4.Controls.Add(this.label81);
  4235. this.pnlDDJ4.Controls.Add(this.ddjStatus4);
  4236. this.pnlDDJ4.Controls.Add(this.ddjPosCurr4);
  4237. this.pnlDDJ4.Controls.Add(this.label89);
  4238. this.pnlDDJ4.Controls.Add(this.label90);
  4239. this.pnlDDJ4.Controls.Add(this.label91);
  4240. this.pnlDDJ4.Controls.Add(this.lblsrm04);
  4241. this.pnlDDJ4.Controls.Add(this.G4);
  4242. this.pnlDDJ4.Controls.Add(this.pictureBox14);
  4243. this.pnlDDJ4.Location = new System.Drawing.Point(672, 2);
  4244. this.pnlDDJ4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4245. this.pnlDDJ4.Name = "pnlDDJ4";
  4246. this.pnlDDJ4.Size = new System.Drawing.Size(217, 312);
  4247. this.pnlDDJ4.TabIndex = 29;
  4248. //
  4249. // lblInStatus4
  4250. //
  4251. this.lblInStatus4.BackColor = System.Drawing.Color.DarkGray;
  4252. this.lblInStatus4.Location = new System.Drawing.Point(7, 2);
  4253. this.lblInStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4254. this.lblInStatus4.Name = "lblInStatus4";
  4255. this.lblInStatus4.Size = new System.Drawing.Size(37, 30);
  4256. this.lblInStatus4.TabIndex = 97;
  4257. this.lblInStatus4.Tag = "4";
  4258. this.lblInStatus4.Text = "入";
  4259. this.lblInStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4260. //
  4261. // lblOutStatus4
  4262. //
  4263. this.lblOutStatus4.BackColor = System.Drawing.Color.DarkGray;
  4264. this.lblOutStatus4.Location = new System.Drawing.Point(165, 2);
  4265. this.lblOutStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4266. this.lblOutStatus4.Name = "lblOutStatus4";
  4267. this.lblOutStatus4.Size = new System.Drawing.Size(37, 30);
  4268. this.lblOutStatus4.TabIndex = 94;
  4269. this.lblOutStatus4.Text = "出";
  4270. this.lblOutStatus4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4271. //
  4272. // lblDDJWarning4
  4273. //
  4274. this.lblDDJWarning4.BackColor = System.Drawing.Color.Transparent;
  4275. this.lblDDJWarning4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4276. this.lblDDJWarning4.ForeColor = System.Drawing.Color.Red;
  4277. this.lblDDJWarning4.Location = new System.Drawing.Point(7, 58);
  4278. this.lblDDJWarning4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4279. this.lblDDJWarning4.Name = "lblDDJWarning4";
  4280. this.lblDDJWarning4.Size = new System.Drawing.Size(201, 30);
  4281. this.lblDDJWarning4.TabIndex = 92;
  4282. //
  4283. // ddjPosTo4
  4284. //
  4285. this.ddjPosTo4.AutoSize = true;
  4286. this.ddjPosTo4.BackColor = System.Drawing.Color.Transparent;
  4287. this.ddjPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4288. this.ddjPosTo4.ForeColor = System.Drawing.Color.Blue;
  4289. this.ddjPosTo4.Location = new System.Drawing.Point(119, 292);
  4290. this.ddjPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4291. this.ddjPosTo4.Name = "ddjPosTo4";
  4292. this.ddjPosTo4.Size = new System.Drawing.Size(31, 15);
  4293. this.ddjPosTo4.TabIndex = 73;
  4294. this.ddjPosTo4.Text = "---";
  4295. //
  4296. // ddjPosFrom4
  4297. //
  4298. this.ddjPosFrom4.AutoSize = true;
  4299. this.ddjPosFrom4.BackColor = System.Drawing.Color.Transparent;
  4300. this.ddjPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4301. this.ddjPosFrom4.ForeColor = System.Drawing.Color.Blue;
  4302. this.ddjPosFrom4.Location = new System.Drawing.Point(119, 265);
  4303. this.ddjPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4304. this.ddjPosFrom4.Name = "ddjPosFrom4";
  4305. this.ddjPosFrom4.Size = new System.Drawing.Size(31, 15);
  4306. this.ddjPosFrom4.TabIndex = 72;
  4307. this.ddjPosFrom4.Text = "---";
  4308. //
  4309. // label71
  4310. //
  4311. this.label71.AutoSize = true;
  4312. this.label71.BackColor = System.Drawing.Color.Transparent;
  4313. this.label71.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4314. this.label71.Location = new System.Drawing.Point(4, 265);
  4315. this.label71.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4316. this.label71.Name = "label71";
  4317. this.label71.Size = new System.Drawing.Size(82, 15);
  4318. this.label71.TabIndex = 71;
  4319. this.label71.Text = "起始位置:";
  4320. //
  4321. // label72
  4322. //
  4323. this.label72.AutoSize = true;
  4324. this.label72.BackColor = System.Drawing.Color.Transparent;
  4325. this.label72.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4326. this.label72.Location = new System.Drawing.Point(4, 292);
  4327. this.label72.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4328. this.label72.Name = "label72";
  4329. this.label72.Size = new System.Drawing.Size(82, 15);
  4330. this.label72.TabIndex = 70;
  4331. this.label72.Text = "目标位置:";
  4332. //
  4333. // ddjMode4
  4334. //
  4335. this.ddjMode4.AutoSize = true;
  4336. this.ddjMode4.BackColor = System.Drawing.Color.Transparent;
  4337. this.ddjMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4338. this.ddjMode4.ForeColor = System.Drawing.Color.Blue;
  4339. this.ddjMode4.Location = new System.Drawing.Point(116, 92);
  4340. this.ddjMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4341. this.ddjMode4.Name = "ddjMode4";
  4342. this.ddjMode4.Size = new System.Drawing.Size(31, 15);
  4343. this.ddjMode4.TabIndex = 12;
  4344. this.ddjMode4.Text = "---";
  4345. //
  4346. // ddjOrdId4
  4347. //
  4348. this.ddjOrdId4.AutoSize = true;
  4349. this.ddjOrdId4.BackColor = System.Drawing.Color.Transparent;
  4350. this.ddjOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4351. this.ddjOrdId4.ForeColor = System.Drawing.Color.Blue;
  4352. this.ddjOrdId4.Location = new System.Drawing.Point(116, 142);
  4353. this.ddjOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4354. this.ddjOrdId4.Name = "ddjOrdId4";
  4355. this.ddjOrdId4.Size = new System.Drawing.Size(31, 15);
  4356. this.ddjOrdId4.TabIndex = 64;
  4357. this.ddjOrdId4.Text = "---";
  4358. //
  4359. // label75
  4360. //
  4361. this.label75.AutoSize = true;
  4362. this.label75.BackColor = System.Drawing.Color.Transparent;
  4363. this.label75.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4364. this.label75.Location = new System.Drawing.Point(3, 142);
  4365. this.label75.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4366. this.label75.Name = "label75";
  4367. this.label75.Size = new System.Drawing.Size(82, 15);
  4368. this.label75.TabIndex = 63;
  4369. this.label75.Text = "工作指令:";
  4370. //
  4371. // ddjOptType4
  4372. //
  4373. this.ddjOptType4.AutoSize = true;
  4374. this.ddjOptType4.BackColor = System.Drawing.Color.Transparent;
  4375. this.ddjOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4376. this.ddjOptType4.ForeColor = System.Drawing.Color.Blue;
  4377. this.ddjOptType4.Location = new System.Drawing.Point(116, 162);
  4378. this.ddjOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4379. this.ddjOptType4.Name = "ddjOptType4";
  4380. this.ddjOptType4.Size = new System.Drawing.Size(31, 15);
  4381. this.ddjOptType4.TabIndex = 62;
  4382. this.ddjOptType4.Text = "---";
  4383. //
  4384. // label77
  4385. //
  4386. this.label77.AutoSize = true;
  4387. this.label77.BackColor = System.Drawing.Color.Transparent;
  4388. this.label77.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4389. this.label77.Location = new System.Drawing.Point(3, 162);
  4390. this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4391. this.label77.Name = "label77";
  4392. this.label77.Size = new System.Drawing.Size(82, 15);
  4393. this.label77.TabIndex = 61;
  4394. this.label77.Text = "作业类型:";
  4395. //
  4396. // ddjTotal_KM4
  4397. //
  4398. this.ddjTotal_KM4.AutoSize = true;
  4399. this.ddjTotal_KM4.BackColor = System.Drawing.Color.Transparent;
  4400. this.ddjTotal_KM4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4401. this.ddjTotal_KM4.ForeColor = System.Drawing.Color.Blue;
  4402. this.ddjTotal_KM4.Location = new System.Drawing.Point(117, 238);
  4403. this.ddjTotal_KM4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4404. this.ddjTotal_KM4.Name = "ddjTotal_KM4";
  4405. this.ddjTotal_KM4.Size = new System.Drawing.Size(31, 15);
  4406. this.ddjTotal_KM4.TabIndex = 16;
  4407. this.ddjTotal_KM4.Text = "---";
  4408. //
  4409. // label79
  4410. //
  4411. this.label79.AutoSize = true;
  4412. this.label79.BackColor = System.Drawing.Color.Transparent;
  4413. this.label79.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4414. this.label79.Location = new System.Drawing.Point(3, 92);
  4415. this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4416. this.label79.Name = "label79";
  4417. this.label79.Size = new System.Drawing.Size(82, 15);
  4418. this.label79.TabIndex = 15;
  4419. this.label79.Text = "工作模式:";
  4420. //
  4421. // ddjWorkTime4
  4422. //
  4423. this.ddjWorkTime4.AutoSize = true;
  4424. this.ddjWorkTime4.BackColor = System.Drawing.Color.Transparent;
  4425. this.ddjWorkTime4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4426. this.ddjWorkTime4.ForeColor = System.Drawing.Color.Red;
  4427. this.ddjWorkTime4.Location = new System.Drawing.Point(117, 212);
  4428. this.ddjWorkTime4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4429. this.ddjWorkTime4.Name = "ddjWorkTime4";
  4430. this.ddjWorkTime4.Size = new System.Drawing.Size(31, 15);
  4431. this.ddjWorkTime4.TabIndex = 14;
  4432. this.ddjWorkTime4.Text = "---";
  4433. //
  4434. // label81
  4435. //
  4436. this.label81.AutoSize = true;
  4437. this.label81.BackColor = System.Drawing.Color.Transparent;
  4438. this.label81.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4439. this.label81.Location = new System.Drawing.Point(3, 212);
  4440. this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4441. this.label81.Name = "label81";
  4442. this.label81.Size = new System.Drawing.Size(82, 15);
  4443. this.label81.TabIndex = 13;
  4444. this.label81.Text = "运行时长:";
  4445. //
  4446. // ddjStatus4
  4447. //
  4448. this.ddjStatus4.AutoSize = true;
  4449. this.ddjStatus4.BackColor = System.Drawing.Color.Transparent;
  4450. this.ddjStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4451. this.ddjStatus4.ForeColor = System.Drawing.Color.Blue;
  4452. this.ddjStatus4.Location = new System.Drawing.Point(116, 115);
  4453. this.ddjStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4454. this.ddjStatus4.Name = "ddjStatus4";
  4455. this.ddjStatus4.Size = new System.Drawing.Size(31, 15);
  4456. this.ddjStatus4.TabIndex = 10;
  4457. this.ddjStatus4.Text = "---";
  4458. //
  4459. // ddjPosCurr4
  4460. //
  4461. this.ddjPosCurr4.AutoSize = true;
  4462. this.ddjPosCurr4.BackColor = System.Drawing.Color.Transparent;
  4463. this.ddjPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4464. this.ddjPosCurr4.ForeColor = System.Drawing.Color.Blue;
  4465. this.ddjPosCurr4.Location = new System.Drawing.Point(117, 188);
  4466. this.ddjPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4467. this.ddjPosCurr4.Name = "ddjPosCurr4";
  4468. this.ddjPosCurr4.Size = new System.Drawing.Size(31, 15);
  4469. this.ddjPosCurr4.TabIndex = 9;
  4470. this.ddjPosCurr4.Text = "---";
  4471. //
  4472. // label89
  4473. //
  4474. this.label89.AutoSize = true;
  4475. this.label89.BackColor = System.Drawing.Color.Transparent;
  4476. this.label89.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4477. this.label89.Location = new System.Drawing.Point(3, 238);
  4478. this.label89.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4479. this.label89.Name = "label89";
  4480. this.label89.Size = new System.Drawing.Size(83, 15);
  4481. this.label89.TabIndex = 8;
  4482. this.label89.Text = "里 程 数:";
  4483. //
  4484. // label90
  4485. //
  4486. this.label90.AutoSize = true;
  4487. this.label90.BackColor = System.Drawing.Color.Transparent;
  4488. this.label90.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4489. this.label90.Location = new System.Drawing.Point(3, 115);
  4490. this.label90.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4491. this.label90.Name = "label90";
  4492. this.label90.Size = new System.Drawing.Size(82, 15);
  4493. this.label90.TabIndex = 6;
  4494. this.label90.Text = "工作状态:";
  4495. //
  4496. // label91
  4497. //
  4498. this.label91.AutoSize = true;
  4499. this.label91.BackColor = System.Drawing.Color.Transparent;
  4500. this.label91.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4501. this.label91.Location = new System.Drawing.Point(3, 188);
  4502. this.label91.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4503. this.label91.Name = "label91";
  4504. this.label91.Size = new System.Drawing.Size(82, 15);
  4505. this.label91.TabIndex = 1;
  4506. this.label91.Text = "当前巷道:";
  4507. //
  4508. // lblsrm04
  4509. //
  4510. this.lblsrm04.AutoSize = true;
  4511. this.lblsrm04.BackColor = System.Drawing.Color.Transparent;
  4512. 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)));
  4513. this.lblsrm04.Location = new System.Drawing.Point(40, 32);
  4514. this.lblsrm04.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4515. this.lblsrm04.Name = "lblsrm04";
  4516. this.lblsrm04.Size = new System.Drawing.Size(115, 20);
  4517. this.lblsrm04.TabIndex = 0;
  4518. this.lblsrm04.Text = "4号 堆垛机";
  4519. this.lblsrm04.Click += new System.EventHandler(this.lblsrm01_Click);
  4520. //
  4521. // G4
  4522. //
  4523. this.G4.BackColor = System.Drawing.Color.Transparent;
  4524. this.G4.Image = ((System.Drawing.Image)(resources.GetObject("G4.Image")));
  4525. this.G4.Location = new System.Drawing.Point(88, -2);
  4526. this.G4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4527. this.G4.Name = "G4";
  4528. this.G4.Size = new System.Drawing.Size(35, 32);
  4529. this.G4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4530. this.G4.TabIndex = 65;
  4531. this.G4.TabStop = false;
  4532. this.G4.Tag = "1";
  4533. //
  4534. // pictureBox14
  4535. //
  4536. this.pictureBox14.BackColor = System.Drawing.Color.Transparent;
  4537. this.pictureBox14.Location = new System.Drawing.Point(87, -2);
  4538. this.pictureBox14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4539. this.pictureBox14.Name = "pictureBox14";
  4540. this.pictureBox14.Size = new System.Drawing.Size(35, 32);
  4541. this.pictureBox14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4542. this.pictureBox14.TabIndex = 5;
  4543. this.pictureBox14.TabStop = false;
  4544. //
  4545. // myPanel1
  4546. //
  4547. this.myPanel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel1.BackgroundImage")));
  4548. this.myPanel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4549. this.myPanel1.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4550. this.myPanel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4551. this.myPanel1.Controls.Add(this.lblInStatus5);
  4552. this.myPanel1.Controls.Add(this.lblOutStatus5);
  4553. this.myPanel1.Controls.Add(this.label11);
  4554. this.myPanel1.Controls.Add(this.ddjPosTo5);
  4555. this.myPanel1.Controls.Add(this.ddjPosFrom5);
  4556. this.myPanel1.Controls.Add(this.label17);
  4557. this.myPanel1.Controls.Add(this.label18);
  4558. this.myPanel1.Controls.Add(this.ddjMode5);
  4559. this.myPanel1.Controls.Add(this.ddjOrdId5);
  4560. this.myPanel1.Controls.Add(this.label21);
  4561. this.myPanel1.Controls.Add(this.ddjOptType5);
  4562. this.myPanel1.Controls.Add(this.label24);
  4563. this.myPanel1.Controls.Add(this.ddjTotal_KM5);
  4564. this.myPanel1.Controls.Add(this.label27);
  4565. this.myPanel1.Controls.Add(this.ddjWorkTime5);
  4566. this.myPanel1.Controls.Add(this.label30);
  4567. this.myPanel1.Controls.Add(this.ddjStatus5);
  4568. this.myPanel1.Controls.Add(this.ddjPosCurr5);
  4569. this.myPanel1.Controls.Add(this.label36);
  4570. this.myPanel1.Controls.Add(this.label37);
  4571. this.myPanel1.Controls.Add(this.label38);
  4572. this.myPanel1.Controls.Add(this.lblsrm05);
  4573. this.myPanel1.Controls.Add(this.G5);
  4574. this.myPanel1.Controls.Add(this.pictureBox3);
  4575. this.myPanel1.Location = new System.Drawing.Point(896, 2);
  4576. this.myPanel1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4577. this.myPanel1.Name = "myPanel1";
  4578. this.myPanel1.Size = new System.Drawing.Size(217, 312);
  4579. this.myPanel1.TabIndex = 30;
  4580. //
  4581. // lblInStatus5
  4582. //
  4583. this.lblInStatus5.BackColor = System.Drawing.Color.DarkGray;
  4584. this.lblInStatus5.Location = new System.Drawing.Point(7, 2);
  4585. this.lblInStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4586. this.lblInStatus5.Name = "lblInStatus5";
  4587. this.lblInStatus5.Size = new System.Drawing.Size(37, 30);
  4588. this.lblInStatus5.TabIndex = 97;
  4589. this.lblInStatus5.Tag = "4";
  4590. this.lblInStatus5.Text = "入";
  4591. this.lblInStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4592. //
  4593. // lblOutStatus5
  4594. //
  4595. this.lblOutStatus5.BackColor = System.Drawing.Color.DarkGray;
  4596. this.lblOutStatus5.Location = new System.Drawing.Point(165, 2);
  4597. this.lblOutStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4598. this.lblOutStatus5.Name = "lblOutStatus5";
  4599. this.lblOutStatus5.Size = new System.Drawing.Size(37, 30);
  4600. this.lblOutStatus5.TabIndex = 94;
  4601. this.lblOutStatus5.Text = "出";
  4602. this.lblOutStatus5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4603. //
  4604. // label11
  4605. //
  4606. this.label11.BackColor = System.Drawing.Color.Transparent;
  4607. this.label11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4608. this.label11.ForeColor = System.Drawing.Color.Red;
  4609. this.label11.Location = new System.Drawing.Point(7, 58);
  4610. this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4611. this.label11.Name = "label11";
  4612. this.label11.Size = new System.Drawing.Size(201, 30);
  4613. this.label11.TabIndex = 92;
  4614. //
  4615. // ddjPosTo5
  4616. //
  4617. this.ddjPosTo5.AutoSize = true;
  4618. this.ddjPosTo5.BackColor = System.Drawing.Color.Transparent;
  4619. this.ddjPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4620. this.ddjPosTo5.ForeColor = System.Drawing.Color.Blue;
  4621. this.ddjPosTo5.Location = new System.Drawing.Point(119, 292);
  4622. this.ddjPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4623. this.ddjPosTo5.Name = "ddjPosTo5";
  4624. this.ddjPosTo5.Size = new System.Drawing.Size(31, 15);
  4625. this.ddjPosTo5.TabIndex = 73;
  4626. this.ddjPosTo5.Text = "---";
  4627. //
  4628. // ddjPosFrom5
  4629. //
  4630. this.ddjPosFrom5.AutoSize = true;
  4631. this.ddjPosFrom5.BackColor = System.Drawing.Color.Transparent;
  4632. this.ddjPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4633. this.ddjPosFrom5.ForeColor = System.Drawing.Color.Blue;
  4634. this.ddjPosFrom5.Location = new System.Drawing.Point(119, 265);
  4635. this.ddjPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4636. this.ddjPosFrom5.Name = "ddjPosFrom5";
  4637. this.ddjPosFrom5.Size = new System.Drawing.Size(31, 15);
  4638. this.ddjPosFrom5.TabIndex = 72;
  4639. this.ddjPosFrom5.Text = "---";
  4640. //
  4641. // label17
  4642. //
  4643. this.label17.AutoSize = true;
  4644. this.label17.BackColor = System.Drawing.Color.Transparent;
  4645. this.label17.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4646. this.label17.Location = new System.Drawing.Point(4, 265);
  4647. this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4648. this.label17.Name = "label17";
  4649. this.label17.Size = new System.Drawing.Size(82, 15);
  4650. this.label17.TabIndex = 71;
  4651. this.label17.Text = "起始位置:";
  4652. //
  4653. // label18
  4654. //
  4655. this.label18.AutoSize = true;
  4656. this.label18.BackColor = System.Drawing.Color.Transparent;
  4657. this.label18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4658. this.label18.Location = new System.Drawing.Point(4, 292);
  4659. this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4660. this.label18.Name = "label18";
  4661. this.label18.Size = new System.Drawing.Size(82, 15);
  4662. this.label18.TabIndex = 70;
  4663. this.label18.Text = "目标位置:";
  4664. //
  4665. // ddjMode5
  4666. //
  4667. this.ddjMode5.AutoSize = true;
  4668. this.ddjMode5.BackColor = System.Drawing.Color.Transparent;
  4669. this.ddjMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4670. this.ddjMode5.ForeColor = System.Drawing.Color.Blue;
  4671. this.ddjMode5.Location = new System.Drawing.Point(116, 92);
  4672. this.ddjMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4673. this.ddjMode5.Name = "ddjMode5";
  4674. this.ddjMode5.Size = new System.Drawing.Size(31, 15);
  4675. this.ddjMode5.TabIndex = 12;
  4676. this.ddjMode5.Text = "---";
  4677. //
  4678. // ddjOrdId5
  4679. //
  4680. this.ddjOrdId5.AutoSize = true;
  4681. this.ddjOrdId5.BackColor = System.Drawing.Color.Transparent;
  4682. this.ddjOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4683. this.ddjOrdId5.ForeColor = System.Drawing.Color.Blue;
  4684. this.ddjOrdId5.Location = new System.Drawing.Point(116, 142);
  4685. this.ddjOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4686. this.ddjOrdId5.Name = "ddjOrdId5";
  4687. this.ddjOrdId5.Size = new System.Drawing.Size(31, 15);
  4688. this.ddjOrdId5.TabIndex = 64;
  4689. this.ddjOrdId5.Text = "---";
  4690. //
  4691. // label21
  4692. //
  4693. this.label21.AutoSize = true;
  4694. this.label21.BackColor = System.Drawing.Color.Transparent;
  4695. this.label21.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4696. this.label21.Location = new System.Drawing.Point(3, 142);
  4697. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4698. this.label21.Name = "label21";
  4699. this.label21.Size = new System.Drawing.Size(82, 15);
  4700. this.label21.TabIndex = 63;
  4701. this.label21.Text = "工作指令:";
  4702. //
  4703. // ddjOptType5
  4704. //
  4705. this.ddjOptType5.AutoSize = true;
  4706. this.ddjOptType5.BackColor = System.Drawing.Color.Transparent;
  4707. this.ddjOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4708. this.ddjOptType5.ForeColor = System.Drawing.Color.Blue;
  4709. this.ddjOptType5.Location = new System.Drawing.Point(116, 162);
  4710. this.ddjOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4711. this.ddjOptType5.Name = "ddjOptType5";
  4712. this.ddjOptType5.Size = new System.Drawing.Size(31, 15);
  4713. this.ddjOptType5.TabIndex = 62;
  4714. this.ddjOptType5.Text = "---";
  4715. //
  4716. // label24
  4717. //
  4718. this.label24.AutoSize = true;
  4719. this.label24.BackColor = System.Drawing.Color.Transparent;
  4720. this.label24.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4721. this.label24.Location = new System.Drawing.Point(3, 162);
  4722. this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4723. this.label24.Name = "label24";
  4724. this.label24.Size = new System.Drawing.Size(82, 15);
  4725. this.label24.TabIndex = 61;
  4726. this.label24.Text = "作业类型:";
  4727. //
  4728. // ddjTotal_KM5
  4729. //
  4730. this.ddjTotal_KM5.AutoSize = true;
  4731. this.ddjTotal_KM5.BackColor = System.Drawing.Color.Transparent;
  4732. this.ddjTotal_KM5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4733. this.ddjTotal_KM5.ForeColor = System.Drawing.SystemColors.ControlText;
  4734. this.ddjTotal_KM5.Location = new System.Drawing.Point(117, 238);
  4735. this.ddjTotal_KM5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4736. this.ddjTotal_KM5.Name = "ddjTotal_KM5";
  4737. this.ddjTotal_KM5.Size = new System.Drawing.Size(31, 15);
  4738. this.ddjTotal_KM5.TabIndex = 16;
  4739. this.ddjTotal_KM5.Text = "---";
  4740. //
  4741. // label27
  4742. //
  4743. this.label27.AutoSize = true;
  4744. this.label27.BackColor = System.Drawing.Color.Transparent;
  4745. this.label27.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4746. this.label27.Location = new System.Drawing.Point(3, 92);
  4747. this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4748. this.label27.Name = "label27";
  4749. this.label27.Size = new System.Drawing.Size(82, 15);
  4750. this.label27.TabIndex = 15;
  4751. this.label27.Text = "工作模式:";
  4752. //
  4753. // ddjWorkTime5
  4754. //
  4755. this.ddjWorkTime5.AutoSize = true;
  4756. this.ddjWorkTime5.BackColor = System.Drawing.Color.Transparent;
  4757. this.ddjWorkTime5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4758. this.ddjWorkTime5.ForeColor = System.Drawing.Color.Red;
  4759. this.ddjWorkTime5.Location = new System.Drawing.Point(117, 212);
  4760. this.ddjWorkTime5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4761. this.ddjWorkTime5.Name = "ddjWorkTime5";
  4762. this.ddjWorkTime5.Size = new System.Drawing.Size(31, 15);
  4763. this.ddjWorkTime5.TabIndex = 14;
  4764. this.ddjWorkTime5.Text = "---";
  4765. //
  4766. // label30
  4767. //
  4768. this.label30.AutoSize = true;
  4769. this.label30.BackColor = System.Drawing.Color.Transparent;
  4770. this.label30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4771. this.label30.Location = new System.Drawing.Point(3, 212);
  4772. this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4773. this.label30.Name = "label30";
  4774. this.label30.Size = new System.Drawing.Size(82, 15);
  4775. this.label30.TabIndex = 13;
  4776. this.label30.Text = "运行时长:";
  4777. //
  4778. // ddjStatus5
  4779. //
  4780. this.ddjStatus5.AutoSize = true;
  4781. this.ddjStatus5.BackColor = System.Drawing.Color.Transparent;
  4782. this.ddjStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4783. this.ddjStatus5.ForeColor = System.Drawing.Color.Blue;
  4784. this.ddjStatus5.Location = new System.Drawing.Point(116, 115);
  4785. this.ddjStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4786. this.ddjStatus5.Name = "ddjStatus5";
  4787. this.ddjStatus5.Size = new System.Drawing.Size(31, 15);
  4788. this.ddjStatus5.TabIndex = 10;
  4789. this.ddjStatus5.Text = "---";
  4790. //
  4791. // ddjPosCurr5
  4792. //
  4793. this.ddjPosCurr5.AutoSize = true;
  4794. this.ddjPosCurr5.BackColor = System.Drawing.Color.Transparent;
  4795. this.ddjPosCurr5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4796. this.ddjPosCurr5.ForeColor = System.Drawing.Color.Blue;
  4797. this.ddjPosCurr5.Location = new System.Drawing.Point(117, 188);
  4798. this.ddjPosCurr5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4799. this.ddjPosCurr5.Name = "ddjPosCurr5";
  4800. this.ddjPosCurr5.Size = new System.Drawing.Size(31, 15);
  4801. this.ddjPosCurr5.TabIndex = 9;
  4802. this.ddjPosCurr5.Text = "---";
  4803. //
  4804. // label36
  4805. //
  4806. this.label36.AutoSize = true;
  4807. this.label36.BackColor = System.Drawing.Color.Transparent;
  4808. this.label36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4809. this.label36.ForeColor = System.Drawing.SystemColors.ControlText;
  4810. this.label36.Location = new System.Drawing.Point(3, 238);
  4811. this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4812. this.label36.Name = "label36";
  4813. this.label36.Size = new System.Drawing.Size(83, 15);
  4814. this.label36.TabIndex = 8;
  4815. this.label36.Text = "里 程 数:";
  4816. //
  4817. // label37
  4818. //
  4819. this.label37.AutoSize = true;
  4820. this.label37.BackColor = System.Drawing.Color.Transparent;
  4821. this.label37.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4822. this.label37.Location = new System.Drawing.Point(3, 115);
  4823. this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4824. this.label37.Name = "label37";
  4825. this.label37.Size = new System.Drawing.Size(82, 15);
  4826. this.label37.TabIndex = 6;
  4827. this.label37.Text = "工作状态:";
  4828. //
  4829. // label38
  4830. //
  4831. this.label38.AutoSize = true;
  4832. this.label38.BackColor = System.Drawing.Color.Transparent;
  4833. this.label38.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4834. this.label38.Location = new System.Drawing.Point(3, 188);
  4835. this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4836. this.label38.Name = "label38";
  4837. this.label38.Size = new System.Drawing.Size(82, 15);
  4838. this.label38.TabIndex = 1;
  4839. this.label38.Text = "当前巷道:";
  4840. //
  4841. // lblsrm05
  4842. //
  4843. this.lblsrm05.AutoSize = true;
  4844. this.lblsrm05.BackColor = System.Drawing.Color.Transparent;
  4845. 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)));
  4846. this.lblsrm05.Location = new System.Drawing.Point(40, 32);
  4847. this.lblsrm05.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4848. this.lblsrm05.Name = "lblsrm05";
  4849. this.lblsrm05.Size = new System.Drawing.Size(115, 20);
  4850. this.lblsrm05.TabIndex = 0;
  4851. this.lblsrm05.Text = "5号 堆垛机";
  4852. this.lblsrm05.Click += new System.EventHandler(this.lblsrm01_Click);
  4853. //
  4854. // G5
  4855. //
  4856. this.G5.BackColor = System.Drawing.Color.Transparent;
  4857. this.G5.Image = ((System.Drawing.Image)(resources.GetObject("G5.Image")));
  4858. this.G5.Location = new System.Drawing.Point(88, -2);
  4859. this.G5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4860. this.G5.Name = "G5";
  4861. this.G5.Size = new System.Drawing.Size(35, 32);
  4862. this.G5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4863. this.G5.TabIndex = 65;
  4864. this.G5.TabStop = false;
  4865. this.G5.Tag = "1";
  4866. //
  4867. // pictureBox3
  4868. //
  4869. this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
  4870. this.pictureBox3.Location = new System.Drawing.Point(87, -2);
  4871. this.pictureBox3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4872. this.pictureBox3.Name = "pictureBox3";
  4873. this.pictureBox3.Size = new System.Drawing.Size(35, 32);
  4874. this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  4875. this.pictureBox3.TabIndex = 5;
  4876. this.pictureBox3.TabStop = false;
  4877. //
  4878. // RGV4
  4879. //
  4880. this.RGV4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("RGV4.BackgroundImage")));
  4881. this.RGV4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4882. this.RGV4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  4883. this.RGV4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  4884. this.RGV4.Controls.Add(this.label14);
  4885. this.RGV4.Controls.Add(this.label19);
  4886. this.RGV4.Controls.Add(this.label20);
  4887. this.RGV4.Controls.Add(this.rgvOptType4);
  4888. this.RGV4.Controls.Add(this.label74);
  4889. this.RGV4.Controls.Add(this.lblRGVWarning1091);
  4890. this.RGV4.Controls.Add(this.rgvPosCurr3);
  4891. this.RGV4.Controls.Add(this.rgvMode4);
  4892. this.RGV4.Controls.Add(this.rgvOrdId4);
  4893. this.RGV4.Controls.Add(this.label94);
  4894. this.RGV4.Controls.Add(this.rgvPosTo4);
  4895. this.RGV4.Controls.Add(this.label96);
  4896. this.RGV4.Controls.Add(this.rgvPosFrom4);
  4897. this.RGV4.Controls.Add(this.rgvStatus4);
  4898. this.RGV4.Controls.Add(this.label102);
  4899. this.RGV4.Controls.Add(this.lblrgv4);
  4900. this.RGV4.Controls.Add(this.GV4);
  4901. this.RGV4.Controls.Add(this.pictureBox7);
  4902. this.RGV4.Location = new System.Drawing.Point(2442, 3);
  4903. this.RGV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  4904. this.RGV4.Name = "RGV4";
  4905. this.RGV4.Size = new System.Drawing.Size(217, 312);
  4906. this.RGV4.TabIndex = 104;
  4907. //
  4908. // label14
  4909. //
  4910. this.label14.AutoSize = true;
  4911. this.label14.BackColor = System.Drawing.Color.Transparent;
  4912. this.label14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4913. this.label14.Location = new System.Drawing.Point(4, 241);
  4914. this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4915. this.label14.Name = "label14";
  4916. this.label14.Size = new System.Drawing.Size(82, 15);
  4917. this.label14.TabIndex = 106;
  4918. this.label14.Text = "光电状态:";
  4919. //
  4920. // label19
  4921. //
  4922. this.label19.AutoSize = true;
  4923. this.label19.BackColor = System.Drawing.Color.Transparent;
  4924. this.label19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4925. this.label19.Location = new System.Drawing.Point(3, 189);
  4926. this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4927. this.label19.Name = "label19";
  4928. this.label19.Size = new System.Drawing.Size(82, 15);
  4929. this.label19.TabIndex = 105;
  4930. this.label19.Text = "起始地址:";
  4931. //
  4932. // label20
  4933. //
  4934. this.label20.AutoSize = true;
  4935. this.label20.BackColor = System.Drawing.Color.Transparent;
  4936. this.label20.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4937. this.label20.ForeColor = System.Drawing.SystemColors.ControlText;
  4938. this.label20.Location = new System.Drawing.Point(3, 214);
  4939. this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4940. this.label20.Name = "label20";
  4941. this.label20.Size = new System.Drawing.Size(82, 15);
  4942. this.label20.TabIndex = 104;
  4943. this.label20.Text = "目标地址:";
  4944. //
  4945. // rgvOptType4
  4946. //
  4947. this.rgvOptType4.AutoSize = true;
  4948. this.rgvOptType4.BackColor = System.Drawing.Color.Transparent;
  4949. this.rgvOptType4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4950. this.rgvOptType4.ForeColor = System.Drawing.Color.Blue;
  4951. this.rgvOptType4.Location = new System.Drawing.Point(96, 166);
  4952. this.rgvOptType4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4953. this.rgvOptType4.Name = "rgvOptType4";
  4954. this.rgvOptType4.Size = new System.Drawing.Size(31, 15);
  4955. this.rgvOptType4.TabIndex = 101;
  4956. this.rgvOptType4.Text = "---";
  4957. //
  4958. // label74
  4959. //
  4960. this.label74.AutoSize = true;
  4961. this.label74.BackColor = System.Drawing.Color.Transparent;
  4962. this.label74.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4963. this.label74.Location = new System.Drawing.Point(3, 166);
  4964. this.label74.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4965. this.label74.Name = "label74";
  4966. this.label74.Size = new System.Drawing.Size(82, 15);
  4967. this.label74.TabIndex = 100;
  4968. this.label74.Text = "作业类型:";
  4969. //
  4970. // lblRGVWarning1091
  4971. //
  4972. this.lblRGVWarning1091.BackColor = System.Drawing.Color.Transparent;
  4973. this.lblRGVWarning1091.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4974. this.lblRGVWarning1091.ForeColor = System.Drawing.Color.Red;
  4975. this.lblRGVWarning1091.Location = new System.Drawing.Point(7, 58);
  4976. this.lblRGVWarning1091.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4977. this.lblRGVWarning1091.Name = "lblRGVWarning1091";
  4978. this.lblRGVWarning1091.Size = new System.Drawing.Size(201, 30);
  4979. this.lblRGVWarning1091.TabIndex = 92;
  4980. //
  4981. // rgvPosCurr3
  4982. //
  4983. this.rgvPosCurr3.AutoSize = true;
  4984. this.rgvPosCurr3.BackColor = System.Drawing.Color.Transparent;
  4985. this.rgvPosCurr3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4986. this.rgvPosCurr3.ForeColor = System.Drawing.Color.Blue;
  4987. this.rgvPosCurr3.Location = new System.Drawing.Point(99, 242);
  4988. this.rgvPosCurr3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4989. this.rgvPosCurr3.Name = "rgvPosCurr3";
  4990. this.rgvPosCurr3.Size = new System.Drawing.Size(31, 15);
  4991. this.rgvPosCurr3.TabIndex = 72;
  4992. this.rgvPosCurr3.Text = "---";
  4993. //
  4994. // rgvMode4
  4995. //
  4996. this.rgvMode4.AutoSize = true;
  4997. this.rgvMode4.BackColor = System.Drawing.Color.Transparent;
  4998. this.rgvMode4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4999. this.rgvMode4.ForeColor = System.Drawing.Color.Blue;
  5000. this.rgvMode4.Location = new System.Drawing.Point(96, 92);
  5001. this.rgvMode4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5002. this.rgvMode4.Name = "rgvMode4";
  5003. this.rgvMode4.Size = new System.Drawing.Size(31, 15);
  5004. this.rgvMode4.TabIndex = 12;
  5005. this.rgvMode4.Text = "---";
  5006. //
  5007. // rgvOrdId4
  5008. //
  5009. this.rgvOrdId4.AutoSize = true;
  5010. this.rgvOrdId4.BackColor = System.Drawing.Color.Transparent;
  5011. this.rgvOrdId4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5012. this.rgvOrdId4.ForeColor = System.Drawing.Color.Blue;
  5013. this.rgvOrdId4.Location = new System.Drawing.Point(96, 142);
  5014. this.rgvOrdId4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5015. this.rgvOrdId4.Name = "rgvOrdId4";
  5016. this.rgvOrdId4.Size = new System.Drawing.Size(31, 15);
  5017. this.rgvOrdId4.TabIndex = 64;
  5018. this.rgvOrdId4.Text = "---";
  5019. //
  5020. // label94
  5021. //
  5022. this.label94.AutoSize = true;
  5023. this.label94.BackColor = System.Drawing.Color.Transparent;
  5024. this.label94.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5025. this.label94.Location = new System.Drawing.Point(3, 142);
  5026. this.label94.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5027. this.label94.Name = "label94";
  5028. this.label94.Size = new System.Drawing.Size(82, 15);
  5029. this.label94.TabIndex = 63;
  5030. this.label94.Text = "工作指令:";
  5031. //
  5032. // rgvPosTo4
  5033. //
  5034. this.rgvPosTo4.AutoSize = true;
  5035. this.rgvPosTo4.BackColor = System.Drawing.Color.Transparent;
  5036. this.rgvPosTo4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5037. this.rgvPosTo4.ForeColor = System.Drawing.Color.Blue;
  5038. this.rgvPosTo4.Location = new System.Drawing.Point(97, 215);
  5039. this.rgvPosTo4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5040. this.rgvPosTo4.Name = "rgvPosTo4";
  5041. this.rgvPosTo4.Size = new System.Drawing.Size(31, 15);
  5042. this.rgvPosTo4.TabIndex = 16;
  5043. this.rgvPosTo4.Text = "---";
  5044. //
  5045. // label96
  5046. //
  5047. this.label96.AutoSize = true;
  5048. this.label96.BackColor = System.Drawing.Color.Transparent;
  5049. this.label96.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5050. this.label96.Location = new System.Drawing.Point(3, 92);
  5051. this.label96.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5052. this.label96.Name = "label96";
  5053. this.label96.Size = new System.Drawing.Size(82, 15);
  5054. this.label96.TabIndex = 15;
  5055. this.label96.Text = "工作模式:";
  5056. //
  5057. // rgvPosFrom4
  5058. //
  5059. this.rgvPosFrom4.AutoSize = true;
  5060. this.rgvPosFrom4.BackColor = System.Drawing.Color.Transparent;
  5061. this.rgvPosFrom4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5062. this.rgvPosFrom4.ForeColor = System.Drawing.Color.Blue;
  5063. this.rgvPosFrom4.Location = new System.Drawing.Point(97, 190);
  5064. this.rgvPosFrom4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5065. this.rgvPosFrom4.Name = "rgvPosFrom4";
  5066. this.rgvPosFrom4.Size = new System.Drawing.Size(31, 15);
  5067. this.rgvPosFrom4.TabIndex = 14;
  5068. this.rgvPosFrom4.Text = "---";
  5069. //
  5070. // rgvStatus4
  5071. //
  5072. this.rgvStatus4.AutoSize = true;
  5073. this.rgvStatus4.BackColor = System.Drawing.Color.Transparent;
  5074. this.rgvStatus4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5075. this.rgvStatus4.ForeColor = System.Drawing.Color.Blue;
  5076. this.rgvStatus4.Location = new System.Drawing.Point(96, 115);
  5077. this.rgvStatus4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5078. this.rgvStatus4.Name = "rgvStatus4";
  5079. this.rgvStatus4.Size = new System.Drawing.Size(31, 15);
  5080. this.rgvStatus4.TabIndex = 10;
  5081. this.rgvStatus4.Text = "---";
  5082. //
  5083. // label102
  5084. //
  5085. this.label102.AutoSize = true;
  5086. this.label102.BackColor = System.Drawing.Color.Transparent;
  5087. this.label102.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5088. this.label102.Location = new System.Drawing.Point(3, 115);
  5089. this.label102.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5090. this.label102.Name = "label102";
  5091. this.label102.Size = new System.Drawing.Size(82, 15);
  5092. this.label102.TabIndex = 6;
  5093. this.label102.Text = "工作状态:";
  5094. //
  5095. // lblrgv4
  5096. //
  5097. this.lblrgv4.AutoSize = true;
  5098. this.lblrgv4.BackColor = System.Drawing.Color.Transparent;
  5099. 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)));
  5100. this.lblrgv4.Location = new System.Drawing.Point(59, 32);
  5101. this.lblrgv4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5102. this.lblrgv4.Name = "lblrgv4";
  5103. this.lblrgv4.Size = new System.Drawing.Size(53, 20);
  5104. this.lblrgv4.TabIndex = 0;
  5105. this.lblrgv4.Text = "RGV4";
  5106. this.lblrgv4.Click += new System.EventHandler(this.lblsrm01_Click);
  5107. //
  5108. // GV4
  5109. //
  5110. this.GV4.BackColor = System.Drawing.Color.Transparent;
  5111. this.GV4.Image = ((System.Drawing.Image)(resources.GetObject("GV4.Image")));
  5112. this.GV4.Location = new System.Drawing.Point(88, -2);
  5113. this.GV4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5114. this.GV4.Name = "GV4";
  5115. this.GV4.Size = new System.Drawing.Size(35, 32);
  5116. this.GV4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5117. this.GV4.TabIndex = 65;
  5118. this.GV4.TabStop = false;
  5119. this.GV4.Tag = "1";
  5120. //
  5121. // pictureBox7
  5122. //
  5123. this.pictureBox7.BackColor = System.Drawing.Color.Transparent;
  5124. this.pictureBox7.Location = new System.Drawing.Point(87, -2);
  5125. this.pictureBox7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5126. this.pictureBox7.Name = "pictureBox7";
  5127. this.pictureBox7.Size = new System.Drawing.Size(35, 32);
  5128. this.pictureBox7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5129. this.pictureBox7.TabIndex = 5;
  5130. this.pictureBox7.TabStop = false;
  5131. //
  5132. // myPanel5
  5133. //
  5134. this.myPanel5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel5.BackgroundImage")));
  5135. this.myPanel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5136. this.myPanel5.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5137. this.myPanel5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5138. this.myPanel5.Controls.Add(this.label25);
  5139. this.myPanel5.Controls.Add(this.label35);
  5140. this.myPanel5.Controls.Add(this.label39);
  5141. this.myPanel5.Controls.Add(this.rgvOptType1);
  5142. this.myPanel5.Controls.Add(this.label173);
  5143. this.myPanel5.Controls.Add(this.lblRGVWarning1007);
  5144. this.myPanel5.Controls.Add(this.rgvPosCurr4);
  5145. this.myPanel5.Controls.Add(this.rgvMode1);
  5146. this.myPanel5.Controls.Add(this.rgvOrdId1);
  5147. this.myPanel5.Controls.Add(this.label181);
  5148. this.myPanel5.Controls.Add(this.rgvPosTo1);
  5149. this.myPanel5.Controls.Add(this.label183);
  5150. this.myPanel5.Controls.Add(this.rgvPosFrom1);
  5151. this.myPanel5.Controls.Add(this.rgvStatus1);
  5152. this.myPanel5.Controls.Add(this.label189);
  5153. this.myPanel5.Controls.Add(this.lblrgv1);
  5154. this.myPanel5.Controls.Add(this.GV1);
  5155. this.myPanel5.Controls.Add(this.pictureBox17);
  5156. this.myPanel5.Location = new System.Drawing.Point(1776, 4);
  5157. this.myPanel5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5158. this.myPanel5.Name = "myPanel5";
  5159. this.myPanel5.Size = new System.Drawing.Size(217, 312);
  5160. this.myPanel5.TabIndex = 107;
  5161. //
  5162. // label25
  5163. //
  5164. this.label25.AutoSize = true;
  5165. this.label25.BackColor = System.Drawing.Color.Transparent;
  5166. this.label25.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5167. this.label25.Location = new System.Drawing.Point(5, 242);
  5168. this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5169. this.label25.Name = "label25";
  5170. this.label25.Size = new System.Drawing.Size(82, 15);
  5171. this.label25.TabIndex = 106;
  5172. this.label25.Text = "光电状态:";
  5173. //
  5174. // label35
  5175. //
  5176. this.label35.AutoSize = true;
  5177. this.label35.BackColor = System.Drawing.Color.Transparent;
  5178. this.label35.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5179. this.label35.Location = new System.Drawing.Point(4, 190);
  5180. this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5181. this.label35.Name = "label35";
  5182. this.label35.Size = new System.Drawing.Size(82, 15);
  5183. this.label35.TabIndex = 105;
  5184. this.label35.Text = "起始地址:";
  5185. //
  5186. // label39
  5187. //
  5188. this.label39.AutoSize = true;
  5189. this.label39.BackColor = System.Drawing.Color.Transparent;
  5190. this.label39.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5191. this.label39.ForeColor = System.Drawing.SystemColors.ControlText;
  5192. this.label39.Location = new System.Drawing.Point(4, 215);
  5193. this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5194. this.label39.Name = "label39";
  5195. this.label39.Size = new System.Drawing.Size(82, 15);
  5196. this.label39.TabIndex = 104;
  5197. this.label39.Text = "目标地址:";
  5198. //
  5199. // rgvOptType1
  5200. //
  5201. this.rgvOptType1.AutoSize = true;
  5202. this.rgvOptType1.BackColor = System.Drawing.Color.Transparent;
  5203. this.rgvOptType1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5204. this.rgvOptType1.ForeColor = System.Drawing.Color.Blue;
  5205. this.rgvOptType1.Location = new System.Drawing.Point(96, 166);
  5206. this.rgvOptType1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5207. this.rgvOptType1.Name = "rgvOptType1";
  5208. this.rgvOptType1.Size = new System.Drawing.Size(31, 15);
  5209. this.rgvOptType1.TabIndex = 101;
  5210. this.rgvOptType1.Text = "---";
  5211. //
  5212. // label173
  5213. //
  5214. this.label173.AutoSize = true;
  5215. this.label173.BackColor = System.Drawing.Color.Transparent;
  5216. this.label173.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5217. this.label173.Location = new System.Drawing.Point(3, 166);
  5218. this.label173.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5219. this.label173.Name = "label173";
  5220. this.label173.Size = new System.Drawing.Size(82, 15);
  5221. this.label173.TabIndex = 100;
  5222. this.label173.Text = "作业类型:";
  5223. //
  5224. // lblRGVWarning1007
  5225. //
  5226. this.lblRGVWarning1007.BackColor = System.Drawing.Color.Transparent;
  5227. this.lblRGVWarning1007.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5228. this.lblRGVWarning1007.ForeColor = System.Drawing.Color.Red;
  5229. this.lblRGVWarning1007.Location = new System.Drawing.Point(7, 58);
  5230. this.lblRGVWarning1007.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5231. this.lblRGVWarning1007.Name = "lblRGVWarning1007";
  5232. this.lblRGVWarning1007.Size = new System.Drawing.Size(201, 30);
  5233. this.lblRGVWarning1007.TabIndex = 92;
  5234. //
  5235. // rgvPosCurr4
  5236. //
  5237. this.rgvPosCurr4.AutoSize = true;
  5238. this.rgvPosCurr4.BackColor = System.Drawing.Color.Transparent;
  5239. this.rgvPosCurr4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5240. this.rgvPosCurr4.ForeColor = System.Drawing.Color.Blue;
  5241. this.rgvPosCurr4.Location = new System.Drawing.Point(99, 244);
  5242. this.rgvPosCurr4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5243. this.rgvPosCurr4.Name = "rgvPosCurr4";
  5244. this.rgvPosCurr4.Size = new System.Drawing.Size(31, 15);
  5245. this.rgvPosCurr4.TabIndex = 72;
  5246. this.rgvPosCurr4.Text = "---";
  5247. //
  5248. // rgvMode1
  5249. //
  5250. this.rgvMode1.AutoSize = true;
  5251. this.rgvMode1.BackColor = System.Drawing.Color.Transparent;
  5252. this.rgvMode1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5253. this.rgvMode1.ForeColor = System.Drawing.Color.Blue;
  5254. this.rgvMode1.Location = new System.Drawing.Point(96, 92);
  5255. this.rgvMode1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5256. this.rgvMode1.Name = "rgvMode1";
  5257. this.rgvMode1.Size = new System.Drawing.Size(31, 15);
  5258. this.rgvMode1.TabIndex = 12;
  5259. this.rgvMode1.Text = "---";
  5260. //
  5261. // rgvOrdId1
  5262. //
  5263. this.rgvOrdId1.AutoSize = true;
  5264. this.rgvOrdId1.BackColor = System.Drawing.Color.Transparent;
  5265. this.rgvOrdId1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5266. this.rgvOrdId1.ForeColor = System.Drawing.Color.Blue;
  5267. this.rgvOrdId1.Location = new System.Drawing.Point(96, 142);
  5268. this.rgvOrdId1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5269. this.rgvOrdId1.Name = "rgvOrdId1";
  5270. this.rgvOrdId1.Size = new System.Drawing.Size(31, 15);
  5271. this.rgvOrdId1.TabIndex = 64;
  5272. this.rgvOrdId1.Text = "---";
  5273. //
  5274. // label181
  5275. //
  5276. this.label181.AutoSize = true;
  5277. this.label181.BackColor = System.Drawing.Color.Transparent;
  5278. this.label181.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5279. this.label181.Location = new System.Drawing.Point(3, 142);
  5280. this.label181.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5281. this.label181.Name = "label181";
  5282. this.label181.Size = new System.Drawing.Size(82, 15);
  5283. this.label181.TabIndex = 63;
  5284. this.label181.Text = "工作指令:";
  5285. //
  5286. // rgvPosTo1
  5287. //
  5288. this.rgvPosTo1.AutoSize = true;
  5289. this.rgvPosTo1.BackColor = System.Drawing.Color.Transparent;
  5290. this.rgvPosTo1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5291. this.rgvPosTo1.ForeColor = System.Drawing.Color.Blue;
  5292. this.rgvPosTo1.Location = new System.Drawing.Point(97, 215);
  5293. this.rgvPosTo1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5294. this.rgvPosTo1.Name = "rgvPosTo1";
  5295. this.rgvPosTo1.Size = new System.Drawing.Size(31, 15);
  5296. this.rgvPosTo1.TabIndex = 16;
  5297. this.rgvPosTo1.Text = "---";
  5298. //
  5299. // label183
  5300. //
  5301. this.label183.AutoSize = true;
  5302. this.label183.BackColor = System.Drawing.Color.Transparent;
  5303. this.label183.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5304. this.label183.Location = new System.Drawing.Point(3, 92);
  5305. this.label183.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5306. this.label183.Name = "label183";
  5307. this.label183.Size = new System.Drawing.Size(82, 15);
  5308. this.label183.TabIndex = 15;
  5309. this.label183.Text = "工作模式:";
  5310. //
  5311. // rgvPosFrom1
  5312. //
  5313. this.rgvPosFrom1.AutoSize = true;
  5314. this.rgvPosFrom1.BackColor = System.Drawing.Color.Transparent;
  5315. this.rgvPosFrom1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5316. this.rgvPosFrom1.ForeColor = System.Drawing.Color.Blue;
  5317. this.rgvPosFrom1.Location = new System.Drawing.Point(97, 190);
  5318. this.rgvPosFrom1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5319. this.rgvPosFrom1.Name = "rgvPosFrom1";
  5320. this.rgvPosFrom1.Size = new System.Drawing.Size(31, 15);
  5321. this.rgvPosFrom1.TabIndex = 14;
  5322. this.rgvPosFrom1.Text = "---";
  5323. //
  5324. // rgvStatus1
  5325. //
  5326. this.rgvStatus1.AutoSize = true;
  5327. this.rgvStatus1.BackColor = System.Drawing.Color.Transparent;
  5328. this.rgvStatus1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5329. this.rgvStatus1.ForeColor = System.Drawing.Color.Blue;
  5330. this.rgvStatus1.Location = new System.Drawing.Point(96, 115);
  5331. this.rgvStatus1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5332. this.rgvStatus1.Name = "rgvStatus1";
  5333. this.rgvStatus1.Size = new System.Drawing.Size(31, 15);
  5334. this.rgvStatus1.TabIndex = 10;
  5335. this.rgvStatus1.Text = "---";
  5336. //
  5337. // label189
  5338. //
  5339. this.label189.AutoSize = true;
  5340. this.label189.BackColor = System.Drawing.Color.Transparent;
  5341. this.label189.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5342. this.label189.Location = new System.Drawing.Point(3, 115);
  5343. this.label189.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5344. this.label189.Name = "label189";
  5345. this.label189.Size = new System.Drawing.Size(82, 15);
  5346. this.label189.TabIndex = 6;
  5347. this.label189.Text = "工作状态:";
  5348. //
  5349. // lblrgv1
  5350. //
  5351. this.lblrgv1.AutoSize = true;
  5352. this.lblrgv1.BackColor = System.Drawing.Color.Transparent;
  5353. 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)));
  5354. this.lblrgv1.Location = new System.Drawing.Point(59, 32);
  5355. this.lblrgv1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5356. this.lblrgv1.Name = "lblrgv1";
  5357. this.lblrgv1.Size = new System.Drawing.Size(53, 20);
  5358. this.lblrgv1.TabIndex = 0;
  5359. this.lblrgv1.Text = "RGV1";
  5360. this.lblrgv1.Click += new System.EventHandler(this.lblsrm01_Click);
  5361. //
  5362. // GV1
  5363. //
  5364. this.GV1.BackColor = System.Drawing.Color.Transparent;
  5365. this.GV1.Image = ((System.Drawing.Image)(resources.GetObject("GV1.Image")));
  5366. this.GV1.Location = new System.Drawing.Point(88, -2);
  5367. this.GV1.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5368. this.GV1.Name = "GV1";
  5369. this.GV1.Size = new System.Drawing.Size(35, 32);
  5370. this.GV1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5371. this.GV1.TabIndex = 65;
  5372. this.GV1.TabStop = false;
  5373. this.GV1.Tag = "1";
  5374. //
  5375. // pictureBox17
  5376. //
  5377. this.pictureBox17.BackColor = System.Drawing.Color.Transparent;
  5378. this.pictureBox17.Location = new System.Drawing.Point(87, -2);
  5379. this.pictureBox17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5380. this.pictureBox17.Name = "pictureBox17";
  5381. this.pictureBox17.Size = new System.Drawing.Size(35, 32);
  5382. this.pictureBox17.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5383. this.pictureBox17.TabIndex = 5;
  5384. this.pictureBox17.TabStop = false;
  5385. //
  5386. // pnlBottom
  5387. //
  5388. this.pnlBottom.AutoScroll = true;
  5389. this.pnlBottom.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlBottom.BackgroundImage")));
  5390. this.pnlBottom.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5391. this.pnlBottom.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5392. this.pnlBottom.Controls.Add(this.myPanel17);
  5393. this.pnlBottom.Controls.Add(this.myPanel11);
  5394. this.pnlBottom.Controls.Add(this.myPanel16);
  5395. this.pnlBottom.Controls.Add(this.myPanel15);
  5396. this.pnlBottom.Controls.Add(this.myPanel14);
  5397. this.pnlBottom.Controls.Add(this.myPanel13);
  5398. this.pnlBottom.Controls.Add(this.myPanel12);
  5399. this.pnlBottom.Controls.Add(this.myPanel10);
  5400. this.pnlBottom.Controls.Add(this.myPanel9);
  5401. this.pnlBottom.Controls.Add(this.myPanel8);
  5402. this.pnlBottom.Controls.Add(this.myPanel7);
  5403. this.pnlBottom.Controls.Add(this.myPanel6);
  5404. this.pnlBottom.Controls.Add(this.myPanel3);
  5405. this.pnlBottom.Controls.Add(this.pnlRGV1089);
  5406. this.pnlBottom.Controls.Add(this.myPanel2);
  5407. this.pnlBottom.Controls.Add(this.myPanel5);
  5408. this.pnlBottom.Controls.Add(this.RGV4);
  5409. this.pnlBottom.Controls.Add(this.myPanel1);
  5410. this.pnlBottom.Controls.Add(this.pnlDDJ4);
  5411. this.pnlBottom.Controls.Add(this.pnlDDJ3);
  5412. this.pnlBottom.Controls.Add(this.pnlDDJ2);
  5413. this.pnlBottom.Controls.Add(this.pnlDDJ1);
  5414. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Fill;
  5415. this.pnlBottom.Location = new System.Drawing.Point(4, 617);
  5416. this.pnlBottom.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5417. this.pnlBottom.Name = "pnlBottom";
  5418. this.pnlBottom.Padding = new System.Windows.Forms.Padding(13, 0, 0, 0);
  5419. this.pnlBottom.Size = new System.Drawing.Size(1702, 260);
  5420. this.pnlBottom.TabIndex = 126;
  5421. //
  5422. // myPanel17
  5423. //
  5424. this.myPanel17.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel17.BackgroundImage")));
  5425. this.myPanel17.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5426. this.myPanel17.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5427. this.myPanel17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5428. this.myPanel17.Controls.Add(this.label314);
  5429. this.myPanel17.Controls.Add(this.label315);
  5430. this.myPanel17.Controls.Add(this.label316);
  5431. this.myPanel17.Controls.Add(this.rgvOptType13);
  5432. this.myPanel17.Controls.Add(this.label318);
  5433. this.myPanel17.Controls.Add(this.label319);
  5434. this.myPanel17.Controls.Add(this.label320);
  5435. this.myPanel17.Controls.Add(this.rgvMode13);
  5436. this.myPanel17.Controls.Add(this.label322);
  5437. this.myPanel17.Controls.Add(this.label323);
  5438. this.myPanel17.Controls.Add(this.rgvPosTo13);
  5439. this.myPanel17.Controls.Add(this.label325);
  5440. this.myPanel17.Controls.Add(this.rgvPosFrom13);
  5441. this.myPanel17.Controls.Add(this.rgvStatus13);
  5442. this.myPanel17.Controls.Add(this.label328);
  5443. this.myPanel17.Controls.Add(this.lblrgv13);
  5444. this.myPanel17.Controls.Add(this.GV13);
  5445. this.myPanel17.Controls.Add(this.pictureBox36);
  5446. this.myPanel17.Location = new System.Drawing.Point(4409, 3);
  5447. this.myPanel17.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5448. this.myPanel17.Name = "myPanel17";
  5449. this.myPanel17.Size = new System.Drawing.Size(217, 312);
  5450. this.myPanel17.TabIndex = 141;
  5451. //
  5452. // label314
  5453. //
  5454. this.label314.AutoSize = true;
  5455. this.label314.BackColor = System.Drawing.Color.Transparent;
  5456. this.label314.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5457. this.label314.Location = new System.Drawing.Point(4, 241);
  5458. this.label314.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5459. this.label314.Name = "label314";
  5460. this.label314.Size = new System.Drawing.Size(82, 15);
  5461. this.label314.TabIndex = 106;
  5462. this.label314.Text = "光电状态:";
  5463. //
  5464. // label315
  5465. //
  5466. this.label315.AutoSize = true;
  5467. this.label315.BackColor = System.Drawing.Color.Transparent;
  5468. this.label315.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5469. this.label315.Location = new System.Drawing.Point(3, 189);
  5470. this.label315.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5471. this.label315.Name = "label315";
  5472. this.label315.Size = new System.Drawing.Size(82, 15);
  5473. this.label315.TabIndex = 105;
  5474. this.label315.Text = "起始地址:";
  5475. //
  5476. // label316
  5477. //
  5478. this.label316.AutoSize = true;
  5479. this.label316.BackColor = System.Drawing.Color.Transparent;
  5480. this.label316.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5481. this.label316.ForeColor = System.Drawing.SystemColors.ControlText;
  5482. this.label316.Location = new System.Drawing.Point(3, 214);
  5483. this.label316.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5484. this.label316.Name = "label316";
  5485. this.label316.Size = new System.Drawing.Size(82, 15);
  5486. this.label316.TabIndex = 104;
  5487. this.label316.Text = "目标地址:";
  5488. //
  5489. // rgvOptType13
  5490. //
  5491. this.rgvOptType13.AutoSize = true;
  5492. this.rgvOptType13.BackColor = System.Drawing.Color.Transparent;
  5493. this.rgvOptType13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5494. this.rgvOptType13.ForeColor = System.Drawing.Color.Blue;
  5495. this.rgvOptType13.Location = new System.Drawing.Point(96, 166);
  5496. this.rgvOptType13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5497. this.rgvOptType13.Name = "rgvOptType13";
  5498. this.rgvOptType13.Size = new System.Drawing.Size(31, 15);
  5499. this.rgvOptType13.TabIndex = 101;
  5500. this.rgvOptType13.Text = "---";
  5501. //
  5502. // label318
  5503. //
  5504. this.label318.AutoSize = true;
  5505. this.label318.BackColor = System.Drawing.Color.Transparent;
  5506. this.label318.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5507. this.label318.Location = new System.Drawing.Point(3, 166);
  5508. this.label318.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5509. this.label318.Name = "label318";
  5510. this.label318.Size = new System.Drawing.Size(82, 15);
  5511. this.label318.TabIndex = 100;
  5512. this.label318.Text = "作业类型:";
  5513. //
  5514. // label319
  5515. //
  5516. this.label319.BackColor = System.Drawing.Color.Transparent;
  5517. this.label319.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5518. this.label319.ForeColor = System.Drawing.Color.Red;
  5519. this.label319.Location = new System.Drawing.Point(7, 58);
  5520. this.label319.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5521. this.label319.Name = "label319";
  5522. this.label319.Size = new System.Drawing.Size(201, 30);
  5523. this.label319.TabIndex = 92;
  5524. //
  5525. // label320
  5526. //
  5527. this.label320.AutoSize = true;
  5528. this.label320.BackColor = System.Drawing.Color.Transparent;
  5529. this.label320.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5530. this.label320.ForeColor = System.Drawing.Color.Blue;
  5531. this.label320.Location = new System.Drawing.Point(99, 242);
  5532. this.label320.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5533. this.label320.Name = "label320";
  5534. this.label320.Size = new System.Drawing.Size(31, 15);
  5535. this.label320.TabIndex = 72;
  5536. this.label320.Text = "---";
  5537. //
  5538. // rgvMode13
  5539. //
  5540. this.rgvMode13.AutoSize = true;
  5541. this.rgvMode13.BackColor = System.Drawing.Color.Transparent;
  5542. this.rgvMode13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5543. this.rgvMode13.ForeColor = System.Drawing.Color.Blue;
  5544. this.rgvMode13.Location = new System.Drawing.Point(96, 92);
  5545. this.rgvMode13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5546. this.rgvMode13.Name = "rgvMode13";
  5547. this.rgvMode13.Size = new System.Drawing.Size(31, 15);
  5548. this.rgvMode13.TabIndex = 12;
  5549. this.rgvMode13.Text = "---";
  5550. //
  5551. // label322
  5552. //
  5553. this.label322.AutoSize = true;
  5554. this.label322.BackColor = System.Drawing.Color.Transparent;
  5555. this.label322.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5556. this.label322.ForeColor = System.Drawing.Color.Blue;
  5557. this.label322.Location = new System.Drawing.Point(96, 142);
  5558. this.label322.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5559. this.label322.Name = "label322";
  5560. this.label322.Size = new System.Drawing.Size(31, 15);
  5561. this.label322.TabIndex = 64;
  5562. this.label322.Text = "---";
  5563. //
  5564. // label323
  5565. //
  5566. this.label323.AutoSize = true;
  5567. this.label323.BackColor = System.Drawing.Color.Transparent;
  5568. this.label323.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5569. this.label323.Location = new System.Drawing.Point(3, 142);
  5570. this.label323.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5571. this.label323.Name = "label323";
  5572. this.label323.Size = new System.Drawing.Size(82, 15);
  5573. this.label323.TabIndex = 63;
  5574. this.label323.Text = "工作指令:";
  5575. //
  5576. // rgvPosTo13
  5577. //
  5578. this.rgvPosTo13.AutoSize = true;
  5579. this.rgvPosTo13.BackColor = System.Drawing.Color.Transparent;
  5580. this.rgvPosTo13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5581. this.rgvPosTo13.ForeColor = System.Drawing.Color.Blue;
  5582. this.rgvPosTo13.Location = new System.Drawing.Point(97, 215);
  5583. this.rgvPosTo13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5584. this.rgvPosTo13.Name = "rgvPosTo13";
  5585. this.rgvPosTo13.Size = new System.Drawing.Size(31, 15);
  5586. this.rgvPosTo13.TabIndex = 16;
  5587. this.rgvPosTo13.Text = "---";
  5588. //
  5589. // label325
  5590. //
  5591. this.label325.AutoSize = true;
  5592. this.label325.BackColor = System.Drawing.Color.Transparent;
  5593. this.label325.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5594. this.label325.Location = new System.Drawing.Point(3, 92);
  5595. this.label325.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5596. this.label325.Name = "label325";
  5597. this.label325.Size = new System.Drawing.Size(82, 15);
  5598. this.label325.TabIndex = 15;
  5599. this.label325.Text = "工作模式:";
  5600. //
  5601. // rgvPosFrom13
  5602. //
  5603. this.rgvPosFrom13.AutoSize = true;
  5604. this.rgvPosFrom13.BackColor = System.Drawing.Color.Transparent;
  5605. this.rgvPosFrom13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5606. this.rgvPosFrom13.ForeColor = System.Drawing.Color.Blue;
  5607. this.rgvPosFrom13.Location = new System.Drawing.Point(97, 190);
  5608. this.rgvPosFrom13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5609. this.rgvPosFrom13.Name = "rgvPosFrom13";
  5610. this.rgvPosFrom13.Size = new System.Drawing.Size(31, 15);
  5611. this.rgvPosFrom13.TabIndex = 14;
  5612. this.rgvPosFrom13.Text = "---";
  5613. //
  5614. // rgvStatus13
  5615. //
  5616. this.rgvStatus13.AutoSize = true;
  5617. this.rgvStatus13.BackColor = System.Drawing.Color.Transparent;
  5618. this.rgvStatus13.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5619. this.rgvStatus13.ForeColor = System.Drawing.Color.Blue;
  5620. this.rgvStatus13.Location = new System.Drawing.Point(96, 115);
  5621. this.rgvStatus13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5622. this.rgvStatus13.Name = "rgvStatus13";
  5623. this.rgvStatus13.Size = new System.Drawing.Size(31, 15);
  5624. this.rgvStatus13.TabIndex = 10;
  5625. this.rgvStatus13.Text = "---";
  5626. //
  5627. // label328
  5628. //
  5629. this.label328.AutoSize = true;
  5630. this.label328.BackColor = System.Drawing.Color.Transparent;
  5631. this.label328.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5632. this.label328.Location = new System.Drawing.Point(3, 115);
  5633. this.label328.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5634. this.label328.Name = "label328";
  5635. this.label328.Size = new System.Drawing.Size(82, 15);
  5636. this.label328.TabIndex = 6;
  5637. this.label328.Text = "工作状态:";
  5638. //
  5639. // lblrgv13
  5640. //
  5641. this.lblrgv13.AutoSize = true;
  5642. this.lblrgv13.BackColor = System.Drawing.Color.Transparent;
  5643. 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)));
  5644. this.lblrgv13.Location = new System.Drawing.Point(59, 32);
  5645. this.lblrgv13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5646. this.lblrgv13.Name = "lblrgv13";
  5647. this.lblrgv13.Size = new System.Drawing.Size(64, 20);
  5648. this.lblrgv13.TabIndex = 0;
  5649. this.lblrgv13.Text = "RGV13";
  5650. //
  5651. // GV13
  5652. //
  5653. this.GV13.BackColor = System.Drawing.Color.Transparent;
  5654. this.GV13.Image = ((System.Drawing.Image)(resources.GetObject("GV13.Image")));
  5655. this.GV13.Location = new System.Drawing.Point(88, -2);
  5656. this.GV13.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5657. this.GV13.Name = "GV13";
  5658. this.GV13.Size = new System.Drawing.Size(35, 32);
  5659. this.GV13.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5660. this.GV13.TabIndex = 65;
  5661. this.GV13.TabStop = false;
  5662. this.GV13.Tag = "1";
  5663. //
  5664. // pictureBox36
  5665. //
  5666. this.pictureBox36.BackColor = System.Drawing.Color.Transparent;
  5667. this.pictureBox36.Location = new System.Drawing.Point(87, -2);
  5668. this.pictureBox36.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5669. this.pictureBox36.Name = "pictureBox36";
  5670. this.pictureBox36.Size = new System.Drawing.Size(35, 32);
  5671. this.pictureBox36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5672. this.pictureBox36.TabIndex = 5;
  5673. this.pictureBox36.TabStop = false;
  5674. //
  5675. // myPanel11
  5676. //
  5677. this.myPanel11.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel11.BackgroundImage")));
  5678. this.myPanel11.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5679. this.myPanel11.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5680. this.myPanel11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5681. this.myPanel11.Controls.Add(this.label40);
  5682. this.myPanel11.Controls.Add(this.label41);
  5683. this.myPanel11.Controls.Add(this.label42);
  5684. this.myPanel11.Controls.Add(this.rgvOptType12);
  5685. this.myPanel11.Controls.Add(this.label302);
  5686. this.myPanel11.Controls.Add(this.label303);
  5687. this.myPanel11.Controls.Add(this.label304);
  5688. this.myPanel11.Controls.Add(this.rgvMode12);
  5689. this.myPanel11.Controls.Add(this.rgvOrdId12);
  5690. this.myPanel11.Controls.Add(this.label307);
  5691. this.myPanel11.Controls.Add(this.rgvPosTo12);
  5692. this.myPanel11.Controls.Add(this.label309);
  5693. this.myPanel11.Controls.Add(this.rgvPosFrom12);
  5694. this.myPanel11.Controls.Add(this.rgvStatus12);
  5695. this.myPanel11.Controls.Add(this.label312);
  5696. this.myPanel11.Controls.Add(this.lblrgv12);
  5697. this.myPanel11.Controls.Add(this.GV12);
  5698. this.myPanel11.Controls.Add(this.pictureBox34);
  5699. this.myPanel11.Location = new System.Drawing.Point(4190, 3);
  5700. this.myPanel11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5701. this.myPanel11.Name = "myPanel11";
  5702. this.myPanel11.Size = new System.Drawing.Size(217, 312);
  5703. this.myPanel11.TabIndex = 140;
  5704. //
  5705. // label40
  5706. //
  5707. this.label40.AutoSize = true;
  5708. this.label40.BackColor = System.Drawing.Color.Transparent;
  5709. this.label40.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5710. this.label40.Location = new System.Drawing.Point(4, 241);
  5711. this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5712. this.label40.Name = "label40";
  5713. this.label40.Size = new System.Drawing.Size(82, 15);
  5714. this.label40.TabIndex = 106;
  5715. this.label40.Text = "光电状态:";
  5716. //
  5717. // label41
  5718. //
  5719. this.label41.AutoSize = true;
  5720. this.label41.BackColor = System.Drawing.Color.Transparent;
  5721. this.label41.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5722. this.label41.Location = new System.Drawing.Point(3, 189);
  5723. this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5724. this.label41.Name = "label41";
  5725. this.label41.Size = new System.Drawing.Size(82, 15);
  5726. this.label41.TabIndex = 105;
  5727. this.label41.Text = "起始地址:";
  5728. //
  5729. // label42
  5730. //
  5731. this.label42.AutoSize = true;
  5732. this.label42.BackColor = System.Drawing.Color.Transparent;
  5733. this.label42.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5734. this.label42.ForeColor = System.Drawing.SystemColors.ControlText;
  5735. this.label42.Location = new System.Drawing.Point(3, 214);
  5736. this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5737. this.label42.Name = "label42";
  5738. this.label42.Size = new System.Drawing.Size(82, 15);
  5739. this.label42.TabIndex = 104;
  5740. this.label42.Text = "目标地址:";
  5741. //
  5742. // rgvOptType12
  5743. //
  5744. this.rgvOptType12.AutoSize = true;
  5745. this.rgvOptType12.BackColor = System.Drawing.Color.Transparent;
  5746. this.rgvOptType12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5747. this.rgvOptType12.ForeColor = System.Drawing.Color.Blue;
  5748. this.rgvOptType12.Location = new System.Drawing.Point(96, 166);
  5749. this.rgvOptType12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5750. this.rgvOptType12.Name = "rgvOptType12";
  5751. this.rgvOptType12.Size = new System.Drawing.Size(31, 15);
  5752. this.rgvOptType12.TabIndex = 101;
  5753. this.rgvOptType12.Text = "---";
  5754. //
  5755. // label302
  5756. //
  5757. this.label302.AutoSize = true;
  5758. this.label302.BackColor = System.Drawing.Color.Transparent;
  5759. this.label302.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5760. this.label302.Location = new System.Drawing.Point(3, 166);
  5761. this.label302.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5762. this.label302.Name = "label302";
  5763. this.label302.Size = new System.Drawing.Size(82, 15);
  5764. this.label302.TabIndex = 100;
  5765. this.label302.Text = "作业类型:";
  5766. //
  5767. // label303
  5768. //
  5769. this.label303.BackColor = System.Drawing.Color.Transparent;
  5770. this.label303.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5771. this.label303.ForeColor = System.Drawing.Color.Red;
  5772. this.label303.Location = new System.Drawing.Point(7, 58);
  5773. this.label303.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5774. this.label303.Name = "label303";
  5775. this.label303.Size = new System.Drawing.Size(201, 30);
  5776. this.label303.TabIndex = 92;
  5777. //
  5778. // label304
  5779. //
  5780. this.label304.AutoSize = true;
  5781. this.label304.BackColor = System.Drawing.Color.Transparent;
  5782. this.label304.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5783. this.label304.ForeColor = System.Drawing.Color.Blue;
  5784. this.label304.Location = new System.Drawing.Point(99, 242);
  5785. this.label304.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5786. this.label304.Name = "label304";
  5787. this.label304.Size = new System.Drawing.Size(31, 15);
  5788. this.label304.TabIndex = 72;
  5789. this.label304.Text = "---";
  5790. //
  5791. // rgvMode12
  5792. //
  5793. this.rgvMode12.AutoSize = true;
  5794. this.rgvMode12.BackColor = System.Drawing.Color.Transparent;
  5795. this.rgvMode12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5796. this.rgvMode12.ForeColor = System.Drawing.Color.Blue;
  5797. this.rgvMode12.Location = new System.Drawing.Point(96, 92);
  5798. this.rgvMode12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5799. this.rgvMode12.Name = "rgvMode12";
  5800. this.rgvMode12.Size = new System.Drawing.Size(31, 15);
  5801. this.rgvMode12.TabIndex = 12;
  5802. this.rgvMode12.Text = "---";
  5803. //
  5804. // rgvOrdId12
  5805. //
  5806. this.rgvOrdId12.AutoSize = true;
  5807. this.rgvOrdId12.BackColor = System.Drawing.Color.Transparent;
  5808. this.rgvOrdId12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5809. this.rgvOrdId12.ForeColor = System.Drawing.Color.Blue;
  5810. this.rgvOrdId12.Location = new System.Drawing.Point(96, 142);
  5811. this.rgvOrdId12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5812. this.rgvOrdId12.Name = "rgvOrdId12";
  5813. this.rgvOrdId12.Size = new System.Drawing.Size(31, 15);
  5814. this.rgvOrdId12.TabIndex = 64;
  5815. this.rgvOrdId12.Text = "---";
  5816. //
  5817. // label307
  5818. //
  5819. this.label307.AutoSize = true;
  5820. this.label307.BackColor = System.Drawing.Color.Transparent;
  5821. this.label307.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5822. this.label307.Location = new System.Drawing.Point(3, 142);
  5823. this.label307.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5824. this.label307.Name = "label307";
  5825. this.label307.Size = new System.Drawing.Size(82, 15);
  5826. this.label307.TabIndex = 63;
  5827. this.label307.Text = "工作指令:";
  5828. //
  5829. // rgvPosTo12
  5830. //
  5831. this.rgvPosTo12.AutoSize = true;
  5832. this.rgvPosTo12.BackColor = System.Drawing.Color.Transparent;
  5833. this.rgvPosTo12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5834. this.rgvPosTo12.ForeColor = System.Drawing.Color.Blue;
  5835. this.rgvPosTo12.Location = new System.Drawing.Point(97, 215);
  5836. this.rgvPosTo12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5837. this.rgvPosTo12.Name = "rgvPosTo12";
  5838. this.rgvPosTo12.Size = new System.Drawing.Size(31, 15);
  5839. this.rgvPosTo12.TabIndex = 16;
  5840. this.rgvPosTo12.Text = "---";
  5841. //
  5842. // label309
  5843. //
  5844. this.label309.AutoSize = true;
  5845. this.label309.BackColor = System.Drawing.Color.Transparent;
  5846. this.label309.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5847. this.label309.Location = new System.Drawing.Point(3, 92);
  5848. this.label309.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5849. this.label309.Name = "label309";
  5850. this.label309.Size = new System.Drawing.Size(82, 15);
  5851. this.label309.TabIndex = 15;
  5852. this.label309.Text = "工作模式:";
  5853. //
  5854. // rgvPosFrom12
  5855. //
  5856. this.rgvPosFrom12.AutoSize = true;
  5857. this.rgvPosFrom12.BackColor = System.Drawing.Color.Transparent;
  5858. this.rgvPosFrom12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5859. this.rgvPosFrom12.ForeColor = System.Drawing.Color.Blue;
  5860. this.rgvPosFrom12.Location = new System.Drawing.Point(97, 190);
  5861. this.rgvPosFrom12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5862. this.rgvPosFrom12.Name = "rgvPosFrom12";
  5863. this.rgvPosFrom12.Size = new System.Drawing.Size(31, 15);
  5864. this.rgvPosFrom12.TabIndex = 14;
  5865. this.rgvPosFrom12.Text = "---";
  5866. //
  5867. // rgvStatus12
  5868. //
  5869. this.rgvStatus12.AutoSize = true;
  5870. this.rgvStatus12.BackColor = System.Drawing.Color.Transparent;
  5871. this.rgvStatus12.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5872. this.rgvStatus12.ForeColor = System.Drawing.Color.Blue;
  5873. this.rgvStatus12.Location = new System.Drawing.Point(96, 115);
  5874. this.rgvStatus12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5875. this.rgvStatus12.Name = "rgvStatus12";
  5876. this.rgvStatus12.Size = new System.Drawing.Size(31, 15);
  5877. this.rgvStatus12.TabIndex = 10;
  5878. this.rgvStatus12.Text = "---";
  5879. //
  5880. // label312
  5881. //
  5882. this.label312.AutoSize = true;
  5883. this.label312.BackColor = System.Drawing.Color.Transparent;
  5884. this.label312.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5885. this.label312.Location = new System.Drawing.Point(3, 115);
  5886. this.label312.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5887. this.label312.Name = "label312";
  5888. this.label312.Size = new System.Drawing.Size(82, 15);
  5889. this.label312.TabIndex = 6;
  5890. this.label312.Text = "工作状态:";
  5891. //
  5892. // lblrgv12
  5893. //
  5894. this.lblrgv12.AutoSize = true;
  5895. this.lblrgv12.BackColor = System.Drawing.Color.Transparent;
  5896. 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)));
  5897. this.lblrgv12.Location = new System.Drawing.Point(59, 32);
  5898. this.lblrgv12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5899. this.lblrgv12.Name = "lblrgv12";
  5900. this.lblrgv12.Size = new System.Drawing.Size(64, 20);
  5901. this.lblrgv12.TabIndex = 0;
  5902. this.lblrgv12.Text = "RGV12";
  5903. //
  5904. // GV12
  5905. //
  5906. this.GV12.BackColor = System.Drawing.Color.Transparent;
  5907. this.GV12.Image = ((System.Drawing.Image)(resources.GetObject("GV12.Image")));
  5908. this.GV12.Location = new System.Drawing.Point(88, -2);
  5909. this.GV12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5910. this.GV12.Name = "GV12";
  5911. this.GV12.Size = new System.Drawing.Size(35, 32);
  5912. this.GV12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5913. this.GV12.TabIndex = 65;
  5914. this.GV12.TabStop = false;
  5915. this.GV12.Tag = "1";
  5916. //
  5917. // pictureBox34
  5918. //
  5919. this.pictureBox34.BackColor = System.Drawing.Color.Transparent;
  5920. this.pictureBox34.Location = new System.Drawing.Point(87, -2);
  5921. this.pictureBox34.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5922. this.pictureBox34.Name = "pictureBox34";
  5923. this.pictureBox34.Size = new System.Drawing.Size(35, 32);
  5924. this.pictureBox34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  5925. this.pictureBox34.TabIndex = 5;
  5926. this.pictureBox34.TabStop = false;
  5927. //
  5928. // myPanel16
  5929. //
  5930. this.myPanel16.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel16.BackgroundImage")));
  5931. this.myPanel16.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5932. this.myPanel16.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  5933. this.myPanel16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  5934. this.myPanel16.Controls.Add(this.label285);
  5935. this.myPanel16.Controls.Add(this.label286);
  5936. this.myPanel16.Controls.Add(this.label287);
  5937. this.myPanel16.Controls.Add(this.rgvOptType14);
  5938. this.myPanel16.Controls.Add(this.label289);
  5939. this.myPanel16.Controls.Add(this.label290);
  5940. this.myPanel16.Controls.Add(this.label291);
  5941. this.myPanel16.Controls.Add(this.rgvMode14);
  5942. this.myPanel16.Controls.Add(this.rgvOrdId14);
  5943. this.myPanel16.Controls.Add(this.label294);
  5944. this.myPanel16.Controls.Add(this.rgvPosTo14);
  5945. this.myPanel16.Controls.Add(this.label296);
  5946. this.myPanel16.Controls.Add(this.rgvPosFrom14);
  5947. this.myPanel16.Controls.Add(this.rgvStatus14);
  5948. this.myPanel16.Controls.Add(this.label299);
  5949. this.myPanel16.Controls.Add(this.lblrgv14);
  5950. this.myPanel16.Controls.Add(this.GV14);
  5951. this.myPanel16.Controls.Add(this.pictureBox33);
  5952. this.myPanel16.Location = new System.Drawing.Point(4627, 0);
  5953. this.myPanel16.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  5954. this.myPanel16.Name = "myPanel16";
  5955. this.myPanel16.Size = new System.Drawing.Size(217, 312);
  5956. this.myPanel16.TabIndex = 139;
  5957. //
  5958. // label285
  5959. //
  5960. this.label285.AutoSize = true;
  5961. this.label285.BackColor = System.Drawing.Color.Transparent;
  5962. this.label285.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5963. this.label285.Location = new System.Drawing.Point(4, 241);
  5964. this.label285.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5965. this.label285.Name = "label285";
  5966. this.label285.Size = new System.Drawing.Size(82, 15);
  5967. this.label285.TabIndex = 106;
  5968. this.label285.Text = "光电状态:";
  5969. //
  5970. // label286
  5971. //
  5972. this.label286.AutoSize = true;
  5973. this.label286.BackColor = System.Drawing.Color.Transparent;
  5974. this.label286.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5975. this.label286.Location = new System.Drawing.Point(3, 189);
  5976. this.label286.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5977. this.label286.Name = "label286";
  5978. this.label286.Size = new System.Drawing.Size(82, 15);
  5979. this.label286.TabIndex = 105;
  5980. this.label286.Text = "起始地址:";
  5981. //
  5982. // label287
  5983. //
  5984. this.label287.AutoSize = true;
  5985. this.label287.BackColor = System.Drawing.Color.Transparent;
  5986. this.label287.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  5987. this.label287.ForeColor = System.Drawing.SystemColors.ControlText;
  5988. this.label287.Location = new System.Drawing.Point(3, 214);
  5989. this.label287.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  5990. this.label287.Name = "label287";
  5991. this.label287.Size = new System.Drawing.Size(82, 15);
  5992. this.label287.TabIndex = 104;
  5993. this.label287.Text = "目标地址:";
  5994. //
  5995. // rgvOptType14
  5996. //
  5997. this.rgvOptType14.AutoSize = true;
  5998. this.rgvOptType14.BackColor = System.Drawing.Color.Transparent;
  5999. this.rgvOptType14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6000. this.rgvOptType14.ForeColor = System.Drawing.Color.Blue;
  6001. this.rgvOptType14.Location = new System.Drawing.Point(96, 166);
  6002. this.rgvOptType14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6003. this.rgvOptType14.Name = "rgvOptType14";
  6004. this.rgvOptType14.Size = new System.Drawing.Size(31, 15);
  6005. this.rgvOptType14.TabIndex = 101;
  6006. this.rgvOptType14.Text = "---";
  6007. //
  6008. // label289
  6009. //
  6010. this.label289.AutoSize = true;
  6011. this.label289.BackColor = System.Drawing.Color.Transparent;
  6012. this.label289.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6013. this.label289.Location = new System.Drawing.Point(3, 166);
  6014. this.label289.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6015. this.label289.Name = "label289";
  6016. this.label289.Size = new System.Drawing.Size(82, 15);
  6017. this.label289.TabIndex = 100;
  6018. this.label289.Text = "作业类型:";
  6019. //
  6020. // label290
  6021. //
  6022. this.label290.BackColor = System.Drawing.Color.Transparent;
  6023. this.label290.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6024. this.label290.ForeColor = System.Drawing.Color.Red;
  6025. this.label290.Location = new System.Drawing.Point(7, 58);
  6026. this.label290.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6027. this.label290.Name = "label290";
  6028. this.label290.Size = new System.Drawing.Size(201, 30);
  6029. this.label290.TabIndex = 92;
  6030. //
  6031. // label291
  6032. //
  6033. this.label291.AutoSize = true;
  6034. this.label291.BackColor = System.Drawing.Color.Transparent;
  6035. this.label291.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6036. this.label291.ForeColor = System.Drawing.Color.Blue;
  6037. this.label291.Location = new System.Drawing.Point(99, 242);
  6038. this.label291.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6039. this.label291.Name = "label291";
  6040. this.label291.Size = new System.Drawing.Size(31, 15);
  6041. this.label291.TabIndex = 72;
  6042. this.label291.Text = "---";
  6043. //
  6044. // rgvMode14
  6045. //
  6046. this.rgvMode14.AutoSize = true;
  6047. this.rgvMode14.BackColor = System.Drawing.Color.Transparent;
  6048. this.rgvMode14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6049. this.rgvMode14.ForeColor = System.Drawing.Color.Blue;
  6050. this.rgvMode14.Location = new System.Drawing.Point(96, 92);
  6051. this.rgvMode14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6052. this.rgvMode14.Name = "rgvMode14";
  6053. this.rgvMode14.Size = new System.Drawing.Size(31, 15);
  6054. this.rgvMode14.TabIndex = 12;
  6055. this.rgvMode14.Text = "---";
  6056. //
  6057. // rgvOrdId14
  6058. //
  6059. this.rgvOrdId14.AutoSize = true;
  6060. this.rgvOrdId14.BackColor = System.Drawing.Color.Transparent;
  6061. this.rgvOrdId14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6062. this.rgvOrdId14.ForeColor = System.Drawing.Color.Blue;
  6063. this.rgvOrdId14.Location = new System.Drawing.Point(96, 142);
  6064. this.rgvOrdId14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6065. this.rgvOrdId14.Name = "rgvOrdId14";
  6066. this.rgvOrdId14.Size = new System.Drawing.Size(31, 15);
  6067. this.rgvOrdId14.TabIndex = 64;
  6068. this.rgvOrdId14.Text = "---";
  6069. //
  6070. // label294
  6071. //
  6072. this.label294.AutoSize = true;
  6073. this.label294.BackColor = System.Drawing.Color.Transparent;
  6074. this.label294.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6075. this.label294.Location = new System.Drawing.Point(3, 142);
  6076. this.label294.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6077. this.label294.Name = "label294";
  6078. this.label294.Size = new System.Drawing.Size(82, 15);
  6079. this.label294.TabIndex = 63;
  6080. this.label294.Text = "工作指令:";
  6081. //
  6082. // rgvPosTo14
  6083. //
  6084. this.rgvPosTo14.AutoSize = true;
  6085. this.rgvPosTo14.BackColor = System.Drawing.Color.Transparent;
  6086. this.rgvPosTo14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6087. this.rgvPosTo14.ForeColor = System.Drawing.Color.Blue;
  6088. this.rgvPosTo14.Location = new System.Drawing.Point(97, 215);
  6089. this.rgvPosTo14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6090. this.rgvPosTo14.Name = "rgvPosTo14";
  6091. this.rgvPosTo14.Size = new System.Drawing.Size(31, 15);
  6092. this.rgvPosTo14.TabIndex = 16;
  6093. this.rgvPosTo14.Text = "---";
  6094. //
  6095. // label296
  6096. //
  6097. this.label296.AutoSize = true;
  6098. this.label296.BackColor = System.Drawing.Color.Transparent;
  6099. this.label296.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6100. this.label296.Location = new System.Drawing.Point(3, 92);
  6101. this.label296.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6102. this.label296.Name = "label296";
  6103. this.label296.Size = new System.Drawing.Size(82, 15);
  6104. this.label296.TabIndex = 15;
  6105. this.label296.Text = "工作模式:";
  6106. //
  6107. // rgvPosFrom14
  6108. //
  6109. this.rgvPosFrom14.AutoSize = true;
  6110. this.rgvPosFrom14.BackColor = System.Drawing.Color.Transparent;
  6111. this.rgvPosFrom14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6112. this.rgvPosFrom14.ForeColor = System.Drawing.Color.Blue;
  6113. this.rgvPosFrom14.Location = new System.Drawing.Point(97, 190);
  6114. this.rgvPosFrom14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6115. this.rgvPosFrom14.Name = "rgvPosFrom14";
  6116. this.rgvPosFrom14.Size = new System.Drawing.Size(31, 15);
  6117. this.rgvPosFrom14.TabIndex = 14;
  6118. this.rgvPosFrom14.Text = "---";
  6119. //
  6120. // rgvStatus14
  6121. //
  6122. this.rgvStatus14.AutoSize = true;
  6123. this.rgvStatus14.BackColor = System.Drawing.Color.Transparent;
  6124. this.rgvStatus14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6125. this.rgvStatus14.ForeColor = System.Drawing.Color.Blue;
  6126. this.rgvStatus14.Location = new System.Drawing.Point(96, 115);
  6127. this.rgvStatus14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6128. this.rgvStatus14.Name = "rgvStatus14";
  6129. this.rgvStatus14.Size = new System.Drawing.Size(31, 15);
  6130. this.rgvStatus14.TabIndex = 10;
  6131. this.rgvStatus14.Text = "---";
  6132. //
  6133. // label299
  6134. //
  6135. this.label299.AutoSize = true;
  6136. this.label299.BackColor = System.Drawing.Color.Transparent;
  6137. this.label299.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6138. this.label299.Location = new System.Drawing.Point(3, 115);
  6139. this.label299.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6140. this.label299.Name = "label299";
  6141. this.label299.Size = new System.Drawing.Size(82, 15);
  6142. this.label299.TabIndex = 6;
  6143. this.label299.Text = "工作状态:";
  6144. //
  6145. // lblrgv14
  6146. //
  6147. this.lblrgv14.AutoSize = true;
  6148. this.lblrgv14.BackColor = System.Drawing.Color.Transparent;
  6149. 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)));
  6150. this.lblrgv14.Location = new System.Drawing.Point(59, 32);
  6151. this.lblrgv14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6152. this.lblrgv14.Name = "lblrgv14";
  6153. this.lblrgv14.Size = new System.Drawing.Size(64, 20);
  6154. this.lblrgv14.TabIndex = 0;
  6155. this.lblrgv14.Text = "RGV14";
  6156. //
  6157. // GV14
  6158. //
  6159. this.GV14.BackColor = System.Drawing.Color.Transparent;
  6160. this.GV14.Image = ((System.Drawing.Image)(resources.GetObject("GV14.Image")));
  6161. this.GV14.Location = new System.Drawing.Point(88, -2);
  6162. this.GV14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6163. this.GV14.Name = "GV14";
  6164. this.GV14.Size = new System.Drawing.Size(35, 32);
  6165. this.GV14.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6166. this.GV14.TabIndex = 65;
  6167. this.GV14.TabStop = false;
  6168. this.GV14.Tag = "1";
  6169. //
  6170. // pictureBox33
  6171. //
  6172. this.pictureBox33.BackColor = System.Drawing.Color.Transparent;
  6173. this.pictureBox33.Location = new System.Drawing.Point(87, -2);
  6174. this.pictureBox33.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6175. this.pictureBox33.Name = "pictureBox33";
  6176. this.pictureBox33.Size = new System.Drawing.Size(35, 32);
  6177. this.pictureBox33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6178. this.pictureBox33.TabIndex = 5;
  6179. this.pictureBox33.TabStop = false;
  6180. //
  6181. // myPanel15
  6182. //
  6183. this.myPanel15.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel15.BackgroundImage")));
  6184. this.myPanel15.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6185. this.myPanel15.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6186. this.myPanel15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6187. this.myPanel15.Controls.Add(this.label269);
  6188. this.myPanel15.Controls.Add(this.label270);
  6189. this.myPanel15.Controls.Add(this.label271);
  6190. this.myPanel15.Controls.Add(this.rgvOptType11);
  6191. this.myPanel15.Controls.Add(this.label273);
  6192. this.myPanel15.Controls.Add(this.label274);
  6193. this.myPanel15.Controls.Add(this.label275);
  6194. this.myPanel15.Controls.Add(this.rgvMode11);
  6195. this.myPanel15.Controls.Add(this.rgvOrdId11);
  6196. this.myPanel15.Controls.Add(this.label278);
  6197. this.myPanel15.Controls.Add(this.rgvPosTo11);
  6198. this.myPanel15.Controls.Add(this.label280);
  6199. this.myPanel15.Controls.Add(this.rgvPosFrom11);
  6200. this.myPanel15.Controls.Add(this.rgvStatus11);
  6201. this.myPanel15.Controls.Add(this.label283);
  6202. this.myPanel15.Controls.Add(this.lblrgv11);
  6203. this.myPanel15.Controls.Add(this.GV11);
  6204. this.myPanel15.Controls.Add(this.pictureBox31);
  6205. this.myPanel15.Location = new System.Drawing.Point(3971, 1);
  6206. this.myPanel15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6207. this.myPanel15.Name = "myPanel15";
  6208. this.myPanel15.Size = new System.Drawing.Size(217, 312);
  6209. this.myPanel15.TabIndex = 138;
  6210. //
  6211. // label269
  6212. //
  6213. this.label269.AutoSize = true;
  6214. this.label269.BackColor = System.Drawing.Color.Transparent;
  6215. this.label269.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6216. this.label269.Location = new System.Drawing.Point(4, 241);
  6217. this.label269.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6218. this.label269.Name = "label269";
  6219. this.label269.Size = new System.Drawing.Size(82, 15);
  6220. this.label269.TabIndex = 106;
  6221. this.label269.Text = "光电状态:";
  6222. //
  6223. // label270
  6224. //
  6225. this.label270.AutoSize = true;
  6226. this.label270.BackColor = System.Drawing.Color.Transparent;
  6227. this.label270.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6228. this.label270.Location = new System.Drawing.Point(3, 189);
  6229. this.label270.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6230. this.label270.Name = "label270";
  6231. this.label270.Size = new System.Drawing.Size(82, 15);
  6232. this.label270.TabIndex = 105;
  6233. this.label270.Text = "起始地址:";
  6234. //
  6235. // label271
  6236. //
  6237. this.label271.AutoSize = true;
  6238. this.label271.BackColor = System.Drawing.Color.Transparent;
  6239. this.label271.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6240. this.label271.ForeColor = System.Drawing.SystemColors.ControlText;
  6241. this.label271.Location = new System.Drawing.Point(3, 214);
  6242. this.label271.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6243. this.label271.Name = "label271";
  6244. this.label271.Size = new System.Drawing.Size(82, 15);
  6245. this.label271.TabIndex = 104;
  6246. this.label271.Text = "目标地址:";
  6247. //
  6248. // rgvOptType11
  6249. //
  6250. this.rgvOptType11.AutoSize = true;
  6251. this.rgvOptType11.BackColor = System.Drawing.Color.Transparent;
  6252. this.rgvOptType11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6253. this.rgvOptType11.ForeColor = System.Drawing.Color.Blue;
  6254. this.rgvOptType11.Location = new System.Drawing.Point(96, 166);
  6255. this.rgvOptType11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6256. this.rgvOptType11.Name = "rgvOptType11";
  6257. this.rgvOptType11.Size = new System.Drawing.Size(31, 15);
  6258. this.rgvOptType11.TabIndex = 101;
  6259. this.rgvOptType11.Text = "---";
  6260. //
  6261. // label273
  6262. //
  6263. this.label273.AutoSize = true;
  6264. this.label273.BackColor = System.Drawing.Color.Transparent;
  6265. this.label273.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6266. this.label273.Location = new System.Drawing.Point(3, 166);
  6267. this.label273.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6268. this.label273.Name = "label273";
  6269. this.label273.Size = new System.Drawing.Size(82, 15);
  6270. this.label273.TabIndex = 100;
  6271. this.label273.Text = "作业类型:";
  6272. //
  6273. // label274
  6274. //
  6275. this.label274.BackColor = System.Drawing.Color.Transparent;
  6276. this.label274.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6277. this.label274.ForeColor = System.Drawing.Color.Red;
  6278. this.label274.Location = new System.Drawing.Point(7, 58);
  6279. this.label274.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6280. this.label274.Name = "label274";
  6281. this.label274.Size = new System.Drawing.Size(201, 30);
  6282. this.label274.TabIndex = 92;
  6283. //
  6284. // label275
  6285. //
  6286. this.label275.AutoSize = true;
  6287. this.label275.BackColor = System.Drawing.Color.Transparent;
  6288. this.label275.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6289. this.label275.ForeColor = System.Drawing.Color.Blue;
  6290. this.label275.Location = new System.Drawing.Point(99, 242);
  6291. this.label275.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6292. this.label275.Name = "label275";
  6293. this.label275.Size = new System.Drawing.Size(31, 15);
  6294. this.label275.TabIndex = 72;
  6295. this.label275.Text = "---";
  6296. //
  6297. // rgvMode11
  6298. //
  6299. this.rgvMode11.AutoSize = true;
  6300. this.rgvMode11.BackColor = System.Drawing.Color.Transparent;
  6301. this.rgvMode11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6302. this.rgvMode11.ForeColor = System.Drawing.Color.Blue;
  6303. this.rgvMode11.Location = new System.Drawing.Point(96, 92);
  6304. this.rgvMode11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6305. this.rgvMode11.Name = "rgvMode11";
  6306. this.rgvMode11.Size = new System.Drawing.Size(31, 15);
  6307. this.rgvMode11.TabIndex = 12;
  6308. this.rgvMode11.Text = "---";
  6309. //
  6310. // rgvOrdId11
  6311. //
  6312. this.rgvOrdId11.AutoSize = true;
  6313. this.rgvOrdId11.BackColor = System.Drawing.Color.Transparent;
  6314. this.rgvOrdId11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6315. this.rgvOrdId11.ForeColor = System.Drawing.Color.Blue;
  6316. this.rgvOrdId11.Location = new System.Drawing.Point(96, 142);
  6317. this.rgvOrdId11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6318. this.rgvOrdId11.Name = "rgvOrdId11";
  6319. this.rgvOrdId11.Size = new System.Drawing.Size(31, 15);
  6320. this.rgvOrdId11.TabIndex = 64;
  6321. this.rgvOrdId11.Text = "---";
  6322. //
  6323. // label278
  6324. //
  6325. this.label278.AutoSize = true;
  6326. this.label278.BackColor = System.Drawing.Color.Transparent;
  6327. this.label278.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6328. this.label278.Location = new System.Drawing.Point(3, 142);
  6329. this.label278.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6330. this.label278.Name = "label278";
  6331. this.label278.Size = new System.Drawing.Size(82, 15);
  6332. this.label278.TabIndex = 63;
  6333. this.label278.Text = "工作指令:";
  6334. //
  6335. // rgvPosTo11
  6336. //
  6337. this.rgvPosTo11.AutoSize = true;
  6338. this.rgvPosTo11.BackColor = System.Drawing.Color.Transparent;
  6339. this.rgvPosTo11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6340. this.rgvPosTo11.ForeColor = System.Drawing.Color.Blue;
  6341. this.rgvPosTo11.Location = new System.Drawing.Point(97, 215);
  6342. this.rgvPosTo11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6343. this.rgvPosTo11.Name = "rgvPosTo11";
  6344. this.rgvPosTo11.Size = new System.Drawing.Size(31, 15);
  6345. this.rgvPosTo11.TabIndex = 16;
  6346. this.rgvPosTo11.Text = "---";
  6347. //
  6348. // label280
  6349. //
  6350. this.label280.AutoSize = true;
  6351. this.label280.BackColor = System.Drawing.Color.Transparent;
  6352. this.label280.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6353. this.label280.Location = new System.Drawing.Point(3, 92);
  6354. this.label280.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6355. this.label280.Name = "label280";
  6356. this.label280.Size = new System.Drawing.Size(82, 15);
  6357. this.label280.TabIndex = 15;
  6358. this.label280.Text = "工作模式:";
  6359. //
  6360. // rgvPosFrom11
  6361. //
  6362. this.rgvPosFrom11.AutoSize = true;
  6363. this.rgvPosFrom11.BackColor = System.Drawing.Color.Transparent;
  6364. this.rgvPosFrom11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6365. this.rgvPosFrom11.ForeColor = System.Drawing.Color.Blue;
  6366. this.rgvPosFrom11.Location = new System.Drawing.Point(97, 190);
  6367. this.rgvPosFrom11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6368. this.rgvPosFrom11.Name = "rgvPosFrom11";
  6369. this.rgvPosFrom11.Size = new System.Drawing.Size(31, 15);
  6370. this.rgvPosFrom11.TabIndex = 14;
  6371. this.rgvPosFrom11.Text = "---";
  6372. //
  6373. // rgvStatus11
  6374. //
  6375. this.rgvStatus11.AutoSize = true;
  6376. this.rgvStatus11.BackColor = System.Drawing.Color.Transparent;
  6377. this.rgvStatus11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6378. this.rgvStatus11.ForeColor = System.Drawing.Color.Blue;
  6379. this.rgvStatus11.Location = new System.Drawing.Point(96, 115);
  6380. this.rgvStatus11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6381. this.rgvStatus11.Name = "rgvStatus11";
  6382. this.rgvStatus11.Size = new System.Drawing.Size(31, 15);
  6383. this.rgvStatus11.TabIndex = 10;
  6384. this.rgvStatus11.Text = "---";
  6385. //
  6386. // label283
  6387. //
  6388. this.label283.AutoSize = true;
  6389. this.label283.BackColor = System.Drawing.Color.Transparent;
  6390. this.label283.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6391. this.label283.Location = new System.Drawing.Point(3, 115);
  6392. this.label283.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6393. this.label283.Name = "label283";
  6394. this.label283.Size = new System.Drawing.Size(82, 15);
  6395. this.label283.TabIndex = 6;
  6396. this.label283.Text = "工作状态:";
  6397. //
  6398. // lblrgv11
  6399. //
  6400. this.lblrgv11.AutoSize = true;
  6401. this.lblrgv11.BackColor = System.Drawing.Color.Transparent;
  6402. 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)));
  6403. this.lblrgv11.Location = new System.Drawing.Point(59, 32);
  6404. this.lblrgv11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6405. this.lblrgv11.Name = "lblrgv11";
  6406. this.lblrgv11.Size = new System.Drawing.Size(64, 20);
  6407. this.lblrgv11.TabIndex = 0;
  6408. this.lblrgv11.Text = "RGV11";
  6409. //
  6410. // GV11
  6411. //
  6412. this.GV11.BackColor = System.Drawing.Color.Transparent;
  6413. this.GV11.Image = ((System.Drawing.Image)(resources.GetObject("GV11.Image")));
  6414. this.GV11.Location = new System.Drawing.Point(88, -2);
  6415. this.GV11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6416. this.GV11.Name = "GV11";
  6417. this.GV11.Size = new System.Drawing.Size(35, 32);
  6418. this.GV11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6419. this.GV11.TabIndex = 65;
  6420. this.GV11.TabStop = false;
  6421. this.GV11.Tag = "1";
  6422. //
  6423. // pictureBox31
  6424. //
  6425. this.pictureBox31.BackColor = System.Drawing.Color.Transparent;
  6426. this.pictureBox31.Location = new System.Drawing.Point(87, -2);
  6427. this.pictureBox31.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6428. this.pictureBox31.Name = "pictureBox31";
  6429. this.pictureBox31.Size = new System.Drawing.Size(35, 32);
  6430. this.pictureBox31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6431. this.pictureBox31.TabIndex = 5;
  6432. this.pictureBox31.TabStop = false;
  6433. //
  6434. // myPanel14
  6435. //
  6436. this.myPanel14.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel14.BackgroundImage")));
  6437. this.myPanel14.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6438. this.myPanel14.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6439. this.myPanel14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6440. this.myPanel14.Controls.Add(this.label253);
  6441. this.myPanel14.Controls.Add(this.label254);
  6442. this.myPanel14.Controls.Add(this.label255);
  6443. this.myPanel14.Controls.Add(this.rgvOptType10);
  6444. this.myPanel14.Controls.Add(this.label257);
  6445. this.myPanel14.Controls.Add(this.label258);
  6446. this.myPanel14.Controls.Add(this.label259);
  6447. this.myPanel14.Controls.Add(this.rgvMode10);
  6448. this.myPanel14.Controls.Add(this.rgvOrdId10);
  6449. this.myPanel14.Controls.Add(this.label262);
  6450. this.myPanel14.Controls.Add(this.rgvPosTo10);
  6451. this.myPanel14.Controls.Add(this.label264);
  6452. this.myPanel14.Controls.Add(this.rgvPosFrom10);
  6453. this.myPanel14.Controls.Add(this.rgvStatus10);
  6454. this.myPanel14.Controls.Add(this.label267);
  6455. this.myPanel14.Controls.Add(this.lblrgv10);
  6456. this.myPanel14.Controls.Add(this.GV10);
  6457. this.myPanel14.Controls.Add(this.pictureBox28);
  6458. this.myPanel14.Location = new System.Drawing.Point(3753, 2);
  6459. this.myPanel14.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6460. this.myPanel14.Name = "myPanel14";
  6461. this.myPanel14.Size = new System.Drawing.Size(217, 312);
  6462. this.myPanel14.TabIndex = 137;
  6463. //
  6464. // label253
  6465. //
  6466. this.label253.AutoSize = true;
  6467. this.label253.BackColor = System.Drawing.Color.Transparent;
  6468. this.label253.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6469. this.label253.Location = new System.Drawing.Point(4, 241);
  6470. this.label253.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6471. this.label253.Name = "label253";
  6472. this.label253.Size = new System.Drawing.Size(82, 15);
  6473. this.label253.TabIndex = 106;
  6474. this.label253.Text = "光电状态:";
  6475. //
  6476. // label254
  6477. //
  6478. this.label254.AutoSize = true;
  6479. this.label254.BackColor = System.Drawing.Color.Transparent;
  6480. this.label254.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6481. this.label254.Location = new System.Drawing.Point(3, 189);
  6482. this.label254.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6483. this.label254.Name = "label254";
  6484. this.label254.Size = new System.Drawing.Size(82, 15);
  6485. this.label254.TabIndex = 105;
  6486. this.label254.Text = "起始地址:";
  6487. //
  6488. // label255
  6489. //
  6490. this.label255.AutoSize = true;
  6491. this.label255.BackColor = System.Drawing.Color.Transparent;
  6492. this.label255.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6493. this.label255.ForeColor = System.Drawing.SystemColors.ControlText;
  6494. this.label255.Location = new System.Drawing.Point(3, 214);
  6495. this.label255.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6496. this.label255.Name = "label255";
  6497. this.label255.Size = new System.Drawing.Size(82, 15);
  6498. this.label255.TabIndex = 104;
  6499. this.label255.Text = "目标地址:";
  6500. //
  6501. // rgvOptType10
  6502. //
  6503. this.rgvOptType10.AutoSize = true;
  6504. this.rgvOptType10.BackColor = System.Drawing.Color.Transparent;
  6505. this.rgvOptType10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6506. this.rgvOptType10.ForeColor = System.Drawing.Color.Blue;
  6507. this.rgvOptType10.Location = new System.Drawing.Point(96, 166);
  6508. this.rgvOptType10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6509. this.rgvOptType10.Name = "rgvOptType10";
  6510. this.rgvOptType10.Size = new System.Drawing.Size(31, 15);
  6511. this.rgvOptType10.TabIndex = 101;
  6512. this.rgvOptType10.Text = "---";
  6513. //
  6514. // label257
  6515. //
  6516. this.label257.AutoSize = true;
  6517. this.label257.BackColor = System.Drawing.Color.Transparent;
  6518. this.label257.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6519. this.label257.Location = new System.Drawing.Point(3, 166);
  6520. this.label257.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6521. this.label257.Name = "label257";
  6522. this.label257.Size = new System.Drawing.Size(82, 15);
  6523. this.label257.TabIndex = 100;
  6524. this.label257.Text = "作业类型:";
  6525. //
  6526. // label258
  6527. //
  6528. this.label258.BackColor = System.Drawing.Color.Transparent;
  6529. this.label258.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6530. this.label258.ForeColor = System.Drawing.Color.Red;
  6531. this.label258.Location = new System.Drawing.Point(7, 58);
  6532. this.label258.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6533. this.label258.Name = "label258";
  6534. this.label258.Size = new System.Drawing.Size(201, 30);
  6535. this.label258.TabIndex = 92;
  6536. //
  6537. // label259
  6538. //
  6539. this.label259.AutoSize = true;
  6540. this.label259.BackColor = System.Drawing.Color.Transparent;
  6541. this.label259.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6542. this.label259.ForeColor = System.Drawing.Color.Blue;
  6543. this.label259.Location = new System.Drawing.Point(99, 242);
  6544. this.label259.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6545. this.label259.Name = "label259";
  6546. this.label259.Size = new System.Drawing.Size(31, 15);
  6547. this.label259.TabIndex = 72;
  6548. this.label259.Text = "---";
  6549. //
  6550. // rgvMode10
  6551. //
  6552. this.rgvMode10.AutoSize = true;
  6553. this.rgvMode10.BackColor = System.Drawing.Color.Transparent;
  6554. this.rgvMode10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6555. this.rgvMode10.ForeColor = System.Drawing.Color.Blue;
  6556. this.rgvMode10.Location = new System.Drawing.Point(96, 92);
  6557. this.rgvMode10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6558. this.rgvMode10.Name = "rgvMode10";
  6559. this.rgvMode10.Size = new System.Drawing.Size(31, 15);
  6560. this.rgvMode10.TabIndex = 12;
  6561. this.rgvMode10.Text = "---";
  6562. //
  6563. // rgvOrdId10
  6564. //
  6565. this.rgvOrdId10.AutoSize = true;
  6566. this.rgvOrdId10.BackColor = System.Drawing.Color.Transparent;
  6567. this.rgvOrdId10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6568. this.rgvOrdId10.ForeColor = System.Drawing.Color.Blue;
  6569. this.rgvOrdId10.Location = new System.Drawing.Point(96, 142);
  6570. this.rgvOrdId10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6571. this.rgvOrdId10.Name = "rgvOrdId10";
  6572. this.rgvOrdId10.Size = new System.Drawing.Size(31, 15);
  6573. this.rgvOrdId10.TabIndex = 64;
  6574. this.rgvOrdId10.Text = "---";
  6575. //
  6576. // label262
  6577. //
  6578. this.label262.AutoSize = true;
  6579. this.label262.BackColor = System.Drawing.Color.Transparent;
  6580. this.label262.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6581. this.label262.Location = new System.Drawing.Point(3, 142);
  6582. this.label262.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6583. this.label262.Name = "label262";
  6584. this.label262.Size = new System.Drawing.Size(82, 15);
  6585. this.label262.TabIndex = 63;
  6586. this.label262.Text = "工作指令:";
  6587. //
  6588. // rgvPosTo10
  6589. //
  6590. this.rgvPosTo10.AutoSize = true;
  6591. this.rgvPosTo10.BackColor = System.Drawing.Color.Transparent;
  6592. this.rgvPosTo10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6593. this.rgvPosTo10.ForeColor = System.Drawing.Color.Blue;
  6594. this.rgvPosTo10.Location = new System.Drawing.Point(97, 215);
  6595. this.rgvPosTo10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6596. this.rgvPosTo10.Name = "rgvPosTo10";
  6597. this.rgvPosTo10.Size = new System.Drawing.Size(31, 15);
  6598. this.rgvPosTo10.TabIndex = 16;
  6599. this.rgvPosTo10.Text = "---";
  6600. //
  6601. // label264
  6602. //
  6603. this.label264.AutoSize = true;
  6604. this.label264.BackColor = System.Drawing.Color.Transparent;
  6605. this.label264.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6606. this.label264.Location = new System.Drawing.Point(3, 92);
  6607. this.label264.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6608. this.label264.Name = "label264";
  6609. this.label264.Size = new System.Drawing.Size(82, 15);
  6610. this.label264.TabIndex = 15;
  6611. this.label264.Text = "工作模式:";
  6612. //
  6613. // rgvPosFrom10
  6614. //
  6615. this.rgvPosFrom10.AutoSize = true;
  6616. this.rgvPosFrom10.BackColor = System.Drawing.Color.Transparent;
  6617. this.rgvPosFrom10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6618. this.rgvPosFrom10.ForeColor = System.Drawing.Color.Blue;
  6619. this.rgvPosFrom10.Location = new System.Drawing.Point(97, 190);
  6620. this.rgvPosFrom10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6621. this.rgvPosFrom10.Name = "rgvPosFrom10";
  6622. this.rgvPosFrom10.Size = new System.Drawing.Size(31, 15);
  6623. this.rgvPosFrom10.TabIndex = 14;
  6624. this.rgvPosFrom10.Text = "---";
  6625. //
  6626. // rgvStatus10
  6627. //
  6628. this.rgvStatus10.AutoSize = true;
  6629. this.rgvStatus10.BackColor = System.Drawing.Color.Transparent;
  6630. this.rgvStatus10.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6631. this.rgvStatus10.ForeColor = System.Drawing.Color.Blue;
  6632. this.rgvStatus10.Location = new System.Drawing.Point(96, 115);
  6633. this.rgvStatus10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6634. this.rgvStatus10.Name = "rgvStatus10";
  6635. this.rgvStatus10.Size = new System.Drawing.Size(31, 15);
  6636. this.rgvStatus10.TabIndex = 10;
  6637. this.rgvStatus10.Text = "---";
  6638. //
  6639. // label267
  6640. //
  6641. this.label267.AutoSize = true;
  6642. this.label267.BackColor = System.Drawing.Color.Transparent;
  6643. this.label267.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6644. this.label267.Location = new System.Drawing.Point(3, 115);
  6645. this.label267.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6646. this.label267.Name = "label267";
  6647. this.label267.Size = new System.Drawing.Size(82, 15);
  6648. this.label267.TabIndex = 6;
  6649. this.label267.Text = "工作状态:";
  6650. //
  6651. // lblrgv10
  6652. //
  6653. this.lblrgv10.AutoSize = true;
  6654. this.lblrgv10.BackColor = System.Drawing.Color.Transparent;
  6655. 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)));
  6656. this.lblrgv10.Location = new System.Drawing.Point(59, 32);
  6657. this.lblrgv10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6658. this.lblrgv10.Name = "lblrgv10";
  6659. this.lblrgv10.Size = new System.Drawing.Size(64, 20);
  6660. this.lblrgv10.TabIndex = 0;
  6661. this.lblrgv10.Text = "RGV10";
  6662. //
  6663. // GV10
  6664. //
  6665. this.GV10.BackColor = System.Drawing.Color.Transparent;
  6666. this.GV10.Image = ((System.Drawing.Image)(resources.GetObject("GV10.Image")));
  6667. this.GV10.Location = new System.Drawing.Point(88, -2);
  6668. this.GV10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6669. this.GV10.Name = "GV10";
  6670. this.GV10.Size = new System.Drawing.Size(35, 32);
  6671. this.GV10.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6672. this.GV10.TabIndex = 65;
  6673. this.GV10.TabStop = false;
  6674. this.GV10.Tag = "1";
  6675. //
  6676. // pictureBox28
  6677. //
  6678. this.pictureBox28.BackColor = System.Drawing.Color.Transparent;
  6679. this.pictureBox28.Location = new System.Drawing.Point(87, -2);
  6680. this.pictureBox28.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6681. this.pictureBox28.Name = "pictureBox28";
  6682. this.pictureBox28.Size = new System.Drawing.Size(35, 32);
  6683. this.pictureBox28.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6684. this.pictureBox28.TabIndex = 5;
  6685. this.pictureBox28.TabStop = false;
  6686. //
  6687. // myPanel13
  6688. //
  6689. this.myPanel13.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel13.BackgroundImage")));
  6690. this.myPanel13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6691. this.myPanel13.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6692. this.myPanel13.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6693. this.myPanel13.Controls.Add(this.label237);
  6694. this.myPanel13.Controls.Add(this.label238);
  6695. this.myPanel13.Controls.Add(this.label239);
  6696. this.myPanel13.Controls.Add(this.rgvOptType9);
  6697. this.myPanel13.Controls.Add(this.label241);
  6698. this.myPanel13.Controls.Add(this.label242);
  6699. this.myPanel13.Controls.Add(this.label243);
  6700. this.myPanel13.Controls.Add(this.rgvMode9);
  6701. this.myPanel13.Controls.Add(this.rgvOrdId9);
  6702. this.myPanel13.Controls.Add(this.label246);
  6703. this.myPanel13.Controls.Add(this.rgvPosTo9);
  6704. this.myPanel13.Controls.Add(this.label248);
  6705. this.myPanel13.Controls.Add(this.rgvPosFrom9);
  6706. this.myPanel13.Controls.Add(this.rgvStatus9);
  6707. this.myPanel13.Controls.Add(this.label251);
  6708. this.myPanel13.Controls.Add(this.lblrgv9);
  6709. this.myPanel13.Controls.Add(this.GV9);
  6710. this.myPanel13.Controls.Add(this.pictureBox26);
  6711. this.myPanel13.Location = new System.Drawing.Point(3535, 2);
  6712. this.myPanel13.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6713. this.myPanel13.Name = "myPanel13";
  6714. this.myPanel13.Size = new System.Drawing.Size(217, 312);
  6715. this.myPanel13.TabIndex = 136;
  6716. //
  6717. // label237
  6718. //
  6719. this.label237.AutoSize = true;
  6720. this.label237.BackColor = System.Drawing.Color.Transparent;
  6721. this.label237.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6722. this.label237.Location = new System.Drawing.Point(4, 241);
  6723. this.label237.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6724. this.label237.Name = "label237";
  6725. this.label237.Size = new System.Drawing.Size(82, 15);
  6726. this.label237.TabIndex = 106;
  6727. this.label237.Text = "光电状态:";
  6728. //
  6729. // label238
  6730. //
  6731. this.label238.AutoSize = true;
  6732. this.label238.BackColor = System.Drawing.Color.Transparent;
  6733. this.label238.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6734. this.label238.Location = new System.Drawing.Point(3, 189);
  6735. this.label238.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6736. this.label238.Name = "label238";
  6737. this.label238.Size = new System.Drawing.Size(82, 15);
  6738. this.label238.TabIndex = 105;
  6739. this.label238.Text = "起始地址:";
  6740. //
  6741. // label239
  6742. //
  6743. this.label239.AutoSize = true;
  6744. this.label239.BackColor = System.Drawing.Color.Transparent;
  6745. this.label239.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6746. this.label239.ForeColor = System.Drawing.SystemColors.ControlText;
  6747. this.label239.Location = new System.Drawing.Point(3, 214);
  6748. this.label239.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6749. this.label239.Name = "label239";
  6750. this.label239.Size = new System.Drawing.Size(82, 15);
  6751. this.label239.TabIndex = 104;
  6752. this.label239.Text = "目标地址:";
  6753. //
  6754. // rgvOptType9
  6755. //
  6756. this.rgvOptType9.AutoSize = true;
  6757. this.rgvOptType9.BackColor = System.Drawing.Color.Transparent;
  6758. this.rgvOptType9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6759. this.rgvOptType9.ForeColor = System.Drawing.Color.Blue;
  6760. this.rgvOptType9.Location = new System.Drawing.Point(96, 166);
  6761. this.rgvOptType9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6762. this.rgvOptType9.Name = "rgvOptType9";
  6763. this.rgvOptType9.Size = new System.Drawing.Size(31, 15);
  6764. this.rgvOptType9.TabIndex = 101;
  6765. this.rgvOptType9.Text = "---";
  6766. //
  6767. // label241
  6768. //
  6769. this.label241.AutoSize = true;
  6770. this.label241.BackColor = System.Drawing.Color.Transparent;
  6771. this.label241.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6772. this.label241.Location = new System.Drawing.Point(3, 166);
  6773. this.label241.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6774. this.label241.Name = "label241";
  6775. this.label241.Size = new System.Drawing.Size(82, 15);
  6776. this.label241.TabIndex = 100;
  6777. this.label241.Text = "作业类型:";
  6778. //
  6779. // label242
  6780. //
  6781. this.label242.BackColor = System.Drawing.Color.Transparent;
  6782. this.label242.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6783. this.label242.ForeColor = System.Drawing.Color.Red;
  6784. this.label242.Location = new System.Drawing.Point(7, 58);
  6785. this.label242.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6786. this.label242.Name = "label242";
  6787. this.label242.Size = new System.Drawing.Size(201, 30);
  6788. this.label242.TabIndex = 92;
  6789. //
  6790. // label243
  6791. //
  6792. this.label243.AutoSize = true;
  6793. this.label243.BackColor = System.Drawing.Color.Transparent;
  6794. this.label243.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6795. this.label243.ForeColor = System.Drawing.Color.Blue;
  6796. this.label243.Location = new System.Drawing.Point(99, 242);
  6797. this.label243.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6798. this.label243.Name = "label243";
  6799. this.label243.Size = new System.Drawing.Size(31, 15);
  6800. this.label243.TabIndex = 72;
  6801. this.label243.Text = "---";
  6802. //
  6803. // rgvMode9
  6804. //
  6805. this.rgvMode9.AutoSize = true;
  6806. this.rgvMode9.BackColor = System.Drawing.Color.Transparent;
  6807. this.rgvMode9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6808. this.rgvMode9.ForeColor = System.Drawing.Color.Blue;
  6809. this.rgvMode9.Location = new System.Drawing.Point(96, 92);
  6810. this.rgvMode9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6811. this.rgvMode9.Name = "rgvMode9";
  6812. this.rgvMode9.Size = new System.Drawing.Size(31, 15);
  6813. this.rgvMode9.TabIndex = 12;
  6814. this.rgvMode9.Text = "---";
  6815. //
  6816. // rgvOrdId9
  6817. //
  6818. this.rgvOrdId9.AutoSize = true;
  6819. this.rgvOrdId9.BackColor = System.Drawing.Color.Transparent;
  6820. this.rgvOrdId9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6821. this.rgvOrdId9.ForeColor = System.Drawing.Color.Blue;
  6822. this.rgvOrdId9.Location = new System.Drawing.Point(96, 142);
  6823. this.rgvOrdId9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6824. this.rgvOrdId9.Name = "rgvOrdId9";
  6825. this.rgvOrdId9.Size = new System.Drawing.Size(31, 15);
  6826. this.rgvOrdId9.TabIndex = 64;
  6827. this.rgvOrdId9.Text = "---";
  6828. //
  6829. // label246
  6830. //
  6831. this.label246.AutoSize = true;
  6832. this.label246.BackColor = System.Drawing.Color.Transparent;
  6833. this.label246.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6834. this.label246.Location = new System.Drawing.Point(3, 142);
  6835. this.label246.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6836. this.label246.Name = "label246";
  6837. this.label246.Size = new System.Drawing.Size(82, 15);
  6838. this.label246.TabIndex = 63;
  6839. this.label246.Text = "工作指令:";
  6840. //
  6841. // rgvPosTo9
  6842. //
  6843. this.rgvPosTo9.AutoSize = true;
  6844. this.rgvPosTo9.BackColor = System.Drawing.Color.Transparent;
  6845. this.rgvPosTo9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6846. this.rgvPosTo9.ForeColor = System.Drawing.Color.Blue;
  6847. this.rgvPosTo9.Location = new System.Drawing.Point(97, 215);
  6848. this.rgvPosTo9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6849. this.rgvPosTo9.Name = "rgvPosTo9";
  6850. this.rgvPosTo9.Size = new System.Drawing.Size(31, 15);
  6851. this.rgvPosTo9.TabIndex = 16;
  6852. this.rgvPosTo9.Text = "---";
  6853. //
  6854. // label248
  6855. //
  6856. this.label248.AutoSize = true;
  6857. this.label248.BackColor = System.Drawing.Color.Transparent;
  6858. this.label248.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6859. this.label248.Location = new System.Drawing.Point(3, 92);
  6860. this.label248.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6861. this.label248.Name = "label248";
  6862. this.label248.Size = new System.Drawing.Size(82, 15);
  6863. this.label248.TabIndex = 15;
  6864. this.label248.Text = "工作模式:";
  6865. //
  6866. // rgvPosFrom9
  6867. //
  6868. this.rgvPosFrom9.AutoSize = true;
  6869. this.rgvPosFrom9.BackColor = System.Drawing.Color.Transparent;
  6870. this.rgvPosFrom9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6871. this.rgvPosFrom9.ForeColor = System.Drawing.Color.Blue;
  6872. this.rgvPosFrom9.Location = new System.Drawing.Point(97, 190);
  6873. this.rgvPosFrom9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6874. this.rgvPosFrom9.Name = "rgvPosFrom9";
  6875. this.rgvPosFrom9.Size = new System.Drawing.Size(31, 15);
  6876. this.rgvPosFrom9.TabIndex = 14;
  6877. this.rgvPosFrom9.Text = "---";
  6878. //
  6879. // rgvStatus9
  6880. //
  6881. this.rgvStatus9.AutoSize = true;
  6882. this.rgvStatus9.BackColor = System.Drawing.Color.Transparent;
  6883. this.rgvStatus9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6884. this.rgvStatus9.ForeColor = System.Drawing.Color.Blue;
  6885. this.rgvStatus9.Location = new System.Drawing.Point(96, 115);
  6886. this.rgvStatus9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6887. this.rgvStatus9.Name = "rgvStatus9";
  6888. this.rgvStatus9.Size = new System.Drawing.Size(31, 15);
  6889. this.rgvStatus9.TabIndex = 10;
  6890. this.rgvStatus9.Text = "---";
  6891. //
  6892. // label251
  6893. //
  6894. this.label251.AutoSize = true;
  6895. this.label251.BackColor = System.Drawing.Color.Transparent;
  6896. this.label251.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6897. this.label251.Location = new System.Drawing.Point(3, 115);
  6898. this.label251.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6899. this.label251.Name = "label251";
  6900. this.label251.Size = new System.Drawing.Size(82, 15);
  6901. this.label251.TabIndex = 6;
  6902. this.label251.Text = "工作状态:";
  6903. //
  6904. // lblrgv9
  6905. //
  6906. this.lblrgv9.AutoSize = true;
  6907. this.lblrgv9.BackColor = System.Drawing.Color.Transparent;
  6908. 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)));
  6909. this.lblrgv9.Location = new System.Drawing.Point(59, 32);
  6910. this.lblrgv9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6911. this.lblrgv9.Name = "lblrgv9";
  6912. this.lblrgv9.Size = new System.Drawing.Size(53, 20);
  6913. this.lblrgv9.TabIndex = 0;
  6914. this.lblrgv9.Text = "RGV9";
  6915. //
  6916. // GV9
  6917. //
  6918. this.GV9.BackColor = System.Drawing.Color.Transparent;
  6919. this.GV9.Image = ((System.Drawing.Image)(resources.GetObject("GV9.Image")));
  6920. this.GV9.Location = new System.Drawing.Point(88, -2);
  6921. this.GV9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6922. this.GV9.Name = "GV9";
  6923. this.GV9.Size = new System.Drawing.Size(35, 32);
  6924. this.GV9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6925. this.GV9.TabIndex = 65;
  6926. this.GV9.TabStop = false;
  6927. this.GV9.Tag = "1";
  6928. //
  6929. // pictureBox26
  6930. //
  6931. this.pictureBox26.BackColor = System.Drawing.Color.Transparent;
  6932. this.pictureBox26.Location = new System.Drawing.Point(87, -2);
  6933. this.pictureBox26.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6934. this.pictureBox26.Name = "pictureBox26";
  6935. this.pictureBox26.Size = new System.Drawing.Size(35, 32);
  6936. this.pictureBox26.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  6937. this.pictureBox26.TabIndex = 5;
  6938. this.pictureBox26.TabStop = false;
  6939. //
  6940. // myPanel12
  6941. //
  6942. this.myPanel12.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel12.BackgroundImage")));
  6943. this.myPanel12.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  6944. this.myPanel12.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  6945. this.myPanel12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  6946. this.myPanel12.Controls.Add(this.label221);
  6947. this.myPanel12.Controls.Add(this.label222);
  6948. this.myPanel12.Controls.Add(this.label223);
  6949. this.myPanel12.Controls.Add(this.rgvOptType7);
  6950. this.myPanel12.Controls.Add(this.label225);
  6951. this.myPanel12.Controls.Add(this.label226);
  6952. this.myPanel12.Controls.Add(this.label227);
  6953. this.myPanel12.Controls.Add(this.rgvMode7);
  6954. this.myPanel12.Controls.Add(this.rgvOrdId7);
  6955. this.myPanel12.Controls.Add(this.label230);
  6956. this.myPanel12.Controls.Add(this.rgvPosTo7);
  6957. this.myPanel12.Controls.Add(this.label232);
  6958. this.myPanel12.Controls.Add(this.rgvPosFrom7);
  6959. this.myPanel12.Controls.Add(this.rgvStatus7);
  6960. this.myPanel12.Controls.Add(this.label235);
  6961. this.myPanel12.Controls.Add(this.lblrgv7);
  6962. this.myPanel12.Controls.Add(this.GV7);
  6963. this.myPanel12.Controls.Add(this.pictureBox24);
  6964. this.myPanel12.Location = new System.Drawing.Point(3097, 2);
  6965. this.myPanel12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  6966. this.myPanel12.Name = "myPanel12";
  6967. this.myPanel12.Size = new System.Drawing.Size(217, 312);
  6968. this.myPanel12.TabIndex = 135;
  6969. //
  6970. // label221
  6971. //
  6972. this.label221.AutoSize = true;
  6973. this.label221.BackColor = System.Drawing.Color.Transparent;
  6974. this.label221.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6975. this.label221.Location = new System.Drawing.Point(4, 241);
  6976. this.label221.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6977. this.label221.Name = "label221";
  6978. this.label221.Size = new System.Drawing.Size(82, 15);
  6979. this.label221.TabIndex = 106;
  6980. this.label221.Text = "光电状态:";
  6981. //
  6982. // label222
  6983. //
  6984. this.label222.AutoSize = true;
  6985. this.label222.BackColor = System.Drawing.Color.Transparent;
  6986. this.label222.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6987. this.label222.Location = new System.Drawing.Point(3, 189);
  6988. this.label222.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  6989. this.label222.Name = "label222";
  6990. this.label222.Size = new System.Drawing.Size(82, 15);
  6991. this.label222.TabIndex = 105;
  6992. this.label222.Text = "起始地址:";
  6993. //
  6994. // label223
  6995. //
  6996. this.label223.AutoSize = true;
  6997. this.label223.BackColor = System.Drawing.Color.Transparent;
  6998. this.label223.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  6999. this.label223.ForeColor = System.Drawing.SystemColors.ControlText;
  7000. this.label223.Location = new System.Drawing.Point(3, 214);
  7001. this.label223.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7002. this.label223.Name = "label223";
  7003. this.label223.Size = new System.Drawing.Size(82, 15);
  7004. this.label223.TabIndex = 104;
  7005. this.label223.Text = "目标地址:";
  7006. //
  7007. // rgvOptType7
  7008. //
  7009. this.rgvOptType7.AutoSize = true;
  7010. this.rgvOptType7.BackColor = System.Drawing.Color.Transparent;
  7011. this.rgvOptType7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7012. this.rgvOptType7.ForeColor = System.Drawing.Color.Blue;
  7013. this.rgvOptType7.Location = new System.Drawing.Point(96, 166);
  7014. this.rgvOptType7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7015. this.rgvOptType7.Name = "rgvOptType7";
  7016. this.rgvOptType7.Size = new System.Drawing.Size(31, 15);
  7017. this.rgvOptType7.TabIndex = 101;
  7018. this.rgvOptType7.Text = "---";
  7019. //
  7020. // label225
  7021. //
  7022. this.label225.AutoSize = true;
  7023. this.label225.BackColor = System.Drawing.Color.Transparent;
  7024. this.label225.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7025. this.label225.Location = new System.Drawing.Point(3, 166);
  7026. this.label225.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7027. this.label225.Name = "label225";
  7028. this.label225.Size = new System.Drawing.Size(82, 15);
  7029. this.label225.TabIndex = 100;
  7030. this.label225.Text = "作业类型:";
  7031. //
  7032. // label226
  7033. //
  7034. this.label226.BackColor = System.Drawing.Color.Transparent;
  7035. this.label226.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7036. this.label226.ForeColor = System.Drawing.Color.Red;
  7037. this.label226.Location = new System.Drawing.Point(7, 58);
  7038. this.label226.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7039. this.label226.Name = "label226";
  7040. this.label226.Size = new System.Drawing.Size(201, 30);
  7041. this.label226.TabIndex = 92;
  7042. //
  7043. // label227
  7044. //
  7045. this.label227.AutoSize = true;
  7046. this.label227.BackColor = System.Drawing.Color.Transparent;
  7047. this.label227.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7048. this.label227.ForeColor = System.Drawing.Color.Blue;
  7049. this.label227.Location = new System.Drawing.Point(99, 242);
  7050. this.label227.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7051. this.label227.Name = "label227";
  7052. this.label227.Size = new System.Drawing.Size(31, 15);
  7053. this.label227.TabIndex = 72;
  7054. this.label227.Text = "---";
  7055. //
  7056. // rgvMode7
  7057. //
  7058. this.rgvMode7.AutoSize = true;
  7059. this.rgvMode7.BackColor = System.Drawing.Color.Transparent;
  7060. this.rgvMode7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7061. this.rgvMode7.ForeColor = System.Drawing.Color.Blue;
  7062. this.rgvMode7.Location = new System.Drawing.Point(96, 92);
  7063. this.rgvMode7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7064. this.rgvMode7.Name = "rgvMode7";
  7065. this.rgvMode7.Size = new System.Drawing.Size(31, 15);
  7066. this.rgvMode7.TabIndex = 12;
  7067. this.rgvMode7.Text = "---";
  7068. //
  7069. // rgvOrdId7
  7070. //
  7071. this.rgvOrdId7.AutoSize = true;
  7072. this.rgvOrdId7.BackColor = System.Drawing.Color.Transparent;
  7073. this.rgvOrdId7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7074. this.rgvOrdId7.ForeColor = System.Drawing.Color.Blue;
  7075. this.rgvOrdId7.Location = new System.Drawing.Point(96, 142);
  7076. this.rgvOrdId7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7077. this.rgvOrdId7.Name = "rgvOrdId7";
  7078. this.rgvOrdId7.Size = new System.Drawing.Size(31, 15);
  7079. this.rgvOrdId7.TabIndex = 64;
  7080. this.rgvOrdId7.Text = "---";
  7081. //
  7082. // label230
  7083. //
  7084. this.label230.AutoSize = true;
  7085. this.label230.BackColor = System.Drawing.Color.Transparent;
  7086. this.label230.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7087. this.label230.Location = new System.Drawing.Point(3, 142);
  7088. this.label230.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7089. this.label230.Name = "label230";
  7090. this.label230.Size = new System.Drawing.Size(82, 15);
  7091. this.label230.TabIndex = 63;
  7092. this.label230.Text = "工作指令:";
  7093. //
  7094. // rgvPosTo7
  7095. //
  7096. this.rgvPosTo7.AutoSize = true;
  7097. this.rgvPosTo7.BackColor = System.Drawing.Color.Transparent;
  7098. this.rgvPosTo7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7099. this.rgvPosTo7.ForeColor = System.Drawing.Color.Blue;
  7100. this.rgvPosTo7.Location = new System.Drawing.Point(97, 215);
  7101. this.rgvPosTo7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7102. this.rgvPosTo7.Name = "rgvPosTo7";
  7103. this.rgvPosTo7.Size = new System.Drawing.Size(31, 15);
  7104. this.rgvPosTo7.TabIndex = 16;
  7105. this.rgvPosTo7.Text = "---";
  7106. //
  7107. // label232
  7108. //
  7109. this.label232.AutoSize = true;
  7110. this.label232.BackColor = System.Drawing.Color.Transparent;
  7111. this.label232.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7112. this.label232.Location = new System.Drawing.Point(3, 92);
  7113. this.label232.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7114. this.label232.Name = "label232";
  7115. this.label232.Size = new System.Drawing.Size(82, 15);
  7116. this.label232.TabIndex = 15;
  7117. this.label232.Text = "工作模式:";
  7118. //
  7119. // rgvPosFrom7
  7120. //
  7121. this.rgvPosFrom7.AutoSize = true;
  7122. this.rgvPosFrom7.BackColor = System.Drawing.Color.Transparent;
  7123. this.rgvPosFrom7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7124. this.rgvPosFrom7.ForeColor = System.Drawing.Color.Blue;
  7125. this.rgvPosFrom7.Location = new System.Drawing.Point(97, 190);
  7126. this.rgvPosFrom7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7127. this.rgvPosFrom7.Name = "rgvPosFrom7";
  7128. this.rgvPosFrom7.Size = new System.Drawing.Size(31, 15);
  7129. this.rgvPosFrom7.TabIndex = 14;
  7130. this.rgvPosFrom7.Text = "---";
  7131. //
  7132. // rgvStatus7
  7133. //
  7134. this.rgvStatus7.AutoSize = true;
  7135. this.rgvStatus7.BackColor = System.Drawing.Color.Transparent;
  7136. this.rgvStatus7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7137. this.rgvStatus7.ForeColor = System.Drawing.Color.Blue;
  7138. this.rgvStatus7.Location = new System.Drawing.Point(96, 115);
  7139. this.rgvStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7140. this.rgvStatus7.Name = "rgvStatus7";
  7141. this.rgvStatus7.Size = new System.Drawing.Size(31, 15);
  7142. this.rgvStatus7.TabIndex = 10;
  7143. this.rgvStatus7.Text = "---";
  7144. //
  7145. // label235
  7146. //
  7147. this.label235.AutoSize = true;
  7148. this.label235.BackColor = System.Drawing.Color.Transparent;
  7149. this.label235.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7150. this.label235.Location = new System.Drawing.Point(3, 115);
  7151. this.label235.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7152. this.label235.Name = "label235";
  7153. this.label235.Size = new System.Drawing.Size(82, 15);
  7154. this.label235.TabIndex = 6;
  7155. this.label235.Text = "工作状态:";
  7156. //
  7157. // lblrgv7
  7158. //
  7159. this.lblrgv7.AutoSize = true;
  7160. this.lblrgv7.BackColor = System.Drawing.Color.Transparent;
  7161. 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)));
  7162. this.lblrgv7.Location = new System.Drawing.Point(59, 32);
  7163. this.lblrgv7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7164. this.lblrgv7.Name = "lblrgv7";
  7165. this.lblrgv7.Size = new System.Drawing.Size(53, 20);
  7166. this.lblrgv7.TabIndex = 0;
  7167. this.lblrgv7.Text = "RGV7";
  7168. //
  7169. // GV7
  7170. //
  7171. this.GV7.BackColor = System.Drawing.Color.Transparent;
  7172. this.GV7.Image = ((System.Drawing.Image)(resources.GetObject("GV7.Image")));
  7173. this.GV7.Location = new System.Drawing.Point(88, -2);
  7174. this.GV7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7175. this.GV7.Name = "GV7";
  7176. this.GV7.Size = new System.Drawing.Size(35, 32);
  7177. this.GV7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7178. this.GV7.TabIndex = 65;
  7179. this.GV7.TabStop = false;
  7180. this.GV7.Tag = "1";
  7181. //
  7182. // pictureBox24
  7183. //
  7184. this.pictureBox24.BackColor = System.Drawing.Color.Transparent;
  7185. this.pictureBox24.Location = new System.Drawing.Point(87, -2);
  7186. this.pictureBox24.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7187. this.pictureBox24.Name = "pictureBox24";
  7188. this.pictureBox24.Size = new System.Drawing.Size(35, 32);
  7189. this.pictureBox24.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7190. this.pictureBox24.TabIndex = 5;
  7191. this.pictureBox24.TabStop = false;
  7192. //
  7193. // myPanel10
  7194. //
  7195. this.myPanel10.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel10.BackgroundImage")));
  7196. this.myPanel10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7197. this.myPanel10.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7198. this.myPanel10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7199. this.myPanel10.Controls.Add(this.label205);
  7200. this.myPanel10.Controls.Add(this.label206);
  7201. this.myPanel10.Controls.Add(this.label207);
  7202. this.myPanel10.Controls.Add(this.rgvOptType8);
  7203. this.myPanel10.Controls.Add(this.label209);
  7204. this.myPanel10.Controls.Add(this.label210);
  7205. this.myPanel10.Controls.Add(this.label211);
  7206. this.myPanel10.Controls.Add(this.rgvMode8);
  7207. this.myPanel10.Controls.Add(this.rgvOrdId8);
  7208. this.myPanel10.Controls.Add(this.label214);
  7209. this.myPanel10.Controls.Add(this.rgvPosTo8);
  7210. this.myPanel10.Controls.Add(this.label216);
  7211. this.myPanel10.Controls.Add(this.rgvPosFrom8);
  7212. this.myPanel10.Controls.Add(this.rgvStatus8);
  7213. this.myPanel10.Controls.Add(this.label219);
  7214. this.myPanel10.Controls.Add(this.lblrgv8);
  7215. this.myPanel10.Controls.Add(this.GV8);
  7216. this.myPanel10.Controls.Add(this.pictureBox22);
  7217. this.myPanel10.Location = new System.Drawing.Point(3315, 2);
  7218. this.myPanel10.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7219. this.myPanel10.Name = "myPanel10";
  7220. this.myPanel10.Size = new System.Drawing.Size(217, 312);
  7221. this.myPanel10.TabIndex = 134;
  7222. //
  7223. // label205
  7224. //
  7225. this.label205.AutoSize = true;
  7226. this.label205.BackColor = System.Drawing.Color.Transparent;
  7227. this.label205.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7228. this.label205.Location = new System.Drawing.Point(4, 241);
  7229. this.label205.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7230. this.label205.Name = "label205";
  7231. this.label205.Size = new System.Drawing.Size(82, 15);
  7232. this.label205.TabIndex = 106;
  7233. this.label205.Text = "光电状态:";
  7234. //
  7235. // label206
  7236. //
  7237. this.label206.AutoSize = true;
  7238. this.label206.BackColor = System.Drawing.Color.Transparent;
  7239. this.label206.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7240. this.label206.Location = new System.Drawing.Point(3, 189);
  7241. this.label206.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7242. this.label206.Name = "label206";
  7243. this.label206.Size = new System.Drawing.Size(82, 15);
  7244. this.label206.TabIndex = 105;
  7245. this.label206.Text = "起始地址:";
  7246. //
  7247. // label207
  7248. //
  7249. this.label207.AutoSize = true;
  7250. this.label207.BackColor = System.Drawing.Color.Transparent;
  7251. this.label207.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7252. this.label207.ForeColor = System.Drawing.SystemColors.ControlText;
  7253. this.label207.Location = new System.Drawing.Point(3, 214);
  7254. this.label207.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7255. this.label207.Name = "label207";
  7256. this.label207.Size = new System.Drawing.Size(82, 15);
  7257. this.label207.TabIndex = 104;
  7258. this.label207.Text = "目标地址:";
  7259. //
  7260. // rgvOptType8
  7261. //
  7262. this.rgvOptType8.AutoSize = true;
  7263. this.rgvOptType8.BackColor = System.Drawing.Color.Transparent;
  7264. this.rgvOptType8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7265. this.rgvOptType8.ForeColor = System.Drawing.Color.Blue;
  7266. this.rgvOptType8.Location = new System.Drawing.Point(96, 166);
  7267. this.rgvOptType8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7268. this.rgvOptType8.Name = "rgvOptType8";
  7269. this.rgvOptType8.Size = new System.Drawing.Size(31, 15);
  7270. this.rgvOptType8.TabIndex = 101;
  7271. this.rgvOptType8.Text = "---";
  7272. //
  7273. // label209
  7274. //
  7275. this.label209.AutoSize = true;
  7276. this.label209.BackColor = System.Drawing.Color.Transparent;
  7277. this.label209.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7278. this.label209.Location = new System.Drawing.Point(3, 166);
  7279. this.label209.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7280. this.label209.Name = "label209";
  7281. this.label209.Size = new System.Drawing.Size(82, 15);
  7282. this.label209.TabIndex = 100;
  7283. this.label209.Text = "作业类型:";
  7284. //
  7285. // label210
  7286. //
  7287. this.label210.BackColor = System.Drawing.Color.Transparent;
  7288. this.label210.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7289. this.label210.ForeColor = System.Drawing.Color.Red;
  7290. this.label210.Location = new System.Drawing.Point(7, 58);
  7291. this.label210.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7292. this.label210.Name = "label210";
  7293. this.label210.Size = new System.Drawing.Size(201, 30);
  7294. this.label210.TabIndex = 92;
  7295. //
  7296. // label211
  7297. //
  7298. this.label211.AutoSize = true;
  7299. this.label211.BackColor = System.Drawing.Color.Transparent;
  7300. this.label211.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7301. this.label211.ForeColor = System.Drawing.Color.Blue;
  7302. this.label211.Location = new System.Drawing.Point(99, 242);
  7303. this.label211.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7304. this.label211.Name = "label211";
  7305. this.label211.Size = new System.Drawing.Size(31, 15);
  7306. this.label211.TabIndex = 72;
  7307. this.label211.Text = "---";
  7308. //
  7309. // rgvMode8
  7310. //
  7311. this.rgvMode8.AutoSize = true;
  7312. this.rgvMode8.BackColor = System.Drawing.Color.Transparent;
  7313. this.rgvMode8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7314. this.rgvMode8.ForeColor = System.Drawing.Color.Blue;
  7315. this.rgvMode8.Location = new System.Drawing.Point(96, 92);
  7316. this.rgvMode8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7317. this.rgvMode8.Name = "rgvMode8";
  7318. this.rgvMode8.Size = new System.Drawing.Size(31, 15);
  7319. this.rgvMode8.TabIndex = 12;
  7320. this.rgvMode8.Text = "---";
  7321. //
  7322. // rgvOrdId8
  7323. //
  7324. this.rgvOrdId8.AutoSize = true;
  7325. this.rgvOrdId8.BackColor = System.Drawing.Color.Transparent;
  7326. this.rgvOrdId8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7327. this.rgvOrdId8.ForeColor = System.Drawing.Color.Blue;
  7328. this.rgvOrdId8.Location = new System.Drawing.Point(96, 142);
  7329. this.rgvOrdId8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7330. this.rgvOrdId8.Name = "rgvOrdId8";
  7331. this.rgvOrdId8.Size = new System.Drawing.Size(31, 15);
  7332. this.rgvOrdId8.TabIndex = 64;
  7333. this.rgvOrdId8.Text = "---";
  7334. //
  7335. // label214
  7336. //
  7337. this.label214.AutoSize = true;
  7338. this.label214.BackColor = System.Drawing.Color.Transparent;
  7339. this.label214.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7340. this.label214.Location = new System.Drawing.Point(3, 142);
  7341. this.label214.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7342. this.label214.Name = "label214";
  7343. this.label214.Size = new System.Drawing.Size(82, 15);
  7344. this.label214.TabIndex = 63;
  7345. this.label214.Text = "工作指令:";
  7346. //
  7347. // rgvPosTo8
  7348. //
  7349. this.rgvPosTo8.AutoSize = true;
  7350. this.rgvPosTo8.BackColor = System.Drawing.Color.Transparent;
  7351. this.rgvPosTo8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7352. this.rgvPosTo8.ForeColor = System.Drawing.Color.Blue;
  7353. this.rgvPosTo8.Location = new System.Drawing.Point(97, 215);
  7354. this.rgvPosTo8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7355. this.rgvPosTo8.Name = "rgvPosTo8";
  7356. this.rgvPosTo8.Size = new System.Drawing.Size(31, 15);
  7357. this.rgvPosTo8.TabIndex = 16;
  7358. this.rgvPosTo8.Text = "---";
  7359. //
  7360. // label216
  7361. //
  7362. this.label216.AutoSize = true;
  7363. this.label216.BackColor = System.Drawing.Color.Transparent;
  7364. this.label216.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7365. this.label216.Location = new System.Drawing.Point(3, 92);
  7366. this.label216.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7367. this.label216.Name = "label216";
  7368. this.label216.Size = new System.Drawing.Size(82, 15);
  7369. this.label216.TabIndex = 15;
  7370. this.label216.Text = "工作模式:";
  7371. //
  7372. // rgvPosFrom8
  7373. //
  7374. this.rgvPosFrom8.AutoSize = true;
  7375. this.rgvPosFrom8.BackColor = System.Drawing.Color.Transparent;
  7376. this.rgvPosFrom8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7377. this.rgvPosFrom8.ForeColor = System.Drawing.Color.Blue;
  7378. this.rgvPosFrom8.Location = new System.Drawing.Point(97, 190);
  7379. this.rgvPosFrom8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7380. this.rgvPosFrom8.Name = "rgvPosFrom8";
  7381. this.rgvPosFrom8.Size = new System.Drawing.Size(31, 15);
  7382. this.rgvPosFrom8.TabIndex = 14;
  7383. this.rgvPosFrom8.Text = "---";
  7384. //
  7385. // rgvStatus8
  7386. //
  7387. this.rgvStatus8.AutoSize = true;
  7388. this.rgvStatus8.BackColor = System.Drawing.Color.Transparent;
  7389. this.rgvStatus8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7390. this.rgvStatus8.ForeColor = System.Drawing.Color.Blue;
  7391. this.rgvStatus8.Location = new System.Drawing.Point(96, 115);
  7392. this.rgvStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7393. this.rgvStatus8.Name = "rgvStatus8";
  7394. this.rgvStatus8.Size = new System.Drawing.Size(31, 15);
  7395. this.rgvStatus8.TabIndex = 10;
  7396. this.rgvStatus8.Text = "---";
  7397. //
  7398. // label219
  7399. //
  7400. this.label219.AutoSize = true;
  7401. this.label219.BackColor = System.Drawing.Color.Transparent;
  7402. this.label219.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7403. this.label219.Location = new System.Drawing.Point(3, 115);
  7404. this.label219.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7405. this.label219.Name = "label219";
  7406. this.label219.Size = new System.Drawing.Size(82, 15);
  7407. this.label219.TabIndex = 6;
  7408. this.label219.Text = "工作状态:";
  7409. //
  7410. // lblrgv8
  7411. //
  7412. this.lblrgv8.AutoSize = true;
  7413. this.lblrgv8.BackColor = System.Drawing.Color.Transparent;
  7414. 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)));
  7415. this.lblrgv8.Location = new System.Drawing.Point(59, 32);
  7416. this.lblrgv8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7417. this.lblrgv8.Name = "lblrgv8";
  7418. this.lblrgv8.Size = new System.Drawing.Size(53, 20);
  7419. this.lblrgv8.TabIndex = 0;
  7420. this.lblrgv8.Text = "RGV8";
  7421. //
  7422. // GV8
  7423. //
  7424. this.GV8.BackColor = System.Drawing.Color.Transparent;
  7425. this.GV8.Image = ((System.Drawing.Image)(resources.GetObject("GV8.Image")));
  7426. this.GV8.Location = new System.Drawing.Point(88, -2);
  7427. this.GV8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7428. this.GV8.Name = "GV8";
  7429. this.GV8.Size = new System.Drawing.Size(35, 32);
  7430. this.GV8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7431. this.GV8.TabIndex = 65;
  7432. this.GV8.TabStop = false;
  7433. this.GV8.Tag = "1";
  7434. //
  7435. // pictureBox22
  7436. //
  7437. this.pictureBox22.BackColor = System.Drawing.Color.Transparent;
  7438. this.pictureBox22.Location = new System.Drawing.Point(87, -2);
  7439. this.pictureBox22.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7440. this.pictureBox22.Name = "pictureBox22";
  7441. this.pictureBox22.Size = new System.Drawing.Size(35, 32);
  7442. this.pictureBox22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7443. this.pictureBox22.TabIndex = 5;
  7444. this.pictureBox22.TabStop = false;
  7445. //
  7446. // myPanel9
  7447. //
  7448. this.myPanel9.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel9.BackgroundImage")));
  7449. this.myPanel9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7450. this.myPanel9.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7451. this.myPanel9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7452. this.myPanel9.Controls.Add(this.label188);
  7453. this.myPanel9.Controls.Add(this.label190);
  7454. this.myPanel9.Controls.Add(this.label191);
  7455. this.myPanel9.Controls.Add(this.rgvOptType6);
  7456. this.myPanel9.Controls.Add(this.label193);
  7457. this.myPanel9.Controls.Add(this.label194);
  7458. this.myPanel9.Controls.Add(this.label195);
  7459. this.myPanel9.Controls.Add(this.rgvMode6);
  7460. this.myPanel9.Controls.Add(this.rgvOrdId6);
  7461. this.myPanel9.Controls.Add(this.label198);
  7462. this.myPanel9.Controls.Add(this.rgvPosTo6);
  7463. this.myPanel9.Controls.Add(this.label200);
  7464. this.myPanel9.Controls.Add(this.rgvPosFrom6);
  7465. this.myPanel9.Controls.Add(this.rgvStatus6);
  7466. this.myPanel9.Controls.Add(this.label203);
  7467. this.myPanel9.Controls.Add(this.lblrgv6);
  7468. this.myPanel9.Controls.Add(this.GV6);
  7469. this.myPanel9.Controls.Add(this.pictureBox20);
  7470. this.myPanel9.Location = new System.Drawing.Point(2879, 1);
  7471. this.myPanel9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7472. this.myPanel9.Name = "myPanel9";
  7473. this.myPanel9.Size = new System.Drawing.Size(217, 312);
  7474. this.myPanel9.TabIndex = 133;
  7475. //
  7476. // label188
  7477. //
  7478. this.label188.AutoSize = true;
  7479. this.label188.BackColor = System.Drawing.Color.Transparent;
  7480. this.label188.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7481. this.label188.Location = new System.Drawing.Point(4, 241);
  7482. this.label188.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7483. this.label188.Name = "label188";
  7484. this.label188.Size = new System.Drawing.Size(82, 15);
  7485. this.label188.TabIndex = 106;
  7486. this.label188.Text = "光电状态:";
  7487. //
  7488. // label190
  7489. //
  7490. this.label190.AutoSize = true;
  7491. this.label190.BackColor = System.Drawing.Color.Transparent;
  7492. this.label190.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7493. this.label190.Location = new System.Drawing.Point(3, 189);
  7494. this.label190.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7495. this.label190.Name = "label190";
  7496. this.label190.Size = new System.Drawing.Size(82, 15);
  7497. this.label190.TabIndex = 105;
  7498. this.label190.Text = "起始地址:";
  7499. //
  7500. // label191
  7501. //
  7502. this.label191.AutoSize = true;
  7503. this.label191.BackColor = System.Drawing.Color.Transparent;
  7504. this.label191.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7505. this.label191.ForeColor = System.Drawing.SystemColors.ControlText;
  7506. this.label191.Location = new System.Drawing.Point(3, 214);
  7507. this.label191.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7508. this.label191.Name = "label191";
  7509. this.label191.Size = new System.Drawing.Size(82, 15);
  7510. this.label191.TabIndex = 104;
  7511. this.label191.Text = "目标地址:";
  7512. //
  7513. // rgvOptType6
  7514. //
  7515. this.rgvOptType6.AutoSize = true;
  7516. this.rgvOptType6.BackColor = System.Drawing.Color.Transparent;
  7517. this.rgvOptType6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7518. this.rgvOptType6.ForeColor = System.Drawing.Color.Blue;
  7519. this.rgvOptType6.Location = new System.Drawing.Point(96, 166);
  7520. this.rgvOptType6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7521. this.rgvOptType6.Name = "rgvOptType6";
  7522. this.rgvOptType6.Size = new System.Drawing.Size(31, 15);
  7523. this.rgvOptType6.TabIndex = 101;
  7524. this.rgvOptType6.Text = "---";
  7525. //
  7526. // label193
  7527. //
  7528. this.label193.AutoSize = true;
  7529. this.label193.BackColor = System.Drawing.Color.Transparent;
  7530. this.label193.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7531. this.label193.Location = new System.Drawing.Point(3, 166);
  7532. this.label193.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7533. this.label193.Name = "label193";
  7534. this.label193.Size = new System.Drawing.Size(82, 15);
  7535. this.label193.TabIndex = 100;
  7536. this.label193.Text = "作业类型:";
  7537. //
  7538. // label194
  7539. //
  7540. this.label194.BackColor = System.Drawing.Color.Transparent;
  7541. this.label194.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7542. this.label194.ForeColor = System.Drawing.Color.Red;
  7543. this.label194.Location = new System.Drawing.Point(7, 58);
  7544. this.label194.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7545. this.label194.Name = "label194";
  7546. this.label194.Size = new System.Drawing.Size(201, 30);
  7547. this.label194.TabIndex = 92;
  7548. //
  7549. // label195
  7550. //
  7551. this.label195.AutoSize = true;
  7552. this.label195.BackColor = System.Drawing.Color.Transparent;
  7553. this.label195.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7554. this.label195.ForeColor = System.Drawing.Color.Blue;
  7555. this.label195.Location = new System.Drawing.Point(99, 242);
  7556. this.label195.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7557. this.label195.Name = "label195";
  7558. this.label195.Size = new System.Drawing.Size(31, 15);
  7559. this.label195.TabIndex = 72;
  7560. this.label195.Text = "---";
  7561. //
  7562. // rgvMode6
  7563. //
  7564. this.rgvMode6.AutoSize = true;
  7565. this.rgvMode6.BackColor = System.Drawing.Color.Transparent;
  7566. this.rgvMode6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7567. this.rgvMode6.ForeColor = System.Drawing.Color.Blue;
  7568. this.rgvMode6.Location = new System.Drawing.Point(96, 92);
  7569. this.rgvMode6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7570. this.rgvMode6.Name = "rgvMode6";
  7571. this.rgvMode6.Size = new System.Drawing.Size(31, 15);
  7572. this.rgvMode6.TabIndex = 12;
  7573. this.rgvMode6.Text = "---";
  7574. //
  7575. // rgvOrdId6
  7576. //
  7577. this.rgvOrdId6.AutoSize = true;
  7578. this.rgvOrdId6.BackColor = System.Drawing.Color.Transparent;
  7579. this.rgvOrdId6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7580. this.rgvOrdId6.ForeColor = System.Drawing.Color.Blue;
  7581. this.rgvOrdId6.Location = new System.Drawing.Point(96, 142);
  7582. this.rgvOrdId6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7583. this.rgvOrdId6.Name = "rgvOrdId6";
  7584. this.rgvOrdId6.Size = new System.Drawing.Size(31, 15);
  7585. this.rgvOrdId6.TabIndex = 64;
  7586. this.rgvOrdId6.Text = "---";
  7587. //
  7588. // label198
  7589. //
  7590. this.label198.AutoSize = true;
  7591. this.label198.BackColor = System.Drawing.Color.Transparent;
  7592. this.label198.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7593. this.label198.Location = new System.Drawing.Point(3, 142);
  7594. this.label198.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7595. this.label198.Name = "label198";
  7596. this.label198.Size = new System.Drawing.Size(82, 15);
  7597. this.label198.TabIndex = 63;
  7598. this.label198.Text = "工作指令:";
  7599. //
  7600. // rgvPosTo6
  7601. //
  7602. this.rgvPosTo6.AutoSize = true;
  7603. this.rgvPosTo6.BackColor = System.Drawing.Color.Transparent;
  7604. this.rgvPosTo6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7605. this.rgvPosTo6.ForeColor = System.Drawing.Color.Blue;
  7606. this.rgvPosTo6.Location = new System.Drawing.Point(97, 215);
  7607. this.rgvPosTo6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7608. this.rgvPosTo6.Name = "rgvPosTo6";
  7609. this.rgvPosTo6.Size = new System.Drawing.Size(31, 15);
  7610. this.rgvPosTo6.TabIndex = 16;
  7611. this.rgvPosTo6.Text = "---";
  7612. //
  7613. // label200
  7614. //
  7615. this.label200.AutoSize = true;
  7616. this.label200.BackColor = System.Drawing.Color.Transparent;
  7617. this.label200.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7618. this.label200.Location = new System.Drawing.Point(3, 92);
  7619. this.label200.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7620. this.label200.Name = "label200";
  7621. this.label200.Size = new System.Drawing.Size(82, 15);
  7622. this.label200.TabIndex = 15;
  7623. this.label200.Text = "工作模式:";
  7624. //
  7625. // rgvPosFrom6
  7626. //
  7627. this.rgvPosFrom6.AutoSize = true;
  7628. this.rgvPosFrom6.BackColor = System.Drawing.Color.Transparent;
  7629. this.rgvPosFrom6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7630. this.rgvPosFrom6.ForeColor = System.Drawing.Color.Blue;
  7631. this.rgvPosFrom6.Location = new System.Drawing.Point(97, 190);
  7632. this.rgvPosFrom6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7633. this.rgvPosFrom6.Name = "rgvPosFrom6";
  7634. this.rgvPosFrom6.Size = new System.Drawing.Size(31, 15);
  7635. this.rgvPosFrom6.TabIndex = 14;
  7636. this.rgvPosFrom6.Text = "---";
  7637. //
  7638. // rgvStatus6
  7639. //
  7640. this.rgvStatus6.AutoSize = true;
  7641. this.rgvStatus6.BackColor = System.Drawing.Color.Transparent;
  7642. this.rgvStatus6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7643. this.rgvStatus6.ForeColor = System.Drawing.Color.Blue;
  7644. this.rgvStatus6.Location = new System.Drawing.Point(96, 115);
  7645. this.rgvStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7646. this.rgvStatus6.Name = "rgvStatus6";
  7647. this.rgvStatus6.Size = new System.Drawing.Size(31, 15);
  7648. this.rgvStatus6.TabIndex = 10;
  7649. this.rgvStatus6.Text = "---";
  7650. //
  7651. // label203
  7652. //
  7653. this.label203.AutoSize = true;
  7654. this.label203.BackColor = System.Drawing.Color.Transparent;
  7655. this.label203.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7656. this.label203.Location = new System.Drawing.Point(3, 115);
  7657. this.label203.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7658. this.label203.Name = "label203";
  7659. this.label203.Size = new System.Drawing.Size(82, 15);
  7660. this.label203.TabIndex = 6;
  7661. this.label203.Text = "工作状态:";
  7662. //
  7663. // lblrgv6
  7664. //
  7665. this.lblrgv6.AutoSize = true;
  7666. this.lblrgv6.BackColor = System.Drawing.Color.Transparent;
  7667. 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)));
  7668. this.lblrgv6.Location = new System.Drawing.Point(59, 32);
  7669. this.lblrgv6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7670. this.lblrgv6.Name = "lblrgv6";
  7671. this.lblrgv6.Size = new System.Drawing.Size(53, 20);
  7672. this.lblrgv6.TabIndex = 0;
  7673. this.lblrgv6.Text = "RGV6";
  7674. //
  7675. // GV6
  7676. //
  7677. this.GV6.BackColor = System.Drawing.Color.Transparent;
  7678. this.GV6.Image = ((System.Drawing.Image)(resources.GetObject("GV6.Image")));
  7679. this.GV6.Location = new System.Drawing.Point(88, -2);
  7680. this.GV6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7681. this.GV6.Name = "GV6";
  7682. this.GV6.Size = new System.Drawing.Size(35, 32);
  7683. this.GV6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7684. this.GV6.TabIndex = 65;
  7685. this.GV6.TabStop = false;
  7686. this.GV6.Tag = "1";
  7687. //
  7688. // pictureBox20
  7689. //
  7690. this.pictureBox20.BackColor = System.Drawing.Color.Transparent;
  7691. this.pictureBox20.Location = new System.Drawing.Point(87, -2);
  7692. this.pictureBox20.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7693. this.pictureBox20.Name = "pictureBox20";
  7694. this.pictureBox20.Size = new System.Drawing.Size(35, 32);
  7695. this.pictureBox20.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7696. this.pictureBox20.TabIndex = 5;
  7697. this.pictureBox20.TabStop = false;
  7698. //
  7699. // myPanel8
  7700. //
  7701. this.myPanel8.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel8.BackgroundImage")));
  7702. this.myPanel8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7703. this.myPanel8.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7704. this.myPanel8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7705. this.myPanel8.Controls.Add(this.label169);
  7706. this.myPanel8.Controls.Add(this.label170);
  7707. this.myPanel8.Controls.Add(this.label171);
  7708. this.myPanel8.Controls.Add(this.rgvOptType5);
  7709. this.myPanel8.Controls.Add(this.label174);
  7710. this.myPanel8.Controls.Add(this.label175);
  7711. this.myPanel8.Controls.Add(this.label176);
  7712. this.myPanel8.Controls.Add(this.rgvMode5);
  7713. this.myPanel8.Controls.Add(this.rgvOrdId5);
  7714. this.myPanel8.Controls.Add(this.label179);
  7715. this.myPanel8.Controls.Add(this.rgvPosTo5);
  7716. this.myPanel8.Controls.Add(this.label182);
  7717. this.myPanel8.Controls.Add(this.rgvPosFrom5);
  7718. this.myPanel8.Controls.Add(this.rgvStatus5);
  7719. this.myPanel8.Controls.Add(this.label186);
  7720. this.myPanel8.Controls.Add(this.lblrgv5);
  7721. this.myPanel8.Controls.Add(this.GV5);
  7722. this.myPanel8.Controls.Add(this.pictureBox18);
  7723. this.myPanel8.Location = new System.Drawing.Point(2660, 2);
  7724. this.myPanel8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7725. this.myPanel8.Name = "myPanel8";
  7726. this.myPanel8.Size = new System.Drawing.Size(217, 312);
  7727. this.myPanel8.TabIndex = 132;
  7728. //
  7729. // label169
  7730. //
  7731. this.label169.AutoSize = true;
  7732. this.label169.BackColor = System.Drawing.Color.Transparent;
  7733. this.label169.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7734. this.label169.Location = new System.Drawing.Point(4, 241);
  7735. this.label169.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7736. this.label169.Name = "label169";
  7737. this.label169.Size = new System.Drawing.Size(82, 15);
  7738. this.label169.TabIndex = 106;
  7739. this.label169.Text = "光电状态:";
  7740. //
  7741. // label170
  7742. //
  7743. this.label170.AutoSize = true;
  7744. this.label170.BackColor = System.Drawing.Color.Transparent;
  7745. this.label170.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7746. this.label170.Location = new System.Drawing.Point(3, 189);
  7747. this.label170.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7748. this.label170.Name = "label170";
  7749. this.label170.Size = new System.Drawing.Size(82, 15);
  7750. this.label170.TabIndex = 105;
  7751. this.label170.Text = "起始地址:";
  7752. //
  7753. // label171
  7754. //
  7755. this.label171.AutoSize = true;
  7756. this.label171.BackColor = System.Drawing.Color.Transparent;
  7757. this.label171.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7758. this.label171.ForeColor = System.Drawing.SystemColors.ControlText;
  7759. this.label171.Location = new System.Drawing.Point(3, 214);
  7760. this.label171.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7761. this.label171.Name = "label171";
  7762. this.label171.Size = new System.Drawing.Size(82, 15);
  7763. this.label171.TabIndex = 104;
  7764. this.label171.Text = "目标地址:";
  7765. //
  7766. // rgvOptType5
  7767. //
  7768. this.rgvOptType5.AutoSize = true;
  7769. this.rgvOptType5.BackColor = System.Drawing.Color.Transparent;
  7770. this.rgvOptType5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7771. this.rgvOptType5.ForeColor = System.Drawing.Color.Blue;
  7772. this.rgvOptType5.Location = new System.Drawing.Point(96, 166);
  7773. this.rgvOptType5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7774. this.rgvOptType5.Name = "rgvOptType5";
  7775. this.rgvOptType5.Size = new System.Drawing.Size(31, 15);
  7776. this.rgvOptType5.TabIndex = 101;
  7777. this.rgvOptType5.Text = "---";
  7778. //
  7779. // label174
  7780. //
  7781. this.label174.AutoSize = true;
  7782. this.label174.BackColor = System.Drawing.Color.Transparent;
  7783. this.label174.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7784. this.label174.Location = new System.Drawing.Point(3, 166);
  7785. this.label174.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7786. this.label174.Name = "label174";
  7787. this.label174.Size = new System.Drawing.Size(82, 15);
  7788. this.label174.TabIndex = 100;
  7789. this.label174.Text = "作业类型:";
  7790. //
  7791. // label175
  7792. //
  7793. this.label175.BackColor = System.Drawing.Color.Transparent;
  7794. this.label175.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7795. this.label175.ForeColor = System.Drawing.Color.Red;
  7796. this.label175.Location = new System.Drawing.Point(7, 58);
  7797. this.label175.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7798. this.label175.Name = "label175";
  7799. this.label175.Size = new System.Drawing.Size(201, 30);
  7800. this.label175.TabIndex = 92;
  7801. //
  7802. // label176
  7803. //
  7804. this.label176.AutoSize = true;
  7805. this.label176.BackColor = System.Drawing.Color.Transparent;
  7806. this.label176.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7807. this.label176.ForeColor = System.Drawing.Color.Blue;
  7808. this.label176.Location = new System.Drawing.Point(99, 242);
  7809. this.label176.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7810. this.label176.Name = "label176";
  7811. this.label176.Size = new System.Drawing.Size(31, 15);
  7812. this.label176.TabIndex = 72;
  7813. this.label176.Text = "---";
  7814. //
  7815. // rgvMode5
  7816. //
  7817. this.rgvMode5.AutoSize = true;
  7818. this.rgvMode5.BackColor = System.Drawing.Color.Transparent;
  7819. this.rgvMode5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7820. this.rgvMode5.ForeColor = System.Drawing.Color.Blue;
  7821. this.rgvMode5.Location = new System.Drawing.Point(96, 92);
  7822. this.rgvMode5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7823. this.rgvMode5.Name = "rgvMode5";
  7824. this.rgvMode5.Size = new System.Drawing.Size(31, 15);
  7825. this.rgvMode5.TabIndex = 12;
  7826. this.rgvMode5.Text = "---";
  7827. //
  7828. // rgvOrdId5
  7829. //
  7830. this.rgvOrdId5.AutoSize = true;
  7831. this.rgvOrdId5.BackColor = System.Drawing.Color.Transparent;
  7832. this.rgvOrdId5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7833. this.rgvOrdId5.ForeColor = System.Drawing.Color.Blue;
  7834. this.rgvOrdId5.Location = new System.Drawing.Point(96, 142);
  7835. this.rgvOrdId5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7836. this.rgvOrdId5.Name = "rgvOrdId5";
  7837. this.rgvOrdId5.Size = new System.Drawing.Size(31, 15);
  7838. this.rgvOrdId5.TabIndex = 64;
  7839. this.rgvOrdId5.Text = "---";
  7840. //
  7841. // label179
  7842. //
  7843. this.label179.AutoSize = true;
  7844. this.label179.BackColor = System.Drawing.Color.Transparent;
  7845. this.label179.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7846. this.label179.Location = new System.Drawing.Point(3, 142);
  7847. this.label179.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7848. this.label179.Name = "label179";
  7849. this.label179.Size = new System.Drawing.Size(82, 15);
  7850. this.label179.TabIndex = 63;
  7851. this.label179.Text = "工作指令:";
  7852. //
  7853. // rgvPosTo5
  7854. //
  7855. this.rgvPosTo5.AutoSize = true;
  7856. this.rgvPosTo5.BackColor = System.Drawing.Color.Transparent;
  7857. this.rgvPosTo5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7858. this.rgvPosTo5.ForeColor = System.Drawing.Color.Blue;
  7859. this.rgvPosTo5.Location = new System.Drawing.Point(97, 215);
  7860. this.rgvPosTo5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7861. this.rgvPosTo5.Name = "rgvPosTo5";
  7862. this.rgvPosTo5.Size = new System.Drawing.Size(31, 15);
  7863. this.rgvPosTo5.TabIndex = 16;
  7864. this.rgvPosTo5.Text = "---";
  7865. //
  7866. // label182
  7867. //
  7868. this.label182.AutoSize = true;
  7869. this.label182.BackColor = System.Drawing.Color.Transparent;
  7870. this.label182.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7871. this.label182.Location = new System.Drawing.Point(3, 92);
  7872. this.label182.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7873. this.label182.Name = "label182";
  7874. this.label182.Size = new System.Drawing.Size(82, 15);
  7875. this.label182.TabIndex = 15;
  7876. this.label182.Text = "工作模式:";
  7877. //
  7878. // rgvPosFrom5
  7879. //
  7880. this.rgvPosFrom5.AutoSize = true;
  7881. this.rgvPosFrom5.BackColor = System.Drawing.Color.Transparent;
  7882. this.rgvPosFrom5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7883. this.rgvPosFrom5.ForeColor = System.Drawing.Color.Blue;
  7884. this.rgvPosFrom5.Location = new System.Drawing.Point(97, 190);
  7885. this.rgvPosFrom5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7886. this.rgvPosFrom5.Name = "rgvPosFrom5";
  7887. this.rgvPosFrom5.Size = new System.Drawing.Size(31, 15);
  7888. this.rgvPosFrom5.TabIndex = 14;
  7889. this.rgvPosFrom5.Text = "---";
  7890. //
  7891. // rgvStatus5
  7892. //
  7893. this.rgvStatus5.AutoSize = true;
  7894. this.rgvStatus5.BackColor = System.Drawing.Color.Transparent;
  7895. this.rgvStatus5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7896. this.rgvStatus5.ForeColor = System.Drawing.Color.Blue;
  7897. this.rgvStatus5.Location = new System.Drawing.Point(96, 115);
  7898. this.rgvStatus5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7899. this.rgvStatus5.Name = "rgvStatus5";
  7900. this.rgvStatus5.Size = new System.Drawing.Size(31, 15);
  7901. this.rgvStatus5.TabIndex = 10;
  7902. this.rgvStatus5.Text = "---";
  7903. //
  7904. // label186
  7905. //
  7906. this.label186.AutoSize = true;
  7907. this.label186.BackColor = System.Drawing.Color.Transparent;
  7908. this.label186.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  7909. this.label186.Location = new System.Drawing.Point(3, 115);
  7910. this.label186.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7911. this.label186.Name = "label186";
  7912. this.label186.Size = new System.Drawing.Size(82, 15);
  7913. this.label186.TabIndex = 6;
  7914. this.label186.Text = "工作状态:";
  7915. //
  7916. // lblrgv5
  7917. //
  7918. this.lblrgv5.AutoSize = true;
  7919. this.lblrgv5.BackColor = System.Drawing.Color.Transparent;
  7920. 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)));
  7921. this.lblrgv5.Location = new System.Drawing.Point(59, 32);
  7922. this.lblrgv5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7923. this.lblrgv5.Name = "lblrgv5";
  7924. this.lblrgv5.Size = new System.Drawing.Size(53, 20);
  7925. this.lblrgv5.TabIndex = 0;
  7926. this.lblrgv5.Text = "RGV5";
  7927. //
  7928. // GV5
  7929. //
  7930. this.GV5.BackColor = System.Drawing.Color.Transparent;
  7931. this.GV5.Image = ((System.Drawing.Image)(resources.GetObject("GV5.Image")));
  7932. this.GV5.Location = new System.Drawing.Point(88, -2);
  7933. this.GV5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7934. this.GV5.Name = "GV5";
  7935. this.GV5.Size = new System.Drawing.Size(35, 32);
  7936. this.GV5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7937. this.GV5.TabIndex = 65;
  7938. this.GV5.TabStop = false;
  7939. this.GV5.Tag = "1";
  7940. //
  7941. // pictureBox18
  7942. //
  7943. this.pictureBox18.BackColor = System.Drawing.Color.Transparent;
  7944. this.pictureBox18.Location = new System.Drawing.Point(87, -2);
  7945. this.pictureBox18.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7946. this.pictureBox18.Name = "pictureBox18";
  7947. this.pictureBox18.Size = new System.Drawing.Size(35, 32);
  7948. this.pictureBox18.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  7949. this.pictureBox18.TabIndex = 5;
  7950. this.pictureBox18.TabStop = false;
  7951. //
  7952. // myPanel7
  7953. //
  7954. this.myPanel7.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel7.BackgroundImage")));
  7955. this.myPanel7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  7956. this.myPanel7.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  7957. this.myPanel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  7958. this.myPanel7.Controls.Add(this.lblInStatus8);
  7959. this.myPanel7.Controls.Add(this.lblOutStatus8);
  7960. this.myPanel7.Controls.Add(this.label149);
  7961. this.myPanel7.Controls.Add(this.ddjPosTo8);
  7962. this.myPanel7.Controls.Add(this.ddjPosFrom8);
  7963. this.myPanel7.Controls.Add(this.label152);
  7964. this.myPanel7.Controls.Add(this.label153);
  7965. this.myPanel7.Controls.Add(this.ddjMode8);
  7966. this.myPanel7.Controls.Add(this.ddjOrdId8);
  7967. this.myPanel7.Controls.Add(this.label156);
  7968. this.myPanel7.Controls.Add(this.ddjOptType8);
  7969. this.myPanel7.Controls.Add(this.label158);
  7970. this.myPanel7.Controls.Add(this.ddjTotal_KM8);
  7971. this.myPanel7.Controls.Add(this.label160);
  7972. this.myPanel7.Controls.Add(this.ddjWorkTime8);
  7973. this.myPanel7.Controls.Add(this.label162);
  7974. this.myPanel7.Controls.Add(this.ddjStatus8);
  7975. this.myPanel7.Controls.Add(this.ddjPosCurr8);
  7976. this.myPanel7.Controls.Add(this.label165);
  7977. this.myPanel7.Controls.Add(this.label166);
  7978. this.myPanel7.Controls.Add(this.label167);
  7979. this.myPanel7.Controls.Add(this.lblsrm08);
  7980. this.myPanel7.Controls.Add(this.G8);
  7981. this.myPanel7.Controls.Add(this.pictureBox15);
  7982. this.myPanel7.Location = new System.Drawing.Point(1563, 4);
  7983. this.myPanel7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  7984. this.myPanel7.Name = "myPanel7";
  7985. this.myPanel7.Size = new System.Drawing.Size(217, 312);
  7986. this.myPanel7.TabIndex = 131;
  7987. //
  7988. // lblInStatus8
  7989. //
  7990. this.lblInStatus8.BackColor = System.Drawing.Color.DarkGray;
  7991. this.lblInStatus8.Location = new System.Drawing.Point(7, 2);
  7992. this.lblInStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  7993. this.lblInStatus8.Name = "lblInStatus8";
  7994. this.lblInStatus8.Size = new System.Drawing.Size(37, 30);
  7995. this.lblInStatus8.TabIndex = 97;
  7996. this.lblInStatus8.Tag = "4";
  7997. this.lblInStatus8.Text = "入";
  7998. this.lblInStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  7999. //
  8000. // lblOutStatus8
  8001. //
  8002. this.lblOutStatus8.BackColor = System.Drawing.Color.DarkGray;
  8003. this.lblOutStatus8.Location = new System.Drawing.Point(165, 2);
  8004. this.lblOutStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8005. this.lblOutStatus8.Name = "lblOutStatus8";
  8006. this.lblOutStatus8.Size = new System.Drawing.Size(37, 30);
  8007. this.lblOutStatus8.TabIndex = 94;
  8008. this.lblOutStatus8.Text = "出";
  8009. this.lblOutStatus8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8010. //
  8011. // label149
  8012. //
  8013. this.label149.BackColor = System.Drawing.Color.Transparent;
  8014. this.label149.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8015. this.label149.ForeColor = System.Drawing.Color.Red;
  8016. this.label149.Location = new System.Drawing.Point(7, 58);
  8017. this.label149.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8018. this.label149.Name = "label149";
  8019. this.label149.Size = new System.Drawing.Size(201, 30);
  8020. this.label149.TabIndex = 92;
  8021. //
  8022. // ddjPosTo8
  8023. //
  8024. this.ddjPosTo8.AutoSize = true;
  8025. this.ddjPosTo8.BackColor = System.Drawing.Color.Transparent;
  8026. this.ddjPosTo8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8027. this.ddjPosTo8.ForeColor = System.Drawing.Color.Blue;
  8028. this.ddjPosTo8.Location = new System.Drawing.Point(119, 292);
  8029. this.ddjPosTo8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8030. this.ddjPosTo8.Name = "ddjPosTo8";
  8031. this.ddjPosTo8.Size = new System.Drawing.Size(31, 15);
  8032. this.ddjPosTo8.TabIndex = 73;
  8033. this.ddjPosTo8.Text = "---";
  8034. //
  8035. // ddjPosFrom8
  8036. //
  8037. this.ddjPosFrom8.AutoSize = true;
  8038. this.ddjPosFrom8.BackColor = System.Drawing.Color.Transparent;
  8039. this.ddjPosFrom8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8040. this.ddjPosFrom8.ForeColor = System.Drawing.Color.Blue;
  8041. this.ddjPosFrom8.Location = new System.Drawing.Point(119, 265);
  8042. this.ddjPosFrom8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8043. this.ddjPosFrom8.Name = "ddjPosFrom8";
  8044. this.ddjPosFrom8.Size = new System.Drawing.Size(31, 15);
  8045. this.ddjPosFrom8.TabIndex = 72;
  8046. this.ddjPosFrom8.Text = "---";
  8047. //
  8048. // label152
  8049. //
  8050. this.label152.AutoSize = true;
  8051. this.label152.BackColor = System.Drawing.Color.Transparent;
  8052. this.label152.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8053. this.label152.Location = new System.Drawing.Point(4, 265);
  8054. this.label152.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8055. this.label152.Name = "label152";
  8056. this.label152.Size = new System.Drawing.Size(82, 15);
  8057. this.label152.TabIndex = 71;
  8058. this.label152.Text = "起始位置:";
  8059. //
  8060. // label153
  8061. //
  8062. this.label153.AutoSize = true;
  8063. this.label153.BackColor = System.Drawing.Color.Transparent;
  8064. this.label153.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8065. this.label153.Location = new System.Drawing.Point(4, 292);
  8066. this.label153.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8067. this.label153.Name = "label153";
  8068. this.label153.Size = new System.Drawing.Size(82, 15);
  8069. this.label153.TabIndex = 70;
  8070. this.label153.Text = "目标位置:";
  8071. //
  8072. // ddjMode8
  8073. //
  8074. this.ddjMode8.AutoSize = true;
  8075. this.ddjMode8.BackColor = System.Drawing.Color.Transparent;
  8076. this.ddjMode8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8077. this.ddjMode8.ForeColor = System.Drawing.Color.Blue;
  8078. this.ddjMode8.Location = new System.Drawing.Point(116, 92);
  8079. this.ddjMode8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8080. this.ddjMode8.Name = "ddjMode8";
  8081. this.ddjMode8.Size = new System.Drawing.Size(31, 15);
  8082. this.ddjMode8.TabIndex = 12;
  8083. this.ddjMode8.Text = "---";
  8084. //
  8085. // ddjOrdId8
  8086. //
  8087. this.ddjOrdId8.AutoSize = true;
  8088. this.ddjOrdId8.BackColor = System.Drawing.Color.Transparent;
  8089. this.ddjOrdId8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8090. this.ddjOrdId8.ForeColor = System.Drawing.Color.Blue;
  8091. this.ddjOrdId8.Location = new System.Drawing.Point(116, 142);
  8092. this.ddjOrdId8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8093. this.ddjOrdId8.Name = "ddjOrdId8";
  8094. this.ddjOrdId8.Size = new System.Drawing.Size(31, 15);
  8095. this.ddjOrdId8.TabIndex = 64;
  8096. this.ddjOrdId8.Text = "---";
  8097. //
  8098. // label156
  8099. //
  8100. this.label156.AutoSize = true;
  8101. this.label156.BackColor = System.Drawing.Color.Transparent;
  8102. this.label156.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8103. this.label156.Location = new System.Drawing.Point(3, 142);
  8104. this.label156.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8105. this.label156.Name = "label156";
  8106. this.label156.Size = new System.Drawing.Size(82, 15);
  8107. this.label156.TabIndex = 63;
  8108. this.label156.Text = "工作指令:";
  8109. //
  8110. // ddjOptType8
  8111. //
  8112. this.ddjOptType8.AutoSize = true;
  8113. this.ddjOptType8.BackColor = System.Drawing.Color.Transparent;
  8114. this.ddjOptType8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8115. this.ddjOptType8.ForeColor = System.Drawing.Color.Blue;
  8116. this.ddjOptType8.Location = new System.Drawing.Point(116, 162);
  8117. this.ddjOptType8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8118. this.ddjOptType8.Name = "ddjOptType8";
  8119. this.ddjOptType8.Size = new System.Drawing.Size(31, 15);
  8120. this.ddjOptType8.TabIndex = 62;
  8121. this.ddjOptType8.Text = "---";
  8122. //
  8123. // label158
  8124. //
  8125. this.label158.AutoSize = true;
  8126. this.label158.BackColor = System.Drawing.Color.Transparent;
  8127. this.label158.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8128. this.label158.Location = new System.Drawing.Point(3, 162);
  8129. this.label158.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8130. this.label158.Name = "label158";
  8131. this.label158.Size = new System.Drawing.Size(82, 15);
  8132. this.label158.TabIndex = 61;
  8133. this.label158.Text = "作业类型:";
  8134. //
  8135. // ddjTotal_KM8
  8136. //
  8137. this.ddjTotal_KM8.AutoSize = true;
  8138. this.ddjTotal_KM8.BackColor = System.Drawing.Color.Transparent;
  8139. this.ddjTotal_KM8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8140. this.ddjTotal_KM8.ForeColor = System.Drawing.SystemColors.ControlText;
  8141. this.ddjTotal_KM8.Location = new System.Drawing.Point(117, 238);
  8142. this.ddjTotal_KM8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8143. this.ddjTotal_KM8.Name = "ddjTotal_KM8";
  8144. this.ddjTotal_KM8.Size = new System.Drawing.Size(31, 15);
  8145. this.ddjTotal_KM8.TabIndex = 16;
  8146. this.ddjTotal_KM8.Text = "---";
  8147. //
  8148. // label160
  8149. //
  8150. this.label160.AutoSize = true;
  8151. this.label160.BackColor = System.Drawing.Color.Transparent;
  8152. this.label160.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8153. this.label160.Location = new System.Drawing.Point(3, 92);
  8154. this.label160.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8155. this.label160.Name = "label160";
  8156. this.label160.Size = new System.Drawing.Size(82, 15);
  8157. this.label160.TabIndex = 15;
  8158. this.label160.Text = "工作模式:";
  8159. //
  8160. // ddjWorkTime8
  8161. //
  8162. this.ddjWorkTime8.AutoSize = true;
  8163. this.ddjWorkTime8.BackColor = System.Drawing.Color.Transparent;
  8164. this.ddjWorkTime8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8165. this.ddjWorkTime8.ForeColor = System.Drawing.Color.Red;
  8166. this.ddjWorkTime8.Location = new System.Drawing.Point(117, 212);
  8167. this.ddjWorkTime8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8168. this.ddjWorkTime8.Name = "ddjWorkTime8";
  8169. this.ddjWorkTime8.Size = new System.Drawing.Size(31, 15);
  8170. this.ddjWorkTime8.TabIndex = 14;
  8171. this.ddjWorkTime8.Text = "---";
  8172. //
  8173. // label162
  8174. //
  8175. this.label162.AutoSize = true;
  8176. this.label162.BackColor = System.Drawing.Color.Transparent;
  8177. this.label162.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8178. this.label162.Location = new System.Drawing.Point(3, 212);
  8179. this.label162.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8180. this.label162.Name = "label162";
  8181. this.label162.Size = new System.Drawing.Size(82, 15);
  8182. this.label162.TabIndex = 13;
  8183. this.label162.Text = "运行时长:";
  8184. //
  8185. // ddjStatus8
  8186. //
  8187. this.ddjStatus8.AutoSize = true;
  8188. this.ddjStatus8.BackColor = System.Drawing.Color.Transparent;
  8189. this.ddjStatus8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8190. this.ddjStatus8.ForeColor = System.Drawing.Color.Blue;
  8191. this.ddjStatus8.Location = new System.Drawing.Point(116, 115);
  8192. this.ddjStatus8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8193. this.ddjStatus8.Name = "ddjStatus8";
  8194. this.ddjStatus8.Size = new System.Drawing.Size(31, 15);
  8195. this.ddjStatus8.TabIndex = 10;
  8196. this.ddjStatus8.Text = "---";
  8197. //
  8198. // ddjPosCurr8
  8199. //
  8200. this.ddjPosCurr8.AutoSize = true;
  8201. this.ddjPosCurr8.BackColor = System.Drawing.Color.Transparent;
  8202. this.ddjPosCurr8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8203. this.ddjPosCurr8.ForeColor = System.Drawing.Color.Blue;
  8204. this.ddjPosCurr8.Location = new System.Drawing.Point(117, 188);
  8205. this.ddjPosCurr8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8206. this.ddjPosCurr8.Name = "ddjPosCurr8";
  8207. this.ddjPosCurr8.Size = new System.Drawing.Size(31, 15);
  8208. this.ddjPosCurr8.TabIndex = 9;
  8209. this.ddjPosCurr8.Text = "---";
  8210. //
  8211. // label165
  8212. //
  8213. this.label165.AutoSize = true;
  8214. this.label165.BackColor = System.Drawing.Color.Transparent;
  8215. this.label165.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8216. this.label165.ForeColor = System.Drawing.SystemColors.ControlText;
  8217. this.label165.Location = new System.Drawing.Point(3, 238);
  8218. this.label165.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8219. this.label165.Name = "label165";
  8220. this.label165.Size = new System.Drawing.Size(83, 15);
  8221. this.label165.TabIndex = 8;
  8222. this.label165.Text = "里 程 数:";
  8223. //
  8224. // label166
  8225. //
  8226. this.label166.AutoSize = true;
  8227. this.label166.BackColor = System.Drawing.Color.Transparent;
  8228. this.label166.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8229. this.label166.Location = new System.Drawing.Point(3, 115);
  8230. this.label166.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8231. this.label166.Name = "label166";
  8232. this.label166.Size = new System.Drawing.Size(82, 15);
  8233. this.label166.TabIndex = 6;
  8234. this.label166.Text = "工作状态:";
  8235. //
  8236. // label167
  8237. //
  8238. this.label167.AutoSize = true;
  8239. this.label167.BackColor = System.Drawing.Color.Transparent;
  8240. this.label167.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8241. this.label167.Location = new System.Drawing.Point(3, 188);
  8242. this.label167.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8243. this.label167.Name = "label167";
  8244. this.label167.Size = new System.Drawing.Size(82, 15);
  8245. this.label167.TabIndex = 1;
  8246. this.label167.Text = "当前巷道:";
  8247. //
  8248. // lblsrm08
  8249. //
  8250. this.lblsrm08.AutoSize = true;
  8251. this.lblsrm08.BackColor = System.Drawing.Color.Transparent;
  8252. 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)));
  8253. this.lblsrm08.Location = new System.Drawing.Point(40, 32);
  8254. this.lblsrm08.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8255. this.lblsrm08.Name = "lblsrm08";
  8256. this.lblsrm08.Size = new System.Drawing.Size(115, 20);
  8257. this.lblsrm08.TabIndex = 0;
  8258. this.lblsrm08.Text = "8号 堆垛机";
  8259. //
  8260. // G8
  8261. //
  8262. this.G8.BackColor = System.Drawing.Color.Transparent;
  8263. this.G8.Image = ((System.Drawing.Image)(resources.GetObject("G8.Image")));
  8264. this.G8.Location = new System.Drawing.Point(88, -2);
  8265. this.G8.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8266. this.G8.Name = "G8";
  8267. this.G8.Size = new System.Drawing.Size(35, 32);
  8268. this.G8.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8269. this.G8.TabIndex = 65;
  8270. this.G8.TabStop = false;
  8271. this.G8.Tag = "1";
  8272. //
  8273. // pictureBox15
  8274. //
  8275. this.pictureBox15.BackColor = System.Drawing.Color.Transparent;
  8276. this.pictureBox15.Location = new System.Drawing.Point(87, -2);
  8277. this.pictureBox15.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8278. this.pictureBox15.Name = "pictureBox15";
  8279. this.pictureBox15.Size = new System.Drawing.Size(35, 32);
  8280. this.pictureBox15.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8281. this.pictureBox15.TabIndex = 5;
  8282. this.pictureBox15.TabStop = false;
  8283. //
  8284. // myPanel6
  8285. //
  8286. this.myPanel6.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel6.BackgroundImage")));
  8287. this.myPanel6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8288. this.myPanel6.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8289. this.myPanel6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8290. this.myPanel6.Controls.Add(this.lblInStatus7);
  8291. this.myPanel6.Controls.Add(this.lblOutStatus7);
  8292. this.myPanel6.Controls.Add(this.label103);
  8293. this.myPanel6.Controls.Add(this.ddjPosTo7);
  8294. this.myPanel6.Controls.Add(this.ddjPosFrom7);
  8295. this.myPanel6.Controls.Add(this.label106);
  8296. this.myPanel6.Controls.Add(this.label107);
  8297. this.myPanel6.Controls.Add(this.ddjMode7);
  8298. this.myPanel6.Controls.Add(this.ddjOrdId7);
  8299. this.myPanel6.Controls.Add(this.label110);
  8300. this.myPanel6.Controls.Add(this.ddjOptType7);
  8301. this.myPanel6.Controls.Add(this.label112);
  8302. this.myPanel6.Controls.Add(this.ddjTotal_KM7);
  8303. this.myPanel6.Controls.Add(this.label114);
  8304. this.myPanel6.Controls.Add(this.ddjWorkTime7);
  8305. this.myPanel6.Controls.Add(this.label116);
  8306. this.myPanel6.Controls.Add(this.ddjStatus7);
  8307. this.myPanel6.Controls.Add(this.ddjPosCurr7);
  8308. this.myPanel6.Controls.Add(this.label119);
  8309. this.myPanel6.Controls.Add(this.label120);
  8310. this.myPanel6.Controls.Add(this.label121);
  8311. this.myPanel6.Controls.Add(this.lblsrm07);
  8312. this.myPanel6.Controls.Add(this.G7);
  8313. this.myPanel6.Controls.Add(this.pictureBox9);
  8314. this.myPanel6.Location = new System.Drawing.Point(1344, 4);
  8315. this.myPanel6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8316. this.myPanel6.Name = "myPanel6";
  8317. this.myPanel6.Size = new System.Drawing.Size(217, 312);
  8318. this.myPanel6.TabIndex = 130;
  8319. //
  8320. // lblInStatus7
  8321. //
  8322. this.lblInStatus7.BackColor = System.Drawing.Color.DarkGray;
  8323. this.lblInStatus7.Location = new System.Drawing.Point(7, 2);
  8324. this.lblInStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8325. this.lblInStatus7.Name = "lblInStatus7";
  8326. this.lblInStatus7.Size = new System.Drawing.Size(37, 30);
  8327. this.lblInStatus7.TabIndex = 97;
  8328. this.lblInStatus7.Tag = "4";
  8329. this.lblInStatus7.Text = "入";
  8330. this.lblInStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8331. //
  8332. // lblOutStatus7
  8333. //
  8334. this.lblOutStatus7.BackColor = System.Drawing.Color.DarkGray;
  8335. this.lblOutStatus7.Location = new System.Drawing.Point(165, 2);
  8336. this.lblOutStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8337. this.lblOutStatus7.Name = "lblOutStatus7";
  8338. this.lblOutStatus7.Size = new System.Drawing.Size(37, 30);
  8339. this.lblOutStatus7.TabIndex = 94;
  8340. this.lblOutStatus7.Text = "出";
  8341. this.lblOutStatus7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8342. //
  8343. // label103
  8344. //
  8345. this.label103.BackColor = System.Drawing.Color.Transparent;
  8346. this.label103.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8347. this.label103.ForeColor = System.Drawing.Color.Red;
  8348. this.label103.Location = new System.Drawing.Point(7, 58);
  8349. this.label103.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8350. this.label103.Name = "label103";
  8351. this.label103.Size = new System.Drawing.Size(201, 30);
  8352. this.label103.TabIndex = 92;
  8353. //
  8354. // ddjPosTo7
  8355. //
  8356. this.ddjPosTo7.AutoSize = true;
  8357. this.ddjPosTo7.BackColor = System.Drawing.Color.Transparent;
  8358. this.ddjPosTo7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8359. this.ddjPosTo7.ForeColor = System.Drawing.Color.Blue;
  8360. this.ddjPosTo7.Location = new System.Drawing.Point(119, 292);
  8361. this.ddjPosTo7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8362. this.ddjPosTo7.Name = "ddjPosTo7";
  8363. this.ddjPosTo7.Size = new System.Drawing.Size(31, 15);
  8364. this.ddjPosTo7.TabIndex = 73;
  8365. this.ddjPosTo7.Text = "---";
  8366. //
  8367. // ddjPosFrom7
  8368. //
  8369. this.ddjPosFrom7.AutoSize = true;
  8370. this.ddjPosFrom7.BackColor = System.Drawing.Color.Transparent;
  8371. this.ddjPosFrom7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8372. this.ddjPosFrom7.ForeColor = System.Drawing.Color.Blue;
  8373. this.ddjPosFrom7.Location = new System.Drawing.Point(119, 265);
  8374. this.ddjPosFrom7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8375. this.ddjPosFrom7.Name = "ddjPosFrom7";
  8376. this.ddjPosFrom7.Size = new System.Drawing.Size(31, 15);
  8377. this.ddjPosFrom7.TabIndex = 72;
  8378. this.ddjPosFrom7.Text = "---";
  8379. //
  8380. // label106
  8381. //
  8382. this.label106.AutoSize = true;
  8383. this.label106.BackColor = System.Drawing.Color.Transparent;
  8384. this.label106.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8385. this.label106.Location = new System.Drawing.Point(4, 265);
  8386. this.label106.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8387. this.label106.Name = "label106";
  8388. this.label106.Size = new System.Drawing.Size(82, 15);
  8389. this.label106.TabIndex = 71;
  8390. this.label106.Text = "起始位置:";
  8391. //
  8392. // label107
  8393. //
  8394. this.label107.AutoSize = true;
  8395. this.label107.BackColor = System.Drawing.Color.Transparent;
  8396. this.label107.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8397. this.label107.Location = new System.Drawing.Point(4, 292);
  8398. this.label107.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8399. this.label107.Name = "label107";
  8400. this.label107.Size = new System.Drawing.Size(82, 15);
  8401. this.label107.TabIndex = 70;
  8402. this.label107.Text = "目标位置:";
  8403. //
  8404. // ddjMode7
  8405. //
  8406. this.ddjMode7.AutoSize = true;
  8407. this.ddjMode7.BackColor = System.Drawing.Color.Transparent;
  8408. this.ddjMode7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8409. this.ddjMode7.ForeColor = System.Drawing.Color.Blue;
  8410. this.ddjMode7.Location = new System.Drawing.Point(116, 92);
  8411. this.ddjMode7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8412. this.ddjMode7.Name = "ddjMode7";
  8413. this.ddjMode7.Size = new System.Drawing.Size(31, 15);
  8414. this.ddjMode7.TabIndex = 12;
  8415. this.ddjMode7.Text = "---";
  8416. //
  8417. // ddjOrdId7
  8418. //
  8419. this.ddjOrdId7.AutoSize = true;
  8420. this.ddjOrdId7.BackColor = System.Drawing.Color.Transparent;
  8421. this.ddjOrdId7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8422. this.ddjOrdId7.ForeColor = System.Drawing.Color.Blue;
  8423. this.ddjOrdId7.Location = new System.Drawing.Point(116, 142);
  8424. this.ddjOrdId7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8425. this.ddjOrdId7.Name = "ddjOrdId7";
  8426. this.ddjOrdId7.Size = new System.Drawing.Size(31, 15);
  8427. this.ddjOrdId7.TabIndex = 64;
  8428. this.ddjOrdId7.Text = "---";
  8429. //
  8430. // label110
  8431. //
  8432. this.label110.AutoSize = true;
  8433. this.label110.BackColor = System.Drawing.Color.Transparent;
  8434. this.label110.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8435. this.label110.Location = new System.Drawing.Point(3, 142);
  8436. this.label110.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8437. this.label110.Name = "label110";
  8438. this.label110.Size = new System.Drawing.Size(82, 15);
  8439. this.label110.TabIndex = 63;
  8440. this.label110.Text = "工作指令:";
  8441. //
  8442. // ddjOptType7
  8443. //
  8444. this.ddjOptType7.AutoSize = true;
  8445. this.ddjOptType7.BackColor = System.Drawing.Color.Transparent;
  8446. this.ddjOptType7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8447. this.ddjOptType7.ForeColor = System.Drawing.Color.Blue;
  8448. this.ddjOptType7.Location = new System.Drawing.Point(116, 162);
  8449. this.ddjOptType7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8450. this.ddjOptType7.Name = "ddjOptType7";
  8451. this.ddjOptType7.Size = new System.Drawing.Size(31, 15);
  8452. this.ddjOptType7.TabIndex = 62;
  8453. this.ddjOptType7.Text = "---";
  8454. //
  8455. // label112
  8456. //
  8457. this.label112.AutoSize = true;
  8458. this.label112.BackColor = System.Drawing.Color.Transparent;
  8459. this.label112.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8460. this.label112.Location = new System.Drawing.Point(3, 162);
  8461. this.label112.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8462. this.label112.Name = "label112";
  8463. this.label112.Size = new System.Drawing.Size(82, 15);
  8464. this.label112.TabIndex = 61;
  8465. this.label112.Text = "作业类型:";
  8466. //
  8467. // ddjTotal_KM7
  8468. //
  8469. this.ddjTotal_KM7.AutoSize = true;
  8470. this.ddjTotal_KM7.BackColor = System.Drawing.Color.Transparent;
  8471. this.ddjTotal_KM7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8472. this.ddjTotal_KM7.ForeColor = System.Drawing.SystemColors.ControlText;
  8473. this.ddjTotal_KM7.Location = new System.Drawing.Point(117, 238);
  8474. this.ddjTotal_KM7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8475. this.ddjTotal_KM7.Name = "ddjTotal_KM7";
  8476. this.ddjTotal_KM7.Size = new System.Drawing.Size(31, 15);
  8477. this.ddjTotal_KM7.TabIndex = 16;
  8478. this.ddjTotal_KM7.Text = "---";
  8479. //
  8480. // label114
  8481. //
  8482. this.label114.AutoSize = true;
  8483. this.label114.BackColor = System.Drawing.Color.Transparent;
  8484. this.label114.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8485. this.label114.Location = new System.Drawing.Point(3, 92);
  8486. this.label114.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8487. this.label114.Name = "label114";
  8488. this.label114.Size = new System.Drawing.Size(82, 15);
  8489. this.label114.TabIndex = 15;
  8490. this.label114.Text = "工作模式:";
  8491. //
  8492. // ddjWorkTime7
  8493. //
  8494. this.ddjWorkTime7.AutoSize = true;
  8495. this.ddjWorkTime7.BackColor = System.Drawing.Color.Transparent;
  8496. this.ddjWorkTime7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8497. this.ddjWorkTime7.ForeColor = System.Drawing.Color.Red;
  8498. this.ddjWorkTime7.Location = new System.Drawing.Point(117, 212);
  8499. this.ddjWorkTime7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8500. this.ddjWorkTime7.Name = "ddjWorkTime7";
  8501. this.ddjWorkTime7.Size = new System.Drawing.Size(31, 15);
  8502. this.ddjWorkTime7.TabIndex = 14;
  8503. this.ddjWorkTime7.Text = "---";
  8504. //
  8505. // label116
  8506. //
  8507. this.label116.AutoSize = true;
  8508. this.label116.BackColor = System.Drawing.Color.Transparent;
  8509. this.label116.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8510. this.label116.Location = new System.Drawing.Point(3, 212);
  8511. this.label116.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8512. this.label116.Name = "label116";
  8513. this.label116.Size = new System.Drawing.Size(82, 15);
  8514. this.label116.TabIndex = 13;
  8515. this.label116.Text = "运行时长:";
  8516. //
  8517. // ddjStatus7
  8518. //
  8519. this.ddjStatus7.AutoSize = true;
  8520. this.ddjStatus7.BackColor = System.Drawing.Color.Transparent;
  8521. this.ddjStatus7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8522. this.ddjStatus7.ForeColor = System.Drawing.Color.Blue;
  8523. this.ddjStatus7.Location = new System.Drawing.Point(116, 115);
  8524. this.ddjStatus7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8525. this.ddjStatus7.Name = "ddjStatus7";
  8526. this.ddjStatus7.Size = new System.Drawing.Size(31, 15);
  8527. this.ddjStatus7.TabIndex = 10;
  8528. this.ddjStatus7.Text = "---";
  8529. //
  8530. // ddjPosCurr7
  8531. //
  8532. this.ddjPosCurr7.AutoSize = true;
  8533. this.ddjPosCurr7.BackColor = System.Drawing.Color.Transparent;
  8534. this.ddjPosCurr7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8535. this.ddjPosCurr7.ForeColor = System.Drawing.Color.Blue;
  8536. this.ddjPosCurr7.Location = new System.Drawing.Point(117, 188);
  8537. this.ddjPosCurr7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8538. this.ddjPosCurr7.Name = "ddjPosCurr7";
  8539. this.ddjPosCurr7.Size = new System.Drawing.Size(31, 15);
  8540. this.ddjPosCurr7.TabIndex = 9;
  8541. this.ddjPosCurr7.Text = "---";
  8542. //
  8543. // label119
  8544. //
  8545. this.label119.AutoSize = true;
  8546. this.label119.BackColor = System.Drawing.Color.Transparent;
  8547. this.label119.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8548. this.label119.ForeColor = System.Drawing.SystemColors.ControlText;
  8549. this.label119.Location = new System.Drawing.Point(3, 238);
  8550. this.label119.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8551. this.label119.Name = "label119";
  8552. this.label119.Size = new System.Drawing.Size(83, 15);
  8553. this.label119.TabIndex = 8;
  8554. this.label119.Text = "里 程 数:";
  8555. //
  8556. // label120
  8557. //
  8558. this.label120.AutoSize = true;
  8559. this.label120.BackColor = System.Drawing.Color.Transparent;
  8560. this.label120.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8561. this.label120.Location = new System.Drawing.Point(3, 115);
  8562. this.label120.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8563. this.label120.Name = "label120";
  8564. this.label120.Size = new System.Drawing.Size(82, 15);
  8565. this.label120.TabIndex = 6;
  8566. this.label120.Text = "工作状态:";
  8567. //
  8568. // label121
  8569. //
  8570. this.label121.AutoSize = true;
  8571. this.label121.BackColor = System.Drawing.Color.Transparent;
  8572. this.label121.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8573. this.label121.Location = new System.Drawing.Point(3, 188);
  8574. this.label121.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8575. this.label121.Name = "label121";
  8576. this.label121.Size = new System.Drawing.Size(82, 15);
  8577. this.label121.TabIndex = 1;
  8578. this.label121.Text = "当前巷道:";
  8579. //
  8580. // lblsrm07
  8581. //
  8582. this.lblsrm07.AutoSize = true;
  8583. this.lblsrm07.BackColor = System.Drawing.Color.Transparent;
  8584. 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)));
  8585. this.lblsrm07.Location = new System.Drawing.Point(40, 32);
  8586. this.lblsrm07.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8587. this.lblsrm07.Name = "lblsrm07";
  8588. this.lblsrm07.Size = new System.Drawing.Size(115, 20);
  8589. this.lblsrm07.TabIndex = 0;
  8590. this.lblsrm07.Text = "7号 堆垛机";
  8591. //
  8592. // G7
  8593. //
  8594. this.G7.BackColor = System.Drawing.Color.Transparent;
  8595. this.G7.Image = ((System.Drawing.Image)(resources.GetObject("G7.Image")));
  8596. this.G7.Location = new System.Drawing.Point(88, -2);
  8597. this.G7.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8598. this.G7.Name = "G7";
  8599. this.G7.Size = new System.Drawing.Size(35, 32);
  8600. this.G7.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8601. this.G7.TabIndex = 65;
  8602. this.G7.TabStop = false;
  8603. this.G7.Tag = "1";
  8604. //
  8605. // pictureBox9
  8606. //
  8607. this.pictureBox9.BackColor = System.Drawing.Color.Transparent;
  8608. this.pictureBox9.Location = new System.Drawing.Point(87, -2);
  8609. this.pictureBox9.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8610. this.pictureBox9.Name = "pictureBox9";
  8611. this.pictureBox9.Size = new System.Drawing.Size(35, 32);
  8612. this.pictureBox9.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8613. this.pictureBox9.TabIndex = 5;
  8614. this.pictureBox9.TabStop = false;
  8615. //
  8616. // myPanel3
  8617. //
  8618. this.myPanel3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel3.BackgroundImage")));
  8619. this.myPanel3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8620. this.myPanel3.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8621. this.myPanel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8622. this.myPanel3.Controls.Add(this.lblInStatus6);
  8623. this.myPanel3.Controls.Add(this.lblOutStatus6);
  8624. this.myPanel3.Controls.Add(this.label47);
  8625. this.myPanel3.Controls.Add(this.ddjPosTo6);
  8626. this.myPanel3.Controls.Add(this.ddjPosFrom6);
  8627. this.myPanel3.Controls.Add(this.label52);
  8628. this.myPanel3.Controls.Add(this.label54);
  8629. this.myPanel3.Controls.Add(this.ddjMode6);
  8630. this.myPanel3.Controls.Add(this.ddjOrdId6);
  8631. this.myPanel3.Controls.Add(this.label62);
  8632. this.myPanel3.Controls.Add(this.ddjOptType6);
  8633. this.myPanel3.Controls.Add(this.label68);
  8634. this.myPanel3.Controls.Add(this.ddjTotal_KM6);
  8635. this.myPanel3.Controls.Add(this.label76);
  8636. this.myPanel3.Controls.Add(this.ddjWorkTime6);
  8637. this.myPanel3.Controls.Add(this.label82);
  8638. this.myPanel3.Controls.Add(this.ddjStatus6);
  8639. this.myPanel3.Controls.Add(this.ddjPosCurr6);
  8640. this.myPanel3.Controls.Add(this.label95);
  8641. this.myPanel3.Controls.Add(this.label97);
  8642. this.myPanel3.Controls.Add(this.label98);
  8643. this.myPanel3.Controls.Add(this.lblsrm06);
  8644. this.myPanel3.Controls.Add(this.G6);
  8645. this.myPanel3.Controls.Add(this.pictureBox2);
  8646. this.myPanel3.Location = new System.Drawing.Point(1119, 2);
  8647. this.myPanel3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8648. this.myPanel3.Name = "myPanel3";
  8649. this.myPanel3.Size = new System.Drawing.Size(217, 312);
  8650. this.myPanel3.TabIndex = 129;
  8651. //
  8652. // lblInStatus6
  8653. //
  8654. this.lblInStatus6.BackColor = System.Drawing.Color.DarkGray;
  8655. this.lblInStatus6.Location = new System.Drawing.Point(7, 2);
  8656. this.lblInStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8657. this.lblInStatus6.Name = "lblInStatus6";
  8658. this.lblInStatus6.Size = new System.Drawing.Size(37, 30);
  8659. this.lblInStatus6.TabIndex = 97;
  8660. this.lblInStatus6.Tag = "4";
  8661. this.lblInStatus6.Text = "入";
  8662. this.lblInStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8663. //
  8664. // lblOutStatus6
  8665. //
  8666. this.lblOutStatus6.BackColor = System.Drawing.Color.DarkGray;
  8667. this.lblOutStatus6.Location = new System.Drawing.Point(165, 2);
  8668. this.lblOutStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8669. this.lblOutStatus6.Name = "lblOutStatus6";
  8670. this.lblOutStatus6.Size = new System.Drawing.Size(37, 30);
  8671. this.lblOutStatus6.TabIndex = 94;
  8672. this.lblOutStatus6.Text = "出";
  8673. this.lblOutStatus6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  8674. //
  8675. // label47
  8676. //
  8677. this.label47.BackColor = System.Drawing.Color.Transparent;
  8678. this.label47.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8679. this.label47.ForeColor = System.Drawing.Color.Red;
  8680. this.label47.Location = new System.Drawing.Point(7, 58);
  8681. this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8682. this.label47.Name = "label47";
  8683. this.label47.Size = new System.Drawing.Size(201, 30);
  8684. this.label47.TabIndex = 92;
  8685. //
  8686. // ddjPosTo6
  8687. //
  8688. this.ddjPosTo6.AutoSize = true;
  8689. this.ddjPosTo6.BackColor = System.Drawing.Color.Transparent;
  8690. this.ddjPosTo6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8691. this.ddjPosTo6.ForeColor = System.Drawing.Color.Blue;
  8692. this.ddjPosTo6.Location = new System.Drawing.Point(119, 292);
  8693. this.ddjPosTo6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8694. this.ddjPosTo6.Name = "ddjPosTo6";
  8695. this.ddjPosTo6.Size = new System.Drawing.Size(31, 15);
  8696. this.ddjPosTo6.TabIndex = 73;
  8697. this.ddjPosTo6.Text = "---";
  8698. //
  8699. // ddjPosFrom6
  8700. //
  8701. this.ddjPosFrom6.AutoSize = true;
  8702. this.ddjPosFrom6.BackColor = System.Drawing.Color.Transparent;
  8703. this.ddjPosFrom6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8704. this.ddjPosFrom6.ForeColor = System.Drawing.Color.Blue;
  8705. this.ddjPosFrom6.Location = new System.Drawing.Point(119, 265);
  8706. this.ddjPosFrom6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8707. this.ddjPosFrom6.Name = "ddjPosFrom6";
  8708. this.ddjPosFrom6.Size = new System.Drawing.Size(31, 15);
  8709. this.ddjPosFrom6.TabIndex = 72;
  8710. this.ddjPosFrom6.Text = "---";
  8711. //
  8712. // label52
  8713. //
  8714. this.label52.AutoSize = true;
  8715. this.label52.BackColor = System.Drawing.Color.Transparent;
  8716. this.label52.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8717. this.label52.Location = new System.Drawing.Point(4, 265);
  8718. this.label52.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8719. this.label52.Name = "label52";
  8720. this.label52.Size = new System.Drawing.Size(82, 15);
  8721. this.label52.TabIndex = 71;
  8722. this.label52.Text = "起始位置:";
  8723. //
  8724. // label54
  8725. //
  8726. this.label54.AutoSize = true;
  8727. this.label54.BackColor = System.Drawing.Color.Transparent;
  8728. this.label54.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8729. this.label54.Location = new System.Drawing.Point(4, 292);
  8730. this.label54.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8731. this.label54.Name = "label54";
  8732. this.label54.Size = new System.Drawing.Size(82, 15);
  8733. this.label54.TabIndex = 70;
  8734. this.label54.Text = "目标位置:";
  8735. //
  8736. // ddjMode6
  8737. //
  8738. this.ddjMode6.AutoSize = true;
  8739. this.ddjMode6.BackColor = System.Drawing.Color.Transparent;
  8740. this.ddjMode6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8741. this.ddjMode6.ForeColor = System.Drawing.Color.Blue;
  8742. this.ddjMode6.Location = new System.Drawing.Point(116, 92);
  8743. this.ddjMode6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8744. this.ddjMode6.Name = "ddjMode6";
  8745. this.ddjMode6.Size = new System.Drawing.Size(31, 15);
  8746. this.ddjMode6.TabIndex = 12;
  8747. this.ddjMode6.Text = "---";
  8748. //
  8749. // ddjOrdId6
  8750. //
  8751. this.ddjOrdId6.AutoSize = true;
  8752. this.ddjOrdId6.BackColor = System.Drawing.Color.Transparent;
  8753. this.ddjOrdId6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8754. this.ddjOrdId6.ForeColor = System.Drawing.Color.Blue;
  8755. this.ddjOrdId6.Location = new System.Drawing.Point(116, 142);
  8756. this.ddjOrdId6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8757. this.ddjOrdId6.Name = "ddjOrdId6";
  8758. this.ddjOrdId6.Size = new System.Drawing.Size(31, 15);
  8759. this.ddjOrdId6.TabIndex = 64;
  8760. this.ddjOrdId6.Text = "---";
  8761. //
  8762. // label62
  8763. //
  8764. this.label62.AutoSize = true;
  8765. this.label62.BackColor = System.Drawing.Color.Transparent;
  8766. this.label62.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8767. this.label62.Location = new System.Drawing.Point(3, 142);
  8768. this.label62.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8769. this.label62.Name = "label62";
  8770. this.label62.Size = new System.Drawing.Size(82, 15);
  8771. this.label62.TabIndex = 63;
  8772. this.label62.Text = "工作指令:";
  8773. //
  8774. // ddjOptType6
  8775. //
  8776. this.ddjOptType6.AutoSize = true;
  8777. this.ddjOptType6.BackColor = System.Drawing.Color.Transparent;
  8778. this.ddjOptType6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8779. this.ddjOptType6.ForeColor = System.Drawing.Color.Blue;
  8780. this.ddjOptType6.Location = new System.Drawing.Point(116, 162);
  8781. this.ddjOptType6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8782. this.ddjOptType6.Name = "ddjOptType6";
  8783. this.ddjOptType6.Size = new System.Drawing.Size(31, 15);
  8784. this.ddjOptType6.TabIndex = 62;
  8785. this.ddjOptType6.Text = "---";
  8786. //
  8787. // label68
  8788. //
  8789. this.label68.AutoSize = true;
  8790. this.label68.BackColor = System.Drawing.Color.Transparent;
  8791. this.label68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8792. this.label68.Location = new System.Drawing.Point(3, 162);
  8793. this.label68.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8794. this.label68.Name = "label68";
  8795. this.label68.Size = new System.Drawing.Size(82, 15);
  8796. this.label68.TabIndex = 61;
  8797. this.label68.Text = "作业类型:";
  8798. //
  8799. // ddjTotal_KM6
  8800. //
  8801. this.ddjTotal_KM6.AutoSize = true;
  8802. this.ddjTotal_KM6.BackColor = System.Drawing.Color.Transparent;
  8803. this.ddjTotal_KM6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8804. this.ddjTotal_KM6.ForeColor = System.Drawing.SystemColors.ControlText;
  8805. this.ddjTotal_KM6.Location = new System.Drawing.Point(117, 238);
  8806. this.ddjTotal_KM6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8807. this.ddjTotal_KM6.Name = "ddjTotal_KM6";
  8808. this.ddjTotal_KM6.Size = new System.Drawing.Size(31, 15);
  8809. this.ddjTotal_KM6.TabIndex = 16;
  8810. this.ddjTotal_KM6.Text = "---";
  8811. //
  8812. // label76
  8813. //
  8814. this.label76.AutoSize = true;
  8815. this.label76.BackColor = System.Drawing.Color.Transparent;
  8816. this.label76.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8817. this.label76.Location = new System.Drawing.Point(3, 92);
  8818. this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8819. this.label76.Name = "label76";
  8820. this.label76.Size = new System.Drawing.Size(82, 15);
  8821. this.label76.TabIndex = 15;
  8822. this.label76.Text = "工作模式:";
  8823. //
  8824. // ddjWorkTime6
  8825. //
  8826. this.ddjWorkTime6.AutoSize = true;
  8827. this.ddjWorkTime6.BackColor = System.Drawing.Color.Transparent;
  8828. this.ddjWorkTime6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8829. this.ddjWorkTime6.ForeColor = System.Drawing.Color.Red;
  8830. this.ddjWorkTime6.Location = new System.Drawing.Point(117, 212);
  8831. this.ddjWorkTime6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8832. this.ddjWorkTime6.Name = "ddjWorkTime6";
  8833. this.ddjWorkTime6.Size = new System.Drawing.Size(31, 15);
  8834. this.ddjWorkTime6.TabIndex = 14;
  8835. this.ddjWorkTime6.Text = "---";
  8836. //
  8837. // label82
  8838. //
  8839. this.label82.AutoSize = true;
  8840. this.label82.BackColor = System.Drawing.Color.Transparent;
  8841. this.label82.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8842. this.label82.Location = new System.Drawing.Point(3, 212);
  8843. this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8844. this.label82.Name = "label82";
  8845. this.label82.Size = new System.Drawing.Size(82, 15);
  8846. this.label82.TabIndex = 13;
  8847. this.label82.Text = "运行时长:";
  8848. //
  8849. // ddjStatus6
  8850. //
  8851. this.ddjStatus6.AutoSize = true;
  8852. this.ddjStatus6.BackColor = System.Drawing.Color.Transparent;
  8853. this.ddjStatus6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8854. this.ddjStatus6.ForeColor = System.Drawing.Color.Blue;
  8855. this.ddjStatus6.Location = new System.Drawing.Point(116, 115);
  8856. this.ddjStatus6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8857. this.ddjStatus6.Name = "ddjStatus6";
  8858. this.ddjStatus6.Size = new System.Drawing.Size(31, 15);
  8859. this.ddjStatus6.TabIndex = 10;
  8860. this.ddjStatus6.Text = "---";
  8861. //
  8862. // ddjPosCurr6
  8863. //
  8864. this.ddjPosCurr6.AutoSize = true;
  8865. this.ddjPosCurr6.BackColor = System.Drawing.Color.Transparent;
  8866. this.ddjPosCurr6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8867. this.ddjPosCurr6.ForeColor = System.Drawing.Color.Blue;
  8868. this.ddjPosCurr6.Location = new System.Drawing.Point(117, 188);
  8869. this.ddjPosCurr6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8870. this.ddjPosCurr6.Name = "ddjPosCurr6";
  8871. this.ddjPosCurr6.Size = new System.Drawing.Size(31, 15);
  8872. this.ddjPosCurr6.TabIndex = 9;
  8873. this.ddjPosCurr6.Text = "---";
  8874. //
  8875. // label95
  8876. //
  8877. this.label95.AutoSize = true;
  8878. this.label95.BackColor = System.Drawing.Color.Transparent;
  8879. this.label95.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8880. this.label95.ForeColor = System.Drawing.SystemColors.ControlText;
  8881. this.label95.Location = new System.Drawing.Point(3, 238);
  8882. this.label95.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8883. this.label95.Name = "label95";
  8884. this.label95.Size = new System.Drawing.Size(83, 15);
  8885. this.label95.TabIndex = 8;
  8886. this.label95.Text = "里 程 数:";
  8887. //
  8888. // label97
  8889. //
  8890. this.label97.AutoSize = true;
  8891. this.label97.BackColor = System.Drawing.Color.Transparent;
  8892. this.label97.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8893. this.label97.Location = new System.Drawing.Point(3, 115);
  8894. this.label97.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8895. this.label97.Name = "label97";
  8896. this.label97.Size = new System.Drawing.Size(82, 15);
  8897. this.label97.TabIndex = 6;
  8898. this.label97.Text = "工作状态:";
  8899. //
  8900. // label98
  8901. //
  8902. this.label98.AutoSize = true;
  8903. this.label98.BackColor = System.Drawing.Color.Transparent;
  8904. this.label98.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8905. this.label98.Location = new System.Drawing.Point(3, 188);
  8906. this.label98.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8907. this.label98.Name = "label98";
  8908. this.label98.Size = new System.Drawing.Size(82, 15);
  8909. this.label98.TabIndex = 1;
  8910. this.label98.Text = "当前巷道:";
  8911. //
  8912. // lblsrm06
  8913. //
  8914. this.lblsrm06.AutoSize = true;
  8915. this.lblsrm06.BackColor = System.Drawing.Color.Transparent;
  8916. 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)));
  8917. this.lblsrm06.Location = new System.Drawing.Point(40, 32);
  8918. this.lblsrm06.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8919. this.lblsrm06.Name = "lblsrm06";
  8920. this.lblsrm06.Size = new System.Drawing.Size(115, 20);
  8921. this.lblsrm06.TabIndex = 0;
  8922. this.lblsrm06.Text = "6号 堆垛机";
  8923. //
  8924. // G6
  8925. //
  8926. this.G6.BackColor = System.Drawing.Color.Transparent;
  8927. this.G6.Image = ((System.Drawing.Image)(resources.GetObject("G6.Image")));
  8928. this.G6.Location = new System.Drawing.Point(88, -2);
  8929. this.G6.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8930. this.G6.Name = "G6";
  8931. this.G6.Size = new System.Drawing.Size(35, 32);
  8932. this.G6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8933. this.G6.TabIndex = 65;
  8934. this.G6.TabStop = false;
  8935. this.G6.Tag = "1";
  8936. //
  8937. // pictureBox2
  8938. //
  8939. this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
  8940. this.pictureBox2.Location = new System.Drawing.Point(87, -2);
  8941. this.pictureBox2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8942. this.pictureBox2.Name = "pictureBox2";
  8943. this.pictureBox2.Size = new System.Drawing.Size(35, 32);
  8944. this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  8945. this.pictureBox2.TabIndex = 5;
  8946. this.pictureBox2.TabStop = false;
  8947. //
  8948. // pnlRGV1089
  8949. //
  8950. this.pnlRGV1089.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pnlRGV1089.BackgroundImage")));
  8951. this.pnlRGV1089.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  8952. this.pnlRGV1089.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  8953. this.pnlRGV1089.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  8954. this.pnlRGV1089.Controls.Add(this.label7);
  8955. this.pnlRGV1089.Controls.Add(this.label8);
  8956. this.pnlRGV1089.Controls.Add(this.label9);
  8957. this.pnlRGV1089.Controls.Add(this.rgvOptType3);
  8958. this.pnlRGV1089.Controls.Add(this.label31);
  8959. this.pnlRGV1089.Controls.Add(this.lblRGVWarning1089);
  8960. this.pnlRGV1089.Controls.Add(this.rgvPosCurr2);
  8961. this.pnlRGV1089.Controls.Add(this.rgvMode3);
  8962. this.pnlRGV1089.Controls.Add(this.rgvOrdId3);
  8963. this.pnlRGV1089.Controls.Add(this.label50);
  8964. this.pnlRGV1089.Controls.Add(this.rgvPosTo3);
  8965. this.pnlRGV1089.Controls.Add(this.label53);
  8966. this.pnlRGV1089.Controls.Add(this.rgvPosFrom3);
  8967. this.pnlRGV1089.Controls.Add(this.rgvStatus3);
  8968. this.pnlRGV1089.Controls.Add(this.label63);
  8969. this.pnlRGV1089.Controls.Add(this.lblrgv3);
  8970. this.pnlRGV1089.Controls.Add(this.GV3);
  8971. this.pnlRGV1089.Controls.Add(this.pictureBox4);
  8972. this.pnlRGV1089.Location = new System.Drawing.Point(2222, 3);
  8973. this.pnlRGV1089.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  8974. this.pnlRGV1089.Name = "pnlRGV1089";
  8975. this.pnlRGV1089.Size = new System.Drawing.Size(217, 312);
  8976. this.pnlRGV1089.TabIndex = 128;
  8977. //
  8978. // label7
  8979. //
  8980. this.label7.AutoSize = true;
  8981. this.label7.BackColor = System.Drawing.Color.Transparent;
  8982. this.label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8983. this.label7.Location = new System.Drawing.Point(5, 244);
  8984. this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8985. this.label7.Name = "label7";
  8986. this.label7.Size = new System.Drawing.Size(82, 15);
  8987. this.label7.TabIndex = 106;
  8988. this.label7.Text = "光电状态:";
  8989. //
  8990. // label8
  8991. //
  8992. this.label8.AutoSize = true;
  8993. this.label8.BackColor = System.Drawing.Color.Transparent;
  8994. this.label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  8995. this.label8.Location = new System.Drawing.Point(4, 191);
  8996. this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  8997. this.label8.Name = "label8";
  8998. this.label8.Size = new System.Drawing.Size(82, 15);
  8999. this.label8.TabIndex = 105;
  9000. this.label8.Text = "起始地址:";
  9001. //
  9002. // label9
  9003. //
  9004. this.label9.AutoSize = true;
  9005. this.label9.BackColor = System.Drawing.Color.Transparent;
  9006. this.label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9007. this.label9.ForeColor = System.Drawing.SystemColors.ControlText;
  9008. this.label9.Location = new System.Drawing.Point(4, 216);
  9009. this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9010. this.label9.Name = "label9";
  9011. this.label9.Size = new System.Drawing.Size(82, 15);
  9012. this.label9.TabIndex = 104;
  9013. this.label9.Text = "目标地址:";
  9014. //
  9015. // rgvOptType3
  9016. //
  9017. this.rgvOptType3.AutoSize = true;
  9018. this.rgvOptType3.BackColor = System.Drawing.Color.Transparent;
  9019. this.rgvOptType3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9020. this.rgvOptType3.ForeColor = System.Drawing.Color.Blue;
  9021. this.rgvOptType3.Location = new System.Drawing.Point(96, 166);
  9022. this.rgvOptType3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9023. this.rgvOptType3.Name = "rgvOptType3";
  9024. this.rgvOptType3.Size = new System.Drawing.Size(31, 15);
  9025. this.rgvOptType3.TabIndex = 101;
  9026. this.rgvOptType3.Text = "---";
  9027. //
  9028. // label31
  9029. //
  9030. this.label31.AutoSize = true;
  9031. this.label31.BackColor = System.Drawing.Color.Transparent;
  9032. this.label31.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9033. this.label31.Location = new System.Drawing.Point(3, 166);
  9034. this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9035. this.label31.Name = "label31";
  9036. this.label31.Size = new System.Drawing.Size(82, 15);
  9037. this.label31.TabIndex = 100;
  9038. this.label31.Text = "作业类型:";
  9039. //
  9040. // lblRGVWarning1089
  9041. //
  9042. this.lblRGVWarning1089.BackColor = System.Drawing.Color.Transparent;
  9043. this.lblRGVWarning1089.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9044. this.lblRGVWarning1089.ForeColor = System.Drawing.Color.Red;
  9045. this.lblRGVWarning1089.Location = new System.Drawing.Point(7, 58);
  9046. this.lblRGVWarning1089.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9047. this.lblRGVWarning1089.Name = "lblRGVWarning1089";
  9048. this.lblRGVWarning1089.Size = new System.Drawing.Size(201, 30);
  9049. this.lblRGVWarning1089.TabIndex = 92;
  9050. //
  9051. // rgvPosCurr2
  9052. //
  9053. this.rgvPosCurr2.AutoSize = true;
  9054. this.rgvPosCurr2.BackColor = System.Drawing.Color.Transparent;
  9055. this.rgvPosCurr2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9056. this.rgvPosCurr2.ForeColor = System.Drawing.Color.Blue;
  9057. this.rgvPosCurr2.Location = new System.Drawing.Point(95, 244);
  9058. this.rgvPosCurr2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9059. this.rgvPosCurr2.Name = "rgvPosCurr2";
  9060. this.rgvPosCurr2.Size = new System.Drawing.Size(31, 15);
  9061. this.rgvPosCurr2.TabIndex = 72;
  9062. this.rgvPosCurr2.Text = "---";
  9063. //
  9064. // rgvMode3
  9065. //
  9066. this.rgvMode3.AutoSize = true;
  9067. this.rgvMode3.BackColor = System.Drawing.Color.Transparent;
  9068. this.rgvMode3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9069. this.rgvMode3.ForeColor = System.Drawing.Color.Blue;
  9070. this.rgvMode3.Location = new System.Drawing.Point(96, 92);
  9071. this.rgvMode3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9072. this.rgvMode3.Name = "rgvMode3";
  9073. this.rgvMode3.Size = new System.Drawing.Size(31, 15);
  9074. this.rgvMode3.TabIndex = 12;
  9075. this.rgvMode3.Text = "---";
  9076. //
  9077. // rgvOrdId3
  9078. //
  9079. this.rgvOrdId3.AutoSize = true;
  9080. this.rgvOrdId3.BackColor = System.Drawing.Color.Transparent;
  9081. this.rgvOrdId3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9082. this.rgvOrdId3.ForeColor = System.Drawing.Color.Blue;
  9083. this.rgvOrdId3.Location = new System.Drawing.Point(96, 142);
  9084. this.rgvOrdId3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9085. this.rgvOrdId3.Name = "rgvOrdId3";
  9086. this.rgvOrdId3.Size = new System.Drawing.Size(31, 15);
  9087. this.rgvOrdId3.TabIndex = 64;
  9088. this.rgvOrdId3.Text = "---";
  9089. //
  9090. // label50
  9091. //
  9092. this.label50.AutoSize = true;
  9093. this.label50.BackColor = System.Drawing.Color.Transparent;
  9094. this.label50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9095. this.label50.Location = new System.Drawing.Point(3, 142);
  9096. this.label50.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9097. this.label50.Name = "label50";
  9098. this.label50.Size = new System.Drawing.Size(82, 15);
  9099. this.label50.TabIndex = 63;
  9100. this.label50.Text = "工作指令:";
  9101. //
  9102. // rgvPosTo3
  9103. //
  9104. this.rgvPosTo3.AutoSize = true;
  9105. this.rgvPosTo3.BackColor = System.Drawing.Color.Transparent;
  9106. this.rgvPosTo3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9107. this.rgvPosTo3.ForeColor = System.Drawing.Color.Blue;
  9108. this.rgvPosTo3.Location = new System.Drawing.Point(93, 216);
  9109. this.rgvPosTo3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9110. this.rgvPosTo3.Name = "rgvPosTo3";
  9111. this.rgvPosTo3.Size = new System.Drawing.Size(31, 15);
  9112. this.rgvPosTo3.TabIndex = 16;
  9113. this.rgvPosTo3.Text = "---";
  9114. //
  9115. // label53
  9116. //
  9117. this.label53.AutoSize = true;
  9118. this.label53.BackColor = System.Drawing.Color.Transparent;
  9119. this.label53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9120. this.label53.Location = new System.Drawing.Point(3, 92);
  9121. this.label53.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9122. this.label53.Name = "label53";
  9123. this.label53.Size = new System.Drawing.Size(82, 15);
  9124. this.label53.TabIndex = 15;
  9125. this.label53.Text = "工作模式:";
  9126. //
  9127. // rgvPosFrom3
  9128. //
  9129. this.rgvPosFrom3.AutoSize = true;
  9130. this.rgvPosFrom3.BackColor = System.Drawing.Color.Transparent;
  9131. this.rgvPosFrom3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9132. this.rgvPosFrom3.ForeColor = System.Drawing.Color.Blue;
  9133. this.rgvPosFrom3.Location = new System.Drawing.Point(93, 191);
  9134. this.rgvPosFrom3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9135. this.rgvPosFrom3.Name = "rgvPosFrom3";
  9136. this.rgvPosFrom3.Size = new System.Drawing.Size(31, 15);
  9137. this.rgvPosFrom3.TabIndex = 14;
  9138. this.rgvPosFrom3.Text = "---";
  9139. //
  9140. // rgvStatus3
  9141. //
  9142. this.rgvStatus3.AutoSize = true;
  9143. this.rgvStatus3.BackColor = System.Drawing.Color.Transparent;
  9144. this.rgvStatus3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9145. this.rgvStatus3.ForeColor = System.Drawing.Color.Blue;
  9146. this.rgvStatus3.Location = new System.Drawing.Point(96, 115);
  9147. this.rgvStatus3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9148. this.rgvStatus3.Name = "rgvStatus3";
  9149. this.rgvStatus3.Size = new System.Drawing.Size(31, 15);
  9150. this.rgvStatus3.TabIndex = 10;
  9151. this.rgvStatus3.Text = "---";
  9152. //
  9153. // label63
  9154. //
  9155. this.label63.AutoSize = true;
  9156. this.label63.BackColor = System.Drawing.Color.Transparent;
  9157. this.label63.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9158. this.label63.Location = new System.Drawing.Point(3, 115);
  9159. this.label63.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9160. this.label63.Name = "label63";
  9161. this.label63.Size = new System.Drawing.Size(82, 15);
  9162. this.label63.TabIndex = 6;
  9163. this.label63.Text = "工作状态:";
  9164. //
  9165. // lblrgv3
  9166. //
  9167. this.lblrgv3.AutoSize = true;
  9168. this.lblrgv3.BackColor = System.Drawing.Color.Transparent;
  9169. 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)));
  9170. this.lblrgv3.Location = new System.Drawing.Point(59, 32);
  9171. this.lblrgv3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9172. this.lblrgv3.Name = "lblrgv3";
  9173. this.lblrgv3.Size = new System.Drawing.Size(53, 20);
  9174. this.lblrgv3.TabIndex = 0;
  9175. this.lblrgv3.Text = "RGV3";
  9176. //
  9177. // GV3
  9178. //
  9179. this.GV3.BackColor = System.Drawing.Color.Transparent;
  9180. this.GV3.Image = ((System.Drawing.Image)(resources.GetObject("GV3.Image")));
  9181. this.GV3.Location = new System.Drawing.Point(88, -2);
  9182. this.GV3.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9183. this.GV3.Name = "GV3";
  9184. this.GV3.Size = new System.Drawing.Size(35, 32);
  9185. this.GV3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9186. this.GV3.TabIndex = 65;
  9187. this.GV3.TabStop = false;
  9188. this.GV3.Tag = "1";
  9189. //
  9190. // pictureBox4
  9191. //
  9192. this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
  9193. this.pictureBox4.Location = new System.Drawing.Point(87, -2);
  9194. this.pictureBox4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9195. this.pictureBox4.Name = "pictureBox4";
  9196. this.pictureBox4.Size = new System.Drawing.Size(35, 32);
  9197. this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9198. this.pictureBox4.TabIndex = 5;
  9199. this.pictureBox4.TabStop = false;
  9200. //
  9201. // myPanel2
  9202. //
  9203. this.myPanel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel2.BackgroundImage")));
  9204. this.myPanel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9205. this.myPanel2.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9206. this.myPanel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9207. this.myPanel2.Controls.Add(this.myPanel4);
  9208. this.myPanel2.Controls.Add(this.rgvOptType2);
  9209. this.myPanel2.Controls.Add(this.label23);
  9210. this.myPanel2.Controls.Add(this.lblRGVWarning1444);
  9211. this.myPanel2.Controls.Add(this.rgvPosCurr1);
  9212. this.myPanel2.Controls.Add(this.label45);
  9213. this.myPanel2.Controls.Add(this.rgvMode2);
  9214. this.myPanel2.Controls.Add(this.rgvOrdId2);
  9215. this.myPanel2.Controls.Add(this.label58);
  9216. this.myPanel2.Controls.Add(this.rgvPosTo2);
  9217. this.myPanel2.Controls.Add(this.label69);
  9218. this.myPanel2.Controls.Add(this.rgvPosFrom2);
  9219. this.myPanel2.Controls.Add(this.label73);
  9220. this.myPanel2.Controls.Add(this.rgvStatus2);
  9221. this.myPanel2.Controls.Add(this.label80);
  9222. this.myPanel2.Controls.Add(this.label92);
  9223. this.myPanel2.Controls.Add(this.lblrgv2);
  9224. this.myPanel2.Controls.Add(this.GV2);
  9225. this.myPanel2.Controls.Add(this.pictureBox5);
  9226. this.myPanel2.Location = new System.Drawing.Point(1999, 4);
  9227. this.myPanel2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9228. this.myPanel2.Name = "myPanel2";
  9229. this.myPanel2.Size = new System.Drawing.Size(217, 312);
  9230. this.myPanel2.TabIndex = 114;
  9231. //
  9232. // myPanel4
  9233. //
  9234. this.myPanel4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("myPanel4.BackgroundImage")));
  9235. this.myPanel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  9236. this.myPanel4.BkPicture = MyConrols.BKBmps.bk_V_Blue2White;
  9237. this.myPanel4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  9238. this.myPanel4.Controls.Add(this.label124);
  9239. this.myPanel4.Controls.Add(this.label125);
  9240. this.myPanel4.Controls.Add(this.label126);
  9241. this.myPanel4.Controls.Add(this.label127);
  9242. this.myPanel4.Controls.Add(this.label128);
  9243. this.myPanel4.Controls.Add(this.label129);
  9244. this.myPanel4.Controls.Add(this.label130);
  9245. this.myPanel4.Controls.Add(this.label131);
  9246. this.myPanel4.Controls.Add(this.label132);
  9247. this.myPanel4.Controls.Add(this.label133);
  9248. this.myPanel4.Controls.Add(this.label134);
  9249. this.myPanel4.Controls.Add(this.label135);
  9250. this.myPanel4.Controls.Add(this.label136);
  9251. this.myPanel4.Controls.Add(this.label138);
  9252. this.myPanel4.Controls.Add(this.label140);
  9253. this.myPanel4.Controls.Add(this.label141);
  9254. this.myPanel4.Controls.Add(this.label142);
  9255. this.myPanel4.Controls.Add(this.label143);
  9256. this.myPanel4.Controls.Add(this.label144);
  9257. this.myPanel4.Controls.Add(this.label145);
  9258. this.myPanel4.Controls.Add(this.label146);
  9259. this.myPanel4.Controls.Add(this.label147);
  9260. this.myPanel4.Controls.Add(this.pictureBox11);
  9261. this.myPanel4.Controls.Add(this.pictureBox12);
  9262. this.myPanel4.Location = new System.Drawing.Point(252, -2);
  9263. this.myPanel4.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9264. this.myPanel4.Name = "myPanel4";
  9265. this.myPanel4.Size = new System.Drawing.Size(244, 324);
  9266. this.myPanel4.TabIndex = 106;
  9267. //
  9268. // label124
  9269. //
  9270. this.label124.BackColor = System.Drawing.Color.DarkGray;
  9271. this.label124.Location = new System.Drawing.Point(163, 4);
  9272. this.label124.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9273. this.label124.Name = "label124";
  9274. this.label124.Size = new System.Drawing.Size(37, 30);
  9275. this.label124.TabIndex = 103;
  9276. this.label124.Text = "出";
  9277. this.label124.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9278. //
  9279. // label125
  9280. //
  9281. this.label125.BackColor = System.Drawing.Color.DarkGray;
  9282. this.label125.Location = new System.Drawing.Point(8, 4);
  9283. this.label125.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9284. this.label125.Name = "label125";
  9285. this.label125.Size = new System.Drawing.Size(37, 30);
  9286. this.label125.TabIndex = 102;
  9287. this.label125.Tag = "4";
  9288. this.label125.Text = "入";
  9289. this.label125.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  9290. //
  9291. // label126
  9292. //
  9293. this.label126.AutoSize = true;
  9294. this.label126.BackColor = System.Drawing.Color.Transparent;
  9295. this.label126.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9296. this.label126.ForeColor = System.Drawing.Color.Blue;
  9297. this.label126.Location = new System.Drawing.Point(116, 166);
  9298. this.label126.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9299. this.label126.Name = "label126";
  9300. this.label126.Size = new System.Drawing.Size(31, 15);
  9301. this.label126.TabIndex = 101;
  9302. this.label126.Text = "---";
  9303. //
  9304. // label127
  9305. //
  9306. this.label127.AutoSize = true;
  9307. this.label127.BackColor = System.Drawing.Color.Transparent;
  9308. this.label127.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9309. this.label127.Location = new System.Drawing.Point(3, 166);
  9310. this.label127.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9311. this.label127.Name = "label127";
  9312. this.label127.Size = new System.Drawing.Size(82, 15);
  9313. this.label127.TabIndex = 100;
  9314. this.label127.Text = "作业类型:";
  9315. //
  9316. // label128
  9317. //
  9318. this.label128.BackColor = System.Drawing.Color.Transparent;
  9319. this.label128.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9320. this.label128.ForeColor = System.Drawing.Color.Red;
  9321. this.label128.Location = new System.Drawing.Point(7, 58);
  9322. this.label128.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9323. this.label128.Name = "label128";
  9324. this.label128.Size = new System.Drawing.Size(201, 30);
  9325. this.label128.TabIndex = 92;
  9326. //
  9327. // label129
  9328. //
  9329. this.label129.AutoSize = true;
  9330. this.label129.BackColor = System.Drawing.Color.Transparent;
  9331. this.label129.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9332. this.label129.ForeColor = System.Drawing.Color.Blue;
  9333. this.label129.Location = new System.Drawing.Point(119, 295);
  9334. this.label129.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9335. this.label129.Name = "label129";
  9336. this.label129.Size = new System.Drawing.Size(31, 15);
  9337. this.label129.TabIndex = 73;
  9338. this.label129.Text = "---";
  9339. //
  9340. // label130
  9341. //
  9342. this.label130.AutoSize = true;
  9343. this.label130.BackColor = System.Drawing.Color.Transparent;
  9344. this.label130.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9345. this.label130.ForeColor = System.Drawing.Color.Blue;
  9346. this.label130.Location = new System.Drawing.Point(119, 268);
  9347. this.label130.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9348. this.label130.Name = "label130";
  9349. this.label130.Size = new System.Drawing.Size(31, 15);
  9350. this.label130.TabIndex = 72;
  9351. this.label130.Text = "---";
  9352. //
  9353. // label131
  9354. //
  9355. this.label131.AutoSize = true;
  9356. this.label131.BackColor = System.Drawing.Color.Transparent;
  9357. this.label131.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9358. this.label131.Location = new System.Drawing.Point(4, 268);
  9359. this.label131.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9360. this.label131.Name = "label131";
  9361. this.label131.Size = new System.Drawing.Size(82, 15);
  9362. this.label131.TabIndex = 71;
  9363. this.label131.Text = "起始位置:";
  9364. //
  9365. // label132
  9366. //
  9367. this.label132.AutoSize = true;
  9368. this.label132.BackColor = System.Drawing.Color.Transparent;
  9369. this.label132.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9370. this.label132.Location = new System.Drawing.Point(4, 295);
  9371. this.label132.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9372. this.label132.Name = "label132";
  9373. this.label132.Size = new System.Drawing.Size(82, 15);
  9374. this.label132.TabIndex = 70;
  9375. this.label132.Text = "目标位置:";
  9376. //
  9377. // label133
  9378. //
  9379. this.label133.AutoSize = true;
  9380. this.label133.BackColor = System.Drawing.Color.Transparent;
  9381. this.label133.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9382. this.label133.ForeColor = System.Drawing.Color.Blue;
  9383. this.label133.Location = new System.Drawing.Point(116, 92);
  9384. this.label133.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9385. this.label133.Name = "label133";
  9386. this.label133.Size = new System.Drawing.Size(31, 15);
  9387. this.label133.TabIndex = 12;
  9388. this.label133.Text = "---";
  9389. //
  9390. // label134
  9391. //
  9392. this.label134.AutoSize = true;
  9393. this.label134.BackColor = System.Drawing.Color.Transparent;
  9394. this.label134.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9395. this.label134.ForeColor = System.Drawing.Color.Blue;
  9396. this.label134.Location = new System.Drawing.Point(116, 142);
  9397. this.label134.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9398. this.label134.Name = "label134";
  9399. this.label134.Size = new System.Drawing.Size(31, 15);
  9400. this.label134.TabIndex = 64;
  9401. this.label134.Text = "---";
  9402. //
  9403. // label135
  9404. //
  9405. this.label135.AutoSize = true;
  9406. this.label135.BackColor = System.Drawing.Color.Transparent;
  9407. this.label135.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9408. this.label135.Location = new System.Drawing.Point(3, 142);
  9409. this.label135.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9410. this.label135.Name = "label135";
  9411. this.label135.Size = new System.Drawing.Size(82, 15);
  9412. this.label135.TabIndex = 63;
  9413. this.label135.Text = "工作指令:";
  9414. //
  9415. // label136
  9416. //
  9417. this.label136.AutoSize = true;
  9418. this.label136.BackColor = System.Drawing.Color.Transparent;
  9419. this.label136.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9420. this.label136.ForeColor = System.Drawing.SystemColors.ControlText;
  9421. this.label136.Location = new System.Drawing.Point(117, 240);
  9422. this.label136.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9423. this.label136.Name = "label136";
  9424. this.label136.Size = new System.Drawing.Size(31, 15);
  9425. this.label136.TabIndex = 16;
  9426. this.label136.Text = "---";
  9427. //
  9428. // label138
  9429. //
  9430. this.label138.AutoSize = true;
  9431. this.label138.BackColor = System.Drawing.Color.Transparent;
  9432. this.label138.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9433. this.label138.Location = new System.Drawing.Point(3, 92);
  9434. this.label138.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9435. this.label138.Name = "label138";
  9436. this.label138.Size = new System.Drawing.Size(82, 15);
  9437. this.label138.TabIndex = 15;
  9438. this.label138.Text = "工作模式:";
  9439. //
  9440. // label140
  9441. //
  9442. this.label140.AutoSize = true;
  9443. this.label140.BackColor = System.Drawing.Color.Transparent;
  9444. this.label140.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9445. this.label140.ForeColor = System.Drawing.Color.Red;
  9446. this.label140.Location = new System.Drawing.Point(117, 215);
  9447. this.label140.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9448. this.label140.Name = "label140";
  9449. this.label140.Size = new System.Drawing.Size(31, 15);
  9450. this.label140.TabIndex = 14;
  9451. this.label140.Text = "---";
  9452. //
  9453. // label141
  9454. //
  9455. this.label141.AutoSize = true;
  9456. this.label141.BackColor = System.Drawing.Color.Transparent;
  9457. this.label141.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9458. this.label141.Location = new System.Drawing.Point(3, 215);
  9459. this.label141.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9460. this.label141.Name = "label141";
  9461. this.label141.Size = new System.Drawing.Size(82, 15);
  9462. this.label141.TabIndex = 13;
  9463. this.label141.Text = "运行时长:";
  9464. //
  9465. // label142
  9466. //
  9467. this.label142.AutoSize = true;
  9468. this.label142.BackColor = System.Drawing.Color.Transparent;
  9469. this.label142.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9470. this.label142.ForeColor = System.Drawing.Color.Blue;
  9471. this.label142.Location = new System.Drawing.Point(116, 115);
  9472. this.label142.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9473. this.label142.Name = "label142";
  9474. this.label142.Size = new System.Drawing.Size(31, 15);
  9475. this.label142.TabIndex = 10;
  9476. this.label142.Text = "---";
  9477. //
  9478. // label143
  9479. //
  9480. this.label143.AutoSize = true;
  9481. this.label143.BackColor = System.Drawing.Color.Transparent;
  9482. this.label143.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9483. this.label143.ForeColor = System.Drawing.Color.Blue;
  9484. this.label143.Location = new System.Drawing.Point(117, 190);
  9485. this.label143.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9486. this.label143.Name = "label143";
  9487. this.label143.Size = new System.Drawing.Size(31, 15);
  9488. this.label143.TabIndex = 9;
  9489. this.label143.Text = "---";
  9490. //
  9491. // label144
  9492. //
  9493. this.label144.AutoSize = true;
  9494. this.label144.BackColor = System.Drawing.Color.Transparent;
  9495. this.label144.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9496. this.label144.ForeColor = System.Drawing.SystemColors.ControlText;
  9497. this.label144.Location = new System.Drawing.Point(3, 240);
  9498. this.label144.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9499. this.label144.Name = "label144";
  9500. this.label144.Size = new System.Drawing.Size(83, 15);
  9501. this.label144.TabIndex = 8;
  9502. this.label144.Text = "里 程 数:";
  9503. //
  9504. // label145
  9505. //
  9506. this.label145.AutoSize = true;
  9507. this.label145.BackColor = System.Drawing.Color.Transparent;
  9508. this.label145.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9509. this.label145.Location = new System.Drawing.Point(3, 115);
  9510. this.label145.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9511. this.label145.Name = "label145";
  9512. this.label145.Size = new System.Drawing.Size(82, 15);
  9513. this.label145.TabIndex = 6;
  9514. this.label145.Text = "工作状态:";
  9515. //
  9516. // label146
  9517. //
  9518. this.label146.AutoSize = true;
  9519. this.label146.BackColor = System.Drawing.Color.Transparent;
  9520. this.label146.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9521. this.label146.Location = new System.Drawing.Point(3, 190);
  9522. this.label146.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9523. this.label146.Name = "label146";
  9524. this.label146.Size = new System.Drawing.Size(82, 15);
  9525. this.label146.TabIndex = 1;
  9526. this.label146.Text = "当前位置:";
  9527. //
  9528. // label147
  9529. //
  9530. this.label147.AutoSize = true;
  9531. this.label147.BackColor = System.Drawing.Color.Transparent;
  9532. 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)));
  9533. this.label147.Location = new System.Drawing.Point(59, 32);
  9534. this.label147.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9535. this.label147.Name = "label147";
  9536. this.label147.Size = new System.Drawing.Size(86, 20);
  9537. this.label147.TabIndex = 0;
  9538. this.label147.Text = "RGV1091";
  9539. //
  9540. // pictureBox11
  9541. //
  9542. this.pictureBox11.BackColor = System.Drawing.Color.Transparent;
  9543. this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
  9544. this.pictureBox11.Location = new System.Drawing.Point(88, -2);
  9545. this.pictureBox11.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9546. this.pictureBox11.Name = "pictureBox11";
  9547. this.pictureBox11.Size = new System.Drawing.Size(35, 32);
  9548. this.pictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9549. this.pictureBox11.TabIndex = 65;
  9550. this.pictureBox11.TabStop = false;
  9551. this.pictureBox11.Tag = "1";
  9552. //
  9553. // pictureBox12
  9554. //
  9555. this.pictureBox12.BackColor = System.Drawing.Color.Transparent;
  9556. this.pictureBox12.Location = new System.Drawing.Point(87, -2);
  9557. this.pictureBox12.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9558. this.pictureBox12.Name = "pictureBox12";
  9559. this.pictureBox12.Size = new System.Drawing.Size(35, 32);
  9560. this.pictureBox12.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9561. this.pictureBox12.TabIndex = 5;
  9562. this.pictureBox12.TabStop = false;
  9563. //
  9564. // rgvOptType2
  9565. //
  9566. this.rgvOptType2.AutoSize = true;
  9567. this.rgvOptType2.BackColor = System.Drawing.Color.Transparent;
  9568. this.rgvOptType2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9569. this.rgvOptType2.ForeColor = System.Drawing.Color.Blue;
  9570. this.rgvOptType2.Location = new System.Drawing.Point(96, 166);
  9571. this.rgvOptType2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9572. this.rgvOptType2.Name = "rgvOptType2";
  9573. this.rgvOptType2.Size = new System.Drawing.Size(31, 15);
  9574. this.rgvOptType2.TabIndex = 101;
  9575. this.rgvOptType2.Text = "---";
  9576. //
  9577. // label23
  9578. //
  9579. this.label23.AutoSize = true;
  9580. this.label23.BackColor = System.Drawing.Color.Transparent;
  9581. this.label23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9582. this.label23.Location = new System.Drawing.Point(3, 166);
  9583. this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9584. this.label23.Name = "label23";
  9585. this.label23.Size = new System.Drawing.Size(82, 15);
  9586. this.label23.TabIndex = 100;
  9587. this.label23.Text = "作业类型:";
  9588. //
  9589. // lblRGVWarning1444
  9590. //
  9591. this.lblRGVWarning1444.BackColor = System.Drawing.Color.Transparent;
  9592. this.lblRGVWarning1444.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9593. this.lblRGVWarning1444.ForeColor = System.Drawing.Color.Red;
  9594. this.lblRGVWarning1444.Location = new System.Drawing.Point(7, 58);
  9595. this.lblRGVWarning1444.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9596. this.lblRGVWarning1444.Name = "lblRGVWarning1444";
  9597. this.lblRGVWarning1444.Size = new System.Drawing.Size(201, 30);
  9598. this.lblRGVWarning1444.TabIndex = 92;
  9599. //
  9600. // rgvPosCurr1
  9601. //
  9602. this.rgvPosCurr1.AutoSize = true;
  9603. this.rgvPosCurr1.BackColor = System.Drawing.Color.Transparent;
  9604. this.rgvPosCurr1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9605. this.rgvPosCurr1.ForeColor = System.Drawing.Color.Blue;
  9606. this.rgvPosCurr1.Location = new System.Drawing.Point(99, 242);
  9607. this.rgvPosCurr1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9608. this.rgvPosCurr1.Name = "rgvPosCurr1";
  9609. this.rgvPosCurr1.Size = new System.Drawing.Size(31, 15);
  9610. this.rgvPosCurr1.TabIndex = 72;
  9611. this.rgvPosCurr1.Text = "---";
  9612. //
  9613. // label45
  9614. //
  9615. this.label45.AutoSize = true;
  9616. this.label45.BackColor = System.Drawing.Color.Transparent;
  9617. this.label45.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9618. this.label45.Location = new System.Drawing.Point(4, 242);
  9619. this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9620. this.label45.Name = "label45";
  9621. this.label45.Size = new System.Drawing.Size(82, 15);
  9622. this.label45.TabIndex = 71;
  9623. this.label45.Text = "光电状态:";
  9624. //
  9625. // rgvMode2
  9626. //
  9627. this.rgvMode2.AutoSize = true;
  9628. this.rgvMode2.BackColor = System.Drawing.Color.Transparent;
  9629. this.rgvMode2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9630. this.rgvMode2.ForeColor = System.Drawing.Color.Blue;
  9631. this.rgvMode2.Location = new System.Drawing.Point(96, 92);
  9632. this.rgvMode2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9633. this.rgvMode2.Name = "rgvMode2";
  9634. this.rgvMode2.Size = new System.Drawing.Size(31, 15);
  9635. this.rgvMode2.TabIndex = 12;
  9636. this.rgvMode2.Text = "---";
  9637. //
  9638. // rgvOrdId2
  9639. //
  9640. this.rgvOrdId2.AutoSize = true;
  9641. this.rgvOrdId2.BackColor = System.Drawing.Color.Transparent;
  9642. this.rgvOrdId2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9643. this.rgvOrdId2.ForeColor = System.Drawing.Color.Blue;
  9644. this.rgvOrdId2.Location = new System.Drawing.Point(96, 142);
  9645. this.rgvOrdId2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9646. this.rgvOrdId2.Name = "rgvOrdId2";
  9647. this.rgvOrdId2.Size = new System.Drawing.Size(31, 15);
  9648. this.rgvOrdId2.TabIndex = 64;
  9649. this.rgvOrdId2.Text = "---";
  9650. //
  9651. // label58
  9652. //
  9653. this.label58.AutoSize = true;
  9654. this.label58.BackColor = System.Drawing.Color.Transparent;
  9655. this.label58.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9656. this.label58.Location = new System.Drawing.Point(3, 142);
  9657. this.label58.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9658. this.label58.Name = "label58";
  9659. this.label58.Size = new System.Drawing.Size(82, 15);
  9660. this.label58.TabIndex = 63;
  9661. this.label58.Text = "工作指令:";
  9662. //
  9663. // rgvPosTo2
  9664. //
  9665. this.rgvPosTo2.AutoSize = true;
  9666. this.rgvPosTo2.BackColor = System.Drawing.Color.Transparent;
  9667. this.rgvPosTo2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9668. this.rgvPosTo2.ForeColor = System.Drawing.Color.Blue;
  9669. this.rgvPosTo2.Location = new System.Drawing.Point(97, 215);
  9670. this.rgvPosTo2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9671. this.rgvPosTo2.Name = "rgvPosTo2";
  9672. this.rgvPosTo2.Size = new System.Drawing.Size(31, 15);
  9673. this.rgvPosTo2.TabIndex = 16;
  9674. this.rgvPosTo2.Text = "---";
  9675. //
  9676. // label69
  9677. //
  9678. this.label69.AutoSize = true;
  9679. this.label69.BackColor = System.Drawing.Color.Transparent;
  9680. this.label69.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9681. this.label69.Location = new System.Drawing.Point(3, 92);
  9682. this.label69.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9683. this.label69.Name = "label69";
  9684. this.label69.Size = new System.Drawing.Size(82, 15);
  9685. this.label69.TabIndex = 15;
  9686. this.label69.Text = "工作模式:";
  9687. //
  9688. // rgvPosFrom2
  9689. //
  9690. this.rgvPosFrom2.AutoSize = true;
  9691. this.rgvPosFrom2.BackColor = System.Drawing.Color.Transparent;
  9692. this.rgvPosFrom2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9693. this.rgvPosFrom2.ForeColor = System.Drawing.Color.Blue;
  9694. this.rgvPosFrom2.Location = new System.Drawing.Point(97, 190);
  9695. this.rgvPosFrom2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9696. this.rgvPosFrom2.Name = "rgvPosFrom2";
  9697. this.rgvPosFrom2.Size = new System.Drawing.Size(31, 15);
  9698. this.rgvPosFrom2.TabIndex = 14;
  9699. this.rgvPosFrom2.Text = "---";
  9700. //
  9701. // label73
  9702. //
  9703. this.label73.AutoSize = true;
  9704. this.label73.BackColor = System.Drawing.Color.Transparent;
  9705. this.label73.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9706. this.label73.Location = new System.Drawing.Point(3, 190);
  9707. this.label73.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9708. this.label73.Name = "label73";
  9709. this.label73.Size = new System.Drawing.Size(82, 15);
  9710. this.label73.TabIndex = 13;
  9711. this.label73.Text = "起始地址:";
  9712. //
  9713. // rgvStatus2
  9714. //
  9715. this.rgvStatus2.AutoSize = true;
  9716. this.rgvStatus2.BackColor = System.Drawing.Color.Transparent;
  9717. this.rgvStatus2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9718. this.rgvStatus2.ForeColor = System.Drawing.Color.Blue;
  9719. this.rgvStatus2.Location = new System.Drawing.Point(96, 115);
  9720. this.rgvStatus2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9721. this.rgvStatus2.Name = "rgvStatus2";
  9722. this.rgvStatus2.Size = new System.Drawing.Size(31, 15);
  9723. this.rgvStatus2.TabIndex = 10;
  9724. this.rgvStatus2.Text = "---";
  9725. //
  9726. // label80
  9727. //
  9728. this.label80.AutoSize = true;
  9729. this.label80.BackColor = System.Drawing.Color.Transparent;
  9730. this.label80.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9731. this.label80.ForeColor = System.Drawing.SystemColors.ControlText;
  9732. this.label80.Location = new System.Drawing.Point(3, 215);
  9733. this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9734. this.label80.Name = "label80";
  9735. this.label80.Size = new System.Drawing.Size(82, 15);
  9736. this.label80.TabIndex = 8;
  9737. this.label80.Text = "目标地址:";
  9738. //
  9739. // label92
  9740. //
  9741. this.label92.AutoSize = true;
  9742. this.label92.BackColor = System.Drawing.Color.Transparent;
  9743. this.label92.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  9744. this.label92.Location = new System.Drawing.Point(3, 115);
  9745. this.label92.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9746. this.label92.Name = "label92";
  9747. this.label92.Size = new System.Drawing.Size(82, 15);
  9748. this.label92.TabIndex = 6;
  9749. this.label92.Text = "工作状态:";
  9750. //
  9751. // lblrgv2
  9752. //
  9753. this.lblrgv2.AutoSize = true;
  9754. this.lblrgv2.BackColor = System.Drawing.Color.Transparent;
  9755. 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)));
  9756. this.lblrgv2.Location = new System.Drawing.Point(59, 32);
  9757. this.lblrgv2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  9758. this.lblrgv2.Name = "lblrgv2";
  9759. this.lblrgv2.Size = new System.Drawing.Size(53, 20);
  9760. this.lblrgv2.TabIndex = 0;
  9761. this.lblrgv2.Text = "RGV2";
  9762. //
  9763. // GV2
  9764. //
  9765. this.GV2.BackColor = System.Drawing.Color.Transparent;
  9766. this.GV2.Image = ((System.Drawing.Image)(resources.GetObject("GV2.Image")));
  9767. this.GV2.Location = new System.Drawing.Point(88, -2);
  9768. this.GV2.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9769. this.GV2.Name = "GV2";
  9770. this.GV2.Size = new System.Drawing.Size(35, 32);
  9771. this.GV2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9772. this.GV2.TabIndex = 65;
  9773. this.GV2.TabStop = false;
  9774. this.GV2.Tag = "1";
  9775. //
  9776. // pictureBox5
  9777. //
  9778. this.pictureBox5.BackColor = System.Drawing.Color.Transparent;
  9779. this.pictureBox5.Location = new System.Drawing.Point(87, -2);
  9780. this.pictureBox5.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9781. this.pictureBox5.Name = "pictureBox5";
  9782. this.pictureBox5.Size = new System.Drawing.Size(35, 32);
  9783. this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  9784. this.pictureBox5.TabIndex = 5;
  9785. this.pictureBox5.TabStop = false;
  9786. //
  9787. // tableLayoutPanel1
  9788. //
  9789. this.tableLayoutPanel1.AutoScroll = true;
  9790. this.tableLayoutPanel1.ColumnCount = 1;
  9791. this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
  9792. this.tableLayoutPanel1.Controls.Add(this.tabControl1, 0, 0);
  9793. this.tableLayoutPanel1.Controls.Add(this.pnlBottom, 0, 1);
  9794. this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
  9795. this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
  9796. this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
  9797. this.tableLayoutPanel1.Name = "tableLayoutPanel1";
  9798. this.tableLayoutPanel1.RowCount = 2;
  9799. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 70F));
  9800. this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 30F));
  9801. this.tableLayoutPanel1.Size = new System.Drawing.Size(1710, 879);
  9802. this.tableLayoutPanel1.TabIndex = 127;
  9803. //
  9804. // Frm_YongGuanMontior
  9805. //
  9806. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  9807. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  9808. this.ClientSize = new System.Drawing.Size(1710, 879);
  9809. this.Controls.Add(this.tableLayoutPanel1);
  9810. this.Margin = new System.Windows.Forms.Padding(4, 2, 4, 2);
  9811. this.Name = "Frm_YongGuanMontior";
  9812. this.Text = "Frm_YongGuanMontior";
  9813. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_YongGuanMontior_FormClosing);
  9814. this.Load += new System.EventHandler(this.Frm_YongGuanMontior_Load);
  9815. this.tabControl1.ResumeLayout(false);
  9816. this.tabPage1.ResumeLayout(false);
  9817. this.myTableLayoutPanel1.ResumeLayout(false);
  9818. this.myTableLayoutPanel1.PerformLayout();
  9819. this.pnlDDJ1.ResumeLayout(false);
  9820. this.pnlDDJ1.PerformLayout();
  9821. ((System.ComponentModel.ISupportInitialize)(this.G1)).EndInit();
  9822. ((System.ComponentModel.ISupportInitialize)(this.R1)).EndInit();
  9823. this.pnlDDJ2.ResumeLayout(false);
  9824. this.pnlDDJ2.PerformLayout();
  9825. ((System.ComponentModel.ISupportInitialize)(this.G2)).EndInit();
  9826. ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
  9827. this.pnlDDJ3.ResumeLayout(false);
  9828. this.pnlDDJ3.PerformLayout();
  9829. ((System.ComponentModel.ISupportInitialize)(this.G3)).EndInit();
  9830. ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit();
  9831. this.pnlDDJ4.ResumeLayout(false);
  9832. this.pnlDDJ4.PerformLayout();
  9833. ((System.ComponentModel.ISupportInitialize)(this.G4)).EndInit();
  9834. ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
  9835. this.myPanel1.ResumeLayout(false);
  9836. this.myPanel1.PerformLayout();
  9837. ((System.ComponentModel.ISupportInitialize)(this.G5)).EndInit();
  9838. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
  9839. this.RGV4.ResumeLayout(false);
  9840. this.RGV4.PerformLayout();
  9841. ((System.ComponentModel.ISupportInitialize)(this.GV4)).EndInit();
  9842. ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit();
  9843. this.myPanel5.ResumeLayout(false);
  9844. this.myPanel5.PerformLayout();
  9845. ((System.ComponentModel.ISupportInitialize)(this.GV1)).EndInit();
  9846. ((System.ComponentModel.ISupportInitialize)(this.pictureBox17)).EndInit();
  9847. this.pnlBottom.ResumeLayout(false);
  9848. this.myPanel17.ResumeLayout(false);
  9849. this.myPanel17.PerformLayout();
  9850. ((System.ComponentModel.ISupportInitialize)(this.GV13)).EndInit();
  9851. ((System.ComponentModel.ISupportInitialize)(this.pictureBox36)).EndInit();
  9852. this.myPanel11.ResumeLayout(false);
  9853. this.myPanel11.PerformLayout();
  9854. ((System.ComponentModel.ISupportInitialize)(this.GV12)).EndInit();
  9855. ((System.ComponentModel.ISupportInitialize)(this.pictureBox34)).EndInit();
  9856. this.myPanel16.ResumeLayout(false);
  9857. this.myPanel16.PerformLayout();
  9858. ((System.ComponentModel.ISupportInitialize)(this.GV14)).EndInit();
  9859. ((System.ComponentModel.ISupportInitialize)(this.pictureBox33)).EndInit();
  9860. this.myPanel15.ResumeLayout(false);
  9861. this.myPanel15.PerformLayout();
  9862. ((System.ComponentModel.ISupportInitialize)(this.GV11)).EndInit();
  9863. ((System.ComponentModel.ISupportInitialize)(this.pictureBox31)).EndInit();
  9864. this.myPanel14.ResumeLayout(false);
  9865. this.myPanel14.PerformLayout();
  9866. ((System.ComponentModel.ISupportInitialize)(this.GV10)).EndInit();
  9867. ((System.ComponentModel.ISupportInitialize)(this.pictureBox28)).EndInit();
  9868. this.myPanel13.ResumeLayout(false);
  9869. this.myPanel13.PerformLayout();
  9870. ((System.ComponentModel.ISupportInitialize)(this.GV9)).EndInit();
  9871. ((System.ComponentModel.ISupportInitialize)(this.pictureBox26)).EndInit();
  9872. this.myPanel12.ResumeLayout(false);
  9873. this.myPanel12.PerformLayout();
  9874. ((System.ComponentModel.ISupportInitialize)(this.GV7)).EndInit();
  9875. ((System.ComponentModel.ISupportInitialize)(this.pictureBox24)).EndInit();
  9876. this.myPanel10.ResumeLayout(false);
  9877. this.myPanel10.PerformLayout();
  9878. ((System.ComponentModel.ISupportInitialize)(this.GV8)).EndInit();
  9879. ((System.ComponentModel.ISupportInitialize)(this.pictureBox22)).EndInit();
  9880. this.myPanel9.ResumeLayout(false);
  9881. this.myPanel9.PerformLayout();
  9882. ((System.ComponentModel.ISupportInitialize)(this.GV6)).EndInit();
  9883. ((System.ComponentModel.ISupportInitialize)(this.pictureBox20)).EndInit();
  9884. this.myPanel8.ResumeLayout(false);
  9885. this.myPanel8.PerformLayout();
  9886. ((System.ComponentModel.ISupportInitialize)(this.GV5)).EndInit();
  9887. ((System.ComponentModel.ISupportInitialize)(this.pictureBox18)).EndInit();
  9888. this.myPanel7.ResumeLayout(false);
  9889. this.myPanel7.PerformLayout();
  9890. ((System.ComponentModel.ISupportInitialize)(this.G8)).EndInit();
  9891. ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
  9892. this.myPanel6.ResumeLayout(false);
  9893. this.myPanel6.PerformLayout();
  9894. ((System.ComponentModel.ISupportInitialize)(this.G7)).EndInit();
  9895. ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit();
  9896. this.myPanel3.ResumeLayout(false);
  9897. this.myPanel3.PerformLayout();
  9898. ((System.ComponentModel.ISupportInitialize)(this.G6)).EndInit();
  9899. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
  9900. this.pnlRGV1089.ResumeLayout(false);
  9901. this.pnlRGV1089.PerformLayout();
  9902. ((System.ComponentModel.ISupportInitialize)(this.GV3)).EndInit();
  9903. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
  9904. this.myPanel2.ResumeLayout(false);
  9905. this.myPanel2.PerformLayout();
  9906. this.myPanel4.ResumeLayout(false);
  9907. this.myPanel4.PerformLayout();
  9908. ((System.ComponentModel.ISupportInitialize)(this.pictureBox11)).EndInit();
  9909. ((System.ComponentModel.ISupportInitialize)(this.pictureBox12)).EndInit();
  9910. ((System.ComponentModel.ISupportInitialize)(this.GV2)).EndInit();
  9911. ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
  9912. this.tableLayoutPanel1.ResumeLayout(false);
  9913. this.ResumeLayout(false);
  9914. }
  9915. #endregion
  9916. private System.Windows.Forms.TabControl tabControl1;
  9917. private System.Windows.Forms.TabPage tabPage1;
  9918. private MyConrols.MyPanel pnlDDJ1;
  9919. private System.Windows.Forms.Label lblInStatus1;
  9920. private System.Windows.Forms.Label lblOutStatus1;
  9921. private System.Windows.Forms.Label lblDDJWarning1;
  9922. public System.Windows.Forms.Label ddjPosTo1;
  9923. public System.Windows.Forms.Label ddjPosFrom1;
  9924. private System.Windows.Forms.Label label84;
  9925. private System.Windows.Forms.Label label85;
  9926. public System.Windows.Forms.Label ddjMode1;
  9927. public System.Windows.Forms.Label ddjOrdId1;
  9928. private System.Windows.Forms.Label label137;
  9929. public System.Windows.Forms.Label ddjOptType1;
  9930. private System.Windows.Forms.Label label139;
  9931. public System.Windows.Forms.Label ddjTotal_KM1;
  9932. private System.Windows.Forms.Label label13;
  9933. public System.Windows.Forms.Label ddjWorkTime1;
  9934. private System.Windows.Forms.Label label10;
  9935. public System.Windows.Forms.Label ddjStatus1;
  9936. public System.Windows.Forms.Label ddjPosCurr1;
  9937. private System.Windows.Forms.Label label5;
  9938. private System.Windows.Forms.Label label3;
  9939. private System.Windows.Forms.Label label2;
  9940. private System.Windows.Forms.Label lblsrm01;
  9941. public System.Windows.Forms.PictureBox G1;
  9942. public System.Windows.Forms.PictureBox R1;
  9943. private MyConrols.MyPanel pnlDDJ2;
  9944. private System.Windows.Forms.Label lblInStatus2;
  9945. private System.Windows.Forms.Label lblOutStatus2;
  9946. private System.Windows.Forms.Label lblDDJWarning2;
  9947. public System.Windows.Forms.Label ddjPosTo2;
  9948. public System.Windows.Forms.Label ddjPosFrom2;
  9949. private System.Windows.Forms.Label label15;
  9950. private System.Windows.Forms.Label label16;
  9951. public System.Windows.Forms.Label ddjMode2;
  9952. public System.Windows.Forms.Label ddjOrdId2;
  9953. private System.Windows.Forms.Label label22;
  9954. public System.Windows.Forms.Label ddjOptType2;
  9955. private System.Windows.Forms.Label label26;
  9956. public System.Windows.Forms.Label ddjTotal_KM2;
  9957. private System.Windows.Forms.Label label29;
  9958. public System.Windows.Forms.Label ddjWorkTime2;
  9959. private System.Windows.Forms.Label label32;
  9960. public System.Windows.Forms.Label ddjStatus2;
  9961. public System.Windows.Forms.Label ddjPosCurr2;
  9962. private System.Windows.Forms.Label label83;
  9963. private System.Windows.Forms.Label label86;
  9964. private System.Windows.Forms.Label label87;
  9965. private System.Windows.Forms.Label lblsrm02;
  9966. public System.Windows.Forms.PictureBox G2;
  9967. public System.Windows.Forms.PictureBox pictureBox6;
  9968. private MyConrols.MyPanel pnlDDJ3;
  9969. private System.Windows.Forms.Label lblInStatus3;
  9970. private System.Windows.Forms.Label lblOutStatus3;
  9971. private System.Windows.Forms.Label lblDDJWarning3;
  9972. public System.Windows.Forms.Label ddjPosTo3;
  9973. public System.Windows.Forms.Label ddjPosFrom3;
  9974. private System.Windows.Forms.Label label43;
  9975. private System.Windows.Forms.Label label51;
  9976. public System.Windows.Forms.Label ddjMode3;
  9977. public System.Windows.Forms.Label ddjOrdId3;
  9978. private System.Windows.Forms.Label label55;
  9979. public System.Windows.Forms.Label ddjOptType3;
  9980. private System.Windows.Forms.Label label57;
  9981. public System.Windows.Forms.Label ddjTotal_KM3;
  9982. private System.Windows.Forms.Label label59;
  9983. public System.Windows.Forms.Label ddjWorkTime3;
  9984. private System.Windows.Forms.Label label61;
  9985. public System.Windows.Forms.Label ddjStatus3;
  9986. public System.Windows.Forms.Label ddjPosCurr3;
  9987. private System.Windows.Forms.Label label64;
  9988. private System.Windows.Forms.Label label65;
  9989. private System.Windows.Forms.Label label66;
  9990. private System.Windows.Forms.Label lblsrm03;
  9991. public System.Windows.Forms.PictureBox G3;
  9992. public System.Windows.Forms.PictureBox pictureBox10;
  9993. private MyConrols.MyPanel pnlDDJ4;
  9994. private System.Windows.Forms.Label lblInStatus4;
  9995. private System.Windows.Forms.Label lblOutStatus4;
  9996. private System.Windows.Forms.Label lblDDJWarning4;
  9997. public System.Windows.Forms.Label ddjPosTo4;
  9998. public System.Windows.Forms.Label ddjPosFrom4;
  9999. private System.Windows.Forms.Label label71;
  10000. private System.Windows.Forms.Label label72;
  10001. public System.Windows.Forms.Label ddjMode4;
  10002. public System.Windows.Forms.Label ddjOrdId4;
  10003. private System.Windows.Forms.Label label75;
  10004. public System.Windows.Forms.Label ddjOptType4;
  10005. private System.Windows.Forms.Label label77;
  10006. public System.Windows.Forms.Label ddjTotal_KM4;
  10007. private System.Windows.Forms.Label label79;
  10008. public System.Windows.Forms.Label ddjWorkTime4;
  10009. private System.Windows.Forms.Label label81;
  10010. public System.Windows.Forms.Label ddjStatus4;
  10011. public System.Windows.Forms.Label ddjPosCurr4;
  10012. private System.Windows.Forms.Label label89;
  10013. private System.Windows.Forms.Label label90;
  10014. private System.Windows.Forms.Label label91;
  10015. private System.Windows.Forms.Label lblsrm04;
  10016. public System.Windows.Forms.PictureBox G4;
  10017. public System.Windows.Forms.PictureBox pictureBox14;
  10018. private MyConrols.MyPanel myPanel1;
  10019. private System.Windows.Forms.Label lblInStatus5;
  10020. private System.Windows.Forms.Label lblOutStatus5;
  10021. private System.Windows.Forms.Label label11;
  10022. public System.Windows.Forms.Label ddjPosTo5;
  10023. public System.Windows.Forms.Label ddjPosFrom5;
  10024. private System.Windows.Forms.Label label17;
  10025. private System.Windows.Forms.Label label18;
  10026. public System.Windows.Forms.Label ddjMode5;
  10027. public System.Windows.Forms.Label ddjOrdId5;
  10028. private System.Windows.Forms.Label label21;
  10029. public System.Windows.Forms.Label ddjOptType5;
  10030. private System.Windows.Forms.Label label24;
  10031. public System.Windows.Forms.Label ddjTotal_KM5;
  10032. private System.Windows.Forms.Label label27;
  10033. public System.Windows.Forms.Label ddjWorkTime5;
  10034. private System.Windows.Forms.Label label30;
  10035. public System.Windows.Forms.Label ddjStatus5;
  10036. public System.Windows.Forms.Label ddjPosCurr5;
  10037. private System.Windows.Forms.Label label36;
  10038. private System.Windows.Forms.Label label37;
  10039. private System.Windows.Forms.Label label38;
  10040. private System.Windows.Forms.Label lblsrm05;
  10041. public System.Windows.Forms.PictureBox G5;
  10042. public System.Windows.Forms.PictureBox pictureBox3;
  10043. private MyConrols.MyPanel RGV4;
  10044. private System.Windows.Forms.Label label14;
  10045. private System.Windows.Forms.Label label19;
  10046. private System.Windows.Forms.Label label20;
  10047. public System.Windows.Forms.Label rgvOptType4;
  10048. private System.Windows.Forms.Label label74;
  10049. private System.Windows.Forms.Label lblRGVWarning1091;
  10050. public System.Windows.Forms.Label rgvPosCurr3;
  10051. public System.Windows.Forms.Label rgvMode4;
  10052. public System.Windows.Forms.Label rgvOrdId4;
  10053. private System.Windows.Forms.Label label94;
  10054. public System.Windows.Forms.Label rgvPosTo4;
  10055. private System.Windows.Forms.Label label96;
  10056. public System.Windows.Forms.Label rgvPosFrom4;
  10057. public System.Windows.Forms.Label rgvStatus4;
  10058. private System.Windows.Forms.Label label102;
  10059. private System.Windows.Forms.Label lblrgv4;
  10060. public System.Windows.Forms.PictureBox GV4;
  10061. public System.Windows.Forms.PictureBox pictureBox7;
  10062. private MyConrols.MyPanel myPanel5;
  10063. private System.Windows.Forms.Label label25;
  10064. private System.Windows.Forms.Label label35;
  10065. private System.Windows.Forms.Label label39;
  10066. public System.Windows.Forms.Label rgvOptType1;
  10067. private System.Windows.Forms.Label label173;
  10068. private System.Windows.Forms.Label lblRGVWarning1007;
  10069. public System.Windows.Forms.Label rgvPosCurr4;
  10070. public System.Windows.Forms.Label rgvMode1;
  10071. public System.Windows.Forms.Label rgvOrdId1;
  10072. private System.Windows.Forms.Label label181;
  10073. public System.Windows.Forms.Label rgvPosTo1;
  10074. private System.Windows.Forms.Label label183;
  10075. public System.Windows.Forms.Label rgvPosFrom1;
  10076. public System.Windows.Forms.Label rgvStatus1;
  10077. private System.Windows.Forms.Label label189;
  10078. private System.Windows.Forms.Label lblrgv1;
  10079. public System.Windows.Forms.PictureBox GV1;
  10080. public System.Windows.Forms.PictureBox pictureBox17;
  10081. private MyConrols.MyPanel pnlBottom;
  10082. private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
  10083. private MyConrols.MyPanel myPanel17;
  10084. private System.Windows.Forms.Label label314;
  10085. private System.Windows.Forms.Label label315;
  10086. private System.Windows.Forms.Label label316;
  10087. public System.Windows.Forms.Label rgvOptType13;
  10088. private System.Windows.Forms.Label label318;
  10089. private System.Windows.Forms.Label label319;
  10090. public System.Windows.Forms.Label label320;
  10091. public System.Windows.Forms.Label rgvMode13;
  10092. public System.Windows.Forms.Label label322;
  10093. private System.Windows.Forms.Label label323;
  10094. public System.Windows.Forms.Label rgvPosTo13;
  10095. private System.Windows.Forms.Label label325;
  10096. public System.Windows.Forms.Label rgvPosFrom13;
  10097. public System.Windows.Forms.Label rgvStatus13;
  10098. private System.Windows.Forms.Label label328;
  10099. private System.Windows.Forms.Label lblrgv13;
  10100. public System.Windows.Forms.PictureBox GV13;
  10101. public System.Windows.Forms.PictureBox pictureBox36;
  10102. private MyConrols.MyPanel myPanel11;
  10103. private System.Windows.Forms.Label label40;
  10104. private System.Windows.Forms.Label label41;
  10105. private System.Windows.Forms.Label label42;
  10106. public System.Windows.Forms.Label rgvOptType12;
  10107. private System.Windows.Forms.Label label302;
  10108. private System.Windows.Forms.Label label303;
  10109. public System.Windows.Forms.Label label304;
  10110. public System.Windows.Forms.Label rgvMode12;
  10111. public System.Windows.Forms.Label rgvOrdId12;
  10112. private System.Windows.Forms.Label label307;
  10113. public System.Windows.Forms.Label rgvPosTo12;
  10114. private System.Windows.Forms.Label label309;
  10115. public System.Windows.Forms.Label rgvPosFrom12;
  10116. public System.Windows.Forms.Label rgvStatus12;
  10117. private System.Windows.Forms.Label label312;
  10118. private System.Windows.Forms.Label lblrgv12;
  10119. public System.Windows.Forms.PictureBox GV12;
  10120. public System.Windows.Forms.PictureBox pictureBox34;
  10121. private MyConrols.MyPanel myPanel16;
  10122. private System.Windows.Forms.Label label285;
  10123. private System.Windows.Forms.Label label286;
  10124. private System.Windows.Forms.Label label287;
  10125. public System.Windows.Forms.Label rgvOptType14;
  10126. private System.Windows.Forms.Label label289;
  10127. private System.Windows.Forms.Label label290;
  10128. public System.Windows.Forms.Label label291;
  10129. public System.Windows.Forms.Label rgvMode14;
  10130. public System.Windows.Forms.Label rgvOrdId14;
  10131. private System.Windows.Forms.Label label294;
  10132. public System.Windows.Forms.Label rgvPosTo14;
  10133. private System.Windows.Forms.Label label296;
  10134. public System.Windows.Forms.Label rgvPosFrom14;
  10135. public System.Windows.Forms.Label rgvStatus14;
  10136. private System.Windows.Forms.Label label299;
  10137. private System.Windows.Forms.Label lblrgv14;
  10138. public System.Windows.Forms.PictureBox GV14;
  10139. public System.Windows.Forms.PictureBox pictureBox33;
  10140. private MyConrols.MyPanel myPanel15;
  10141. private System.Windows.Forms.Label label269;
  10142. private System.Windows.Forms.Label label270;
  10143. private System.Windows.Forms.Label label271;
  10144. public System.Windows.Forms.Label rgvOptType11;
  10145. private System.Windows.Forms.Label label273;
  10146. private System.Windows.Forms.Label label274;
  10147. public System.Windows.Forms.Label label275;
  10148. public System.Windows.Forms.Label rgvMode11;
  10149. public System.Windows.Forms.Label rgvOrdId11;
  10150. private System.Windows.Forms.Label label278;
  10151. public System.Windows.Forms.Label rgvPosTo11;
  10152. private System.Windows.Forms.Label label280;
  10153. public System.Windows.Forms.Label rgvPosFrom11;
  10154. public System.Windows.Forms.Label rgvStatus11;
  10155. private System.Windows.Forms.Label label283;
  10156. private System.Windows.Forms.Label lblrgv11;
  10157. public System.Windows.Forms.PictureBox GV11;
  10158. public System.Windows.Forms.PictureBox pictureBox31;
  10159. private MyConrols.MyPanel myPanel14;
  10160. private System.Windows.Forms.Label label253;
  10161. private System.Windows.Forms.Label label254;
  10162. private System.Windows.Forms.Label label255;
  10163. public System.Windows.Forms.Label rgvOptType10;
  10164. private System.Windows.Forms.Label label257;
  10165. private System.Windows.Forms.Label label258;
  10166. public System.Windows.Forms.Label label259;
  10167. public System.Windows.Forms.Label rgvMode10;
  10168. public System.Windows.Forms.Label rgvOrdId10;
  10169. private System.Windows.Forms.Label label262;
  10170. public System.Windows.Forms.Label rgvPosTo10;
  10171. private System.Windows.Forms.Label label264;
  10172. public System.Windows.Forms.Label rgvPosFrom10;
  10173. public System.Windows.Forms.Label rgvStatus10;
  10174. private System.Windows.Forms.Label label267;
  10175. private System.Windows.Forms.Label lblrgv10;
  10176. public System.Windows.Forms.PictureBox GV10;
  10177. public System.Windows.Forms.PictureBox pictureBox28;
  10178. private MyConrols.MyPanel myPanel13;
  10179. private System.Windows.Forms.Label label237;
  10180. private System.Windows.Forms.Label label238;
  10181. private System.Windows.Forms.Label label239;
  10182. public System.Windows.Forms.Label rgvOptType9;
  10183. private System.Windows.Forms.Label label241;
  10184. private System.Windows.Forms.Label label242;
  10185. public System.Windows.Forms.Label label243;
  10186. public System.Windows.Forms.Label rgvMode9;
  10187. public System.Windows.Forms.Label rgvOrdId9;
  10188. private System.Windows.Forms.Label label246;
  10189. public System.Windows.Forms.Label rgvPosTo9;
  10190. private System.Windows.Forms.Label label248;
  10191. public System.Windows.Forms.Label rgvPosFrom9;
  10192. public System.Windows.Forms.Label rgvStatus9;
  10193. private System.Windows.Forms.Label label251;
  10194. private System.Windows.Forms.Label lblrgv9;
  10195. public System.Windows.Forms.PictureBox GV9;
  10196. public System.Windows.Forms.PictureBox pictureBox26;
  10197. private MyConrols.MyPanel myPanel12;
  10198. private System.Windows.Forms.Label label221;
  10199. private System.Windows.Forms.Label label222;
  10200. private System.Windows.Forms.Label label223;
  10201. public System.Windows.Forms.Label rgvOptType7;
  10202. private System.Windows.Forms.Label label225;
  10203. private System.Windows.Forms.Label label226;
  10204. public System.Windows.Forms.Label label227;
  10205. public System.Windows.Forms.Label rgvMode7;
  10206. public System.Windows.Forms.Label rgvOrdId7;
  10207. private System.Windows.Forms.Label label230;
  10208. public System.Windows.Forms.Label rgvPosTo7;
  10209. private System.Windows.Forms.Label label232;
  10210. public System.Windows.Forms.Label rgvPosFrom7;
  10211. public System.Windows.Forms.Label rgvStatus7;
  10212. private System.Windows.Forms.Label label235;
  10213. private System.Windows.Forms.Label lblrgv7;
  10214. public System.Windows.Forms.PictureBox GV7;
  10215. public System.Windows.Forms.PictureBox pictureBox24;
  10216. private MyConrols.MyPanel myPanel10;
  10217. private System.Windows.Forms.Label label205;
  10218. private System.Windows.Forms.Label label206;
  10219. private System.Windows.Forms.Label label207;
  10220. public System.Windows.Forms.Label rgvOptType8;
  10221. private System.Windows.Forms.Label label209;
  10222. private System.Windows.Forms.Label label210;
  10223. public System.Windows.Forms.Label label211;
  10224. public System.Windows.Forms.Label rgvMode8;
  10225. public System.Windows.Forms.Label rgvOrdId8;
  10226. private System.Windows.Forms.Label label214;
  10227. public System.Windows.Forms.Label rgvPosTo8;
  10228. private System.Windows.Forms.Label label216;
  10229. public System.Windows.Forms.Label rgvPosFrom8;
  10230. public System.Windows.Forms.Label rgvStatus8;
  10231. private System.Windows.Forms.Label label219;
  10232. private System.Windows.Forms.Label lblrgv8;
  10233. public System.Windows.Forms.PictureBox GV8;
  10234. public System.Windows.Forms.PictureBox pictureBox22;
  10235. private MyConrols.MyPanel myPanel9;
  10236. private System.Windows.Forms.Label label188;
  10237. private System.Windows.Forms.Label label190;
  10238. private System.Windows.Forms.Label label191;
  10239. public System.Windows.Forms.Label rgvOptType6;
  10240. private System.Windows.Forms.Label label193;
  10241. private System.Windows.Forms.Label label194;
  10242. public System.Windows.Forms.Label label195;
  10243. public System.Windows.Forms.Label rgvMode6;
  10244. public System.Windows.Forms.Label rgvOrdId6;
  10245. private System.Windows.Forms.Label label198;
  10246. public System.Windows.Forms.Label rgvPosTo6;
  10247. private System.Windows.Forms.Label label200;
  10248. public System.Windows.Forms.Label rgvPosFrom6;
  10249. public System.Windows.Forms.Label rgvStatus6;
  10250. private System.Windows.Forms.Label label203;
  10251. private System.Windows.Forms.Label lblrgv6;
  10252. public System.Windows.Forms.PictureBox GV6;
  10253. public System.Windows.Forms.PictureBox pictureBox20;
  10254. private MyConrols.MyPanel myPanel8;
  10255. private System.Windows.Forms.Label label169;
  10256. private System.Windows.Forms.Label label170;
  10257. private System.Windows.Forms.Label label171;
  10258. public System.Windows.Forms.Label rgvOptType5;
  10259. private System.Windows.Forms.Label label174;
  10260. private System.Windows.Forms.Label label175;
  10261. public System.Windows.Forms.Label label176;
  10262. public System.Windows.Forms.Label rgvMode5;
  10263. public System.Windows.Forms.Label rgvOrdId5;
  10264. private System.Windows.Forms.Label label179;
  10265. public System.Windows.Forms.Label rgvPosTo5;
  10266. private System.Windows.Forms.Label label182;
  10267. public System.Windows.Forms.Label rgvPosFrom5;
  10268. public System.Windows.Forms.Label rgvStatus5;
  10269. private System.Windows.Forms.Label label186;
  10270. private System.Windows.Forms.Label lblrgv5;
  10271. public System.Windows.Forms.PictureBox GV5;
  10272. public System.Windows.Forms.PictureBox pictureBox18;
  10273. private MyConrols.MyPanel myPanel7;
  10274. private System.Windows.Forms.Label lblInStatus8;
  10275. private System.Windows.Forms.Label lblOutStatus8;
  10276. private System.Windows.Forms.Label label149;
  10277. public System.Windows.Forms.Label ddjPosTo8;
  10278. public System.Windows.Forms.Label ddjPosFrom8;
  10279. private System.Windows.Forms.Label label152;
  10280. private System.Windows.Forms.Label label153;
  10281. public System.Windows.Forms.Label ddjMode8;
  10282. public System.Windows.Forms.Label ddjOrdId8;
  10283. private System.Windows.Forms.Label label156;
  10284. public System.Windows.Forms.Label ddjOptType8;
  10285. private System.Windows.Forms.Label label158;
  10286. public System.Windows.Forms.Label ddjTotal_KM8;
  10287. private System.Windows.Forms.Label label160;
  10288. public System.Windows.Forms.Label ddjWorkTime8;
  10289. private System.Windows.Forms.Label label162;
  10290. public System.Windows.Forms.Label ddjStatus8;
  10291. public System.Windows.Forms.Label ddjPosCurr8;
  10292. private System.Windows.Forms.Label label165;
  10293. private System.Windows.Forms.Label label166;
  10294. private System.Windows.Forms.Label label167;
  10295. private System.Windows.Forms.Label lblsrm08;
  10296. public System.Windows.Forms.PictureBox G8;
  10297. public System.Windows.Forms.PictureBox pictureBox15;
  10298. private MyConrols.MyPanel myPanel6;
  10299. private System.Windows.Forms.Label lblInStatus7;
  10300. private System.Windows.Forms.Label lblOutStatus7;
  10301. private System.Windows.Forms.Label label103;
  10302. public System.Windows.Forms.Label ddjPosTo7;
  10303. public System.Windows.Forms.Label ddjPosFrom7;
  10304. private System.Windows.Forms.Label label106;
  10305. private System.Windows.Forms.Label label107;
  10306. public System.Windows.Forms.Label ddjMode7;
  10307. public System.Windows.Forms.Label ddjOrdId7;
  10308. private System.Windows.Forms.Label label110;
  10309. public System.Windows.Forms.Label ddjOptType7;
  10310. private System.Windows.Forms.Label label112;
  10311. public System.Windows.Forms.Label ddjTotal_KM7;
  10312. private System.Windows.Forms.Label label114;
  10313. public System.Windows.Forms.Label ddjWorkTime7;
  10314. private System.Windows.Forms.Label label116;
  10315. public System.Windows.Forms.Label ddjStatus7;
  10316. public System.Windows.Forms.Label ddjPosCurr7;
  10317. private System.Windows.Forms.Label label119;
  10318. private System.Windows.Forms.Label label120;
  10319. private System.Windows.Forms.Label label121;
  10320. private System.Windows.Forms.Label lblsrm07;
  10321. public System.Windows.Forms.PictureBox G7;
  10322. public System.Windows.Forms.PictureBox pictureBox9;
  10323. private MyConrols.MyPanel myPanel3;
  10324. private System.Windows.Forms.Label lblInStatus6;
  10325. private System.Windows.Forms.Label lblOutStatus6;
  10326. private System.Windows.Forms.Label label47;
  10327. public System.Windows.Forms.Label ddjPosTo6;
  10328. public System.Windows.Forms.Label ddjPosFrom6;
  10329. private System.Windows.Forms.Label label52;
  10330. private System.Windows.Forms.Label label54;
  10331. public System.Windows.Forms.Label ddjMode6;
  10332. public System.Windows.Forms.Label ddjOrdId6;
  10333. private System.Windows.Forms.Label label62;
  10334. public System.Windows.Forms.Label ddjOptType6;
  10335. private System.Windows.Forms.Label label68;
  10336. public System.Windows.Forms.Label ddjTotal_KM6;
  10337. private System.Windows.Forms.Label label76;
  10338. public System.Windows.Forms.Label ddjWorkTime6;
  10339. private System.Windows.Forms.Label label82;
  10340. public System.Windows.Forms.Label ddjStatus6;
  10341. public System.Windows.Forms.Label ddjPosCurr6;
  10342. private System.Windows.Forms.Label label95;
  10343. private System.Windows.Forms.Label label97;
  10344. private System.Windows.Forms.Label label98;
  10345. private System.Windows.Forms.Label lblsrm06;
  10346. public System.Windows.Forms.PictureBox G6;
  10347. public System.Windows.Forms.PictureBox pictureBox2;
  10348. private MyConrols.MyPanel pnlRGV1089;
  10349. private System.Windows.Forms.Label label7;
  10350. private System.Windows.Forms.Label label8;
  10351. private System.Windows.Forms.Label label9;
  10352. public System.Windows.Forms.Label rgvOptType3;
  10353. private System.Windows.Forms.Label label31;
  10354. private System.Windows.Forms.Label lblRGVWarning1089;
  10355. public System.Windows.Forms.Label rgvPosCurr2;
  10356. public System.Windows.Forms.Label rgvMode3;
  10357. public System.Windows.Forms.Label rgvOrdId3;
  10358. private System.Windows.Forms.Label label50;
  10359. public System.Windows.Forms.Label rgvPosTo3;
  10360. private System.Windows.Forms.Label label53;
  10361. public System.Windows.Forms.Label rgvPosFrom3;
  10362. public System.Windows.Forms.Label rgvStatus3;
  10363. private System.Windows.Forms.Label label63;
  10364. private System.Windows.Forms.Label lblrgv3;
  10365. public System.Windows.Forms.PictureBox GV3;
  10366. public System.Windows.Forms.PictureBox pictureBox4;
  10367. private MyConrols.MyPanel myPanel2;
  10368. private MyConrols.MyPanel myPanel4;
  10369. private System.Windows.Forms.Label label124;
  10370. private System.Windows.Forms.Label label125;
  10371. public System.Windows.Forms.Label label126;
  10372. private System.Windows.Forms.Label label127;
  10373. private System.Windows.Forms.Label label128;
  10374. public System.Windows.Forms.Label label129;
  10375. public System.Windows.Forms.Label label130;
  10376. private System.Windows.Forms.Label label131;
  10377. private System.Windows.Forms.Label label132;
  10378. public System.Windows.Forms.Label label133;
  10379. public System.Windows.Forms.Label label134;
  10380. private System.Windows.Forms.Label label135;
  10381. public System.Windows.Forms.Label label136;
  10382. private System.Windows.Forms.Label label138;
  10383. public System.Windows.Forms.Label label140;
  10384. private System.Windows.Forms.Label label141;
  10385. public System.Windows.Forms.Label label142;
  10386. public System.Windows.Forms.Label label143;
  10387. private System.Windows.Forms.Label label144;
  10388. private System.Windows.Forms.Label label145;
  10389. private System.Windows.Forms.Label label146;
  10390. private System.Windows.Forms.Label label147;
  10391. public System.Windows.Forms.PictureBox pictureBox11;
  10392. public System.Windows.Forms.PictureBox pictureBox12;
  10393. public System.Windows.Forms.Label rgvOptType2;
  10394. private System.Windows.Forms.Label label23;
  10395. private System.Windows.Forms.Label lblRGVWarning1444;
  10396. public System.Windows.Forms.Label rgvPosCurr1;
  10397. private System.Windows.Forms.Label label45;
  10398. public System.Windows.Forms.Label rgvMode2;
  10399. public System.Windows.Forms.Label rgvOrdId2;
  10400. private System.Windows.Forms.Label label58;
  10401. public System.Windows.Forms.Label rgvPosTo2;
  10402. private System.Windows.Forms.Label label69;
  10403. public System.Windows.Forms.Label rgvPosFrom2;
  10404. private System.Windows.Forms.Label label73;
  10405. public System.Windows.Forms.Label rgvStatus2;
  10406. private System.Windows.Forms.Label label80;
  10407. private System.Windows.Forms.Label label92;
  10408. private System.Windows.Forms.Label lblrgv2;
  10409. public System.Windows.Forms.PictureBox GV2;
  10410. public System.Windows.Forms.PictureBox pictureBox5;
  10411. private From.MyTableLayoutPanel myTableLayoutPanel1;
  10412. private From.From_Montior.Conveyor_R con1067;
  10413. private From.From_Montior.Conveyor_R con1455;
  10414. private From.From_Montior.Conveyor_R con1482;
  10415. private From.From_Montior.Conveyor_R con1484;
  10416. private From.From_Montior.Conveyor_R con1486;
  10417. private From.From_Montior.Conveyor_R con1580;
  10418. private From.From_Montior.Conveyor_R con1524;
  10419. private From.From_Montior.Conveyor_R con1527;
  10420. private From.From_Montior.Conveyor_R con1545;
  10421. private From.From_Montior.Conveyor_R con1540;
  10422. private From.From_Montior.Conveyor_R con1544;
  10423. private From.TableCellLabel tableCellLabel1;
  10424. private From.TableCellLabel tableCellLabel3;
  10425. private From.From_Montior.Conveyor3_A con1596;
  10426. private From.From_Montior.Conveyor_R con1025;
  10427. private From.From_Montior.Conveyor_R con1023;
  10428. private From.From_Montior.Conveyor_R con1028;
  10429. private From.From_Montior.Conveyor_R con1018;
  10430. private From.From_Montior.Conveyor_R con1020;
  10431. private From.From_Montior.Conveyor_R con1030;
  10432. private From.From_Montior.Conveyor_R con1053;
  10433. private From.From_Montior.Conveyor_R con1477;
  10434. private From.From_Montior.Conveyor_R con1473;
  10435. private From.From_Montior.Conveyor_R con1474;
  10436. private From.From_Montior.Conveyor_R con1471;
  10437. private From.From_Montior.Conveyor_R con1556;
  10438. private From.From_Montior.Conveyor_R con1587;
  10439. private From.From_Montior.Conveyor_R con1589;
  10440. private From.From_Montior.Conveyor_R con1480;
  10441. private From.From_Montior.Conveyor_R con1505;
  10442. private From.From_Montior.Conveyor_R con1568;
  10443. private From.From_Montior.Conveyor_R con1534;
  10444. private From.From_Montior.Conveyor_R con1573;
  10445. private From.From_Montior.Conveyor_R con1529;
  10446. private From.From_Montior.Conveyor_R con1538;
  10447. private From.From_Montior.Conveyor_R con1537;
  10448. private From.From_Montior.Conveyor_R con1574;
  10449. private From.From_Montior.Conveyor_R con1508;
  10450. private From.From_Montior.Conveyor_R con1553;
  10451. private From.From_Montior.Conveyor_R con1509;
  10452. private From.From_Montior.Conveyor_R con1532;
  10453. private From.From_Montior.Conveyor_R con1579;
  10454. private From.From_Montior.Conveyor_R con1500;
  10455. private From.From_Montior.Conveyor_R con1582;
  10456. private From.From_Montior.Conveyor_R con1584;
  10457. private From.From_Montior.Conveyor_R con1511;
  10458. private From.From_Montior.Conveyor_R con1513;
  10459. private From.From_Montior.Conveyor_R con1503;
  10460. private From.From_Montior.Conveyor_R con1551;
  10461. private From.From_Montior.Conveyor_R con1548;
  10462. private From.From_Montior.Conveyor_R con1515;
  10463. private From.From_Montior.Conveyor_R con1570;
  10464. private From.From_Montior.Conveyor_R con1565;
  10465. private From.From_Montior.Conveyor_R con1576;
  10466. private From.From_Montior.LocationPos locationPos37;
  10467. private From.From_Montior.Conveyor_R con1065;
  10468. private From.From_Montior.Conveyor_L con1010;
  10469. private From.From_Montior.Conveyor_L con1013;
  10470. private From.From_Montior.Conveyor_L con1008;
  10471. private System.Windows.Forms.Label label33;
  10472. private From.TableCellLabel tableCellLabel31;
  10473. private From.From_Montior.LocationPos locationPos38;
  10474. private From.From_Montior.LocationPos locationPos49;
  10475. private From.From_Montior.LocationPos locationPos53;
  10476. private From.From_Montior.srm srm15;
  10477. private From.From_Montior.LocationPos locationPos55;
  10478. private From.From_Montior.Conveyor_R con1062;
  10479. private From.From_Montior.Conveyor_R con1563;
  10480. private From.From_Montior.Conveyor_R con1520;
  10481. private From.From_Montior.srm srm14;
  10482. private From.From_Montior.LocationPos locationPos48;
  10483. private From.From_Montior.LocationPos locationPos36;
  10484. private From.From_Montior.Conveyor_R con1522;
  10485. private From.From_Montior.Conveyor_R con1518;
  10486. private From.TableCellLabel tableCellLabel30;
  10487. private From.From_Montior.LocationPos locationPos47;
  10488. private From.From_Montior.Conveyor_R con1558;
  10489. private From.From_Montior.Conveyor_R con1498;
  10490. private From.From_Montior.Conveyor_R con1491;
  10491. private From.From_Montior.LocationPos locationPos45;
  10492. private From.From_Montior.Conveyor_R con1597;
  10493. private From.From_Montior.srm srm13;
  10494. private From.From_Montior.LocationPos locationPos46;
  10495. private From.From_Montior.Conveyor_R con1598;
  10496. private From.From_Montior.Conveyor_R con1489;
  10497. private From.From_Montior.LocationPos locationPos42;
  10498. private From.From_Montior.Conveyor_R con1493;
  10499. private From.From_Montior.Conveyor_R con1040;
  10500. private From.TableCellLabel tableCellLabel29;
  10501. private From.From_Montior.LocationPos locationPos54;
  10502. private From.From_Montior.Conveyor_R con1495;
  10503. private From.From_Montior.Conveyor3_A con1044;
  10504. private From.From_Montior.Conveyor3_A con1595;
  10505. private From.From_Montior.Conveyor_R con1051;
  10506. private From.From_Montior.Conveyor_R con1049;
  10507. private From.From_Montior.Conveyor3_A con1035;
  10508. private From.From_Montior.Conveyor con1042;
  10509. private From.From_Montior.Conveyor con1038;
  10510. private From.From_Montior.Conveyor_L con1047;
  10511. private From.From_Montior.Conveyor_L con1058;
  10512. private From.From_Montior.Conveyor_L con1060;
  10513. private From.From_Montior.Conveyor_L con1056;
  10514. private From.TableCellLabel tableCellLabel2;
  10515. private From.From_Montior.Conveyor_R con1015;
  10516. private From.From_Montior.Conveyor_R rgv8;
  10517. private From.From_Montior.Conveyor3_B con1466;
  10518. private From.From_Montior.Conveyor3_B con1464;
  10519. private From.From_Montior.Conveyor3_B con1462;
  10520. private From.From_Montior.Conveyor3_B con1460;
  10521. private From.From_Montior.Conveyor3_B con1458;
  10522. private From.From_Montior.LocationPos locationPos1;
  10523. private From.From_Montior.LocationPos locationPos2;
  10524. private From.From_Montior.LocationPos locationPos3;
  10525. private From.From_Montior.LocationPos locationPos4;
  10526. private From.TableCellLabel tableCellLabel5;
  10527. private From.TableCellLabel tableCellLabel6;
  10528. private From.From_Montior.Conveyor con1281;
  10529. private From.From_Montior.Conveyor_L con1283;
  10530. private From.From_Montior.Conveyor con1285;
  10531. private From.From_Montior.Conveyor_L con1406;
  10532. private From.From_Montior.Conveyor con1404;
  10533. private From.From_Montior.Conveyor_R con1408;
  10534. private From.From_Montior.Conveyor3_A con1401;
  10535. private From.From_Montior.Conveyor_R con1290;
  10536. private From.From_Montior.Conveyor con1288;
  10537. private From.From_Montior.Conveyor_L con1292;
  10538. private From.From_Montior.Conveyor3_B con1294;
  10539. private From.From_Montior.Conveyor_L con1415;
  10540. private From.From_Montior.Conveyor con1413;
  10541. private From.From_Montior.Conveyor3_A con1410;
  10542. private From.From_Montior.Conveyor_R con1299;
  10543. private From.From_Montior.Conveyor con1297;
  10544. private From.From_Montior.Conveyor_L con1301;
  10545. private From.From_Montior.Conveyor3_B con1303;
  10546. private From.From_Montior.Conveyor_L con1422;
  10547. private From.From_Montior.Conveyor con1420;
  10548. private From.From_Montior.Conveyor_R con1424;
  10549. private From.From_Montior.Conveyor3_A con1417;
  10550. private From.From_Montior.Conveyor_R con1308;
  10551. private From.From_Montior.Conveyor con1306;
  10552. private From.From_Montior.Conveyor_L con1310;
  10553. private From.From_Montior.Conveyor3_B con1312;
  10554. private From.From_Montior.Conveyor_L con1431;
  10555. private From.From_Montior.Conveyor con1429;
  10556. private From.From_Montior.Conveyor3_A con1426;
  10557. private From.From_Montior.Conveyor3_B con1386;
  10558. private From.From_Montior.Conveyor3_B con1389;
  10559. private From.From_Montior.Conveyor3_B con1391;
  10560. private From.From_Montior.Conveyor3_B con1394;
  10561. private From.From_Montior.Conveyor3_B con1397;
  10562. private From.From_Montior.Conveyor3_B con1399;
  10563. private System.Windows.Forms.Label label1;
  10564. private From.From_Montior.Conveyor3_B con1335;
  10565. private From.From_Montior.Conveyor3_B con1337;
  10566. private From.From_Montior.Conveyor3_B con1340;
  10567. private System.Windows.Forms.Label label4;
  10568. private From.From_Montior.Conveyor3_B con1387;
  10569. private From.From_Montior.Conveyor3_B con1390;
  10570. private From.From_Montior.Conveyor3_B con1392;
  10571. private From.From_Montior.Conveyor3_B con1395;
  10572. private From.From_Montior.Conveyor3_B con1398;
  10573. private From.From_Montior.Conveyor3_B con1400;
  10574. private From.From_Montior.Conveyor3_B con1334;
  10575. private From.From_Montior.Conveyor3_B con1338;
  10576. private From.From_Montior.Conveyor3_B con1341;
  10577. private From.From_Montior.Conveyor3_B con1343;
  10578. private From.From_Montior.Conveyor3_B con1344;
  10579. }
  10580. }